From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 00:30:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17AB8106566C for ; Sun, 24 Oct 2010 00:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E41B78FC0C for ; Sun, 24 Oct 2010 00:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O0UAJp062367 for ; Sun, 24 Oct 2010 00:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O0UAwc062363; Sun, 24 Oct 2010 00:30:10 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 00:30:10 GMT Resent-Message-Id: <201010240030.o9O0UAwc062363@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nikos Ntarmos Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 742D81065675 for ; Sun, 24 Oct 2010 00:29:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 621B08FC17 for ; Sun, 24 Oct 2010 00:29:40 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9O0TduX035243 for ; Sun, 24 Oct 2010 00:29:39 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9O0TdUB035242; Sun, 24 Oct 2010 00:29:39 GMT (envelope-from nobody) Message-Id: <201010240029.o9O0TdUB035242@www.freebsd.org> Date: Sun, 24 Oct 2010 00:29:39 GMT From: Nikos Ntarmos To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151668: [maintainer-update] conky bugfix for the kvm_getprocs crash X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 00:30:11 -0000 >Number: 151668 >Category: ports >Synopsis: [maintainer-update] conky bugfix for the kvm_getprocs crash >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 00:30:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Nikos Ntarmos >Release: 8.1-RELEASE >Organization: Computer Science Dept., U. of Ioannina, Greece >Environment: FreeBSD umbriel.bsd.nix 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: After 1.8.0 was released, I've been getting reports of conky crashing shortly after it is started. I've tried to reproduce the issue for some time but to no avail. I recently managed to get my hands on a proper core file and gdb backtrace with the help of an anonymous user and had a more in-depth look. It turns out the crashes were caused by kvm_getprocs(3) being called simultaneously by multiple threads within conky. >How-To-Repeat: Run conky>=1.8.0 with $processes or $running_processes in ~/.conkyrc and wait... >Fix: The attached patch uses a mutex to synchronize accesses to the locally allocated kinfo_proc structure, a pointer to which is returned by kvm_getprocs(3). Patch attached with submission follows: --- Makefile.orig +++ Makefile @@ -7,6 +7,7 @@ PORTNAME= conky PORTVERSION= 1.8.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= SF --- files/patch-src-conky.c.orig +++ files/patch-src-conky.c @@ -28,7 +28,23 @@ #endif /* AUDACIOUS */ #ifdef BMPX -@@ -6007,7 +6011,7 @@ +@@ -5716,6 +5720,7 @@ + "kvm_open")) == NULL) { + CRIT_ERR(NULL, NULL, "cannot read kvm"); + } ++ pthread_mutex_init(&kvm_proc_mutex, NULL); + #endif + + while (1) { +@@ -5999,6 +6004,7 @@ + + #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + kvm_close(kd); ++ pthread_mutex_destroy(&kvm_proc_mutex); + #endif + + return 0; +@@ -6007,7 +6013,7 @@ void alarm_handler(void) { if(childpid > 0) { --- files/patch-src-freebsd.c.orig +++ files/patch-src-freebsd.c @@ -0,0 +1,44 @@ +--- src/freebsd.c.orig 2010-10-24 03:14:05.000000000 +0300 ++++ src/freebsd.c 2010-10-24 03:13:05.000000000 +0300 +@@ -266,7 +266,9 @@ + { + int n_processes; + ++ pthread_mutex_lock(&kvm_proc_mutex); + kvm_getprocs(kd, KERN_PROC_ALL, 0, &n_processes); ++ pthread_mutex_unlock(&kvm_proc_mutex); + + info.procs = n_processes; + return 0; +@@ -278,6 +280,7 @@ + int n_processes; + int i, cnt = 0; + ++ pthread_mutex_lock(&kvm_proc_mutex); + p = kvm_getprocs(kd, KERN_PROC_ALL, 0, &n_processes); + for (i = 0; i < n_processes; i++) { + #if (__FreeBSD__ < 5) && (__FreeBSD_kernel__ < 5) +@@ -288,6 +291,7 @@ + cnt++; + } + } ++ pthread_mutex_unlock(&kvm_proc_mutex); + + info.run_procs = cnt; + return 0; +@@ -748,6 +752,7 @@ + CRIT_ERR(NULL, NULL, "Cannot read sysctl \"vm.stats.vm.v_page_count\""); + } + ++ pthread_mutex_lock(&kvm_proc_mutex); + p = kvm_getprocs(kd, KERN_PROC_PROC, 0, &n_processes); + processes = malloc(n_processes * sizeof(struct process)); + +@@ -764,6 +769,7 @@ + j++; + } + } ++ pthread_mutex_unlock(&kvm_proc_mutex); + + qsort(processes, j - 1, sizeof(struct process), comparemem); + for (i = 0; i < 10 && i < n_processes; i++) { --- files/patch-src-freebsd.h.orig +++ files/patch-src-freebsd.h @@ -0,0 +1,16 @@ +--- src/freebsd.h.orig 2010-10-24 03:14:11.000000000 +0300 ++++ src/freebsd.h 2010-10-24 03:13:05.000000000 +0300 +@@ -9,11 +9,13 @@ + #include + #include + #include ++#include + #if (defined(i386) || defined(__i386__)) + #include + #endif /* i386 || __i386__ */ + + kvm_t *kd; ++pthread_mutex_t kvm_proc_mutex; + + int get_entropy_avail(unsigned int *); + int get_entropy_poolsize(unsigned int *); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 01:40:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17C751065670 for ; Sun, 24 Oct 2010 01:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E5C548FC14 for ; Sun, 24 Oct 2010 01:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O1eAB9034899 for ; Sun, 24 Oct 2010 01:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O1eA34034898; Sun, 24 Oct 2010 01:40:10 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 01:40:10 GMT Resent-Message-Id: <201010240140.o9O1eA34034898@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sofian Brabez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5061E106564A for ; Sun, 24 Oct 2010 01:36:32 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id D9F3D8FC08 for ; Sun, 24 Oct 2010 01:36:31 +0000 (UTC) Received: by wyb42 with SMTP id 42so2198626wyb.13 for ; Sat, 23 Oct 2010 18:36:30 -0700 (PDT) Received: by 10.216.232.229 with SMTP id n79mr4511888weq.52.1287884189773; Sat, 23 Oct 2010 18:36:29 -0700 (PDT) Received: from localhost (mna75-2-81-57-226-6.fbx.proxad.net [81.57.226.6]) by mx.google.com with ESMTPS id y80sm3088923weq.27.2010.10.23.18.36.28 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 23 Oct 2010 18:36:28 -0700 (PDT) Message-Id: <4cc38d9c.e6edd80a.2f1b.ffffb546@mx.google.com> Date: Sat, 23 Oct 2010 18:36:28 -0700 (PDT) From: Sofian Brabez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151669: [patch] audio/gimmix: update to 0.5.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 01:40:11 -0000 >Number: 151669 >Category: ports >Synopsis: [patch] audio/gimmix: update to 0.5.7.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 01:40:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 8.1-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd81 8.1-STABLE FreeBSD 8.1-STABLE #1: Tue Aug 31 22:46:46 CEST 2010 >Description: - Update to 0.5.7.1 - Make happy portlint - Respect WITHOUT_NLS KNOB Please take a look to ports/151525 pr, it's the same, but I guess mine is more clean and complete. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- gimmix-0.5.7.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/audio/gimmix/Makefile /tmp/gimmix/Makefile --- /usr/ports/audio/gimmix/Makefile 2010-05-16 19:27:04.000000000 +0200 +++ /tmp/gimmix/Makefile 2010-10-24 05:32:24.000000000 +0200 @@ -6,8 +6,7 @@ # PORTNAME= gimmix -PORTVERSION= 0.5.6 -PORTREVISION= 8 +PORTVERSION= 0.5.7.1 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_BERLIOS} MASTER_SITE_SUBDIR= gimmix @@ -19,19 +18,33 @@ tag.1:${PORTSDIR}/audio/taglib \ nxml:${PORTSDIR}/textproc/libnxml +OPTIONS= NLS "Native Language Support" on + +.include + USE_GNOME= gtk20 intltool libglade2 USE_BZIP2= yes GNU_CONFIGURE= yes USE_GMAKE= yes +MAKE_JOBS_SAFE= yes MAN1= gimmix.1 CONFIGURE_ENV= DATADIRNAME=share +.if !defined(WITHOUT_NLS) +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib -lintl" +CONFIGURE_ARGS+= --enable-nls +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.endif + post-patch: - ${LN} -sf ${LOCALBASE}/share/intltool/Makefile.in.in ${WRKSRC}/po/Makefile.in.in - @${REINPLACE_CMD} -e 's,libmpd-1.0\/libmpd,libmpd,' \ - ${WRKSRC}/src/gimmix.h + @${LN} -sf ${LOCALBASE}/share/intltool/Makefile.in.in ${WRKSRC}/po/Makefile.in.in .include diff -ruN --exclude=CVS /usr/ports/audio/gimmix/distinfo /tmp/gimmix/distinfo --- /usr/ports/audio/gimmix/distinfo 2009-03-14 16:11:01.000000000 +0100 +++ /tmp/gimmix/distinfo 2010-10-24 04:22:30.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (gimmix-0.5.6.tar.bz2) = ee94cca60f66d9241ee574e48f587826 -SHA256 (gimmix-0.5.6.tar.bz2) = 84712e2e9b5249d4263a5951e6f75233ecb4661e27beaa9ca2b8722e578bdb8e -SIZE (gimmix-0.5.6.tar.bz2) = 339269 +MD5 (gimmix-0.5.7.1.tar.bz2) = d89f3d6a80a85e9e6f34f9abd2614c15 +SHA256 (gimmix-0.5.7.1.tar.bz2) = f504e19615fe2032b958d14a88504fbf9c2684ccad3cbe0b177068173e538cba +SIZE (gimmix-0.5.7.1.tar.bz2) = 330368 diff -ruN --exclude=CVS /usr/ports/audio/gimmix/pkg-plist /tmp/gimmix/pkg-plist --- /usr/ports/audio/gimmix/pkg-plist 2010-05-16 19:27:04.000000000 +0200 +++ /tmp/gimmix/pkg-plist 2010-10-24 05:31:45.000000000 +0200 @@ -1,8 +1,10 @@ +@comment $FreeBSD$ bin/gimmix -share/locale/de/LC_MESSAGES/gimmix.mo -share/locale/sv/LC_MESSAGES/gimmix.mo -share/locale/tr/LC_MESSAGES/gimmix.mo -share/locale/zh_TW/LC_MESSAGES/gimmix.mo +%%NLS%%share/locale/de/LC_MESSAGES/gimmix.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gimmix.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gimmix.mo +%%NLS%%share/locale/tr/LC_MESSAGES/gimmix.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/gimmix.mo share/applications/gimmix.desktop %%DATADIR%%/gimmix.glade %%DATADIR%%/gimmix_firstrun.png @@ -20,6 +22,8 @@ @dirrmtry share/locale/sv @dirrmtry share/locale/de/LC_MESSAGES @dirrmtry share/locale/de +@dirrmtry share/locale/fr/LC_MESSAGES +@dirrmtry share/locale/fr @dirrmtry share/locale @exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true @unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true --- gimmix-0.5.7.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 01:40:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30EF1106566B; Sun, 24 Oct 2010 01:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 071488FC15; Sun, 24 Oct 2010 01:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O1eG6j035366; Sun, 24 Oct 2010 01:40:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O1eGsM035362; Sun, 24 Oct 2010 01:40:16 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 01:40:16 GMT Message-Id: <201010240140.o9O1eGsM035362@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jadawin@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151669: [patch] audio/gimmix: update to 0.5.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 01:40:17 -0000 Synopsis: [patch] audio/gimmix: update to 0.5.7.1 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 01:40:16 UTC 2010 Responsible-Changed-Why: jadawin@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151669 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 02:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26C4B106567A for ; Sun, 24 Oct 2010 02:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DA43C8FC0C for ; Sun, 24 Oct 2010 02:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O2e9dh096345 for ; Sun, 24 Oct 2010 02:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O2e97e096344; Sun, 24 Oct 2010 02:40:09 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 02:40:09 GMT Resent-Message-Id: <201010240240.o9O2e97e096344@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sofian Brabez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7DA3106566C for ; Sun, 24 Oct 2010 02:38:05 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 4D5B88FC13 for ; Sun, 24 Oct 2010 02:38:05 +0000 (UTC) Received: by wwb24 with SMTP id 24so2151035wwb.31 for ; Sat, 23 Oct 2010 19:38:04 -0700 (PDT) Received: by 10.216.53.148 with SMTP id g20mr4584367wec.6.1287887883587; Sat, 23 Oct 2010 19:38:03 -0700 (PDT) Received: from localhost (mna75-2-81-57-226-6.fbx.proxad.net [81.57.226.6]) by mx.google.com with ESMTPS id w29sm3107952weq.19.2010.10.23.19.38.02 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 23 Oct 2010 19:38:03 -0700 (PDT) Message-Id: <4cc39c0b.9decd80a.1f93.ffffae7d@mx.google.com> Date: Sat, 23 Oct 2010 19:38:03 -0700 (PDT) From: Sofian Brabez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151670: New port: net/hexinject HexInject is a very versatile packet injector and sniffer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 02:40:10 -0000 >Number: 151670 >Category: ports >Synopsis: New port: net/hexinject HexInject is a very versatile packet injector and sniffer >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 02:40:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 8.1-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd81 8.1-STABLE FreeBSD 8.1-STABLE #1: Tue Aug 31 22:46:46 CEST 2010 >Description: HexInject is a very versatile packet injector and sniffer, that provide a command-line framework for raw network access. It's designed to work together with others command-line utilities, and for this reason it facilitates the creation of powerful shell scripts capable of reading, intercepting and modifying network traffic in a transparent manner. WWW: http://hexinject.sourceforge.net Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- hexinject-1.1.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # hexinject # hexinject/Makefile # hexinject/pkg-descr # hexinject/distinfo # hexinject/files # hexinject/files/patch-hexinject.c # echo c - hexinject mkdir -p hexinject > /dev/null 2>&1 echo x - hexinject/Makefile sed 's/^X//' >hexinject/Makefile << '5fd54a8b95aacffb8a1886198bed0bea' X# New ports collection makefile for: hexinject X# Date created: 2010-10-24 X# Whom: Sofian Brabez X# X# $FreeBSD$ X# X XPORTNAME= hexinject XPORTVERSION= 1.1 XCATEGORIES= net security XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}-${PORTVERSION} X XMAINTAINER= sbrabez@gmail.com XCOMMENT= HexInject is a very versatile packet injector and sniffer X XPLIST= bin/${PORTNAME} X XWRKSRC= ${WRKDIR}/${PORTNAME} X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X X.include 5fd54a8b95aacffb8a1886198bed0bea echo x - hexinject/pkg-descr sed 's/^X//' >hexinject/pkg-descr << 'c9eaaeb44db5f410d1896398f3f222ac' XHexInject is a very versatile packet injector and sniffer, that provide a Xcommand-line framework for raw network access. X XIt's designed to work together with others command-line utilities, and for this Xreason it facilitates the creation of powerful shell scripts capable of reading, Xintercepting and modifying network traffic in a transparent manner. X XWWW: http://hexinject.sourceforge.net c9eaaeb44db5f410d1896398f3f222ac echo x - hexinject/distinfo sed 's/^X//' >hexinject/distinfo << '51bb2c3a31304f196ddc62e9f6fa7fcb' XMD5 (hexinject-1.1.tar.gz) = 8542411cc5d31101e2a8f56b73dd6fa1 XSHA256 (hexinject-1.1.tar.gz) = 050852f89ea501c7bad768a694f8fd2d5f0c3de68da82647a1cb7aeb68e96e27 XSIZE (hexinject-1.1.tar.gz) = 4470 51bb2c3a31304f196ddc62e9f6fa7fcb echo c - hexinject/files mkdir -p hexinject/files > /dev/null 2>&1 echo x - hexinject/files/patch-hexinject.c sed 's/^X//' >hexinject/files/patch-hexinject.c << 'a5a76621ab11d92770f9a00113de538e' X--- ./hexinject.c.orig 2010-10-24 06:23:57.000000000 +0200 X+++ ./hexinject.c 2010-10-24 06:24:17.000000000 +0200 X@@ -424,7 +424,7 @@ X if ( (fp = pcap_open_live( options.device, // name of the device X BUFSIZ, // portion of the packet to capture X 1, // promiscuous mode X- -1, // read timeout X+ 1000, // read timeout X errbuf // error buffer X )) == NULL) X a5a76621ab11d92770f9a00113de538e exit --- hexinject-1.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 02:40:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FC671065672; Sun, 24 Oct 2010 02:40:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 26E518FC13; Sun, 24 Oct 2010 02:40:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O2eGC4096778; Sun, 24 Oct 2010 02:40:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O2eGHa096769; Sun, 24 Oct 2010 02:40:16 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 02:40:16 GMT Message-Id: <201010240240.o9O2eGHa096769@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jadawin@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151670: New port: net/hexinject HexInject is a very versatile packet injector and sniffer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 02:40:16 -0000 Synopsis: New port: net/hexinject HexInject is a very versatile packet injector and sniffer Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 02:40:15 UTC 2010 Responsible-Changed-Why: jadawin@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151670 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:00:20 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7FA9106564A for ; Sun, 24 Oct 2010 06:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7D5318FC15 for ; Sun, 24 Oct 2010 06:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O60Kwd010080 for ; Sun, 24 Oct 2010 06:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O60KBu010075; Sun, 24 Oct 2010 06:00:20 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 06:00:20 GMT Resent-Message-Id: <201010240600.o9O60KBu010075@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9C211065698 for ; Sun, 24 Oct 2010 05:53:23 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id C14278FC14 for ; Sun, 24 Oct 2010 05:53:23 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id 67BA31711C; Sun, 24 Oct 2010 01:53:23 -0400 (EDT) Message-Id: <20101024055323.67BA31711C@spartan.hamla.org> Date: Sun, 24 Oct 2010 01:53:23 -0400 (EDT) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gahr@FreeBSD.org Subject: ports/151671: [PATCH] lang/g95: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:00:20 -0000 >Number: 151671 >Category: ports >Synopsis: [PATCH] lang/g95: fix MASTER_SITES:n usage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 06:00:19 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 9.0-CURRENT i386 >Organization: >Environment: >Description: Fix MASTER_SITES:n usage so that the ":n" postfix is added to *all* elements of MASTER_SITE_LOCAL, not just the final one. To observe the difference, run the following command while inside the port's dir before and after applying the patch: % make -V MASTER_SITES >How-To-Repeat: >Fix: --- g95.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/lang/g95/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- Makefile 1 Apr 2010 06:44:47 -0000 1.17 +++ Makefile 24 Oct 2010 05:32:24 -0000 @@ -8,10 +8,10 @@ PORTNAME= g95 PORTVERSION= ${G95VERSION}.${SNAPDATE} CATEGORIES= lang -MASTER_SITES= ${MASTER_SITE_LOCAL}:g95 \ +MASTER_SITES= ${MASTER_SITE_LOCAL:S/$/:g95/} \ http://people.freebsd.org/~gahr/distfiles/:g95 \ ${MASTER_SITE_GCC:S/$/:gcc/} -MASTER_SITE_SUBDIR= gahr:g95 \ +MASTER_SITE_SUBDIR= gahr/:g95 \ releases/gcc-${GCCVERSION}/:gcc DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:g95 \ gcc-core-${GCCVERSION}${EXTRACT_SUFX}:gcc --- g95.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:00:21 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC961106566C for ; Sun, 24 Oct 2010 06:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1A3D8FC08 for ; Sun, 24 Oct 2010 06:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O60LLC010167 for ; Sun, 24 Oct 2010 06:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O60Lm7010146; Sun, 24 Oct 2010 06:00:21 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 06:00:21 GMT Resent-Message-Id: <201010240600.o9O60Lm7010146@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AAF6310656AB for ; Sun, 24 Oct 2010 05:53:24 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id 98F1B8FC1D for ; Sun, 24 Oct 2010 05:53:24 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id 755C817163; Sun, 24 Oct 2010 01:53:24 -0400 (EDT) Message-Id: <20101024055324.755C817163@spartan.hamla.org> Date: Sun, 24 Oct 2010 01:53:24 -0400 (EDT) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: deischen@FreeBSD.org Subject: ports/151672: [PATCH] lang/gnat: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:00:21 -0000 >Number: 151672 >Category: ports >Synopsis: [PATCH] lang/gnat: fix MASTER_SITES:n usage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 06:00:20 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 9.0-CURRENT i386 >Organization: >Environment: >Description: We don't need to set PORTREVISION to 0 since that is the default, and ... Fix MASTER_SITES:n usage so that the ":n" postfix is added to *all* elements of MASTER_SITE_LOCAL, not just the final one. To observe the difference, run the following command while inside the port's dir before and after applying the patch: % make -V MASTER_SITES >How-To-Repeat: >Fix: --- gnat.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/lang/gnat/Makefile,v retrieving revision 1.64 diff -u -r1.64 Makefile --- Makefile 30 Sep 2010 16:53:28 -0000 1.64 +++ Makefile 24 Oct 2010 00:17:48 -0000 @@ -14,9 +14,8 @@ PORTNAME= gnat PORTVERSION= 2010 -PORTREVISION= 0 CATEGORIES= lang -MASTER_SITES= ${MASTER_SITE_LOCAL}:boot +MASTER_SITES= ${MASTER_SITE_LOCAL:S/$/:boot/} MASTER_SITE_SUBDIR= deischen/gcc/:boot DISTFILES= ${gcc_srcfile}:gcc ${gnat_srcfile}:gnat --- gnat.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:00:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05E0C1065674 for ; Sun, 24 Oct 2010 06:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF0368FC12 for ; Sun, 24 Oct 2010 06:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O60MoP010318 for ; Sun, 24 Oct 2010 06:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O60MlA010306; Sun, 24 Oct 2010 06:00:22 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 06:00:22 GMT Resent-Message-Id: <201010240600.o9O60MlA010306@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 641A81065672 for ; Sun, 24 Oct 2010 05:53:25 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id 51EDD8FC17 for ; Sun, 24 Oct 2010 05:53:25 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id 3279417173; Sun, 24 Oct 2010 01:53:25 -0400 (EDT) Message-Id: <20101024055325.3279417173@spartan.hamla.org> Date: Sun, 24 Oct 2010 01:53:25 -0400 (EDT) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: nox@FreeBSD.org Subject: ports/151673: [PATCH] emulators/qemu-devel: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:00:23 -0000 >Number: 151673 >Category: ports >Synopsis: [PATCH] emulators/qemu-devel: fix MASTER_SITES:n usage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 06:00:21 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 9.0-CURRENT i386 >Organization: >Environment: >Description: Fix MASTER_SITES:n usage so that the ":n" postfix is added to *all* elements of MASTER_SITE_LOCAL, not just the final one. To observe the difference, run the following command while inside the port's dir before and after applying the patch: % make -V MASTER_SITES >How-To-Repeat: >Fix: --- qemu-devel.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/emulators/qemu-devel/Makefile,v retrieving revision 1.116 diff -u -r1.116 Makefile --- Makefile 21 Oct 2010 21:40:14 -0000 1.116 +++ Makefile 24 Oct 2010 00:22:35 -0000 @@ -9,7 +9,7 @@ PORTVERSION= 0.13.0 CATEGORIES= emulators MASTER_SITES= SAVANNAH:release \ - ${MASTER_SITE_LOCAL}:snapshot \ + ${MASTER_SITE_LOCAL:S/$/:snapshot/} \ http://people.freebsd.org/~nox/qemu/:snapshot MASTER_SITE_SUBDIR= qemu/:release nox/:snapshot PKGNAMESUFFIX= -devel --- qemu-devel.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:00:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A08AD1065679 for ; Sun, 24 Oct 2010 06:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 65E418FC17 for ; Sun, 24 Oct 2010 06:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O60N5e010423 for ; Sun, 24 Oct 2010 06:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O60NpP010407; Sun, 24 Oct 2010 06:00:23 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 06:00:23 GMT Resent-Message-Id: <201010240600.o9O60NpP010407@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01BBA10656B1 for ; Sun, 24 Oct 2010 05:53:26 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id E3EC48FC18 for ; Sun, 24 Oct 2010 05:53:25 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id C6E0F17175; Sun, 24 Oct 2010 01:53:25 -0400 (EDT) Message-Id: <20101024055325.C6E0F17175@spartan.hamla.org> Date: Sun, 24 Oct 2010 01:53:25 -0400 (EDT) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: brooks@FreeBSD.org Subject: ports/151674: [PATCH] sysutils/sge61: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:00:23 -0000 >Number: 151674 >Category: ports >Synopsis: [PATCH] sysutils/sge61: fix MASTER_SITES:n usage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 06:00:22 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 9.0-CURRENT i386 >Organization: >Environment: >Description: Fix MASTER_SITES:n usage so that the ":n" postfix is added to *all* elements of MASTER_SITE_LOCAL, not just the final one. To observe the difference, run the following command while inside the port's dir before and after applying the patch: % make -V MASTER_SITES >How-To-Repeat: >Fix: --- sge61.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/sysutils/sge61/Makefile,v retrieving revision 1.43 diff -u -r1.43 Makefile --- Makefile 31 May 2010 02:01:07 -0000 1.43 +++ Makefile 24 Oct 2010 05:43:24 -0000 @@ -11,8 +11,8 @@ CATEGORIES= sysutils parallel MASTER_SITES= http://gridengine.sunsource.net/files/documents/7/169/:src \ http://gridengine.sunsource.net/download/SGE61/:bin \ - ${MASTER_SITE_LOCAL}:src,bin -MASTER_SITE_SUBDIR= brooks + ${MASTER_SITE_LOCAL:S/$/:src,bin/} +MASTER_SITE_SUBDIR= brooks/:src,bin DISTNAME= ge-V${SGE_RELEASE:S/.//}_TAG-src DISTFILES= ${DISTNAME}.tar.gz:src \ ge-${SGE_RELEASE}-common.tar.gz:bin --- sge61.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:00:24 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 217E11065695 for ; Sun, 24 Oct 2010 06:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DB6318FC19 for ; Sun, 24 Oct 2010 06:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O60Ng0010527 for ; Sun, 24 Oct 2010 06:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O60NEH010508; Sun, 24 Oct 2010 06:00:23 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 06:00:23 GMT Resent-Message-Id: <201010240600.o9O60NEH010508@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE5C510656A5 for ; Sun, 24 Oct 2010 05:53:26 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id 9BBA58FC1C for ; Sun, 24 Oct 2010 05:53:26 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id 80A7217179; Sun, 24 Oct 2010 01:53:26 -0400 (EDT) Message-Id: <20101024055326.80A7217179@spartan.hamla.org> Date: Sun, 24 Oct 2010 01:53:26 -0400 (EDT) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: brooks@FreeBSD.org Subject: ports/151675: [PATCH] sysutils/sge62: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:00:24 -0000 >Number: 151675 >Category: ports >Synopsis: [PATCH] sysutils/sge62: fix MASTER_SITES:n usage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 06:00:23 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 9.0-CURRENT i386 >Organization: >Environment: >Description: Fix MASTER_SITES:n usage so that the ":n" postfix is added to *all* elements of MASTER_SITE_LOCAL, not just the final one. To observe the difference, run the following command while inside the port's dir before and after applying the patch: % make -V MASTER_SITES >How-To-Repeat: >Fix: --- sge62.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/sysutils/sge62/Makefile,v retrieving revision 1.50 diff -u -r1.50 Makefile --- Makefile 31 May 2010 02:01:07 -0000 1.50 +++ Makefile 24 Oct 2010 05:49:45 -0000 @@ -10,8 +10,8 @@ PORTREVISION= 2 CATEGORIES= sysutils parallel MASTER_SITES= http://gridengine.sunsource.net/files/documents/7/197/:src \ - ${MASTER_SITE_LOCAL}:src -MASTER_SITE_SUBDIR= brooks + ${MASTER_SITE_LOCAL:S/$/:src/} +MASTER_SITE_SUBDIR= brooks/:src DISTNAME= ge-V${SGE_RELEASE:S/.//}_TAG-src DISTFILES= ${DISTNAME}.tar.gz:src EXTRACT_ONLY= ${DISTNAME}.tar.gz --- sge62.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:01:02 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8240A10656C6; Sun, 24 Oct 2010 06:01:02 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 588668FC0A; Sun, 24 Oct 2010 06:01:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O612cB016043; Sun, 24 Oct 2010 06:01:02 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O612b1016034; Sun, 24 Oct 2010 06:01:02 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 06:01:02 GMT Message-Id: <201010240601.o9O612b1016034@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151671: [PATCH] lang/g95: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:01:02 -0000 Synopsis: [PATCH] lang/g95: fix MASTER_SITES:n usage Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 06:01:01 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151671 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:01:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54B3B10656C2; Sun, 24 Oct 2010 06:01:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2C2068FC0A; Sun, 24 Oct 2010 06:01:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O619eV016794; Sun, 24 Oct 2010 06:01:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O619bd016783; Sun, 24 Oct 2010 06:01:09 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 06:01:09 GMT Message-Id: <201010240601.o9O619bd016783@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, deischen@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151672: [PATCH] lang/gnat: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:01:09 -0000 Synopsis: [PATCH] lang/gnat: fix MASTER_SITES:n usage Responsible-Changed-From-To: freebsd-ports-bugs->deischen Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 06:01:08 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151672 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:01:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2258B10656C1; Sun, 24 Oct 2010 06:01:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EC7628FC0A; Sun, 24 Oct 2010 06:01:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O61FKV017485; Sun, 24 Oct 2010 06:01:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O61FoE017477; Sun, 24 Oct 2010 06:01:15 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 06:01:15 GMT Message-Id: <201010240601.o9O61FoE017477@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nox@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151673: [PATCH] emulators/qemu-devel: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:01:16 -0000 Synopsis: [PATCH] emulators/qemu-devel: fix MASTER_SITES:n usage Responsible-Changed-From-To: freebsd-ports-bugs->nox Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 06:01:15 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151673 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:01:22 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9324410656C1; Sun, 24 Oct 2010 06:01:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6947C8FC14; Sun, 24 Oct 2010 06:01:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O61MHs018136; Sun, 24 Oct 2010 06:01:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O61MRv018126; Sun, 24 Oct 2010 06:01:22 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 06:01:22 GMT Message-Id: <201010240601.o9O61MRv018126@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, brooks@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151674: [PATCH] sysutils/sge61: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:01:22 -0000 Synopsis: [PATCH] sysutils/sge61: fix MASTER_SITES:n usage Responsible-Changed-From-To: freebsd-ports-bugs->brooks Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 06:01:21 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151674 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:01:29 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B10A10656C2; Sun, 24 Oct 2010 06:01:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 394B28FC21; Sun, 24 Oct 2010 06:01:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O61TqZ018798; Sun, 24 Oct 2010 06:01:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O61Ts0018784; Sun, 24 Oct 2010 06:01:29 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 06:01:29 GMT Message-Id: <201010240601.o9O61Ts0018784@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, brooks@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151675: [PATCH] sysutils/sge62: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:01:29 -0000 Synopsis: [PATCH] sysutils/sge62: fix MASTER_SITES:n usage Responsible-Changed-From-To: freebsd-ports-bugs->brooks Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 06:01:28 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151675 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:10:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5830D106566C for ; Sun, 24 Oct 2010 06:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1DA668FC16 for ; Sun, 24 Oct 2010 06:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O6A9EO022849 for ; Sun, 24 Oct 2010 06:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O6A9ra022848; Sun, 24 Oct 2010 06:10:09 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 06:10:09 GMT Resent-Message-Id: <201010240610.o9O6A9ra022848@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sahil Tandon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 025FB1065673 for ; Sun, 24 Oct 2010 06:08:27 +0000 (UTC) (envelope-from sahil@spartan.hamla.org) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id AE3A38FC08 for ; Sun, 24 Oct 2010 06:08:26 +0000 (UTC) Received: by spartan.hamla.org (Postfix, from userid 1001) id 249C917131; Sun, 24 Oct 2010 02:08:26 -0400 (EDT) Message-Id: <20101024060826.249C917131@spartan.hamla.org> Date: Sun, 24 Oct 2010 02:08:26 -0400 (EDT) From: Sahil Tandon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: c0rn@o2.pl Subject: ports/151676: [PATCH] deskutils/treeline: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:10:10 -0000 >Number: 151676 >Category: ports >Synopsis: [PATCH] deskutils/treeline: fix MASTER_SITES:n usage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 06:10:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sahil Tandon >Release: FreeBSD 9.0-CURRENT i386 >Organization: >Environment: >Description: Fix MASTER_SITES:n usage so that the ":n" postfix is added to *all* elements of MASTER_SITE_BERLIOS, not just the final one. To observe the difference, run the following command while inside the port's dir before and after applying the patch: % make -V MASTER_SITES >How-To-Repeat: >Fix: --- treeline.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/deskutils/treeline/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 30 Sep 2010 04:27:12 -0000 1.23 +++ Makefile 24 Oct 2010 06:05:39 -0000 @@ -8,10 +8,10 @@ PORTNAME= treeline PORTVERSION= 1.2.4 CATEGORIES= deskutils python -MASTER_SITES= ${MASTER_SITE_BERLIOS}:treeline \ +MASTER_SITES= ${MASTER_SITE_BERLIOS:S/$/:treeline/} \ http://treeline.bellz.org/plugins/:plugins \ http://depot.fsck.ch/mirror/distfiles/:treeline,plugins -MASTER_SITE_SUBDIR=treeline +MASTER_SITE_SUBDIR=treeline/:treeline DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:treeline EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} --- treeline.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 06:10:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 100D9106566B; Sun, 24 Oct 2010 06:10:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DA8438FC18; Sun, 24 Oct 2010 06:10:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O6AGbV023391; Sun, 24 Oct 2010 06:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O6AGHG023379; Sun, 24 Oct 2010 06:10:16 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 06:10:16 GMT Message-Id: <201010240610.o9O6AGHG023379@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sahil@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151676: [PATCH] deskutils/treeline: fix MASTER_SITES:n usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 06:10:17 -0000 Synopsis: [PATCH] deskutils/treeline: fix MASTER_SITES:n usage Responsible-Changed-From-To: freebsd-ports-bugs->sahil Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 06:10:16 UTC 2010 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151676 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 08:00:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D8781065673 for ; Sun, 24 Oct 2010 08:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3FBB68FC14 for ; Sun, 24 Oct 2010 08:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O80HXc060808 for ; Sun, 24 Oct 2010 08:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O80HKb060807; Sun, 24 Oct 2010 08:00:17 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 08:00:17 GMT Resent-Message-Id: <201010240800.o9O80HKb060807@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nicole Reid Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62AE61065674 for ; Sun, 24 Oct 2010 07:59:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 36C718FC08 for ; Sun, 24 Oct 2010 07:59:36 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9O7xZ8I046945 for ; Sun, 24 Oct 2010 07:59:35 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9O7xZqI046944; Sun, 24 Oct 2010 07:59:35 GMT (envelope-from nobody) Message-Id: <201010240759.o9O7xZqI046944@www.freebsd.org> Date: Sun, 24 Oct 2010 07:59:35 GMT From: Nicole Reid To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151677: [audio/cuetools] Fix filename handling for extras/cuetag.sh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 08:00:17 -0000 >Number: 151677 >Category: ports >Synopsis: [audio/cuetools] Fix filename handling for extras/cuetag.sh >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 08:00:16 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Nicole Reid >Release: >Organization: >Environment: >Description: The extras/cuetag.sh script in this port doesn't escape filenames properly. There's an open bug for this on the project tracker (http://developer.berlios.de/bugs/?func=detailbug&bug_id=10401&group_id=2130) untouched for nearly four years, so a patch here in Ports is probably the only way we'll see a fix, as evidenced by the existing patch chasing a FLAC command syntax change. Also touch up a typo while we're here :) >How-To-Repeat: Try to run /usr/local/share/examples/cuetools/cuetag.sh on any cue sheet with a spaced file name. >Fix: --- cuetools.orig/files/patch-extras_cuetag.sh 2010-10-24 03:16:03.895004790 -0400 +++ cuetools/files/patch-extras_cuetag.sh 2010-10-24 03:20:58.637410871 -0400 @@ -1,5 +1,5 @@ ---- extras/cuetag.sh.orig 2008-11-28 00:41:26.000000000 +0300 -+++ extras/cuetag.sh 2008-11-28 00:41:32.000000000 +0300 +--- extras/cuetag.sh.orig 2006-02-14 19:10:02.000000000 -0500 ++++ extras/cuetag.sh 2010-10-24 03:20:01.349578391 -0400 @@ -18,7 +18,7 @@ { # FLAC tagging @@ -9,3 +9,47 @@ # Ogg Vorbis tagging # -w overwrites existing comments +@@ -63,7 +63,7 @@ + (for field in $fields; do + value="" + for conv in `eval echo \\$$field`; do +- value=`$CUEPRINT -n $1 -t "$conv\n" $cue_file` ++ value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"` + + if [ -n "$value" ]; then + echo "$field=$value" +@@ -96,7 +96,7 @@ + for field in $fields; do + value="" + for conv in `eval echo \\$$field`; do +- value=`$CUEPRINT -n $1 -t "$conv\n" $cue_file` ++ value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"` + + if [ -n "$value" ]; then + break +@@ -141,14 +141,14 @@ + cue_file=$1 + shift + +- ntrack=`cueprint -d '%N' $cue_file` ++ ntrack=`cueprint -d '%N' "$cue_file"` + trackno=1 + + if [ $# -ne $ntrack ]; then + echo "warning: number of files does not match number of tracks" + fi + +- for file in $@; do ++ for file in "$@"; do + case $file in + *.[Ff][Ll][Aa][Cc]) + vorbis $trackno "$file" +@@ -160,7 +160,7 @@ + id3 $trackno "$file" + ;; + *) +- echo "$file: uknown file type" ++ echo "$file: unknown file type" + ;; + esac + trackno=$(($trackno + 1)) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 08:00:27 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A4E8106566B; Sun, 24 Oct 2010 08:00:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 006048FC12; Sun, 24 Oct 2010 08:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O80QDk062246; Sun, 24 Oct 2010 08:00:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O80Q43062227; Sun, 24 Oct 2010 08:00:26 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 08:00:26 GMT Message-Id: <201010240800.o9O80Q43062227@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stas@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151677: [audio/cuetools] Fix filename handling for extras/cuetag.sh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 08:00:27 -0000 Synopsis: [audio/cuetools] Fix filename handling for extras/cuetag.sh Responsible-Changed-From-To: freebsd-ports-bugs->stas Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 08:00:25 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151677 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 08:20:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 485E71065675 for ; Sun, 24 Oct 2010 08:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C5368FC12 for ; Sun, 24 Oct 2010 08:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O8K9JR086169 for ; Sun, 24 Oct 2010 08:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O8K9tb086168; Sun, 24 Oct 2010 08:20:09 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 08:20:09 GMT Resent-Message-Id: <201010240820.o9O8K9tb086168@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mikolaj Golub Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A19E1065670 for ; Sun, 24 Oct 2010 08:13:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 22B588FC19 for ; Sun, 24 Oct 2010 08:13:00 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9O8CxRk061246 for ; Sun, 24 Oct 2010 08:12:59 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9O8CxeD061245; Sun, 24 Oct 2010 08:12:59 GMT (envelope-from nobody) Message-Id: <201010240812.o9O8CxeD061245@www.freebsd.org> Date: Sun, 24 Oct 2010 08:12:59 GMT From: Mikolaj Golub To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151678: Update port: sysutils/gather X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 08:20:10 -0000 >Number: 151678 >Category: ports >Synopsis: Update port: sysutils/gather >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 08:20:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Mikolaj Golub >Release: >Organization: >Environment: >Description: Update to 0.4.0. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -rNu sysutils/gather.0.3/Makefile sysutils/gather/Makefile --- sysutils/gather.0.3/Makefile 2010-10-24 10:57:57.000000000 +0300 +++ sysutils/gather/Makefile 2010-10-24 10:58:45.000000000 +0300 @@ -6,7 +6,7 @@ # PORTNAME= gather -PORTVERSION= 0.3 +PORTVERSION= 0.4.0 CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE diff -rNu sysutils/gather.0.3/distinfo sysutils/gather/distinfo --- sysutils/gather.0.3/distinfo 2010-10-24 10:57:57.000000000 +0300 +++ sysutils/gather/distinfo 2010-10-24 10:59:04.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (gather-0.3.tar.gz) = 3a599727542fbf8dc741e7211eb262dd -SHA256 (gather-0.3.tar.gz) = 184991f065ae390243b87cff4708f935fbb447a31e6a0e7e620c1a929882655c -SIZE (gather-0.3.tar.gz) = 13235 +MD5 (gather-0.4.0.tar.gz) = c63a53239e8e6967ec32ef4466fe959d +SHA256 (gather-0.4.0.tar.gz) = 1b457126271331c97a7b3ce172c1a31820c1e7df757e2292787a93dae0b31425 +SIZE (gather-0.4.0.tar.gz) = 13950 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 09:32:04 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C2BE1065670; Sun, 24 Oct 2010 09:32:04 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 61FFB8FC19; Sun, 24 Oct 2010 09:32:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O9W4kG069093; Sun, 24 Oct 2010 09:32:04 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O9W4fg069089; Sun, 24 Oct 2010 09:32:04 GMT (envelope-from rene) Date: Sun, 24 Oct 2010 09:32:04 GMT Message-Id: <201010240932.o9O9W4fg069089@freefall.freebsd.org> To: lumiwa@gmail.com, rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151577: games/pokerth: outdated X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 09:32:04 -0000 Synopsis: games/pokerth: outdated State-Changed-From-To: open->closed State-Changed-By: rene State-Changed-When: Sun Oct 24 09:31:40 UTC 2010 State-Changed-Why: Duplicate of ports/151020 http://www.freebsd.org/cgi/query-pr.cgi?pr=151577 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 09:40:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A14F11065696 for ; Sun, 24 Oct 2010 09:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7A7748FC13 for ; Sun, 24 Oct 2010 09:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9O9e8ki069233 for ; Sun, 24 Oct 2010 09:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9O9e84c069232; Sun, 24 Oct 2010 09:40:08 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 09:40:08 GMT Resent-Message-Id: <201010240940.o9O9e84c069232@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Peter Johnson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24B0D106564A for ; Sun, 24 Oct 2010 09:34:15 +0000 (UTC) (envelope-from peter@tortall.net) Received: from narya.tortall.net (cvs.tortall.net [69.55.238.110]) by mx1.freebsd.org (Postfix) with ESMTP id 09B9C8FC25 for ; Sun, 24 Oct 2010 09:34:14 +0000 (UTC) Received: from narya.tortall.net (cvs.tortall.net [69.55.238.110]) by narya.tortall.net (Postfix) with ESMTP id A8B42FD040 for ; Sun, 24 Oct 2010 02:15:50 -0700 (PDT) Received: from narya.tortall.net ([69.55.238.110]) by narya.tortall.net (narya.tortall.net [69.55.238.110]) (amavisd-new, port 10024) with ESMTP id mDDq1HxyvDPp for ; Sun, 24 Oct 2010 02:15:49 -0700 (PDT) Received: by narya.tortall.net (Postfix, from userid 1000) id 13C7FFD048; Sun, 24 Oct 2010 02:15:49 -0700 (PDT) Message-Id: <20101024091549.13C7FFD048@narya.tortall.net> Date: Sun, 24 Oct 2010 02:15:49 -0700 (PDT) From: Peter Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151679: [NEW PORT] multimedia/mkclean: Clean and optimize Matroska and WebM files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 09:40:08 -0000 >Number: 151679 >Category: ports >Synopsis: [NEW PORT] multimedia/mkclean: Clean and optimize Matroska and WebM files >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 09:40:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Peter Johnson >Release: FreeBSD 8.0-STABLE amd64 >Organization: >Environment: System: FreeBSD 8.0-STABLE FreeBSD 8.0-STABLE #4: Fri Jan 15 01:18:32 PST 2010 >Description: mkclean is a command line tool to clean and optimize Matroska (.mkv / .mka / .mks) and WebM (.webm / .weba) files that have already been muxed. It reorders the elements with the Cues at the front, so your Matroska files are ready to be streamed efficiently over the web. It also removes elements not found in the Matroska specs and the extra Meta Seek list of Clusters that some program add to their file. It can also optionally remux the Cluster blocks to start each boundary with a keyframe and the matching audio/subtitle blocks for that keyframe. Also comes with mkWDclean to modify files in a way they can play in broken/incomplete players. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- mkclean-0.6.0.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mkclean # mkclean/files # mkclean/files/patch-file_libc.c # mkclean/files/patch-root.proj # mkclean/distinfo # mkclean/pkg-descr # mkclean/Makefile # echo c - mkclean mkdir -p mkclean > /dev/null 2>&1 echo c - mkclean/files mkdir -p mkclean/files > /dev/null 2>&1 echo x - mkclean/files/patch-file_libc.c sed 's/^X//' >mkclean/files/patch-file_libc.c << '5e2624ea95d583588a3001f864dedfae' X--- corec/helpers/file/file_libc.c.orig 2010-09-26 04:42:30.000000000 -0700 X+++ corec/helpers/file/file_libc.c 2010-10-24 01:44:37.000000000 -0700 X@@ -40,7 +40,7 @@ X #include X #include X #include X-#if defined(TARGET_OSX) X+#if defined(TARGET_OSX) || defined(__FreeBSD__) X #include X #else X #include 5e2624ea95d583588a3001f864dedfae echo x - mkclean/files/patch-root.proj sed 's/^X//' >mkclean/files/patch-root.proj << 'ec0d4310fa73d34647d2a72162b24318' X--- root.proj.orig 2010-09-26 04:42:30.000000000 -0700 X+++ root.proj 2010-10-24 01:48:34.000000000 -0700 X@@ -12,6 +12,7 @@ X USE matroska2 X USE mkvtests X USE mkclean X+ USE mkWDclean X USE mkvalidator X } X ec0d4310fa73d34647d2a72162b24318 echo x - mkclean/distinfo sed 's/^X//' >mkclean/distinfo << '3d6717996a36c4e930a64aa9936051a8' XMD5 (mkclean-0.6.0.tar.bz2) = 94489f21d4ae85f9c6ee9f70df32b73b XSHA256 (mkclean-0.6.0.tar.bz2) = 098f7a44c5aafde4a99d64dfccffb4404dc354874693acd05314d6a8c3c23245 XSIZE (mkclean-0.6.0.tar.bz2) = 718736 3d6717996a36c4e930a64aa9936051a8 echo x - mkclean/pkg-descr sed 's/^X//' >mkclean/pkg-descr << '1fbc6a1ead144c47cb3bfc5a9957d7cd' Xmkclean is a command line tool to clean and optimize Matroska (.mkv / .mka / X.mks) and WebM (.webm / .weba) files that have already been muxed. It reorders Xthe elements with the Cues at the front, so your Matroska files are ready to be Xstreamed efficiently over the web. It also removes elements not found in the XMatroska specs and the extra Meta Seek list of Clusters that some program add Xto their file. It can also optionally remux the Cluster blocks to start each Xboundary with a keyframe and the matching audio/subtitle blocks for that Xkeyframe. X XAlso comes with mkWDclean to modify files in a way they can play in Xbroken/incomplete players. 1fbc6a1ead144c47cb3bfc5a9957d7cd echo x - mkclean/Makefile sed 's/^X//' >mkclean/Makefile << '9559f78d4b1e5a5a0418c576769de662' X# New ports collection makefile for: mkclean X# Date created: 2010-10-24 X# Whom: Peter Johnson X# X# $FreeBSD$ X# X XPORTNAME= mkclean XPORTVERSION= 0.6.0 XCATEGORIES= multimedia XMASTER_SITES= SF/matroska/${PORTNAME} X XMAINTAINER= johnson.peter@gmail.com XCOMMENT= Clean and optimize Matroska and WebM files X XUSE_BZIP2= yes XUSE_ICONV= yes XUSE_GMAKE= yes X XHAS_CONFIGURE= yes XMAKE_ENV+= CCFLAGS="-I${LOCALBASE}/include" \ X LFLAGS="-L${LOCALBASE}/lib -liconv" X XMAKEFILE= GNUmakefile X XPLIST_FILES= bin/mkclean bin/mkWDclean bin/mkvtree X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/release/*/mkclean ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/release/*/mkWDclean ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/release/*/mkvtree ${PREFIX}/bin X X.include 9559f78d4b1e5a5a0418c576769de662 exit --- mkclean-0.6.0.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 10:00:22 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 026FC1065670 for ; Sun, 24 Oct 2010 10:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B91BD8FC13 for ; Sun, 24 Oct 2010 10:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OA0LnE087915 for ; Sun, 24 Oct 2010 10:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OA0L9Y087902; Sun, 24 Oct 2010 10:00:21 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 10:00:21 GMT Resent-Message-Id: <201010241000.o9OA0L9Y087902@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Ross Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F8A0106566C for ; Sun, 24 Oct 2010 09:54:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 573A98FC12 for ; Sun, 24 Oct 2010 09:54:52 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9O9spxx049885 for ; Sun, 24 Oct 2010 09:54:51 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9O9spjk049884; Sun, 24 Oct 2010 09:54:51 GMT (envelope-from nobody) Message-Id: <201010240954.o9O9spjk049884@www.freebsd.org> Date: Sun, 24 Oct 2010 09:54:51 GMT From: Michael Ross To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151680: eAccelerator Makefile glitch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 10:00:22 -0000 >Number: 151680 >Category: ports >Synopsis: eAccelerator Makefile glitch >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 10:00:21 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Michael Ross >Release: RELENG_8 >Organization: >Environment: FreeBSD gurder.ross.cx 8.1-STABLE FreeBSD 8.1-STABLE #1: Mon Sep 20 23:34:09 CEST 2010 amd64 >Description: eAccelerator compiles, but fails to start with: "eAccelerator: shmmax should be at least 2MB", regardless of shmmax sysctl value/shmmax config value. >How-To-Repeat: >Fix: Change in Makefile: CONFIGURE_ARGS= --enable-eaccelerator=shared\ to CONFIGURE_ARGS= --with-eaccelerator-shared-memory\ as per http://www.eaccelerator.net/wiki/CompileConfiguration fixes this error. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 10:57:56 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84152106564A; Sun, 24 Oct 2010 10:57:56 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5A6528FC0C; Sun, 24 Oct 2010 10:57:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OAvuso050654; Sun, 24 Oct 2010 10:57:56 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OAvuOG050650; Sun, 24 Oct 2010 10:57:56 GMT (envelope-from rene) Date: Sun, 24 Oct 2010 10:57:56 GMT Message-Id: <201010241057.o9OAvuOG050650@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/139553: net-p2p/tribler: Fatal Error on start up X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 10:57:56 -0000 Synopsis: net-p2p/tribler: Fatal Error on start up Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Sun Oct 24 10:57:28 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=139553 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:10:51 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 903B51065672; Sun, 24 Oct 2010 11:10:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 65B1A8FC17; Sun, 24 Oct 2010 11:10:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBApt5068278; Sun, 24 Oct 2010 11:10:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBAprE068268; Sun, 24 Oct 2010 11:10:51 GMT (envelope-from linimon) Date: Sun, 24 Oct 2010 11:10:51 GMT Message-Id: <201010241110.o9OBAprE068268@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skreuzer@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151644: p5-FastCGI port not installed as part of www/rt38 installation. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:10:51 -0000 Old Synopsis: p5-FastCGI port not installed as part of rt38 installation. New Synopsis: p5-FastCGI port not installed as part of www/rt38 installation. Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 24 11:10:07 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=151644 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:11:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66008106566C; Sun, 24 Oct 2010 11:11:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3B9798FC15; Sun, 24 Oct 2010 11:11:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBBJ2Q072116; Sun, 24 Oct 2010 11:11:19 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBBJu3072105; Sun, 24 Oct 2010 11:11:19 GMT (envelope-from linimon) Date: Sun, 24 Oct 2010 11:11:19 GMT Message-Id: <201010241111.o9OBBJu3072105@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skrezuer@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151645: Move mason_handler.fcgi and webmux.pl inside www/rt38 directory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:11:19 -0000 Old Synopsis: Move mason_handler.fcgi and webmux.pl inside rt38 directory New Synopsis: Move mason_handler.fcgi and webmux.pl inside www/rt38 directory Responsible-Changed-From-To: freebsd-ports-bugs->skrezuer Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 24 11:11:02 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=151645 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:12:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D923A1065670; Sun, 24 Oct 2010 11:12:23 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AF5748FC26; Sun, 24 Oct 2010 11:12:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBCNuI072464; Sun, 24 Oct 2010 11:12:23 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBCN3G072460; Sun, 24 Oct 2010 11:12:23 GMT (envelope-from linimon) Date: Sun, 24 Oct 2010 11:12:23 GMT Message-Id: <201010241112.o9OBCN3G072460@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, avl@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151653: build/install of security/libssh fails to install a static version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:12:23 -0000 Old Synopsis: build/install of libssh fails to install a static version New Synopsis: build/install of security/libssh fails to install a static version Responsible-Changed-From-To: freebsd-ports-bugs->avl Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 24 11:11:51 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=151653 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:18:32 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A02B106566B; Sun, 24 Oct 2010 11:18:32 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E49FE8FC0A; Sun, 24 Oct 2010 11:18:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBIVbd073816; Sun, 24 Oct 2010 11:18:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBIVsX073812; Sun, 24 Oct 2010 11:18:31 GMT (envelope-from linimon) Date: Sun, 24 Oct 2010 11:18:31 GMT Message-Id: <201010241118.o9OBIVsX073812@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151680: www/eaccelerator Makefile glitch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:18:32 -0000 Old Synopsis: eAccelerator Makefile glitch New Synopsis: www/eaccelerator Makefile glitch Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 24 11:17:58 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=151680 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:29:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48D79106564A; Sun, 24 Oct 2010 11:29:17 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D8F08FC0A; Sun, 24 Oct 2010 11:29:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBTHD9083183; Sun, 24 Oct 2010 11:29:17 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBTGC8083179; Sun, 24 Oct 2010 11:29:16 GMT (envelope-from linimon) Date: Sun, 24 Oct 2010 11:29:16 GMT Message-Id: <201010241129.o9OBTGC8083179@freefall.freebsd.org> To: ohauer@FreeBSD.org, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151634: Re: [new port] databases/jasperserver: Open Source Java Reporting Library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:29:17 -0000 Old Synopsis: Re: [new port] databases/jasperserver: Open Source Java Reporting New Synopsis: Re: [new port] databases/jasperserver: Open Source Java Reporting Library State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Oct 24 11:28:28 UTC 2010 State-Changed-Why: Misfiled followup to ports/150208; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 24 11:28:28 UTC 2010 Responsible-Changed-Why: Misfiled followup to ports/150208; content migrated. http://www.freebsd.org/cgi/query-pr.cgi?pr=151634 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:32:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C94F106566B; Sun, 24 Oct 2010 11:32:16 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 61C528FC16; Sun, 24 Oct 2010 11:32:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBWGu2093671; Sun, 24 Oct 2010 11:32:16 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBWGkZ093667; Sun, 24 Oct 2010 11:32:16 GMT (envelope-from linimon) Date: Sun, 24 Oct 2010 11:32:16 GMT Message-Id: <201010241132.o9OBWGkZ093667@freefall.freebsd.org> To: timur@FreeBSD.org, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151621: Re: [repocopy] net/samba34 to net/samba35 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:32:16 -0000 Synopsis: Re: [repocopy] net/samba34 to net/samba35 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Oct 24 11:31:22 UTC 2010 State-Changed-Why: Misfiled followup to ports/151619, already committed. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 24 11:31:22 UTC 2010 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=151621 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:38:54 2010 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F6901065674; Sun, 24 Oct 2010 11:38:54 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 488F38FC16; Sun, 24 Oct 2010 11:38:54 +0000 (UTC) Received: by iwn39 with SMTP id 39so2946704iwn.13 for ; Sun, 24 Oct 2010 04:38:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:user-agent :date:message-id:mime-version:content-type; bh=y7if1+OggoRGOZ3HqfC8IpOJYKE6h2P9CRU/I74Rnv0=; b=LBu4pi1LtNiusVO+Yw3Cu26IRPk6msTvOfjOj3eWaOeEh4phL0P7EJ9cs68pKtJ7b2 KufigIUSXSFW3CR7pTU1+STtmrQ9uyE6QSmWK/NjI0IsSX6ujxRyE/wzVv2zSOwimUuR y/+m2Q4l9ghW7B38qG1/ko47QISNUyQ2M98YI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:user-agent:date:message-id:mime-version :content-type; b=tlBGZ1oNhu8YjL8T7VQM4ALzYoCFnpWNiV1t+ibHgYCdR+yneVIS2tw7FzJwAmy7sT gsbp8trFACirXUY2Jq1hZ56xpAZTtdsorYN1BTFHjC8wDkJNSul9nWR3lZFIKHOincnY Q0z8Jk3VZZWYgBBjb9/Kwwr8mlGC6nhDFcmLQ= Received: by 10.231.85.138 with SMTP id o10mr686801ibl.165.1287920333249; Sun, 24 Oct 2010 04:38:53 -0700 (PDT) Received: from localhost (tor-exit-proxy5-readme.formlessnetworking.net [208.53.142.41]) by mx.google.com with ESMTPS id u6sm6378050ibd.0.2010.10.24.04.38.50 (version=SSLv3 cipher=RC4-MD5); Sun, 24 Oct 2010 04:38:52 -0700 (PDT) From: Anonymous To: FreeBSD-gnats-submit@freebsd.org User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) Date: Sun, 24 Oct 2010 15:38:45 +0400 Message-ID: <86d3qz95x6.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-ports-bugs@freebsd.org Subject: [patch] bsd.cl-asdf.mk: add LISP_EXTRA_ARG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:38:54 -0000 >Submitter-Id: current-users >Originator: Anonymous >Organization: >Confidential: no >Synopsis: [patch] bsd.cl-asdf.mk: add LISP_EXTRA_ARG >Severity: non-critical >Priority: low >Responsible: olgeni >Category: ports >Class: change-request >Release: FreeBSD 9.0-CURRENT amd64 >Environment: >Description: Provide a way to specify extra command line options to lisp compiler for FASL_BUILD ports without touching CLISP/SBCL variables. The variable name comes from lang/sbcl. For example, lang/clisp doesn't support `sys::dynload-modules' because it has --with-dynamic-modules=no. To compile cl-stumpwm-clisp (ports/151318) one'd have to add following in Makefile LISP_EXTRA_ARG = -K full # in specific, full/clx.o >How-To-Repeat: >Fix: --- a.diff begins here --- Index: devel/cl-asdf/bsd.cl-asdf.mk =================================================================== RCS file: /a/.cvsup/ports/devel/cl-asdf/bsd.cl-asdf.mk,v retrieving revision 1.5 diff -u -p -r1.5 bsd.cl-asdf.mk --- devel/cl-asdf/bsd.cl-asdf.mk 19 Oct 2010 20:11:34 -0000 1.5 +++ devel/cl-asdf/bsd.cl-asdf.mk 24 Oct 2010 11:38:09 -0000 @@ -4,6 +4,7 @@ # # SBCL - Path to the Steel Bank Common Lisp compiler # CLISP - Path to the GNU Common Lisp compiler +# LISP_EXTRA_ARG - Extra arguments for compiler used by FASL_BUILD ports # CL_LIBDIR_REL - Common Lisp library directory, relative to LOCALBASE or PREFIX # ASDF_PATHNAME - Where to install compiled FASL files (depends on FASL_DIR_REL) # ASDF_REGISTRY - Path to ASDF registry @@ -86,7 +87,7 @@ do-build: .if defined(USE_SBCL) @FBSD_ASDF_COMPILE_PORT=t PORTNAME=${PORTNAME} WRKSRC=${WRKSRC}/ \ - ${SBCL} --noinform --userinit /dev/null --disable-debugger \ + ${SBCL} ${LISP_EXTRA_ARG} --noinform --userinit /dev/null --disable-debugger \ --eval '#.(load "${LOCALBASE}/etc/asdf-init")' \ --eval "(asdf:oos 'asdf:compile-op :${MODULE})" \ --eval "(quit)" @@ -94,7 +95,7 @@ do-build: .if defined(USE_CLISP) @FBSD_ASDF_COMPILE_PORT=t PORTNAME=${PORTNAME} WRKSRC=${WRKSRC}/ \ - ${CLISP} -ansi -norc \ + ${CLISP} ${LISP_EXTRA_ARG} -ansi -norc \ -i ${LOCALBASE}/etc/asdf-init \ -x "(asdf:oos 'asdf:compile-op :${MODULE})" @${FIND} ${WRKSRC} -name "*.lib" | ${XARGS} ${RM} --- a.diff ends here --- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:40:04 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D1C51065672; Sun, 24 Oct 2010 11:40:04 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 519B88FC1B; Sun, 24 Oct 2010 11:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBe4FT096574; Sun, 24 Oct 2010 11:40:04 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBe39t096570; Sun, 24 Oct 2010 11:40:03 GMT (envelope-from linimon) Date: Sun, 24 Oct 2010 11:40:03 GMT Message-Id: <201010241140.o9OBe39t096570@freefall.freebsd.org> To: lightside@safebox.ru, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151422: Re: ports/151381: Port (games/sauerbraten) update to new version with needed changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:40:04 -0000 Old Synopsis: =?Windows-1251?Q?Re:_Re:_ports/151381:_Port_(games/sauerbraten)_?= New Synopsis: Re: ports/151381: Port (games/sauerbraten) update to new version with needed changes State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Oct 24 11:38:50 UTC 2010 State-Changed-Why: Misfiled followup to ports/151381; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 24 11:38:50 UTC 2010 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=151422 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:41:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4A921065675; Sun, 24 Oct 2010 11:41:23 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 796498FC0A; Sun, 24 Oct 2010 11:41:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBfNwx005877; Sun, 24 Oct 2010 11:41:23 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBfNnO005873; Sun, 24 Oct 2010 11:41:23 GMT (envelope-from linimon) Date: Sun, 24 Oct 2010 11:41:23 GMT Message-Id: <201010241141.o9OBfNnO005873@freefall.freebsd.org> To: lightside@safebox.ru, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151423: Re: ports/151381: Port (games/sauerbraten) update to new version with needed changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:41:23 -0000 Old Synopsis: =?Windows-1251?Q?Re:_ports/151381:_Port_(games/sauerbraten)?= =?Windows-1251?Q?_update_to_new_version_with_needed?= =?Windows-1251?Q?_changes?= New Synopsis: Re: ports/151381: Port (games/sauerbraten) update to new version with needed changes State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Oct 24 11:38:50 UTC 2010 State-Changed-Why: Misfiled followup to ports/151381; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 24 11:38:50 UTC 2010 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=151423 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:50:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 500CC1065675 for ; Sun, 24 Oct 2010 11:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1177B8FC13 for ; Sun, 24 Oct 2010 11:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBo6F5006171 for ; Sun, 24 Oct 2010 11:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBo6d7006170; Sun, 24 Oct 2010 11:50:06 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 11:50:06 GMT Resent-Message-Id: <201010241150.o9OBo6d7006170@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Herbert J. Skuhra" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E648106566C for ; Sun, 24 Oct 2010 11:47:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 5C2658FC16 for ; Sun, 24 Oct 2010 11:47:36 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9OBlaXF064520 for ; Sun, 24 Oct 2010 11:47:36 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9OBlabO064519; Sun, 24 Oct 2010 11:47:36 GMT (envelope-from nobody) Message-Id: <201010241147.o9OBlabO064519@www.freebsd.org> Date: Sun, 24 Oct 2010 11:47:36 GMT From: "Herbert J. Skuhra" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151683: [Patch] Unbreak sysutils/aimage by updating to version 3.2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:50:07 -0000 >Number: 151683 >Category: ports >Synopsis: [Patch] Unbreak sysutils/aimage by updating to version 3.2.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 11:50:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Herbert J. Skuhra >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: FreeBSD oslo.ath.cx 8.1-STABLE FreeBSD 8.1-STABLE #0: Fri Sep 24 21:12:01 CEST 2010 herbert@oslo.ath.cx:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The attached patch updates sysutils/aimage to version 3.2.4. This version builds fine with current version of afflib from ports. I have removed "USE_AUTOTOOLS" and post-patch lines, because port builds fine without them (at least on releng_7 and releng_8). >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ru sysutils/aimage.orig/Makefile sysutils/aimage/Makefile --- sysutils/aimage.orig/Makefile 2010-10-24 13:06:50.000000000 +0200 +++ sysutils/aimage/Makefile 2010-10-24 13:11:55.000000000 +0200 @@ -6,8 +6,7 @@ # PORTNAME= aimage -PORTVERSION= 3.2.1 -PORTREVISION= 1 +PORTVERSION= 3.2.4 CATEGORIES= sysutils MASTER_SITES= http://afflib.org/downloads/ @@ -16,16 +15,10 @@ LIB_DEPENDS= afflib:${PORTSDIR}/sysutils/afflib -BROKEN= does not compile - USE_OPENSSL= yes USE_GMAKE= yes GNU_CONFIGURE= yes -USE_AUTOTOOLS= autoconf:268 PLIST_FILES= bin/aimage -post-patch: - @${REINPLACE_CMD} -e 's|2.61|2.68|g' ${WRKSRC}/aclocal.m4 - .include diff -ru sysutils/aimage.orig/distinfo sysutils/aimage/distinfo --- sysutils/aimage.orig/distinfo 2010-10-24 13:06:50.000000000 +0200 +++ sysutils/aimage/distinfo 2010-10-24 13:09:54.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (aimage-3.2.1.tar.gz) = 0afd3376fe2c8dd8e43571282505a9fb -SHA256 (aimage-3.2.1.tar.gz) = b647291ae743327ab8d351f5a1d3cdc494bc527d652f08c60b996ec7d6d307a5 -SIZE (aimage-3.2.1.tar.gz) = 342270 +MD5 (aimage-3.2.4.tar.gz) = bb6e4e91524612570a481b6470fe7cd1 +SHA256 (aimage-3.2.4.tar.gz) = 443a98f8820e86504d0036e0075d4a8324d01acc6451c529a2f381cffc23b7b4 +SIZE (aimage-3.2.4.tar.gz) = 144764 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:57:38 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE7B11065743; Sun, 24 Oct 2010 11:57:38 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A3A998FC0C; Sun, 24 Oct 2010 11:57:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBvc0O015436; Sun, 24 Oct 2010 11:57:38 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBvcSh015432; Sun, 24 Oct 2010 11:57:38 GMT (envelope-from rene) Date: Sun, 24 Oct 2010 11:57:38 GMT Message-Id: <201010241157.o9OBvcSh015432@freefall.freebsd.org> To: ayu@commun.jp, upiter77@lycos.com, rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/150169: www/havp: Assertion failed: file llvm/lib/System/Mutex.cpp, line 76. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:57:38 -0000 Synopsis: www/havp: Assertion failed: file llvm/lib/System/Mutex.cpp, line 76. State-Changed-From-To: feedback->open State-Changed-By: rene State-Changed-When: Sun Oct 24 11:57:14 UTC 2010 State-Changed-Why: Properly return to pool http://www.freebsd.org/cgi/query-pr.cgi?pr=150169 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 11:58:46 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 608BA106566C; Sun, 24 Oct 2010 11:58:46 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 35A7C8FC15; Sun, 24 Oct 2010 11:58:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OBwkoM015493; Sun, 24 Oct 2010 11:58:46 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OBwkOH015489; Sun, 24 Oct 2010 11:58:46 GMT (envelope-from rene) Date: Sun, 24 Oct 2010 11:58:46 GMT Message-Id: <201010241158.o9OBwkOH015489@freefall.freebsd.org> To: ayu@commun.jp, upiter77@lycos.com, rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/150169: www/havp: Assertion failed: file llvm/lib/System/Mutex.cpp, line 76. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 11:58:46 -0000 Synopsis: www/havp: Assertion failed: file llvm/lib/System/Mutex.cpp, line 76. State-Changed-From-To: open->feedback State-Changed-By: rene State-Changed-When: Sun Oct 24 11:58:02 UTC 2010 State-Changed-Why: Should be in feedback status still. http://www.freebsd.org/cgi/query-pr.cgi?pr=150169 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 12:22:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C949E106566B; Sun, 24 Oct 2010 12:22:14 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F3DC8FC12; Sun, 24 Oct 2010 12:22:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OCMEeH047736; Sun, 24 Oct 2010 12:22:14 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OCMEbt047732; Sun, 24 Oct 2010 12:22:14 GMT (envelope-from rene) Date: Sun, 24 Oct 2010 12:22:14 GMT Message-Id: <201010241222.o9OCMEbt047732@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151162: sysutils/gdisk needs to be updated to 0.6.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 12:22:14 -0000 Synopsis: sysutils/gdisk needs to be updated to 0.6.11 Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Sun Oct 24 12:21:44 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151162 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 12:50:03 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94263106564A for ; Sun, 24 Oct 2010 12:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 67B6A8FC08 for ; Sun, 24 Oct 2010 12:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OCo3WC069202 for ; Sun, 24 Oct 2010 12:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OCo3wh069201; Sun, 24 Oct 2010 12:50:03 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 12:50:03 GMT Message-Id: <201010241250.o9OCo3wh069201@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Herbert J. Skuhra" Cc: Subject: Re: ports/151683: [Patch] Unbreak sysutils/aimage by updating to version 3.2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Herbert J. Skuhra" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 12:50:03 -0000 The following reply was made to PR ports/151683; it has been noted by GNATS. From: "Herbert J. Skuhra" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151683: [Patch] Unbreak sysutils/aimage by updating to version 3.2.4 Date: Sun, 24 Oct 2010 14:18:30 +0200 Hi! I forgot to add that the port builds without "files/patch-src-imager.cpp", so I think this file can be removed. -Herbert From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 13:11:55 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAA13106564A; Sun, 24 Oct 2010 13:11:55 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A0D738FC13; Sun, 24 Oct 2010 13:11:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ODBtPV000145; Sun, 24 Oct 2010 13:11:55 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9ODBtem000141; Sun, 24 Oct 2010 13:11:55 GMT (envelope-from rene) Date: Sun, 24 Oct 2010 13:11:55 GMT Message-Id: <201010241311.o9ODBtem000141@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151429: update databaes/slony1 to latest X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 13:11:55 -0000 Synopsis: update databaes/slony1 to latest Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Sun Oct 24 13:11:41 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151429 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 14:00:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D0381065673 for ; Sun, 24 Oct 2010 14:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F133A8FC13 for ; Sun, 24 Oct 2010 14:00:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OE0Inb040034 for ; Sun, 24 Oct 2010 14:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OE0IBu040020; Sun, 24 Oct 2010 14:00:18 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 14:00:18 GMT Resent-Message-Id: <201010241400.o9OE0IBu040020@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Beat Gätzi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1407D1065673 for ; Sun, 24 Oct 2010 13:57:03 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from marvin.chruetertee.ch (marvin.chruetertee.ch [217.150.245.55]) by mx1.freebsd.org (Postfix) with ESMTP id A2A0A8FC1F for ; Sun, 24 Oct 2010 13:57:02 +0000 (UTC) Received: from _HOSTNAME_ (205-7.77-83.cust.bluewin.ch [83.77.7.205]) (authenticated bits=0) by marvin.chruetertee.ch (8.14.3/8.14.3) with ESMTP id o9ODYZhA071484 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Sun, 24 Oct 2010 13:34:35 GMT (envelope-from beat@FreeBSD.org) Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sun, 24 Oct 2010 15:34:33 +0200 Message-Id: <201010241334.o9ODYZhA071484@marvin.chruetertee.ch> Date: Sun, 24 Oct 2010 15:34:33 +0200 From: Beat Gätzi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151684: [PATCH] japanese/mozilla-jlp: Mark DEPRECATED X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Beat Gätzi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 14:00:19 -0000 >Number: 151684 >Category: ports >Synopsis: [PATCH] japanese/mozilla-jlp: Mark DEPRECATED >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 14:00:18 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Beat Gätzi >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD daedalus.network.local 8.1-RELEASE FreeBSD 8.1-RELEASE #18 r210472M: Sun Jul 25 19:44:08 CEST 2010 root@daedalus.network.local:/usr/obj/usr/src/sys/BEASTIE i386 >Description: - japanese/mozilla-jlp depends on www/mozilla which is deprecated for many years now. This patch also deprecates mozilla-jlp and set the expiration date to on month. >How-To-Repeat: >Fix: --- mozilla-jlp.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/japanese/mozilla-jlp/Makefile,v retrieving revision 1.78 diff -u -r1.78 Makefile --- Makefile 5 Feb 2010 11:39:52 -0000 1.78 +++ Makefile 24 Oct 2010 13:27:45 -0000 @@ -23,6 +23,8 @@ RUN_DEPENDS= ${MOZILLA}:${PORTSDIR}/www/${MOZILLA} \ ja-alias-fonts>=1.0:${PORTSDIR}/japanese/alias-fonts +DEPRECATED= Depends on obsolete port www/mozilla +EXPIRATION_DATE= 2010-11-24 WRKSRC= ${WRKDIR}/bin USE_ZIP= yes --- mozilla-jlp.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 14:00:28 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFFA7106564A; Sun, 24 Oct 2010 14:00:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 85B4A8FC1A; Sun, 24 Oct 2010 14:00:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OE0SOS042103; Sun, 24 Oct 2010 14:00:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OE0Sdo042075; Sun, 24 Oct 2010 14:00:28 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 14:00:28 GMT Message-Id: <201010241400.o9OE0Sdo042075@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beat@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151684: [PATCH] japanese/mozilla-jlp: Mark DEPRECATED X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 14:00:28 -0000 Synopsis: [PATCH] japanese/mozilla-jlp: Mark DEPRECATED Responsible-Changed-From-To: freebsd-ports-bugs->beat Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 14:00:27 UTC 2010 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151684 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 14:20:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7576E106566C for ; Sun, 24 Oct 2010 14:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 346028FC13 for ; Sun, 24 Oct 2010 14:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OEK9IP063317 for ; Sun, 24 Oct 2010 14:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OEK9Bx063316; Sun, 24 Oct 2010 14:20:09 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 14:20:09 GMT Resent-Message-Id: <201010241420.o9OEK9Bx063316@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Pawel Pekala" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BA151065670 for ; Sun, 24 Oct 2010 14:15:27 +0000 (UTC) (envelope-from c0rn@o2.pl) Received: from moh1-ve1.go2.pl (moh1-ve2.go2.pl [193.17.41.132]) by mx1.freebsd.org (Postfix) with ESMTP id A2B918FC0C for ; Sun, 24 Oct 2010 14:15:26 +0000 (UTC) Received: from moh1-ve1.go2.pl (unknown [10.0.0.132]) by moh1-ve1.go2.pl (Postfix) with ESMTP id F0E485200A0 for ; Sun, 24 Oct 2010 16:15:14 +0200 (CEST) Received: from unknown (unknown [10.0.0.142]) by moh1-ve1.go2.pl (Postfix) with SMTP for ; Sun, 24 Oct 2010 16:15:14 +0200 (CEST) Received: from aecd151.neoplus.adsl.tpnet.pl [79.186.55.151] by poczta.o2.pl with ESMTP id xIQnxA; Sun, 24 Oct 2010 16:15:14 +0200 Message-Id: <1287929856.99815@caprica.slowicza.org> Date: Sun, 24 Oct 2010 16:17:36 +0200 From: "Pawel Pekala" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/151685: [PATCH] games/empire update to 1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 14:20:09 -0000 >Number: 151685 >Category: ports >Synopsis: [PATCH] games/empire update to 1.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 14:20:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD 8.1-RELEASE #2: Sat Aug 21 18:46:54 CEST 2010 corn@caprica.slowicza.org:/usr/obj/usr/src/sys/GENERIC >Description: - update to version 1.8 - add LICENSE info >How-To-Repeat: >Fix: --- empire-1.8.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/empire/Makefile /home/corn/devel/empire/Makefile --- /usr/ports/games/empire/Makefile 2010-05-12 19:00:37.000000000 +0200 +++ /home/corn/devel/empire/Makefile 2010-10-24 16:11:15.000000000 +0200 @@ -6,8 +6,7 @@ # PORTNAME= empire -PORTVERSION= 1.7 -PORTREVISION= 1 +PORTVERSION= 1.8 CATEGORIES= games MASTER_SITES= http://www.catb.org/~esr/vms-empire/ DISTNAME= vms-${PORTNAME}-${PORTVERSION} @@ -15,6 +14,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Solitaire empire game "VMS Empire" +LICENSE= GPLv2 + MAN6= empire.6 PLIST_FILES= bin/empire PORTDOCS= BUGS README @@ -29,7 +30,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/vms-empire ${PREFIX}/bin/empire - ${INSTALL_MAN} ${WRKSRC}/vms-empire.6 ${MANPREFIX}/man/man6/empire.6 + ${INSTALL_MAN} ${WRKSRC}/empire.6 ${MANPREFIX}/man/man6/empire.6 .if !defined(NOPORTDOCS) .for file in BUGS README @${MKDIR} ${DOCSDIR} diff -ruN --exclude=CVS /usr/ports/games/empire/distinfo /home/corn/devel/empire/distinfo --- /usr/ports/games/empire/distinfo 2010-05-12 19:00:37.000000000 +0200 +++ /home/corn/devel/empire/distinfo 2010-10-24 15:44:04.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (vms-empire-1.7.tar.gz) = d458082c1052e63c1700fa5b54d4ef6f -SHA256 (vms-empire-1.7.tar.gz) = 6295d7e6d88c0d6680035b5924c36665d68c4cf62e88bba2228c8d3e7d132d94 -SIZE (vms-empire-1.7.tar.gz) = 84726 +MD5 (vms-empire-1.8.tar.gz) = 705d72358a5d6005538660aaf63eac5e +SHA256 (vms-empire-1.8.tar.gz) = 32712ff7256587b65135a1e6a95de1c83b2cd35784ff6f5fcb22ddd18da293dd +SIZE (vms-empire-1.8.tar.gz) = 89528 diff -ruN --exclude=CVS /usr/ports/games/empire/files/patch-Makefile /home/corn/devel/empire/files/patch-Makefile --- /usr/ports/games/empire/files/patch-Makefile 1970-01-01 01:00:00.000000000 +0100 +++ /home/corn/devel/empire/files/patch-Makefile 2010-10-24 15:50:06.000000000 +0200 @@ -0,0 +1,23 @@ +--- Makefile.orig 2010-10-21 13:29:25.000000000 +0200 ++++ Makefile 2010-10-24 15:49:36.000000000 +0200 +@@ -11,17 +11,17 @@ + # Use -g to compile the program for debugging. + + #DEBUG = -g -DDEBUG -Wall +-DEBUG = -O2 ++#DEBUG = -O2 + + # Use -p to profile the program. + #PROFILE = -p -DPROFILE + PROFILE = + +-LIBS = -lncurses ++LIBS = -lcurses + + # You shouldn't have to modify anything below this line. + +-CFLAGS = $(DEBUG) $(PROFILE) ++CFLAGS+= $(DEBUG) $(PROFILE) + + FILES = \ + attack.c \ diff -ruN --exclude=CVS /usr/ports/games/empire/files/patch-aa /home/corn/devel/empire/files/patch-aa --- /usr/ports/games/empire/files/patch-aa 2010-05-12 19:00:37.000000000 +0200 +++ /home/corn/devel/empire/files/patch-aa 1970-01-01 01:00:00.000000000 +0100 @@ -1,53 +0,0 @@ -*** Makefile.orig Fri Aug 2 04:04:02 2002 ---- Makefile Sat Jan 25 06:35:29 2003 -*************** -*** 12,35 **** - # Change the line below for your system. If you are on a Sun or Vax, - # you may want BSD. - -! SYS = LINUX -! #SYS = BSD - #SYS = SYSV - - # Use -g to compile the program for debugging. - - #DEBUG = -g -DDEBUG -Wall -! DEBUG = -O2 - - # Use -p to profile the program. - #PROFILE = -p -DPROFILE - PROFILE = - -! LIBS = -lncurses - - # You shouldn't have to modify anything below this line. - -! CFLAGS = $(DEBUG) $(PROFILE) -D$(SYS) - - FILES = \ - attack.c \ ---- 12,35 ---- - # Change the line below for your system. If you are on a Sun or Vax, - # you may want BSD. - -! #SYS = LINUX -! SYS = BSD - #SYS = SYSV - - # Use -g to compile the program for debugging. - - #DEBUG = -g -DDEBUG -Wall -! #DEBUG = -O2 - - # Use -p to profile the program. - #PROFILE = -p -DPROFILE - PROFILE = - -! LIBS = -lcurses - - # You shouldn't have to modify anything below this line. - -! CFLAGS+= $(DEBUG) $(PROFILE) -D$(SYS) - - FILES = \ - attack.c \ diff -ruN --exclude=CVS /usr/ports/games/empire/files/patch-ab /home/corn/devel/empire/files/patch-ab --- /usr/ports/games/empire/files/patch-ab 2010-05-12 19:00:37.000000000 +0200 +++ /home/corn/devel/empire/files/patch-ab 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ ---- empire.h.orig Sat Sep 18 18:34:59 1999 -+++ empire.h Sat Sep 18 18:35:39 1999 -@@ -25,7 +25,7 @@ - #ifndef SYSV - #define memcpy(dst,src,len) bcopy((src),(dst),(len)) - #define strchr(s,c) index(s,c) --typedef char chtype; -+typedef char chartype; - #define beep() (putchar('\7')) - #define napms(d) (usleep((d)*1000)) - #else diff -ruN --exclude=CVS /usr/ports/games/empire/files/patch-ac /home/corn/devel/empire/files/patch-ac --- /usr/ports/games/empire/files/patch-ac 2010-05-12 19:00:37.000000000 +0200 +++ /home/corn/devel/empire/files/patch-ac 1970-01-01 01:00:00.000000000 +0100 @@ -1,38 +0,0 @@ ---- display.c.orig Sat Sep 18 18:35:53 1999 -+++ display.c Sat Sep 18 18:36:16 1999 -@@ -236,7 +236,7 @@ - for (r = 0; jnkbuf[r] != '\0'; r++) { - if (r+NUMTOPS >= MAP_HEIGHT) break; - (void) move (r+NUMTOPS, cols-NUMSIDES+4); -- (void) addch ((chtype)jnkbuf[r]); -+ (void) addch ((chartype)jnkbuf[r]); - } - } - -@@ -278,7 +278,7 @@ - break; - } - #endif /* A_COLOR */ -- (void) addch ((chtype)vp->contents); -+ (void) addch ((chartype)vp->contents); - #ifdef A_COLOR - attrset(0); - attron(COLOR_PAIR(COLOR_WHITE)); -@@ -420,7 +420,7 @@ - cell = vmap[row_col_loc(r,c)].contents; - - (void) move (row/row_inc + NUMTOPS, col/col_inc); -- (void) addch ((chtype)cell); -+ (void) addch ((chartype)cell); - } - - /* -@@ -498,7 +498,7 @@ - print_zoom_cell (vmap, row, col, row_inc, col_inc); - else { - (void) move (row/row_inc + NUMTOPS, col/col_inc); -- (void) addch ((chtype)cell); -+ (void) addch ((chartype)cell); - } - } - diff -ruN --exclude=CVS /usr/ports/games/empire/files/patch-ad /home/corn/devel/empire/files/patch-ad --- /usr/ports/games/empire/files/patch-ad 2010-05-12 19:00:37.000000000 +0200 +++ /home/corn/devel/empire/files/patch-ad 1970-01-01 01:00:00.000000000 +0100 @@ -1,9 +0,0 @@ ---- game.c.orig Sat Sep 18 18:36:29 1999 -+++ game.c Sat Sep 18 18:36:40 1999 -@@ -850,5 +850,5 @@ - cell = mbuf[row_col_loc(r,c)]; - - (void) move (row/row_inc + NUMTOPS, col/col_inc); -- (void) addch ((chtype)cell); -+ (void) addch ((chartype)cell); - } --- empire-1.8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 14:24:22 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E3331065670; Sun, 24 Oct 2010 14:24:22 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CBDF18FC0A; Sun, 24 Oct 2010 14:24:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OEOLcN072476; Sun, 24 Oct 2010 14:24:21 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OEOLMu072472; Sun, 24 Oct 2010 14:24:21 GMT (envelope-from rene) Date: Sun, 24 Oct 2010 14:24:21 GMT Message-Id: <201010241424.o9OEOLMu072472@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151665: [MAINTAINER] devel/monotone: update to 0.48.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 14:24:22 -0000 Synopsis: [MAINTAINER] devel/monotone: update to 0.48.1 Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Sun Oct 24 14:24:02 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151665 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 15:30:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C0F9106567A for ; Sun, 24 Oct 2010 15:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 582388FC2A for ; Sun, 24 Oct 2010 15:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OFUAv7034123 for ; Sun, 24 Oct 2010 15:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OFUAjl034120; Sun, 24 Oct 2010 15:30:10 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 15:30:10 GMT Resent-Message-Id: <201010241530.o9OFUAjl034120@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Andree Received: from apollo.emma.line.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id 6B514106564A; Sun, 24 Oct 2010 15:25:12 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mandree by apollo.emma.line.org with local (Exim 4.72 (FreeBSD)) (envelope-from ) id 1PA2Ra-00074w-1x; Sun, 24 Oct 2010 17:25:10 +0200 Message-Id: Date: Sun, 24 Oct 2010 17:25:10 +0200 From: Matthias Andree Sender: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: chalpin@cs.wisc.edu Subject: ports/151686: [PATCH] mail/fetchmail: update to 6.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 15:30:10 -0000 >Number: 151686 >Category: ports >Synopsis: [PATCH] mail/fetchmail: update to 6.3.18 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 15:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: System: FreeBSD apollo.emma.line.org 8.1-STABLE FreeBSD 8.1-STABLE #33: Sat Oct 9 13:59:55 CEST >Description: - Update to 6.3.18 Corey, please state if you approve of this patch. Removed file(s): - files/patch-configure Port maintainer (chalpin@cs.wisc.edu) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- fetchmail-6.3.18.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/fetchmail/Makefile,v retrieving revision 1.212 diff -u -u -r1.212 Makefile --- Makefile 20 Oct 2010 14:39:41 -0000 1.212 +++ Makefile 24 Oct 2010 14:07:37 -0000 @@ -10,8 +10,7 @@ # want fetchmailconf to work, define WITH_X11 PORTNAME= fetchmail -PORTVERSION= 6.3.17 -PORTREVISION= 3 +PORTVERSION= 6.3.18 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_BERLIOS} \ http://mandree.home.pages.de/fetchmail/:ma \ @@ -111,6 +110,9 @@ @${REINPLACE_CMD} -e "s,@LOCALBASE@,${LOCALBASE},g" \ ${WRKDIR}/fetchmailconf +post-build: + @cd ${WRKSRC} && ${MAKE} check + pre-su-install: @${SETENV} ${SCRIPTS_ENV} PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL Index: distinfo =================================================================== RCS file: /home/ncvs/ports/mail/fetchmail/distinfo,v retrieving revision 1.136 diff -u -u -r1.136 distinfo --- distinfo 22 May 2010 04:36:30 -0000 1.136 +++ distinfo 24 Oct 2010 14:05:26 -0000 @@ -1,3 +1,3 @@ -MD5 (fetchmail-6.3.17.tar.bz2) = 7b1d449ecddb6164e22c32854adc4a75 -SHA256 (fetchmail-6.3.17.tar.bz2) = d7a01ceac184c7ebde9a42982e310beec467deb5b3d05c4e413e48cd2619ca24 -SIZE (fetchmail-6.3.17.tar.bz2) = 1642598 +MD5 (fetchmail-6.3.18.tar.bz2) = e01377cf2751465c509c39029e8da92b +SHA256 (fetchmail-6.3.18.tar.bz2) = cd916c8409bfbf6c869a2892b429f6d6cc6270072a138356c091c2992474faaf +SIZE (fetchmail-6.3.18.tar.bz2) = 1683949 Index: files/patch-configure =================================================================== RCS file: files/patch-configure diff -N files/patch-configure --- files/patch-configure 23 May 2010 14:40:19 -0000 1.10 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- configure.orig 2010-05-23 11:34:20.000000000 -0300 -+++ configure 2010-05-23 11:36:40.000000000 -0300 -@@ -9207,7 +9207,7 @@ - return 0; - } - _ACEOF --for ac_lib in '' md5 md; do -+for ac_lib in '' md; do - if test -z "$ac_lib"; then - ac_res="none required" - else --- fetchmail-6.3.18.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 15:30:18 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0FD91065672; Sun, 24 Oct 2010 15:30:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 86B818FC0A; Sun, 24 Oct 2010 15:30:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OFUIEd034677; Sun, 24 Oct 2010 15:30:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OFUILU034667; Sun, 24 Oct 2010 15:30:18 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 15:30:18 GMT Message-Id: <201010241530.o9OFUILU034667@freefall.freebsd.org> To: matthias.andree@gmx.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151686: [PATCH] mail/fetchmail: update to 6.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 15:30:18 -0000 Synopsis: [PATCH] mail/fetchmail: update to 6.3.18 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Oct 24 15:30:17 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151686 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 15:40:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76860106564A for ; Sun, 24 Oct 2010 15:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 64E7E8FC0C for ; Sun, 24 Oct 2010 15:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OFe94k044843 for ; Sun, 24 Oct 2010 15:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OFe9SC044842; Sun, 24 Oct 2010 15:40:09 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 15:40:09 GMT Message-Id: <201010241540.o9OFe9SC044842@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151686: [PATCH] mail/fetchmail: update to 6.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 15:40:09 -0000 The following reply was made to PR ports/151686; it has been noted by GNATS. From: Edwin Groothuis To: chalpin@cs.wisc.edu Cc: bug-followup@FreeBSD.org Subject: Re: ports/151686: [PATCH] mail/fetchmail: update to 6.3.18 Date: Sun, 24 Oct 2010 15:30:14 UT Maintainer of mail/fetchmail, Please note that PR ports/151686 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151686 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 17:00:22 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F2D51065672 for ; Sun, 24 Oct 2010 17:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CB9288FC20 for ; Sun, 24 Oct 2010 17:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OH0LZS026445 for ; Sun, 24 Oct 2010 17:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OH0LLf026420; Sun, 24 Oct 2010 17:00:21 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 17:00:21 GMT Resent-Message-Id: <201010241700.o9OH0LLf026420@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Denis Shaposhnikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9434106564A for ; Sun, 24 Oct 2010 16:56:48 +0000 (UTC) (envelope-from dsh@bamus.cz) Received: from dsh.falconknight.com (dsh.falconknight.com [66.160.163.23]) by mx1.freebsd.org (Postfix) with ESMTP id A7AE08FC15 for ; Sun, 24 Oct 2010 16:56:48 +0000 (UTC) Received: from dsh.falconknight.com (dsh [66.160.163.23]) by dsh.falconknight.com (Postfix) with ESMTP id 505E0B63567; Sun, 24 Oct 2010 09:56:48 -0700 (PDT) Received: from dsh.falconknight.com ([66.160.163.23]) by dsh.falconknight.com (dsh.falconknight.com [66.160.163.23]) (amavisd-new, port 10026) with LMTP id IsFwgRkxlUy0; Sun, 24 Oct 2010 09:56:48 -0700 (PDT) Received: from dsh.bamus.cz (unknown [88.103.62.114]) by dsh.falconknight.com (Postfix) with ESMTPS id 165D9B6355E; Sun, 24 Oct 2010 09:56:44 -0700 (PDT) Received: from dsh.bamus.cz (localhost [127.0.0.1]) by dsh.bamus.cz (8.14.4/8.14.4) with ESMTP id o9OGuXN5003188; Sun, 24 Oct 2010 18:56:33 +0200 (CEST) (envelope-from dsh@dsh.bamus.cz) Received: (from dsh@localhost) by dsh.bamus.cz (8.14.4/8.14.4/Submit) id o9OGuRch003184; Sun, 24 Oct 2010 18:56:27 +0200 (CEST) (envelope-from dsh) Message-Id: <201010241656.o9OGuRch003184@dsh.bamus.cz> Date: Sun, 24 Oct 2010 18:56:27 +0200 (CEST) From: Denis Shaposhnikov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151687: [NEW PORT] x11-themes/gtk-equinox-engine: Equinox GTK+ 2.x engine and themes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 17:00:22 -0000 >Number: 151687 >Category: ports >Synopsis: [NEW PORT] x11-themes/gtk-equinox-engine: Equinox GTK+ 2.x engine and themes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 17:00:20 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD dsh.bamus.cz 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 >Description: A heavily modified version of the beautiful Aurora engine (1.4). Thanks to his author. WWW: http://gnome-look.org/content/show.php?content=121881 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- gtk-equinox-engine-1.30.2.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gtk-equinox-engine # gtk-equinox-engine/Makefile # gtk-equinox-engine/distinfo # gtk-equinox-engine/pkg-descr # gtk-equinox-engine/pkg-plist # echo c - gtk-equinox-engine mkdir -p gtk-equinox-engine > /dev/null 2>&1 echo x - gtk-equinox-engine/Makefile sed 's/^X//' >gtk-equinox-engine/Makefile << '4a183cdba17e1bd06c814c7ec3a15a44' X# New ports collection makefile for: gtk-equinox-engine X# Date created: 2010-10-23 X# Whom: Deni Shaposhnikov X# X# $FreeBSD$ X# X XPORTNAME= equinox XPORTVERSION= 1.30.2 XCATEGORIES= x11-themes XMASTER_SITES= http://gnome-look.org/CONTENT/content-files/ XPKGNAMEPREFIX= gtk- XPKGNAMESUFFIX= -engine XDISTNAME= 121881-equinox-1.30 X XMAINTAINER= dsh@bamus.cz XCOMMENT= Equinox GTK+ 2.x engine and themes X XBUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gtk-engines-2.pc:${PORTSDIR}/x11-themes/gtk-engines2 XRUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gtk-engines-2.pc:${PORTSDIR}/x11-themes/gtk-engines2 X XUSE_BZIP2= yes XUSE_GNOME= gtk20 XUSE_LDCONFIG= yes XGNU_CONFIGURE= yes XWRKSRC= ${WRKDIR}/equinox-1.30 X XDATADIR= ${PREFIX}/share/themes X XSUBDIRS= Equinox "Equinox Classic" "Equinox Classic Glass" \ X "Equinox Evolution" "Equinox Evolution Light" \ X "Equinox Evolution Rounded" "Equinox Evolution Squared" \ X "Equinox Glass" "Equinox Light" "Equinox Light Glass" \ X "Equinox Wide" X XOPTIONS= ANIMATION "Enable animation support" on X Xpost-extract: X @cd ${WRKDIR} && ${TAR} zxf equinox-gtk-engine.tar.gz X @cd ${WRKDIR} && ${TAR} zxf equinox-themes.tar.gz X Xpost-patch: X @${FIND} ${WRKDIR} -name 'gtkrc' -exec \ X ${REINPLACE_CMD} -e 's!^include "apps/nautilus\.rc"!#&!' {} + X @${FIND} ${WRKDIR} -type f -name 'gtkrc.bak' -exec ${RM} -f {} + X Xpost-install: X @${MKDIR} ${DATADIR} X.for i in ${SUBDIRS} X ${CP} -R ${WRKDIR}/${i} ${DATADIR} X ${FIND} ${DATADIR}/${i} -type d -exec ${CHMOD} 755 {} + X ${FIND} ${DATADIR}/${i} -type f -exec ${CHMOD} ${SHAREMODE} {} + X.endfor X X ${MKDIR} ${EXAMPLESDIR} X.for i in "Equinox Evolution.crx" userChrome.css X ${INSTALL_DATA} ${WRKDIR}/$i ${EXAMPLESDIR} X.endfor X X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} X.endif X X.include X X.if defined(WITH_ANIMATION) XCONFIGURE_ARGS+=--enable-animation X.endif X X.include 4a183cdba17e1bd06c814c7ec3a15a44 echo x - gtk-equinox-engine/distinfo sed 's/^X//' >gtk-equinox-engine/distinfo << '14f1c2b7a261f7e89717ed9cc6810d3b' XMD5 (121881-equinox-1.30.tar.bz2) = 07d43dede6bdc17ba74f1740a3743601 XSHA256 (121881-equinox-1.30.tar.bz2) = 1fea28bb08e89c63bdcb9ba8ee612b4e8fd9bea56a715efe6d7d8bcd7848013f XSIZE (121881-equinox-1.30.tar.bz2) = 616171 14f1c2b7a261f7e89717ed9cc6810d3b echo x - gtk-equinox-engine/pkg-descr sed 's/^X//' >gtk-equinox-engine/pkg-descr << '72862b5f17aed8afd79212627e438d05' XA heavily modified version of the beautiful Aurora engine X(1.4). Thanks to his author. X XWWW: http://gnome-look.org/content/show.php?content=121881 72862b5f17aed8afd79212627e438d05 echo x - gtk-equinox-engine/pkg-plist sed 's/^X//' >gtk-equinox-engine/pkg-plist << '59e4533a8ff694b12c3ee58ac7407d7e' Xlib/gtk-2.0/%%GTK2_VERSION%%/engines/libequinox.la Xlib/gtk-2.0/%%GTK2_VERSION%%/engines/libequinox.so X%%DATADIR%%/Equinox Classic Glass/ChangeLog X%%DATADIR%%/Equinox Classic Glass/metacity-1/button_close.png X%%DATADIR%%/Equinox Classic Glass/metacity-1/button_max.png X%%DATADIR%%/Equinox Classic Glass/metacity-1/button_menu.png X%%DATADIR%%/Equinox Classic Glass/metacity-1/button_min.png X%%DATADIR%%/Equinox Classic Glass/metacity-1/dialog_close.png X%%DATADIR%%/Equinox Classic Glass/metacity-1/dialog_max.png X%%DATADIR%%/Equinox Classic Glass/metacity-1/dialog_min.png X%%DATADIR%%/Equinox Classic Glass/metacity-1/metacity-theme-1.xml X%%DATADIR%%/Equinox Classic/ChangeLog X%%DATADIR%%/Equinox Classic/metacity-1/button_close.png X%%DATADIR%%/Equinox Classic/metacity-1/button_max.png X%%DATADIR%%/Equinox Classic/metacity-1/button_menu.png X%%DATADIR%%/Equinox Classic/metacity-1/button_min.png X%%DATADIR%%/Equinox Classic/metacity-1/dialog_close.png X%%DATADIR%%/Equinox Classic/metacity-1/dialog_max.png X%%DATADIR%%/Equinox Classic/metacity-1/dialog_min.png X%%DATADIR%%/Equinox Classic/metacity-1/metacity-theme-1.xml X%%DATADIR%%/Equinox Evolution Light/ChangeLog X%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/gnome-system-monitor.rc X%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/gnome-terminal.rc X%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/nautilus.rc X%%DATADIR%%/Equinox Evolution Light/gtk-2.0/gtkrc X%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/arrow.png X%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/blank.png X%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/handle-nautilus.png X%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/panel_bg.png X%%DATADIR%%/Equinox Evolution Light/index.theme X%%DATADIR%%/Equinox Evolution Rounded/ChangeLog X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_inactive.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_normal.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_prelight.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_pressed.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/close.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/close_inactive.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/max.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/max_inactive.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/menu.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/menu_inactive.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/metacity-theme-1.xml X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/min.png X%%DATADIR%%/Equinox Evolution Rounded/metacity-1/min_inactive.png X%%DATADIR%%/Equinox Evolution Squared/ChangeLog X%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_inactive.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_normal.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_prelight.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_pressed.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_inactive.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_normal.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_prelight.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_pressed.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/close.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/close_inactive.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/max.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/max_inactive.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/menu.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/menu_inactive.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/metacity-theme-1.xml X%%DATADIR%%/Equinox Evolution Squared/metacity-1/min.png X%%DATADIR%%/Equinox Evolution Squared/metacity-1/min_inactive.png X%%DATADIR%%/Equinox Evolution/ChangeLog X%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/gnome-system-monitor.rc X%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/gnome-terminal.rc X%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/nautilus.rc X%%DATADIR%%/Equinox Evolution/gtk-2.0/gtkrc X%%DATADIR%%/Equinox Evolution/gtk-2.0/images/arrow.png X%%DATADIR%%/Equinox Evolution/gtk-2.0/images/blank.png X%%DATADIR%%/Equinox Evolution/gtk-2.0/images/handle-nautilus.png X%%DATADIR%%/Equinox Evolution/gtk-2.0/images/panel_bg.png X%%DATADIR%%/Equinox Evolution/index.theme X%%DATADIR%%/Equinox Glass/ChangeLog X%%DATADIR%%/Equinox Glass/gtk-2.0/apps/gnome-system-monitor.rc X%%DATADIR%%/Equinox Glass/gtk-2.0/apps/gnome-terminal.rc X%%DATADIR%%/Equinox Glass/gtk-2.0/apps/nautilus.rc X%%DATADIR%%/Equinox Glass/gtk-2.0/gtkrc X%%DATADIR%%/Equinox Glass/gtk-2.0/images/arrow.png X%%DATADIR%%/Equinox Glass/gtk-2.0/images/blank.png X%%DATADIR%%/Equinox Glass/gtk-2.0/images/handle-nautilus.png X%%DATADIR%%/Equinox Glass/gtk-2.0/images/panel_bg.png X%%DATADIR%%/Equinox Glass/index.theme X%%DATADIR%%/Equinox Glass/metacity-1/active_close.png X%%DATADIR%%/Equinox Glass/metacity-1/active_close_on.png X%%DATADIR%%/Equinox Glass/metacity-1/active_close_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/active_max.png X%%DATADIR%%/Equinox Glass/metacity-1/active_max_on.png X%%DATADIR%%/Equinox Glass/metacity-1/active_max_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/active_menu.png X%%DATADIR%%/Equinox Glass/metacity-1/active_menu_on.png X%%DATADIR%%/Equinox Glass/metacity-1/active_menu_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/active_min.png X%%DATADIR%%/Equinox Glass/metacity-1/active_min_on.png X%%DATADIR%%/Equinox Glass/metacity-1/active_min_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_close.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_close_on.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_close_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_max.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_max_on.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_max_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_min.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_min_on.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_min_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_close.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_close_on.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_close_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_max.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_max_on.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_max_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_min.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_min_on.png X%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_min_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_close.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_close_on.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_close_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_max.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_max_on.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_max_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_menu.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_menu_on.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_menu_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_min.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_min_on.png X%%DATADIR%%/Equinox Glass/metacity-1/inactive_min_pressed.png X%%DATADIR%%/Equinox Glass/metacity-1/metacity-theme-1.xml X%%DATADIR%%/Equinox Light Glass/ChangeLog X%%DATADIR%%/Equinox Light Glass/metacity-1/button_close.png X%%DATADIR%%/Equinox Light Glass/metacity-1/button_max.png X%%DATADIR%%/Equinox Light Glass/metacity-1/button_menu.png X%%DATADIR%%/Equinox Light Glass/metacity-1/button_min.png X%%DATADIR%%/Equinox Light Glass/metacity-1/dialog_close.png X%%DATADIR%%/Equinox Light Glass/metacity-1/dialog_max.png X%%DATADIR%%/Equinox Light Glass/metacity-1/dialog_min.png X%%DATADIR%%/Equinox Light Glass/metacity-1/metacity-theme-1.xml X%%DATADIR%%/Equinox Light/ChangeLog X%%DATADIR%%/Equinox Light/gtk-2.0/apps/gnome-system-monitor.rc X%%DATADIR%%/Equinox Light/gtk-2.0/apps/gnome-terminal.rc X%%DATADIR%%/Equinox Light/gtk-2.0/apps/nautilus.rc X%%DATADIR%%/Equinox Light/gtk-2.0/gtkrc X%%DATADIR%%/Equinox Light/gtk-2.0/images/arrow.png X%%DATADIR%%/Equinox Light/gtk-2.0/images/blank.png X%%DATADIR%%/Equinox Light/gtk-2.0/images/handle-nautilus.png X%%DATADIR%%/Equinox Light/gtk-2.0/images/panel_bg.png X%%DATADIR%%/Equinox Light/index.theme X%%DATADIR%%/Equinox Light/metacity-1/button_close.png X%%DATADIR%%/Equinox Light/metacity-1/button_max.png X%%DATADIR%%/Equinox Light/metacity-1/button_menu.png X%%DATADIR%%/Equinox Light/metacity-1/button_min.png X%%DATADIR%%/Equinox Light/metacity-1/dialog_close.png X%%DATADIR%%/Equinox Light/metacity-1/dialog_max.png X%%DATADIR%%/Equinox Light/metacity-1/dialog_min.png X%%DATADIR%%/Equinox Light/metacity-1/metacity-theme-1.xml X%%DATADIR%%/Equinox Wide/ChangeLog X%%DATADIR%%/Equinox Wide/gtk-2.0/apps/gnome-system-monitor.rc X%%DATADIR%%/Equinox Wide/gtk-2.0/apps/gnome-terminal.rc X%%DATADIR%%/Equinox Wide/gtk-2.0/apps/nautilus.rc X%%DATADIR%%/Equinox Wide/gtk-2.0/gtkrc X%%DATADIR%%/Equinox Wide/gtk-2.0/images/arrow.png X%%DATADIR%%/Equinox Wide/gtk-2.0/images/blank.png X%%DATADIR%%/Equinox Wide/gtk-2.0/images/handle-nautilus.png X%%DATADIR%%/Equinox Wide/gtk-2.0/images/panel_bg.png X%%DATADIR%%/Equinox Wide/index.theme X%%DATADIR%%/Equinox/ChangeLog X%%DATADIR%%/Equinox/gtk-2.0/apps/gnome-system-monitor.rc X%%DATADIR%%/Equinox/gtk-2.0/apps/gnome-terminal.rc X%%DATADIR%%/Equinox/gtk-2.0/apps/nautilus.rc X%%DATADIR%%/Equinox/gtk-2.0/gtkrc X%%DATADIR%%/Equinox/gtk-2.0/images/arrow.png X%%DATADIR%%/Equinox/gtk-2.0/images/blank.png X%%DATADIR%%/Equinox/gtk-2.0/images/handle-nautilus.png X%%DATADIR%%/Equinox/gtk-2.0/images/panel_bg.png X%%DATADIR%%/Equinox/index.theme X%%DATADIR%%/Equinox/metacity-1/active_close.png X%%DATADIR%%/Equinox/metacity-1/active_close_on.png X%%DATADIR%%/Equinox/metacity-1/active_close_pressed.png X%%DATADIR%%/Equinox/metacity-1/active_max.png X%%DATADIR%%/Equinox/metacity-1/active_max_on.png X%%DATADIR%%/Equinox/metacity-1/active_max_pressed.png X%%DATADIR%%/Equinox/metacity-1/active_menu.png X%%DATADIR%%/Equinox/metacity-1/active_menu_on.png X%%DATADIR%%/Equinox/metacity-1/active_menu_pressed.png X%%DATADIR%%/Equinox/metacity-1/active_min.png X%%DATADIR%%/Equinox/metacity-1/active_min_on.png X%%DATADIR%%/Equinox/metacity-1/active_min_pressed.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_close.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_close_on.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_close_pressed.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_max.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_max_on.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_max_pressed.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_min.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_min_on.png X%%DATADIR%%/Equinox/metacity-1/dialog_active_min_pressed.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_close.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_close_on.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_close_pressed.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_max.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_max_on.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_max_pressed.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_min.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_min_on.png X%%DATADIR%%/Equinox/metacity-1/dialog_inactive_min_pressed.png X%%DATADIR%%/Equinox/metacity-1/inactive_close.png X%%DATADIR%%/Equinox/metacity-1/inactive_close_on.png X%%DATADIR%%/Equinox/metacity-1/inactive_close_pressed.png X%%DATADIR%%/Equinox/metacity-1/inactive_max.png X%%DATADIR%%/Equinox/metacity-1/inactive_max_on.png X%%DATADIR%%/Equinox/metacity-1/inactive_max_pressed.png X%%DATADIR%%/Equinox/metacity-1/inactive_menu.png X%%DATADIR%%/Equinox/metacity-1/inactive_menu_on.png X%%DATADIR%%/Equinox/metacity-1/inactive_menu_pressed.png X%%DATADIR%%/Equinox/metacity-1/inactive_min.png X%%DATADIR%%/Equinox/metacity-1/inactive_min_on.png X%%DATADIR%%/Equinox/metacity-1/inactive_min_pressed.png X%%DATADIR%%/Equinox/metacity-1/metacity-theme-1.xml X%%EXAMPLESDIR%%/Equinox Evolution.crx X%%EXAMPLESDIR%%/userChrome.css X%%PORTDOCS%%%%DOCSDIR%%/README X@dirrm %%DATADIR%%/Equinox/gtk-2.0/apps X@dirrm %%DATADIR%%/Equinox/gtk-2.0/images X@dirrm %%DATADIR%%/Equinox/gtk-2.0 X@dirrm %%DATADIR%%/Equinox/metacity-1 X@dirrm %%DATADIR%%/Equinox X@dirrm %%DATADIR%%/Equinox Classic/metacity-1 X@dirrm %%DATADIR%%/Equinox Classic X@dirrm %%DATADIR%%/Equinox Classic Glass/metacity-1 X@dirrm %%DATADIR%%/Equinox Classic Glass X@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0/apps X@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0/images X@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0 X@dirrm %%DATADIR%%/Equinox Evolution X@dirrm %%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps X@dirrm %%DATADIR%%/Equinox Evolution Light/gtk-2.0/images X@dirrm %%DATADIR%%/Equinox Evolution Light/gtk-2.0 X@dirrm %%DATADIR%%/Equinox Evolution Light X@dirrm %%DATADIR%%/Equinox Evolution Rounded/metacity-1 X@dirrm %%DATADIR%%/Equinox Evolution Rounded X@dirrm %%DATADIR%%/Equinox Evolution Squared/metacity-1 X@dirrm %%DATADIR%%/Equinox Evolution Squared X@dirrm %%DATADIR%%/Equinox Glass/gtk-2.0/apps X@dirrm %%DATADIR%%/Equinox Glass/gtk-2.0/images X@dirrm %%DATADIR%%/Equinox Glass/gtk-2.0 X@dirrm %%DATADIR%%/Equinox Glass/metacity-1 X@dirrm %%DATADIR%%/Equinox Glass X@dirrm %%DATADIR%%/Equinox Light/gtk-2.0/apps X@dirrm %%DATADIR%%/Equinox Light/gtk-2.0/images X@dirrm %%DATADIR%%/Equinox Light/gtk-2.0 X@dirrm %%DATADIR%%/Equinox Light/metacity-1 X@dirrm %%DATADIR%%/Equinox Light X@dirrm %%DATADIR%%/Equinox Light Glass/metacity-1 X@dirrm %%DATADIR%%/Equinox Light Glass X@dirrm %%DATADIR%%/Equinox Wide/gtk-2.0/apps X@dirrm %%DATADIR%%/Equinox Wide/gtk-2.0/images X@dirrm %%DATADIR%%/Equinox Wide/gtk-2.0 X@dirrm %%DATADIR%%/Equinox Wide X@dirrmtry %%DATADIR%% X@dirrm %%EXAMPLESDIR%% X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrmtry lib/gtk-2.0/%%GTK2_VERSION%%/engines X@dirrmtry lib/gtk-2.0/%%GTK2_VERSION%% X@dirrmtry lib/gtk-2.0 59e4533a8ff694b12c3ee58ac7407d7e exit --- gtk-equinox-engine-1.30.2.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 17:20:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3B771065679 for ; Sun, 24 Oct 2010 17:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4E7DF8FC21 for ; Sun, 24 Oct 2010 17:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OHK7FZ048731 for ; Sun, 24 Oct 2010 17:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OHK7jZ048730; Sun, 24 Oct 2010 17:20:07 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 17:20:07 GMT Resent-Message-Id: <201010241720.o9OHK7jZ048730@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Panagiotis Christias Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEB2A106564A for ; Sun, 24 Oct 2010 17:10:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id A24008FC19 for ; Sun, 24 Oct 2010 17:10:04 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9OHA3BK035968 for ; Sun, 24 Oct 2010 17:10:03 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9OHA3Xp035967; Sun, 24 Oct 2010 17:10:03 GMT (envelope-from nobody) Message-Id: <201010241710.o9OHA3Xp035967@www.freebsd.org> Date: Sun, 24 Oct 2010 17:10:03 GMT From: Panagiotis Christias To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151689: dns/rbldnsd does not use preassigned UID/GIDs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 17:20:07 -0000 >Number: 151689 >Category: ports >Synopsis: dns/rbldnsd does not use preassigned UID/GIDs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 17:20:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Panagiotis Christias >Release: 7.3-RELEASE-p3 amd64 >Organization: NTUA NOC >Environment: FreeBSD rbldnsd.noc.ntua.gr 7.3-RELEASE-p3 FreeBSD 7.3-RELEASE-p3 #0: Wed Sep 22 15:55:56 EEST 2010 root@agamemnon.noc.ntua.gr:/usr/obj/usr/src/sys/NTUA amd64 >Description: dns/rbldns port does not use the preassigned UID/GIDs as defined in /usr/ports/UIDs and /usr/ports/GIDs. >How-To-Repeat: cd /usr/ports/dns/rbldnsd make install egrep rbldns /etc/passwd /etc/group >Fix: Make use of USERS and GROUPS variables in Makefile. Drop the extra code in pkg-install. Add some code in files/pkg-deinstall.in to notify user about the remaining user/group upon deinstallation. See attached shar for an updated version of the port. Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rbldnsd # rbldnsd/Makefile # rbldnsd/distinfo # rbldnsd/pkg-descr # rbldnsd/pkg-plist # rbldnsd/files # rbldnsd/files/example # rbldnsd/files/pkg-message.in # rbldnsd/files/rbldnsd.in # rbldnsd/files/pkg-deinstall.in # echo c - rbldnsd mkdir -p rbldnsd > /dev/null 2>&1 echo x - rbldnsd/Makefile sed 's/^X//' >rbldnsd/Makefile << '751464da36006c8608da01b81c0ff09d' X# New ports collection makefile for: rbldnsd X# Date created: Fri Jun 13 05:30:12 EDT 2003 X# Whom: Paul Chvostek X# X# $FreeBSD: ports/dns/rbldnsd/Makefile,v 1.15 2010/02/10 02:58:33 pgollucci Exp $ X# X XPORTNAME= rbldnsd XPORTVERSION= 0.996b XPORTREVISION= 2 XCATEGORIES= dns XMASTER_SITES= http://www.corpit.ru/mjt/rbldnsd/:0 \ X http://www.it.ca/~paul/src/:0 XDISTFILES= ${PORTNAME}_${PORTVERSION}${EXTRACT_SUFX}:0 X XMAINTAINER= alexey@renatasystems.org XCOMMENT= Small and fast DNS daemon especially for DNSBL zones X X.if !defined(NOPORTDOCS) XEXTRACT_ONLY+= ${PORTNAME}_${PORTVERSION}${EXTRACT_SUFX} XMASTER_SITES+= http://www.corpit.ru/mjt/:1 \ X http://www.it.ca/~paul/src/:1 XDISTFILES+= rbldnsd.html:1 XIGNOREFILES+= rbldnsd.html X.endif X XUSERS= rbldns XGROUPS= rbldns X XRBLDNSUSER= ${USERS} XRBLDNSGROUP= ${GROUPS} XROOTDIR= ${PREFIX}/etc/rbldnsd/ X XMAN8= rbldnsd.8 X XHAS_CONFIGURE= yes XUSE_RC_SUBR= rbldnsd XPKGMESSAGE= ${WRKDIR}/pkg-message XSUB_FILES= pkg-message pkg-deinstall XSUB_LIST+= RBLDNSUSER=${RBLDNSUSER} \ X RBLDNSGROUP=${RBLDNSGROUP} X X.include X Xdo-install: X @if [ ! -d ${ROOTDIR} ]; then \ X ${MKDIR} ${ROOTDIR}; \ X ${CHMOD} 710 ${ROOTDIR}; \ X ${CHOWN} ${RBLDNSUSER}:${RBLDNSGROUP} ${ROOTDIR}; \ X fi X @${INSTALL_DATA} -o ${RBLDNSUSER} -g ${RBLDNSGROUP} -m 640 \ X ${FILESDIR}/example ${PREFIX}/etc/rbldnsd/ X @${INSTALL_PROGRAM} ${WRKSRC}/rbldnsd ${PREFIX}/sbin/ X @${INSTALL_MAN} ${WRKSRC}/rbldnsd.8 ${PREFIX}/man/man8/ X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR}/ X @${INSTALL_DATA} ${WRKSRC}/CHANGES-0.81 ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/TODO ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/NEWS ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/debian/changelog ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/debian/copyright ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/debian/rbldnsd.default ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/debian/rbldnsd.init ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/rbldnsd.spec ${DOCSDIR} X @${INSTALL_DATA} ${DISTDIR}/rbldnsd.html ${DOCSDIR} X.endif X X.include 751464da36006c8608da01b81c0ff09d echo x - rbldnsd/distinfo sed 's/^X//' >rbldnsd/distinfo << 'a5a190368fc10237e786cee26cb06f52' XMD5 (rbldnsd_0.996b.tar.gz) = 9a0f26f3b33764c325a96bd4c61b26fa XSHA256 (rbldnsd_0.996b.tar.gz) = 475afe5be8729a76b7c23e2f3d5ce1c773775140406a58bfb7477fac5a528342 XSIZE (rbldnsd_0.996b.tar.gz) = 113128 XMD5 (rbldnsd.html) = IGNORE XSHA256 (rbldnsd.html) = IGNORE a5a190368fc10237e786cee26cb06f52 echo x - rbldnsd/pkg-descr sed 's/^X//' >rbldnsd/pkg-descr << '26664981cc815465c775d90a44613cc3' Xrbldnsd is a small and fast DNS daemon, made especially to serve DNSBL Xzones. It was inspired by Dan J. Bernstein's rbldns program, found in X/usr/ports/net/djbdns, but is significantly faster. X Xrbldnsd was written by Michael Tokarev. X XWWW: http://www.corpit.ru/mjt/rbldnsd.html 26664981cc815465c775d90a44613cc3 echo x - rbldnsd/pkg-plist sed 's/^X//' >rbldnsd/pkg-plist << 'c9ca5022f4b2670ebd497445de7b059e' Xsbin/rbldnsd Xetc/rbldnsd/example X%%PORTDOCS%%%%DOCSDIR%%/CHANGES-0.81 X%%PORTDOCS%%%%DOCSDIR%%/NEWS X%%PORTDOCS%%%%DOCSDIR%%/TODO X%%PORTDOCS%%%%DOCSDIR%%/changelog X%%PORTDOCS%%%%DOCSDIR%%/copyright X%%PORTDOCS%%%%DOCSDIR%%/rbldnsd.default X%%PORTDOCS%%%%DOCSDIR%%/rbldnsd.init X%%PORTDOCS%%%%DOCSDIR%%/rbldnsd.spec X%%PORTDOCS%%%%DOCSDIR%%/rbldnsd.html X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrmtry etc/rbldnsd/ c9ca5022f4b2670ebd497445de7b059e echo c - rbldnsd/files mkdir -p rbldnsd/files > /dev/null 2>&1 echo x - rbldnsd/files/example sed 's/^X//' >rbldnsd/files/example << 'f05079a38585df44b6802185444102e0' X# Below is a default or implicit value which is used when no value given X# for an entry. The `$' characters will be replaced by an IP address in X# question. X:127.0.0.2:Open relay, see http://relays.example.com/lookup?$ X# X# A simplest case: single IP address, with default value. X127.0.0.2 X# X# And some example data... X172.31 Hurray, your installation worked! X# X# Netblock - 256 IP addresses with it's own A and TXT records X10.8.60.0/24 :127.0.0.3:Address $ is from private IP range X# X# Another netblock, with default A and explitit TXT values. X224/4 Reserved multicast address X# X# IP numbers may be abbreviated, the above is the same as 192.168.0.0/16 X192.168 Dialup pool, see http://dialups.example.com/lookup?$ for explanations X# X# A value may be abbreviated as well - :5: is the same as :127.0.0.5:. X10.10 :5:This network blocked due to massive spam issues X# X# repeat last octet: 10.10.5.0..10.10.129.255 inclusive X10.10.5-129:5:Those hosts are nasty X# X# exclusion entry X!10.10.1.2 X# X# The following examples are for name-based zones. X# X#example.com :2:This domain has no working postmaster@ address X#*.example.com :2:All subdomains of example.com lacks working abuse@ address X# Simple and wildcarded entry, both will return 127.0.0.2 A record X# X# Some specials... X# X# Start of authority record (TTL 3000), with serial (0) computed as X# a timestamp of data file X$SOA 3000 ns1.example.com admin.example.com 0 600 300 86400 300 X# X# Two nameservers X$NS 3000 ns1.example.com ns2.example.com f05079a38585df44b6802185444102e0 echo x - rbldnsd/files/pkg-message.in sed 's/^X//' >rbldnsd/files/pkg-message.in << 'b5acb6488cca4b713d3c245a9f1877dc' X======================================================================== X NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE X======================================================================== X XThe rbldnsd port has been installed with an example zone file, located Xin %%PREFIX%%/etc/rbldnsd/. X XAfter starting the daemon with this example data, you should be able to Xtest the success of your install with the command: X X % host -a 1.1.31.172.bl.example.com. localhost Xor X % dig @localhost 1.1.31.172.bl.example.com. any Xor X % nslookup -query=any 1.1.31.172.bl.example.com. localhost X XIf you see a response that mentions 127.0.0.2, the install worked! X X======================================================================== b5acb6488cca4b713d3c245a9f1877dc echo x - rbldnsd/files/rbldnsd.in sed 's/^X//' >rbldnsd/files/rbldnsd.in << '1db581f68d070a5e5c8b3afd5c932353' X#!/bin/sh X# X# $Id$ X# X X# PROVIDE: rbldnsd X# REQUIRE: DAEMON X# BEFORE: LOGIN X# KEYWORD: shutdown X# X# Add the following lines to /etc/rc.conf to enable rbldnsd: X# X# rbldnsd_enable="YES" X# X# See rbldnsd(8) for flags. X# X X. /etc/rc.subr X Xname=rbldnsd Xrcvar=`set_rcvar` X Xcommand=%%PREFIX%%/sbin/rbldnsd Xpidfile=/var/run/rbldnsd.pid X Xload_rc_config $name Xextra_commands="reload" X Xstop_postcmd=stop_postcmd X Xstop_postcmd() X{ X rm -f $pidfile X} X X# set defaults, enforce pidfile by making it last option before db X Xrbldnsd_enable=${rbldnsd_enable:-"NO"} Xrbldnsd_flags=${rbldnsd_flags:-"-r /usr/local/etc/rbldnsd -b 127.0.0.1 bl.example.com:ip4set:example"} Xrbldnsd_flags="-p $pidfile ${rbldnsd_flags}" X Xrun_rc_command "$1" X 1db581f68d070a5e5c8b3afd5c932353 echo x - rbldnsd/files/pkg-deinstall.in sed 's/^X//' >rbldnsd/files/pkg-deinstall.in << 'f3e5ad74d0fb2c72da65912e6b5291f4' X#!/bin/sh X XPATH=/bin:/usr/bin:/usr/sbin X X# Note how to delete UID/GID XUSER=%%RBLDNSUSER%% XGROUP=%%RBLDNSGROUP%% X Xcase "$2" in X"DEINSTALL") X if pw usershow "${USER}" 2>/dev/null 1>&2; then X echo "To delete rbldnsd user permanently, use 'pw userdel ${USER}'" X echo "To delete rbldnsd group permanently, use 'pw groupdel ${GROUP}'" X fi X ;; Xesac f3e5ad74d0fb2c72da65912e6b5291f4 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 17:20:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 000B21065679; Sun, 24 Oct 2010 17:20:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CA10F8FC0C; Sun, 24 Oct 2010 17:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OHKDPZ049208; Sun, 24 Oct 2010 17:20:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OHKDK7049196; Sun, 24 Oct 2010 17:20:13 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 17:20:13 GMT Message-Id: <201010241720.o9OHKDK7049196@freefall.freebsd.org> To: p.christias@noc.ntua.gr, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151689: dns/rbldnsd does not use preassigned UID/GIDs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 17:20:14 -0000 Synopsis: dns/rbldnsd does not use preassigned UID/GIDs State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Oct 24 17:20:13 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151689 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 17:30:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61ECF106566C for ; Sun, 24 Oct 2010 17:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 340968FC0A for ; Sun, 24 Oct 2010 17:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OHUGUk058309 for ; Sun, 24 Oct 2010 17:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OHUGqF058306; Sun, 24 Oct 2010 17:30:16 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 17:30:16 GMT Message-Id: <201010241730.o9OHUGqF058306@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151689: dns/rbldnsd does not use preassigned UID/GIDs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 17:30:16 -0000 The following reply was made to PR ports/151689; it has been noted by GNATS. From: Edwin Groothuis To: alexey@renatasystems.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/151689: dns/rbldnsd does not use preassigned UID/GIDs Date: Sun, 24 Oct 2010 17:20:11 UT Maintainer of dns/rbldnsd, Please note that PR ports/151689 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151689 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 18:20:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26B5C1065675 for ; Sun, 24 Oct 2010 18:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DCE218FC21 for ; Sun, 24 Oct 2010 18:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OIKB4c010532 for ; Sun, 24 Oct 2010 18:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OIKBPh010529; Sun, 24 Oct 2010 18:20:11 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 18:20:11 GMT Resent-Message-Id: <201010241820.o9OIKBPh010529@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Torbjorn Granlund Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AA07106566B for ; Sun, 24 Oct 2010 18:12:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 18B9B8FC17 for ; Sun, 24 Oct 2010 18:12:52 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9OICpSK008971 for ; Sun, 24 Oct 2010 18:12:51 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9OICpmn008964; Sun, 24 Oct 2010 18:12:51 GMT (envelope-from nobody) Message-Id: <201010241812.o9OICpmn008964@www.freebsd.org> Date: Sun, 24 Oct 2010 18:12:51 GMT From: Torbjorn Granlund To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151694: Kernel module kqemu fails to load (kernel and kqemu are not out-of-synch) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 18:20:12 -0000 >Number: 151694 >Category: ports >Synopsis: Kernel module kqemu fails to load (kernel and kqemu are not out-of-synch) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 18:20:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Torbjorn Granlund >Release: 8.1-RELEASE >Organization: >Environment: FreeBSD king.gmplib.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: A vanilla FreeBSD 8.1 system cannot kldload kqemu.ko. I've tried both /emulators/kqemu-kmod and /emulators/kqemu-kmod-devel. The kernel is *not* newer than kqemu.ko. >How-To-Repeat: king# kldload /boot/modules/kqemu.ko kldload: can't load /boot/modules/kqemu.ko: Exec format error king# file /boot/modules/kqemu.ko /boot/modules/kqemu.ko: ELF 64-bit LSB relocatable, x86-64, version 1 (FreeBSD), not stripped >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 19:20:05 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5ED671065670 for ; Sun, 24 Oct 2010 19:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C39C8FC25 for ; Sun, 24 Oct 2010 19:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OJK4D9072262 for ; Sun, 24 Oct 2010 19:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OJK4xe072261; Sun, 24 Oct 2010 19:20:04 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 19:20:04 GMT Resent-Message-Id: <201010241920.o9OJK4xe072261@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87AF0106566C for ; Sun, 24 Oct 2010 19:11:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 758FD8FC0C for ; Sun, 24 Oct 2010 19:11:28 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9OJBRhv062409 for ; Sun, 24 Oct 2010 19:11:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9OJBR7G062402; Sun, 24 Oct 2010 19:11:27 GMT (envelope-from nobody) Message-Id: <201010241911.o9OJBR7G062402@www.freebsd.org> Date: Sun, 24 Oct 2010 19:11:27 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 19:20:05 -0000 >Number: 151699 >Category: ports >Synopsis: [PATCH] security/hydra: update to 5.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 19:20:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 8.1-STABLE >Organization: >Environment: 8.1-STABLE i386 >Description: - update to 5.8 - change MASTER_SITES - disable PACKETSTORM mastersite for now - it doesn't have new distfile - actualize patches - add LICENSE - change url in pkg-descr Please mirror distfile on FreeBSD ftp! thc.org is unstable. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruNa hydra/Makefile hydra/Makefile --- hydra/Makefile 2010-03-28 10:43:21.000000000 +0400 +++ hydra/Makefile 2010-10-24 22:55:20.000000000 +0400 @@ -7,17 +7,18 @@ # PORTNAME= hydra -PORTVERSION= 5.4 -PORTREVISION= 5 +PORTVERSION= 5.8 CATEGORIES= security -MASTER_SITES= http://www.thc.org/releases/ \ - ${MASTER_SITE_PACKETSTORM} +MASTER_SITES= http://freeworld.thc.org/releases/ +# ${MASTER_SITE_PACKETSTORM} MASTER_SITE_SUBDIR= groups/thc EXTRACT_SUFX= -src.tar.gz MAINTAINER= llevier@argosnet.com COMMENT= Brute force attack utility working on multiple network services +LICENSE= GPLv3 +LICENSE_FILE_GPLv3=${WRKSRC}/LICENSE NO_LATEST_LINK= yes PLIST_FILES= bin/hydra bin/xhydra GNU_CONFIGURE= yes diff -ruNa hydra/distinfo hydra/distinfo --- hydra/distinfo 2007-04-11 05:46:48.000000000 +0400 +++ hydra/distinfo 2010-10-24 22:32:07.000000000 +0400 @@ -1,3 +1,3 @@ -MD5 (hydra-5.4-src.tar.gz) = fa08b465d19321e77b1a0ef912eeecc1 -SHA256 (hydra-5.4-src.tar.gz) = cd2e7e5ea479d50982b08334b1f4477a6620e6b45bc79ab55ddd07b128c64611 -SIZE (hydra-5.4-src.tar.gz) = 208272 +MD5 (hydra-5.8-src.tar.gz) = 1b947dbcd04137efd8c9bbdc79d0448b +SHA256 (hydra-5.8-src.tar.gz) = 8c97472509a1afe9c60bddbb3f3541eb706d3719fb1c4634749d1531397377aa +SIZE (hydra-5.8-src.tar.gz) = 203164 diff -ruNa hydra/files/patch-Makefile.am hydra/files/patch-Makefile.am --- hydra/files/patch-Makefile.am 2005-05-22 03:55:39.000000000 +0400 +++ hydra/files/patch-Makefile.am 2010-10-24 22:36:06.000000000 +0400 @@ -1,6 +1,6 @@ ---- Makefile.am.orig Fri May 20 16:54:16 2005 -+++ Makefile.am Fri May 20 16:54:24 2005 -@@ -36,7 +36,7 @@ +--- Makefile.am.orig 2010-09-29 15:19:43.000000000 +0400 ++++ Makefile.am 2010-10-24 22:35:49.000000000 +0400 +@@ -45,7 +45,7 @@ @echo xhydra: diff -ruNa hydra/files/patch-configure hydra/files/patch-configure --- hydra/files/patch-configure 2006-11-22 00:56:25.000000000 +0300 +++ hydra/files/patch-configure 2010-10-24 22:50:38.000000000 +0400 @@ -1,11 +1,11 @@ ---- configure.orig Sat Oct 28 19:51:24 2006 -+++ configure Sat Oct 28 19:42:03 2006 -@@ -118,11 +118,11 @@ - echo " ... NOT found, module postgres disabled" +--- configure.orig 2010-09-29 15:19:43.000000000 +0400 ++++ configure 2010-10-24 22:49:10.000000000 +0400 +@@ -125,11 +125,11 @@ + echo " ... NOT found, module postgres disabled" fi --echo "Checking for SVN (ibsvn_client-1 libapr-0.so libaprutil-0.so) ..." -+echo "Checking for SVN (ibsvn_client-1 libapr-1.so libaprutil-1.so) ..." +-echo "Checking for SVN (libsvn_client-1 libapr-0.so libaprutil-0.so) ..." ++echo "Checking for SVN (libsvn_client-1 libapr-1.so libaprutil-1.so) ..." for i in $LIBDIRS /lib /usr/lib /usr/local/lib /opt/local/lib . do if [ "X" = "X$SVN_PATH" ]; then @@ -14,7 +14,7 @@ SVN_PATH="$i" fi fi -@@ -202,8 +202,8 @@ +@@ -303,8 +303,8 @@ fi fi if [ "X" = "X$APR_IPATH" ]; then @@ -25,7 +25,7 @@ fi fi done -@@ -220,8 +220,8 @@ +@@ -321,8 +321,8 @@ fi fi if [ "X" = "X$APR_IPATH" ]; then @@ -36,7 +36,7 @@ fi fi done -@@ -379,10 +379,10 @@ +@@ -528,10 +528,10 @@ XLIBS="$XLIBS -lpq" fi if [ -n "$SVN_PATH" ]; then diff -ruNa hydra/pkg-descr hydra/pkg-descr --- hydra/pkg-descr 2003-06-30 11:41:04.000000000 +0400 +++ hydra/pkg-descr 2010-10-24 22:31:29.000000000 +0400 @@ -5,4 +5,4 @@ NEWS: Hydra is now included in Nessus! -WWW: http://www.thc.org/releases.php +WWW: http://freeworld.thc.org/thc-hydra/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 19:20:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99E9E1065675; Sun, 24 Oct 2010 19:20:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 702768FC15; Sun, 24 Oct 2010 19:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OJKC9k072765; Sun, 24 Oct 2010 19:20:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OJKClD072757; Sun, 24 Oct 2010 19:20:12 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 19:20:12 GMT Message-Id: <201010241920.o9OJKClD072757@freefall.freebsd.org> To: cvs-src@yandex.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 19:20:12 -0000 Synopsis: [PATCH] security/hydra: update to 5.8 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Oct 24 19:20:12 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151699 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 19:30:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F12661065673 for ; Sun, 24 Oct 2010 19:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF5238FC0C for ; Sun, 24 Oct 2010 19:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OJUDPu081823 for ; Sun, 24 Oct 2010 19:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OJUD5i081820; Sun, 24 Oct 2010 19:30:13 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 19:30:13 GMT Message-Id: <201010241930.o9OJUD5i081820@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 19:30:14 -0000 The following reply was made to PR ports/151699; it has been noted by GNATS. From: Edwin Groothuis To: llevier@argosnet.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 Date: Sun, 24 Oct 2010 19:20:09 UT Maintainer of security/hydra, Please note that PR ports/151699 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151699 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:00:26 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A0351065670 for ; Sun, 24 Oct 2010 20:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 183978FC1A for ; Sun, 24 Oct 2010 20:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OK0PlY012325 for ; Sun, 24 Oct 2010 20:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OK0P8a012298; Sun, 24 Oct 2010 20:00:25 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 20:00:25 GMT Message-Id: <201010242000.o9OK0P8a012298@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Anonymous Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anonymous List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:00:26 -0000 The following reply was made to PR ports/151699; it has been noted by GNATS. From: Anonymous To: Ruslan Mahmatkhanov Cc: bug-followup@FreeBSD.org Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 Date: Sun, 24 Oct 2010 23:57:24 +0400 Ruslan Mahmatkhanov writes: > MAINTAINER= llevier@argosnet.com > COMMENT= Brute force attack utility working on multiple network services > > +LICENSE= GPLv3 > +LICENSE_FILE_GPLv3=${WRKSRC}/LICENSE It displays a placeholder instead of WRKSRC/LICENSE $ make LICENSES_ASK= NO_LICENSES_DIALOGS= >/dev/null $ cat $(make -V _LICENSE_FILE) The license: GPLv3 (GNU General Public License version 3) is standard, please read from the web. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:10:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 513F3106566B for ; Sun, 24 Oct 2010 20:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12AA88FC22 for ; Sun, 24 Oct 2010 20:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKABuQ023379 for ; Sun, 24 Oct 2010 20:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKABxD023378; Sun, 24 Oct 2010 20:10:11 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 20:10:11 GMT Resent-Message-Id: <201010242010.o9OKABxD023378@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F5D9106566C for ; Sun, 24 Oct 2010 20:00:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 63D228FC1A for ; Sun, 24 Oct 2010 20:00:47 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9OK0kw8013345 for ; Sun, 24 Oct 2010 20:00:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9OK0kpR013344; Sun, 24 Oct 2010 20:00:46 GMT (envelope-from nobody) Message-Id: <201010242000.o9OK0kpR013344@www.freebsd.org> Date: Sun, 24 Oct 2010 20:00:46 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151700: [PATCH] science/gramps: update to 3.2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:10:12 -0000 >Number: 151700 >Category: ports >Synopsis: [PATCH] science/gramps: update to 3.2.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 20:10:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 8.1-STABLE >Organization: >Environment: 8.1-STABLE i386 >Description: - update to 3.2.4 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruNa gramps/Makefile gramps/Makefile --- gramps/Makefile 2010-10-24 23:32:42.000000000 +0400 +++ gramps/Makefile 2010-10-24 23:40:02.000000000 +0400 @@ -5,7 +5,7 @@ # $FreeBSD: ports/science/gramps/Makefile,v 1.44 2010/06/24 12:07:17 pav Exp $ PORTNAME= gramps -PORTVERSION= 3.2.3 +PORTVERSION= 3.2.4 CATEGORIES= science gnome python MASTER_SITES= SF/${PORTNAME}/Stable/${PORTVERSION} @@ -13,7 +13,7 @@ COMMENT= A GTK/GNOME-based genealogy program RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb \ - ${PYTHON_LIBDIR}/site-packages/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml + ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml LICENSE= GPLv2 LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING diff -ruNa gramps/distinfo gramps/distinfo --- gramps/distinfo 2010-10-24 23:32:53.000000000 +0400 +++ gramps/distinfo 2010-10-24 23:33:01.000000000 +0400 @@ -1,3 +1,3 @@ -MD5 (gramps-3.2.3.tar.gz) = 76a8d5bac3300d6fc81def3eccafcd27 -SHA256 (gramps-3.2.3.tar.gz) = a5f34c484afa66af4ef54e19a9b7cce8783f91caa911cbe24fcef9fab2489ce8 -SIZE (gramps-3.2.3.tar.gz) = 7234196 +MD5 (gramps-3.2.4.tar.gz) = b04a078ca9986ff7a3027676df93c30f +SHA256 (gramps-3.2.4.tar.gz) = ef4a4d188898ee99021197856b99abd7e340dfd76bc3a578e06c44aed797cb21 +SIZE (gramps-3.2.4.tar.gz) = 7252550 diff -ruNa gramps/pkg-plist gramps/pkg-plist --- gramps/pkg-plist 2010-06-24 16:07:17.000000000 +0400 +++ gramps/pkg-plist 2010-10-24 23:52:24.000000000 +0400 @@ -1011,6 +1011,7 @@ %%DATADIR%%/data/Web_Nebraska.css %%DATADIR%%/data/Web_Print-Default.css %%DATADIR%%/data/Web_Visually.css +%%DATADIR%%/data/ancestortree.css %%DATADIR%%/data/authors.xml %%DATADIR%%/data/behaviour.css %%DATADIR%%/data/gedcom.xml @@ -2689,6 +2690,7 @@ share/locale/zh_CN/LC_MESSAGES/gramps.mo share/mime-info/gramps.keys share/mime-info/gramps.mime +share/mime/application/x-gedcom.xml share/mime/application/x-geneweb.xml share/mime/application/x-gramps-package.xml share/mime/application/x-gramps-xml.xml >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:10:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A07B01065695 for ; Sun, 24 Oct 2010 20:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 627EC8FC23 for ; Sun, 24 Oct 2010 20:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKAC4n023388 for ; Sun, 24 Oct 2010 20:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKACBd023387; Sun, 24 Oct 2010 20:10:12 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 20:10:12 GMT Resent-Message-Id: <201010242010.o9OKACBd023387@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Li-Wen Hsu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 437B7106564A; Sun, 24 Oct 2010 20:09:29 +0000 (UTC) (envelope-from lwhsu@lwbsd.csie.net) Received: from lucky7.csie.net (lucky7.cs.nctu.edu.tw [140.113.17.237]) by mx1.freebsd.org (Postfix) with ESMTP id D48F28FC0C; Sun, 24 Oct 2010 20:09:26 +0000 (UTC) Received: from lucky7.csie.net (localhost [127.0.0.1]) by lucky7.csie.net (Postfix) with ESMTP id 0077D148305; Mon, 25 Oct 2010 04:09:04 +0800 (CST) Received: from lwbsd.csie.net (lwbsd.cs.nctu.edu.tw [140.113.17.197]) by lucky7.csie.net (Postfix) with ESMTP id E92291482FB; Mon, 25 Oct 2010 04:09:03 +0800 (CST) Received: by lwbsd.csie.net (Postfix, from userid 1001) id 5983075E9E; Mon, 25 Oct 2010 04:09:25 +0800 (CST) Message-Id: <20101024200925.5983075E9E@lwbsd.csie.net> Date: Mon, 25 Oct 2010 04:09:25 +0800 (CST) From: Li-Wen Hsu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: nivit@FreeBSD.org Subject: ports/151701: [PATCH] databases/py-sqlalchemy: update to 0.6.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:10:12 -0000 >Number: 151701 >Category: ports >Synopsis: [PATCH] databases/py-sqlalchemy: update to 0.6.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 20:10:12 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: System: FreeBSD lwbsd.cs.nctu.edu.tw 8.1-STABLE FreeBSD 8.1-STABLE #0: Tue Sep 21 20:44:28 CST 2010 >Description: - Update to 0.6.5 - Add Sybase support - Use databases/py-sqlite3 for Python version 2.5 and above Distfiles are different on SourceForge and CheeseShop (contents are the same), here use CheeseShop one and (temporary) remove SF in MASTER_SITES Port maintainer (nivit@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- py27-sqlalchemy-0.6.5.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/py-sqlalchemy/Makefile,v retrieving revision 1.33 diff -u -u -r1.33 Makefile --- Makefile 12 Oct 2010 06:09:48 -0000 1.33 +++ Makefile 24 Oct 2010 20:09:00 -0000 @@ -6,10 +6,9 @@ # PORTNAME= sqlalchemy -PORTVERSION= 0.6.4 +PORTVERSION= 0.6.5 CATEGORIES= databases python -MASTER_SITES= SF \ - CHEESESHOP +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= SQLAlchemy-${DISTVERSION} @@ -30,6 +29,7 @@ OPTIONS+= MYSQL "support MySql" on OPTIONS+= POSTGRE "support PostGreSQL" on OPTIONS+= SQLITE "support Sqlite" on +OPTIONS+= SYBASE "support Sybase" off DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} @@ -58,7 +58,15 @@ .endif .if !defined(WITHOUT_SQLITE) +.if ${PYTHON_REL} < 250 RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23 +.else +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 +.endif +.endif + +.if !defined(WITHOUT_SYBASE) +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/Sybase.py:${PORTSDIR}/databases/py-sybase .endif post-install: Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/py-sqlalchemy/distinfo,v retrieving revision 1.26 diff -u -u -r1.26 distinfo --- distinfo 12 Oct 2010 06:09:48 -0000 1.26 +++ distinfo 24 Oct 2010 20:09:00 -0000 @@ -1,3 +1,3 @@ -MD5 (SQLAlchemy-0.6.4.tar.gz) = f1e553e73ca989c162ea039b55bd93f5 -SHA256 (SQLAlchemy-0.6.4.tar.gz) = c439342f0e6fd46f564431c9ae4b04a0088897214265e2d18d41ae818d3d6ff1 -SIZE (SQLAlchemy-0.6.4.tar.gz) = 1922090 +MD5 (SQLAlchemy-0.6.5.tar.gz) = a64f3d3115285d50ec52349e5e8e0214 +SHA256 (SQLAlchemy-0.6.5.tar.gz) = 21c8fea3518e2ab0be4f8c19616233af95d1e6a45ddeed92f233fc6cf2a26542 +SIZE (SQLAlchemy-0.6.5.tar.gz) = 2062676 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/databases/py-sqlalchemy/pkg-plist,v retrieving revision 1.15 diff -u -u -r1.15 pkg-plist --- pkg-plist 12 Oct 2010 06:09:48 -0000 1.15 +++ pkg-plist 24 Oct 2010 20:09:00 -0000 @@ -316,18 +316,12 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/assertsql.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/assertsql.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/assertsql.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/config.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/config.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/config.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/engines.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/engines.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/engines.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/entities.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/entities.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/entities.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/noseplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/noseplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/noseplugin.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/orm.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/orm.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test/orm.pyo @@ -358,10 +352,20 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/util.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/util.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/util.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/config.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/config.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/config.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/noseplugin.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/noseplugin.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose/noseplugin.pyo %%PORTDOCS%%%%DOCSDIR%%/copyright.html %%PORTDOCS%%%%DOCSDIR%%/core/compiler.html %%PORTDOCS%%%%DOCSDIR%%/core/connections.html %%PORTDOCS%%%%DOCSDIR%%/core/engines.html +%%PORTDOCS%%%%DOCSDIR%%/core/exceptions.html %%PORTDOCS%%%%DOCSDIR%%/core/expression_api.html %%PORTDOCS%%%%DOCSDIR%%/core/index.html %%PORTDOCS%%%%DOCSDIR%%/core/interfaces.html @@ -387,6 +391,7 @@ %%PORTDOCS%%%%DOCSDIR%%/orm/collections.html %%PORTDOCS%%%%DOCSDIR%%/orm/deprecated.html %%PORTDOCS%%%%DOCSDIR%%/orm/examples.html +%%PORTDOCS%%%%DOCSDIR%%/orm/exceptions.html %%PORTDOCS%%%%DOCSDIR%%/orm/extensions/associationproxy.html %%PORTDOCS%%%%DOCSDIR%%/orm/extensions/declarative.html %%PORTDOCS%%%%DOCSDIR%%/orm/extensions/horizontal_shard.html @@ -457,6 +462,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertical/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertical/dictlike-polymorphic.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertical/dictlike.py +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy_nose @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/test @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/sql @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/sqlalchemy/orm --- py27-sqlalchemy-0.6.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:10:18 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DBA110656BA; Sun, 24 Oct 2010 20:10:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 335F48FC15; Sun, 24 Oct 2010 20:10:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKAIwQ023749; Sun, 24 Oct 2010 20:10:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKAIjV023737; Sun, 24 Oct 2010 20:10:18 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 20:10:18 GMT Message-Id: <201010242010.o9OKAIjV023737@freefall.freebsd.org> To: cvs-src@yandex.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151700: [PATCH] science/gramps: update to 3.2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:10:18 -0000 Synopsis: [PATCH] science/gramps: update to 3.2.4 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Oct 24 20:10:17 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151700 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:10:28 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 361CE106566B; Sun, 24 Oct 2010 20:10:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C49F8FC1F; Sun, 24 Oct 2010 20:10:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKARwj024805; Sun, 24 Oct 2010 20:10:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKARCo024797; Sun, 24 Oct 2010 20:10:27 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 20:10:27 GMT Message-Id: <201010242010.o9OKARCo024797@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nivit@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151701: [PATCH] databases/py-sqlalchemy: update to 0.6.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:10:28 -0000 Synopsis: [PATCH] databases/py-sqlalchemy: update to 0.6.5 Responsible-Changed-From-To: freebsd-ports-bugs->nivit Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 24 20:10:27 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151701 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:20:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01468106564A for ; Sun, 24 Oct 2010 20:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E3CEE8FC25 for ; Sun, 24 Oct 2010 20:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKKBdn034245 for ; Sun, 24 Oct 2010 20:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKKBWG034244; Sun, 24 Oct 2010 20:20:11 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 20:20:11 GMT Message-Id: <201010242020.o9OKKBWG034244@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151700: [PATCH] science/gramps: update to 3.2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:20:12 -0000 The following reply was made to PR ports/151700; it has been noted by GNATS. From: Edwin Groothuis To: freebsd@troback.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/151700: [PATCH] science/gramps: update to 3.2.4 Date: Sun, 24 Oct 2010 20:10:15 UT Maintainer of science/gramps, Please note that PR ports/151700 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151700 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:29:28 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 818A91065670; Sun, 24 Oct 2010 20:29:28 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 55A738FC23; Sun, 24 Oct 2010 20:29:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKTSX9043534; Sun, 24 Oct 2010 20:29:28 GMT (envelope-from lwhsu@freefall.freebsd.org) Received: (from lwhsu@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKTSbj043530; Sun, 24 Oct 2010 20:29:28 GMT (envelope-from lwhsu) Date: Sun, 24 Oct 2010 20:29:28 GMT Message-Id: <201010242029.o9OKTSbj043530@freefall.freebsd.org> To: duchateau.olivier@gmail.com, lwhsu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: lwhsu@FreeBSD.org Cc: Subject: Re: ports/151628: [NEW PORTS] www/py-flask-uploads, Flask-Uploads provides flexible upload handling for Flask applications X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:29:28 -0000 Synopsis: [NEW PORTS] www/py-flask-uploads, Flask-Uploads provides flexible upload handling for Flask applications State-Changed-From-To: open->feedback State-Changed-By: lwhsu State-Changed-When: Sun Oct 24 20:29:27 UTC 2010 State-Changed-Why: Is this a typo? "PORTNAME= flask-themes" http://www.freebsd.org/cgi/query-pr.cgi?pr=151628 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:30:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC62D1065693 for ; Sun, 24 Oct 2010 20:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DA57E8FC12 for ; Sun, 24 Oct 2010 20:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKUFmk043753 for ; Sun, 24 Oct 2010 20:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKUF9R043748; Sun, 24 Oct 2010 20:30:15 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 20:30:15 GMT Message-Id: <201010242030.o9OKUF9R043748@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ruslan Mahmatkhanov Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ruslan Mahmatkhanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:30:16 -0000 The following reply was made to PR ports/151699; it has been noted by GNATS. From: Ruslan Mahmatkhanov To: Anonymous Cc: bug-followup@FreeBSD.org Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 Date: Mon, 25 Oct 2010 00:06:23 +0400 24.10.2010 23:57, Anonymous пишет: > Ruslan Mahmatkhanov writes: > >> MAINTAINER= llevier@argosnet.com >> COMMENT= Brute force attack utility working on multiple network services >> >> +LICENSE= GPLv3 >> +LICENSE_FILE_GPLv3=${WRKSRC}/LICENSE > > It displays a placeholder instead of WRKSRC/LICENSE > > $ make LICENSES_ASK= NO_LICENSES_DIALOGS=>/dev/null > $ cat $(make -V _LICENSE_FILE) > The license: GPLv3 (GNU General Public License version 3) is standard, > please read from the web. Bad. So what should i do? Just remove LICENSE_FILE_GPLv3? -- Regards, Ruslan From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:30:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF8321065696 for ; Sun, 24 Oct 2010 20:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AF2328FC19 for ; Sun, 24 Oct 2010 20:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKUG4n043823 for ; Sun, 24 Oct 2010 20:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKUGW6043818; Sun, 24 Oct 2010 20:30:16 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 20:30:16 GMT Resent-Message-Id: <201010242030.o9OKUGW6043818@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Charlie Kester Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D969D1065679 for ; Sun, 24 Oct 2010 20:25:31 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from qmta04.westchester.pa.mail.comcast.net (qmta04.westchester.pa.mail.comcast.net [76.96.62.40]) by mx1.freebsd.org (Postfix) with ESMTP id 835968FC2B for ; Sun, 24 Oct 2010 20:25:31 +0000 (UTC) Received: from omta01.westchester.pa.mail.comcast.net ([76.96.62.11]) by qmta04.westchester.pa.mail.comcast.net with comcast id NiRB1f0030EZKEL54kRXx0; Sun, 24 Oct 2010 20:25:31 +0000 Received: from comcast.net ([98.203.142.76]) by omta01.westchester.pa.mail.comcast.net with comcast id NkRV1f0061f6R9u3MkRWN1; Sun, 24 Oct 2010 20:25:31 +0000 Received: by comcast.net (sSMTP sendmail emulation); Sun, 24 Oct 2010 13:25:28 -0700 Message-Id: <20101024202531.D969D1065679@hub.freebsd.org> Date: Sun, 24 Oct 2010 13:25:28 -0700 From: Charlie Kester To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151702: [MAINTAINER] sysutils/rdup: update to 1.1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Charlie Kester List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:30:17 -0000 >Number: 151702 >Category: ports >Synopsis: [MAINTAINER] sysutils/rdup: update to 1.1.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 20:30:15 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Charlie Kester >Release: FreeBSD 8.1-STABLE i386 >Organization: >Environment: System: FreeBSD atom.local 8.1-STABLE FreeBSD 8.1-STABLE #0: Sat Oct 23 18:50:40 PDT 2010 root@atom.local:/usr/obj/usr/src/sys/ATOM i386 >Description: Update to 1.1.8 >How-To-Repeat: >Fix: No port files added or deleted. Minor changes only. --- rdup-1.1.8.diff begins here --- diff -ruN /usr/ports/sysutils/rdup/Makefile ./rdup/Makefile --- /usr/ports/sysutils/rdup/Makefile 2010-10-16 04:52:38.000000000 -0700 +++ ./rdup/Makefile 2010-10-24 12:00:49.000000000 -0700 @@ -7,8 +7,7 @@ # PORTNAME= rdup -PORTVERSION= 1.1.7 -PORTREVISION= 1 +PORTVERSION= 1.1.8 CATEGORIES= sysutils MASTER_SITES= http://miek.nl/projects/rdup/ diff -ruN /usr/ports/sysutils/rdup/distinfo ./rdup/distinfo --- /usr/ports/sysutils/rdup/distinfo 2010-06-30 04:42:35.000000000 -0700 +++ ./rdup/distinfo 2010-10-24 12:01:10.000000000 -0700 @@ -1,3 +1,3 @@ -MD5 (rdup-1.1.7.tar.bz2) = ce0725bee1decb8e986b49a9130905c0 -SHA256 (rdup-1.1.7.tar.bz2) = 3be61803e898191778d641e2079d2fc3142ae5ade4c7f63105b4ccc14bd42725 -SIZE (rdup-1.1.7.tar.bz2) = 358390 +MD5 (rdup-1.1.8.tar.bz2) = 0b912c66daf19d76916dfd7274fc4ea8 +SHA256 (rdup-1.1.8.tar.bz2) = 3db42a50de736a59c3c04aa751e099d076bb00cdb5c79e29615b32e571dd1bc7 +SIZE (rdup-1.1.8.tar.bz2) = 359054 --- rdup-1.1.8.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0477106566C for ; Sun, 24 Oct 2010 20:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A19768FC13 for ; Sun, 24 Oct 2010 20:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKeASE055278 for ; Sun, 24 Oct 2010 20:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKeAhD055277; Sun, 24 Oct 2010 20:40:10 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 20:40:10 GMT Resent-Message-Id: <201010242040.o9OKeAhD055277@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pierre David Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6DB7106566B for ; Sun, 24 Oct 2010 20:32:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id AA4D68FC16 for ; Sun, 24 Oct 2010 20:32:37 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9OKWbVT042627 for ; Sun, 24 Oct 2010 20:32:37 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9OKWaSF042626; Sun, 24 Oct 2010 20:32:36 GMT (envelope-from nobody) Message-Id: <201010242032.o9OKWaSF042626@www.freebsd.org> Date: Sun, 24 Oct 2010 20:32:36 GMT From: Pierre David To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151703: Upgrade database/pgtcl (patch included) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:40:11 -0000 >Number: 151703 >Category: ports >Synopsis: Upgrade database/pgtcl (patch included) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 20:40:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pierre David >Release: 99.0-CURRENT >Organization: >Environment: FreeBSD vagabond.ma.maison 9.0-CURRENT FreeBSD 9.0-CURRENT #11: Fri Oct 8 21:37:54 CEST 2010 pda@vagabond:/usr/obj/usr/src/sys/VAGABOND amd64 >Description: Here is a patch to upgrade database/pgtcl port from 1.6.2 to 1.8.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN pgtcl/Makefile pgtcl.bak/Makefile --- pgtcl/Makefile 2010-10-24 21:43:11.404701846 +0200 +++ pgtcl.bak/Makefile 2009-09-08 23:08:41.000000000 +0200 @@ -6,18 +6,16 @@ # PORTNAME= pgtcl -PORTVERSION= 1.8.0 -# PORTREVISION= 0 +PORTVERSION= 1.6.2 +PORTREVISION= 1 CATEGORIES= databases tcl DISTNAME= ${PORTNAME}${PORTVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:src -MASTER_SITES= http://pgfoundry.org/frs/download.php/2835/:src +MASTER_SITES= http://pgfoundry.org/frs/download.php/1545/:src MAINTAINER= mi@aldan.algebra.com COMMENT= TCL extension for accessing a PostgreSQL server (PGTCL-NG) -LICENSE= BSD - USE_TCL= yes USE_PGSQL= yes GNU_CONFIGURE= yes @@ -26,8 +24,8 @@ PLIST_SUB+= PORTVERSION=${PORTVERSION} .if !defined(NOPORTDOCS) EXTRACT_ONLY= ${_DISTFILES:M*tar.gz} -DISTFILES+= pgtcldocs-20101010.zip:doc -MASTER_SITES+= http://pgfoundry.org/frs/download.php/2836/:doc +DISTFILES+= pgtcldocs-20070115.zip:doc +MASTER_SITES+= http://pgfoundry.org/frs/download.php/1228/:doc BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip .endif diff -ruN pgtcl/distinfo pgtcl.bak/distinfo --- pgtcl/distinfo 2010-10-24 21:43:44.575704026 +0200 +++ pgtcl.bak/distinfo 2009-01-20 19:10:53.000000000 +0100 @@ -1,6 +1,6 @@ -MD5 (pgtcl1.8.0.tar.gz) = 42e680b85919f9ac8e8ebe5ae71293e7 -SHA256 (pgtcl1.8.0.tar.gz) = 172dc1e5efd614b4cec3a4fa6070e123973ea1c578ba731219f984b5b0a218bb -SIZE (pgtcl1.8.0.tar.gz) = 187842 -MD5 (pgtcldocs-20101010.zip) = fb94579210a7a7f2ae5fd58f14b2f58c -SHA256 (pgtcldocs-20101010.zip) = f15643de16063099236cc60394a387ac4d0a5ede79e12158145d9cc245eb3b5a -SIZE (pgtcldocs-20101010.zip) = 154201 +MD5 (pgtcl1.6.2.tar.gz) = abf26e3cd7f8229f468045ed1fb7e748 +SHA256 (pgtcl1.6.2.tar.gz) = a84af34330b6de8db72e1c63c9db908b92244973e27e7b185aa7c4d34ad3de08 +SIZE (pgtcl1.6.2.tar.gz) = 180664 +MD5 (pgtcldocs-20070115.zip) = 8ce98e93b238c3329d0fe43810442c44 +SHA256 (pgtcldocs-20070115.zip) = c5bcab2f0169041bcf8a10ff80bb39500ef3d068d960cf8d10c1e48b2c1c49de +SIZE (pgtcldocs-20070115.zip) = 128754 diff -ruN pgtcl/files/patch-size_t pgtcl.bak/files/patch-size_t --- pgtcl/files/patch-size_t 1970-01-01 01:00:00.000000000 +0100 +++ pgtcl.bak/files/patch-size_t 2007-06-18 22:45:59.000000000 +0200 @@ -0,0 +1,13 @@ +size_t is the right type to use, but Tcl's core is not prepared for it. + + -mi + +--- pgtclCmds.c Mon Jan 15 21:41:07 2007 ++++ pgtclCmds.c Mon Jun 18 16:28:31 2007 +@@ -3644,5 +3644,5 @@ + { + unsigned char *from_binary; +- size_t from_len; ++ int from_len; + unsigned char *to_string; + size_t to_len; diff -ruN pgtcl/pkg-plist pgtcl.bak/pkg-plist --- pgtcl/pkg-plist 2010-10-24 22:05:44.068694616 +0200 +++ pgtcl.bak/pkg-plist 2007-06-18 22:45:59.000000000 +0200 @@ -1,17 +1,13 @@ lib/pgtcl/libpgtcl%%PORTVERSION%%.so lib/pgtcl/pkgIndex.tcl @dirrm lib/pgtcl -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.html %%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/legalnotice.html +%%PORTDOCS%%%%DOCSDIR%%/ln-legalnotice.html %%PORTDOCS%%%%DOCSDIR%%/pg-blocking.html %%PORTDOCS%%%%DOCSDIR%%/pg-cancelrequest.html %%PORTDOCS%%%%DOCSDIR%%/pg-conndefaults.html %%PORTDOCS%%%%DOCSDIR%%/pg-connect.html -%%PORTDOCS%%%%DOCSDIR%%/pg-describe-cursor.html -%%PORTDOCS%%%%DOCSDIR%%/pg-describe-prepared.html %%PORTDOCS%%%%DOCSDIR%%/pg-disconnect.html -%%PORTDOCS%%%%DOCSDIR%%/pg-encrypt-password.html %%PORTDOCS%%%%DOCSDIR%%/pg-escape-bytea.html %%PORTDOCS%%%%DOCSDIR%%/pg-escape-string.html %%PORTDOCS%%%%DOCSDIR%%/pg-exec-params.html @@ -29,7 +25,6 @@ %%PORTDOCS%%%%DOCSDIR%%/pg-lo-open.html %%PORTDOCS%%%%DOCSDIR%%/pg-lo-read.html %%PORTDOCS%%%%DOCSDIR%%/pg-lo-tell.html -%%PORTDOCS%%%%DOCSDIR%%/pg-lo-truncate.html %%PORTDOCS%%%%DOCSDIR%%/pg-lo-unlink.html %%PORTDOCS%%%%DOCSDIR%%/pg-lo-write.html %%PORTDOCS%%%%DOCSDIR%%/pg-notice-handler.html @@ -54,16 +49,15 @@ %%PORTDOCS%%%%DOCSDIR%%/pgtcl-example-picstore-pq.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-example-picview-esc.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-example-picview-lo.html +%%PORTDOCS%%%%DOCSDIR%%/pgtcl-make.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-example-picview-pq.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-example-results.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-examples.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-load-static.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-loading-load.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-loading.html -%%PORTDOCS%%%%DOCSDIR%%/pgtcl-make-bcc.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-make-macos.html -%%PORTDOCS%%%%DOCSDIR%%/pgtcl-make-mingw.html -%%PORTDOCS%%%%DOCSDIR%%/pgtcl-make.html +%%PORTDOCS%%%%DOCSDIR%%/pgtcl-make-win.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-overview.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-preface.html %%PORTDOCS%%%%DOCSDIR%%/pgtcl-ref-async.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 20:40:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC8B2106566B for ; Sun, 24 Oct 2010 20:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AB3708FC14 for ; Sun, 24 Oct 2010 20:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OKeCWP055342 for ; Sun, 24 Oct 2010 20:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OKeCmE055340; Sun, 24 Oct 2010 20:40:12 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 20:40:12 GMT Message-Id: <201010242040.o9OKeCmE055340@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Anonymous Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anonymous List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 20:40:12 -0000 The following reply was made to PR ports/151699; it has been noted by GNATS. From: Anonymous To: Ruslan Mahmatkhanov Cc: bug-followup@FreeBSD.org Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 Date: Mon, 25 Oct 2010 00:37:45 +0400 Ruslan Mahmatkhanov writes: > 24.10.2010 23:57, Anonymous =D0=BF=D0=B8=D1=88=D0=B5=D1=82: >> Ruslan Mahmatkhanov writes: >> >>> MAINTAINER=3D llevier@argosnet.com >>> COMMENT=3D Brute force attack utility working on multiple network ser= vices >>> >>> +LICENSE=3D GPLv3 >>> +LICENSE_FILE_GPLv3=3D${WRKSRC}/LICENSE >> >> It displays a placeholder instead of WRKSRC/LICENSE >> >> $ make LICENSES_ASK=3D NO_LICENSES_DIALOGS=3D>/dev/null >> $ cat $(make -V _LICENSE_FILE) >> The license: GPLv3 (GNU General Public License version 3) is standar= d, >> please read from the web. > > Bad. > So what should i do? Just remove LICENSE_FILE_GPLv3? Strip license suffix, it's used only for non-"single" licenses (dual/multi). On wiki.freebsd.org there is even an example LICENSE=3DGPLv2 LICENSE_FILE=3D${WRKSRC}/LICENSE Replace "GPLv2" with "GPLv3" and you're done. ;) From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 21:10:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38995106564A for ; Sun, 24 Oct 2010 21:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 210D48FC19 for ; Sun, 24 Oct 2010 21:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OLA6BS086278 for ; Sun, 24 Oct 2010 21:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OLA619086277; Sun, 24 Oct 2010 21:10:06 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 21:10:06 GMT Message-Id: <201010242110.o9OLA619086277@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ruslan Mahmatkhanov Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ruslan Mahmatkhanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 21:10:07 -0000 The following reply was made to PR ports/151699; it has been noted by GNATS. From: Ruslan Mahmatkhanov To: Anonymous Cc: bug-followup@FreeBSD.org Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 Date: Mon, 25 Oct 2010 01:00:23 +0400 25.10.2010 00:37, Anonymous пишет: > Ruslan Mahmatkhanov writes: > >> 24.10.2010 23:57, Anonymous пишет: >>> Ruslan Mahmatkhanov writes: >>> >>>> MAINTAINER= llevier@argosnet.com >>>> COMMENT= Brute force attack utility working on multiple network services >>>> >>>> +LICENSE= GPLv3 >>>> +LICENSE_FILE_GPLv3=${WRKSRC}/LICENSE >>> >>> It displays a placeholder instead of WRKSRC/LICENSE >>> >>> $ make LICENSES_ASK= NO_LICENSES_DIALOGS=>/dev/null >>> $ cat $(make -V _LICENSE_FILE) >>> The license: GPLv3 (GNU General Public License version 3) is standard, >>> please read from the web. >> >> Bad. >> So what should i do? Just remove LICENSE_FILE_GPLv3? > > Strip license suffix, it's used only for non-"single" licenses (dual/multi). > On wiki.freebsd.org there is even an example > > LICENSE=GPLv2 > LICENSE_FILE=${WRKSRC}/LICENSE > > Replace "GPLv2" with "GPLv3" and you're done. ;) Ok. Thank you for explanation. -- Regards, Ruslan From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 21:10:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E8A21065679 for ; Sun, 24 Oct 2010 21:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 745668FC12 for ; Sun, 24 Oct 2010 21:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OLA7PT086290 for ; Sun, 24 Oct 2010 21:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OLA7KH086289; Sun, 24 Oct 2010 21:10:07 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 21:10:07 GMT Resent-Message-Id: <201010242110.o9OLA7KH086289@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yuri Karaban Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F08E2106564A for ; Sun, 24 Oct 2010 21:07:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C52348FC1C for ; Sun, 24 Oct 2010 21:07:40 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9OL7eIj071700 for ; Sun, 24 Oct 2010 21:07:40 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9OL7eW8071699; Sun, 24 Oct 2010 21:07:40 GMT (envelope-from nobody) Message-Id: <201010242107.o9OL7eW8071699@www.freebsd.org> Date: Sun, 24 Oct 2010 21:07:40 GMT From: Yuri Karaban To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151704: port update: devel/boost-libs to 1.44.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 21:10:07 -0000 >Number: 151704 >Category: ports >Synopsis: port update: devel/boost-libs to 1.44.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 21:10:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Yuri Karaban >Release: >Organization: >Environment: >Description: Boost 1.44.00 released on August 13th, 2010. Please update port. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 21:10:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C886C1065674; Sun, 24 Oct 2010 21:10:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9E79A8FC0A; Sun, 24 Oct 2010 21:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OLADPT086882; Sun, 24 Oct 2010 21:10:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OLADSV086873; Sun, 24 Oct 2010 21:10:13 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 21:10:13 GMT Message-Id: <201010242110.o9OLADSV086873@freefall.freebsd.org> To: tech@askold.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 21:10:13 -0000 Synopsis: port update: devel/boost-libs to 1.44.0 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Oct 24 21:10:13 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151704 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 21:20:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2CB01065675 for ; Sun, 24 Oct 2010 21:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B10CA8FC21 for ; Sun, 24 Oct 2010 21:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OLKCqa096940 for ; Sun, 24 Oct 2010 21:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OLKCsn096939; Sun, 24 Oct 2010 21:20:12 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 21:20:12 GMT Message-Id: <201010242120.o9OLKCsn096939@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 21:20:12 -0000 The following reply was made to PR ports/151704; it has been noted by GNATS. From: Edwin Groothuis To: churanov.port.maintainer@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 Date: Sun, 24 Oct 2010 21:10:11 UT Maintainer of devel/boost-libs, Please note that PR ports/151704 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151704 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 21:40:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE85810656B7 for ; Sun, 24 Oct 2010 21:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C201A8FC2A for ; Sun, 24 Oct 2010 21:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OLe7pb016797 for ; Sun, 24 Oct 2010 21:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OLe7Kv016796; Sun, 24 Oct 2010 21:40:07 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 21:40:07 GMT Resent-Message-Id: <201010242140.o9OLe7Kv016796@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Deiter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D05E106566B for ; Sun, 24 Oct 2010 21:38:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id EE4558FC14 for ; Sun, 24 Oct 2010 21:38:19 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9OLcJGe001242 for ; Sun, 24 Oct 2010 21:38:19 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9OLcJmt001241; Sun, 24 Oct 2010 21:38:19 GMT (envelope-from nobody) Message-Id: <201010242138.o9OLcJmt001241@www.freebsd.org> Date: Sun, 24 Oct 2010 21:38:19 GMT From: Alex Deiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151705: [path] update ports net/activemq up to 5.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 21:40:12 -0000 >Number: 151705 >Category: ports >Synopsis: [path] update ports net/activemq up to 5.4.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 21:40:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Alex Deiter >Release: 8.1-RELEASE >Organization: N/A >Environment: FreeBSD x4150b.tdc 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please update ports net/activemq up to 5.4.1. Port changes: * New start/status/stop logic for rc.d script (derived from www/tomcat6) Thanks a lot! >How-To-Repeat: cd /usr/ports/net/activemq && make install >Fix: Please review patch Patch attached with submission follows: diff -urN activemq.orig/Makefile activemq/Makefile --- activemq.orig/Makefile 2010-06-13 08:05:07.000000000 +0000 +++ activemq/Makefile 2010-10-25 00:37:03.000000000 +0000 @@ -6,8 +6,7 @@ # PORTNAME= activemq -PORTVERSION= 5.3.2 -PORTREVISION= 1 +PORTVERSION= 5.4.1 CATEGORIES= net java MASTER_SITES= http://www.sai.msu.su/apache/${MASTER_SITE_SUBDIR}/ \ ${MASTER_SITE_APACHE}/${MASTER_SITE_SUBDIR}/ diff -urN activemq.orig/distinfo activemq/distinfo --- activemq.orig/distinfo 2010-06-12 01:11:12.000000000 +0000 +++ activemq/distinfo 2010-10-25 00:37:48.000000000 +0000 @@ -1,3 +1,3 @@ -MD5 (apache-activemq-5.3.2-bin.tar.gz) = 17574ad1ee6cc3727bf7447c2421097b -SHA256 (apache-activemq-5.3.2-bin.tar.gz) = 06d292b0a61140de03e9f3aee1ef1acf796044dec2455caa12b3c0c47ac0f366 -SIZE (apache-activemq-5.3.2-bin.tar.gz) = 33091364 +MD5 (apache-activemq-5.4.1-bin.tar.gz) = 9cac63ecfd93852cda8dec35e5feb56a +SHA256 (apache-activemq-5.4.1-bin.tar.gz) = 58783bd3cf3b9e3f38798922f765e6b225facd4748eb4284ec225a0a054cba77 +SIZE (apache-activemq-5.4.1-bin.tar.gz) = 45425692 diff -urN activemq.orig/files/activemq.in activemq/files/activemq.in --- activemq.orig/files/activemq.in 2010-06-12 01:11:12.000000000 +0000 +++ activemq/files/activemq.in 2010-10-25 00:32:13.000000000 +0000 @@ -1,4 +1,7 @@ #!/bin/sh +# +# $FreeBSD$ +# # PROVIDE: activemq # REQUIRE: NETWORKING SERVERS @@ -20,6 +23,9 @@ # Set it to java home directory. # activemq_javargs (args): Set to -Xmx256M by default. # See java -h for available arguments. +# activemq_stop_timeout (num): Set to "10" by default. +# Set the timeout in seconds to shutdown. +# . /etc/rc.subr @@ -33,28 +39,22 @@ : ${activemq_group:=${name}} : ${activemq_classpath:=%%ETCDIR%%} : ${activemq_home:=%%DATADIR%%} -: ${activemq_javargs:='-Xmx512M -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties'} +: ${activemq_javargs:='-Xmx512M -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties -Dcom.sun.management.jmxremote'} +: ${activemq_stop_timeout:="10"} pidfile=/var/run/${name}.pid required_files="%%ETCDIR%%/activemq.xml" +jar_file="%%DATADIR%%/bin/run.jar" java_options=" -server -jar ${activemq_javargs} \ -Dactivemq.classpath=${activemq_classpath} \ -Dactivemq.home=${activemq_home} \ -Dactivemq.base=${activemq_home}" -java_command="%%LOCALBASE%%/bin/java ${java_options} %%DATADIR%%/bin/run.jar $@" - -# Subvert the check_pid_file procname check. -if [ -f $pidfile ]; then - read rc_pid junk < $pidfile - if [ ! -z "$rc_pid" ]; then - procname=`ps -o command= $rc_pid | awk '{print $1 }'` - fi -fi +java_command="%%LOCALBASE%%/bin/java ${java_options} ${jar_file}" command="/usr/sbin/daemon" -command_args="-f -p ${pidfile} ${java_command}" +command_args="-f -p ${pidfile} ${java_command} start" start_precmd="activemq_precmd" status_cmd="activemq_status" stop_cmd="activemq_stop" @@ -64,39 +64,67 @@ chown ${activemq_user}:${activemq_group} ${pidfile} } -activemq_status() { - rc_pid=$(check_pidfile $pidfile *$procname*) +activemq_stop() { + rc_pid=$(activemq_check_pidfile $pidfile) - if [ -z "$rc_pid" ]; then - [ -n "$rc_fast" ] && return 0 - if [ -n "$pidfile" ]; then - echo "${name} not running? (check $pidfile)." - else - echo "${name} not running?" - fi - return 1 - fi - echo "$name is running as pid ${rc_pid}" + if [ -z "$rc_pid" ]; then + [ -n "$rc_fast" ] && return 0 + echo "${name} not running? (check $pidfile)." + return 1 + fi + + echo "Stopping ${name}." + ${java_command} stop >/dev/null + activemq_wait_max_for_pid ${activemq_stop_timeout} ${rc_pid} + kill -KILL ${rc_pid} 2> /dev/null && echo "Killed." + rm -f ${pidfile} } +activemq_status() { + rc_pid=$(activemq_check_pidfile $pidfile) -activemq_stop() { - rc_pid=$(check_pidfile $pidfile *$procname*) + if [ -z "$rc_pid" ]; then + [ -n "$rc_fast" ] && return 0 + echo "${name} not running? (check $pidfile)." + return 1 + fi + echo "${name} is running as pid ${rc_pid}." +} - if [ -z "$rc_pid" ]; then - [ -n "$rc_fast" ] && return 0 - if [ -n "$pidfile" ]; then - echo "${name} not running? (check $pidfile)." - else - echo "${name} not running?" - fi - return 1 - fi - - echo "Stopping ${name}." - kill ${rc_pid} - wait_for_pids ${rc_pid} - rm ${pidfile} +activemq_check_pidfile() { + _pidfile=$1 + if [ -z "$_pidfile" ]; then + err 3 'USAGE: activemq_check_pidfile pidfile' + fi + if [ ! -f $_pidfile ]; then + debug "pid file ($_pidfile): not readable." + return + fi + read _pid _junk < $_pidfile + if [ -z "$_pid" ]; then + debug "pid file ($_pidfile): no pid in file." + return + fi + if [ -n "`%%LOCALBASE%%/bin/jps -l | grep -e "^$_pid $jar_file\$"`" ]; then + echo -n $_pid + fi +} + +activemq_wait_max_for_pid() { + _timeout=$1 + shift + _pid=$1 + _prefix= + while [ $_timeout -gt 0 ] ; do + echo -n ${_prefix:-"Waiting (max $_timeout secs) for PIDS: "}$_pid + _prefix=", " + sleep 2 + kill -0 $_pid 2> /dev/null || break + _timeout=$(($_timeout-2)) + done + if [ -n "$_prefix" ]; then + echo "." + fi } run_rc_command "$1" diff -urN activemq.orig/pkg-plist activemq/pkg-plist --- activemq.orig/pkg-plist 2010-06-13 08:05:07.000000000 +0000 +++ activemq/pkg-plist 2010-10-25 01:19:27.000000000 +0000 @@ -1,94 +1,207 @@ -lib/activemq/data +lib/activemq/bin/activemq +lib/activemq/bin/activemq-admin +lib/activemq/bin/run.jar +lib/activemq/bin/wrapper.jar lib/activemq/conf +lib/activemq/data lib/activemq/example -lib/activemq/webapps/camel/META-INF/MANIFEST.MF +lib/activemq/lib/activation-1.1.jar +lib/activemq/lib/activemq-camel-5.4.1.jar +lib/activemq/lib/activemq-console-5.4.1.jar +lib/activemq/lib/activemq-core-5.4.1.jar +lib/activemq/lib/activemq-jaas-5.4.1.jar +lib/activemq/lib/activemq-protobuf-1.1.jar +lib/activemq/lib/activemq-web-5.4.1.jar +lib/activemq/lib/camel-core-2.4.0.jar +lib/activemq/lib/camel-jetty-2.4.0.jar +lib/activemq/lib/camel-jms-2.4.0.jar +lib/activemq/lib/camel-spring-2.4.0.jar +lib/activemq/lib/commons-logging-1.1.jar +lib/activemq/lib/geronimo-j2ee-management_1.1_spec-1.0.1.jar +lib/activemq/lib/geronimo-jms_1.1_spec-1.1.1.jar +lib/activemq/lib/geronimo-jta_1.0.1B_spec-1.0.1.jar +lib/activemq/lib/jaxb-api-2.1.jar +lib/activemq/lib/jaxb-impl-2.1.6.jar +lib/activemq/lib/kahadb-5.4.1.jar +lib/activemq/lib/optional/activeio-core-3.1.2.jar +lib/activemq/lib/optional/activemq-jmdns_1.0-5.4.1.jar +lib/activemq/lib/optional/activemq-optional-5.4.1.jar +lib/activemq/lib/optional/activemq-pool-5.4.1.jar +lib/activemq/lib/optional/activemq-rar-5.4.1.rar +lib/activemq/lib/optional/activemq-spring-5.4.1.jar +lib/activemq/lib/optional/activemq-xmpp-5.4.1.jar +lib/activemq/lib/optional/commons-beanutils-1.6.1.jar +lib/activemq/lib/optional/commons-codec-1.2.jar +lib/activemq/lib/optional/commons-collections-3.2.1.jar +lib/activemq/lib/optional/commons-dbcp-1.2.2.jar +lib/activemq/lib/optional/commons-httpclient-3.1.jar +lib/activemq/lib/optional/commons-lang-2.4.jar +lib/activemq/lib/optional/commons-net-2.0.jar +lib/activemq/lib/optional/commons-pool-1.5.4.jar +lib/activemq/lib/optional/geronimo-j2ee-connector_1.5_spec-2.0.0.jar +lib/activemq/lib/optional/icu4j-4.0.1.jar +lib/activemq/lib/optional/jasypt-1.6.jar +lib/activemq/lib/optional/jettison-1.2.jar +lib/activemq/lib/optional/josql-1.5.jar +lib/activemq/lib/optional/log4j-1.2.14.jar +lib/activemq/lib/optional/spring-aop-3.0.3.RELEASE.jar +lib/activemq/lib/optional/spring-asm-3.0.3.RELEASE.jar +lib/activemq/lib/optional/spring-beans-3.0.3.RELEASE.jar +lib/activemq/lib/optional/spring-context-3.0.3.RELEASE.jar +lib/activemq/lib/optional/spring-core-3.0.3.RELEASE.jar +lib/activemq/lib/optional/spring-expression-3.0.3.RELEASE.jar +lib/activemq/lib/optional/spring-jms-3.0.3.RELEASE.jar +lib/activemq/lib/optional/spring-oxm-tiger-1.5.8.jar +lib/activemq/lib/optional/spring-tx-3.0.3.RELEASE.jar +lib/activemq/lib/optional/stax2-api-3.0.1.jar +lib/activemq/lib/optional/velocity-1.6.2.jar +lib/activemq/lib/optional/woodstox-core-asl-4.0.7.jar +lib/activemq/lib/optional/xbean-spring-3.7.jar +lib/activemq/lib/optional/xmlpull-1.1.3.4d_b4_min.jar +lib/activemq/lib/optional/xstream-1.3.1.jar +lib/activemq/lib/stax-1.2.0.jar +lib/activemq/lib/stax-api-1.0.1.jar +lib/activemq/lib/web/commons-management-1.0.jar +lib/activemq/lib/web/core-3.1.1.jar +lib/activemq/lib/web/geronimo-servlet_2.5_spec-1.2.jar +lib/activemq/lib/web/jdom-1.0.jar +lib/activemq/lib/web/jetty-all-server-7.0.1.v20091125.jar +lib/activemq/lib/web/jetty-websocket-7.0.1.v20091125.jar +lib/activemq/lib/web/jsp-2.1-glassfish-2.1.v20100127.jar +lib/activemq/lib/web/jsp-api-2.1-glassfish-2.1.v20100127.jar +lib/activemq/lib/web/rome-0.8.jar +lib/activemq/lib/web/sitemesh-2.2.1.jar +lib/activemq/lib/web/slf4j-api-1.5.0.jar +lib/activemq/lib/web/slf4j-jcl-1.5.0.jar +lib/activemq/lib/web/spring-web-3.0.3.RELEASE.jar +lib/activemq/lib/web/spring-webmvc-3.0.3.RELEASE.jar +lib/activemq/webapps/admin/404.html +lib/activemq/webapps/admin/500.html +lib/activemq/webapps/admin/META-INF/LICENSE +lib/activemq/webapps/admin/META-INF/NOTICE +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/WebConsoleStarter.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CopyMessage.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateDestination.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateSubscriber.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteDestination.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteJob.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteMessage.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteSubscriber.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/MoveMessage.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/PurgeDestination.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/SendMessage.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$1.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$2.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter.class +lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/handler/BindingBeanNameUrlHandlerMapping.class +lib/activemq/webapps/admin/WEB-INF/decorators.xml +lib/activemq/webapps/admin/WEB-INF/dispatcher-servlet.xml +lib/activemq/webapps/admin/WEB-INF/jspf/headertags.jspf +lib/activemq/webapps/admin/WEB-INF/jspf/old.jspf +lib/activemq/webapps/admin/WEB-INF/tags/form/checkbox.tag +lib/activemq/webapps/admin/WEB-INF/tags/form/forEachMapEntry.tag +lib/activemq/webapps/admin/WEB-INF/tags/form/option.tag +lib/activemq/webapps/admin/WEB-INF/tags/form/short.tag +lib/activemq/webapps/admin/WEB-INF/tags/form/text.tag +lib/activemq/webapps/admin/WEB-INF/tags/form/tooltip.tag +lib/activemq/webapps/admin/WEB-INF/tags/form/uri.tag +lib/activemq/webapps/admin/WEB-INF/tags/jms/forEachConnection.tag +lib/activemq/webapps/admin/WEB-INF/tags/jms/forEachMessage.tag +lib/activemq/webapps/admin/WEB-INF/tags/jms/formatTimestamp.tag +lib/activemq/webapps/admin/WEB-INF/tags/jms/persistent.tag +lib/activemq/webapps/admin/WEB-INF/web.xml +lib/activemq/webapps/admin/WEB-INF/webconsole-default.xml +lib/activemq/webapps/admin/WEB-INF/webconsole-embedded.xml +lib/activemq/webapps/admin/WEB-INF/webconsole-invm.xml +lib/activemq/webapps/admin/WEB-INF/webconsole-jndi.xml +lib/activemq/webapps/admin/WEB-INF/webconsole-properties.xml +lib/activemq/webapps/admin/WEB-INF/webconsole-query.xml +lib/activemq/webapps/admin/browse.jsp +lib/activemq/webapps/admin/connection.jsp +lib/activemq/webapps/admin/connections.jsp +lib/activemq/webapps/admin/decorators/main.jsp +lib/activemq/webapps/admin/decorators/panel.jsp +lib/activemq/webapps/admin/decorators/printable.jsp +lib/activemq/webapps/admin/graph.jsp +lib/activemq/webapps/admin/images/activemq-logo.png +lib/activemq/webapps/admin/images/asf-logo.png +lib/activemq/webapps/admin/images/big-bullet.png +lib/activemq/webapps/admin/images/black-footer-bottom.png +lib/activemq/webapps/admin/images/black-footer-left.png +lib/activemq/webapps/admin/images/black-footer-right.png +lib/activemq/webapps/admin/images/bottom-red-bar.png +lib/activemq/webapps/admin/images/checker-bg.png +lib/activemq/webapps/admin/images/content-left.png +lib/activemq/webapps/admin/images/content-right.png +lib/activemq/webapps/admin/images/feed_atom.png +lib/activemq/webapps/admin/images/feed_rss.png +lib/activemq/webapps/admin/images/left-box-bottom.png +lib/activemq/webapps/admin/images/left-box-right.png +lib/activemq/webapps/admin/images/left-box-top.png +lib/activemq/webapps/admin/images/oval-arrow.png +lib/activemq/webapps/admin/images/right-box-bottom.png +lib/activemq/webapps/admin/images/right-box-left.png +lib/activemq/webapps/admin/images/right-box-top.png +lib/activemq/webapps/admin/images/small-bullet-gray.png +lib/activemq/webapps/admin/images/small-bullet-red.png +lib/activemq/webapps/admin/images/spacer.gif +lib/activemq/webapps/admin/images/top-red-bar.png +lib/activemq/webapps/admin/images/white-header-left.png +lib/activemq/webapps/admin/images/white-header-right.png +lib/activemq/webapps/admin/images/white-header-top.png +lib/activemq/webapps/admin/index.jsp +lib/activemq/webapps/admin/js/common.js +lib/activemq/webapps/admin/js/css.js +lib/activemq/webapps/admin/js/mochi/MochiKit.js +lib/activemq/webapps/admin/js/mochi/__package__.js +lib/activemq/webapps/admin/js/plotkit/Base.js +lib/activemq/webapps/admin/js/plotkit/Canvas.js +lib/activemq/webapps/admin/js/plotkit/Layout.js +lib/activemq/webapps/admin/js/plotkit/SVG.js +lib/activemq/webapps/admin/js/plotkit/SweetCanvas.js +lib/activemq/webapps/admin/js/plotkit/SweetSVG.js +lib/activemq/webapps/admin/js/plotkit/dummy.svg +lib/activemq/webapps/admin/js/plotkit/iecanvas.htc +lib/activemq/webapps/admin/js/prettify.js +lib/activemq/webapps/admin/js/standardista-table-sorting.js +lib/activemq/webapps/admin/message.jsp +lib/activemq/webapps/admin/queueConsumers.jsp +lib/activemq/webapps/admin/queueGraph.jsp +lib/activemq/webapps/admin/queues.jsp +lib/activemq/webapps/admin/scheduled.jsp +lib/activemq/webapps/admin/send.jsp +lib/activemq/webapps/admin/styles/prettify.css +lib/activemq/webapps/admin/styles/site.css +lib/activemq/webapps/admin/styles/sorttable.css +lib/activemq/webapps/admin/styles/type-settings.css +lib/activemq/webapps/admin/subscribers.jsp +lib/activemq/webapps/admin/test/dummy.jsp +lib/activemq/webapps/admin/test/index.jsp +lib/activemq/webapps/admin/test/systemProperties.jsp +lib/activemq/webapps/admin/topics.jsp +lib/activemq/webapps/admin/xml/queues.jsp +lib/activemq/webapps/admin/xml/topics.jsp lib/activemq/webapps/camel/META-INF/DEPENDENCIES lib/activemq/webapps/camel/META-INF/LICENSE lib/activemq/webapps/camel/META-INF/LICENSE.txt +lib/activemq/webapps/camel/META-INF/MANIFEST.MF lib/activemq/webapps/camel/META-INF/NOTICE lib/activemq/webapps/camel/META-INF/NOTICE.txt -lib/activemq/webapps/camel/META-INF/maven/org.apache.camel/camel-web/pom.xml lib/activemq/webapps/camel/META-INF/maven/org.apache.camel/camel-web/pom.properties -lib/activemq/webapps/camel/com/sun/jersey/server/impl/wadl/WadlResource/index.jsp -lib/activemq/webapps/camel/com/sun/jersey/server/impl/wadl/WadlResourceResource/index.jsp -lib/activemq/webapps/camel/css/prettify/prettify.css -lib/activemq/webapps/camel/css/site.css -lib/activemq/webapps/camel/css/sorttable.css -lib/activemq/webapps/camel/css/type-settings.css -lib/activemq/webapps/camel/images/asf-logo.png -lib/activemq/webapps/camel/images/big-bullet.png -lib/activemq/webapps/camel/images/black-footer-bottom.png -lib/activemq/webapps/camel/images/black-footer-left.png -lib/activemq/webapps/camel/images/black-footer-right.png -lib/activemq/webapps/camel/images/bottom-red-bar.png -lib/activemq/webapps/camel/images/camel-logo.png -lib/activemq/webapps/camel/images/checker-bg.png -lib/activemq/webapps/camel/images/content-left.png -lib/activemq/webapps/camel/images/content-right.png -lib/activemq/webapps/camel/images/feed_atom.png -lib/activemq/webapps/camel/images/feed_rss.png -lib/activemq/webapps/camel/images/left-box-bottom.png -lib/activemq/webapps/camel/images/left-box-right.png -lib/activemq/webapps/camel/images/left-box-top.png -lib/activemq/webapps/camel/images/oval-arrow.png -lib/activemq/webapps/camel/images/right-box-bottom.png -lib/activemq/webapps/camel/images/spacer.gif -lib/activemq/webapps/camel/images/right-box-left.png -lib/activemq/webapps/camel/images/right-box-top.png -lib/activemq/webapps/camel/images/small-bullet-gray.png -lib/activemq/webapps/camel/images/small-bullet-red.png -lib/activemq/webapps/camel/images/top-red-bar.png -lib/activemq/webapps/camel/images/white-header-left.png -lib/activemq/webapps/camel/images/white-header-right.png -lib/activemq/webapps/camel/images/white-header-top.png -lib/activemq/webapps/camel/js/prettify/lang-css.js -lib/activemq/webapps/camel/js/prettify/lang-hs.js -lib/activemq/webapps/camel/js/prettify/lang-lisp.js -lib/activemq/webapps/camel/js/prettify/lang-lua.js -lib/activemq/webapps/camel/js/prettify/lang-ml.js -lib/activemq/webapps/camel/js/prettify/lang-proto.js -lib/activemq/webapps/camel/js/prettify/lang-sql.js -lib/activemq/webapps/camel/js/prettify/lang-vb.js -lib/activemq/webapps/camel/js/prettify/lang-wiki.js -lib/activemq/webapps/camel/js/prettify/prettify.js -lib/activemq/webapps/camel/js/th/borders.js -lib/activemq/webapps/camel/js/th/components.js -lib/activemq/webapps/camel/js/th/css.js -lib/activemq/webapps/camel/js/th/docs.txt -lib/activemq/webapps/camel/js/th/helpers.js -lib/activemq/webapps/camel/js/th/models.js -lib/activemq/webapps/camel/js/th/th.js -lib/activemq/webapps/camel/js/buildProfile.js -lib/activemq/webapps/camel/js/common.js -lib/activemq/webapps/camel/js/css.js -lib/activemq/webapps/camel/js/route.js -lib/activemq/webapps/camel/js/standardista-table-sorting.js -lib/activemq/webapps/camel/js/dojo/dojo.js -lib/activemq/webapps/camel/org/apache/camel/web/resources/CamelContextResource/api.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/CamelContextResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/CamelContextResource/systemProperties.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/ComponentResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/ComponentsResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/ConvertersFromResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/ConvertersResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/EndpointResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/EndpointResource/send.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/EndpointsResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/ExchangeResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/LanguageResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/LanguagesResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/RouteResource/edit.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/RouteResource/index.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/RoutesResource/create.jsp -lib/activemq/webapps/camel/org/apache/camel/web/resources/RoutesResource/index.jsp +lib/activemq/webapps/camel/META-INF/maven/org.apache.camel/camel-web/pom.xml +lib/activemq/webapps/camel/WEB-INF/applicationContext.xml lib/activemq/webapps/camel/WEB-INF/classes/META-INF/DEPENDENCIES lib/activemq/webapps/camel/WEB-INF/classes/META-INF/LICENSE lib/activemq/webapps/camel/WEB-INF/classes/META-INF/LICENSE.txt lib/activemq/webapps/camel/WEB-INF/classes/META-INF/NOTICE lib/activemq/webapps/camel/WEB-INF/classes/META-INF/NOTICE.txt +lib/activemq/webapps/camel/WEB-INF/classes/application-doc.xml +lib/activemq/webapps/camel/WEB-INF/classes/application-grammars.xml +lib/activemq/webapps/camel/WEB-INF/classes/application.wadl lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/model/Camel.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/model/EndpointLink.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/model/Endpoints.class +lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/model/Route.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/model/jaxb.index lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/model/package-info.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/resources/CamelChildResourceSupport.class @@ -105,8 +218,8 @@ lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/resources/LanguageResource.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/resources/LanguagesResource.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/resources/RouteResource.class -lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/resources/RoutesResource.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/resources/RouteStatusResource.class +lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/resources/RoutesResource.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/util/AggregateDefinitionRenderer.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/util/CamelOSGIResourceConfig.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/util/CamelResourceConfig.class @@ -134,135 +247,119 @@ lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/util/ThrottleDefinitionRenderer.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/util/ThrowExceptionDefinitionRenderer.class lib/activemq/webapps/camel/WEB-INF/classes/org/apache/camel/web/util/UriCharactersEncoder.class -lib/activemq/webapps/camel/WEB-INF/classes/application-doc.xml -lib/activemq/webapps/camel/WEB-INF/classes/application-grammars.xml -lib/activemq/webapps/camel/WEB-INF/classes/application.wadl lib/activemq/webapps/camel/WEB-INF/classes/resourcedoc.xml +lib/activemq/webapps/camel/WEB-INF/decorators.xml lib/activemq/webapps/camel/WEB-INF/decorators/main.jsp lib/activemq/webapps/camel/WEB-INF/decorators/panel.jsp lib/activemq/webapps/camel/WEB-INF/decorators/plain.jsp lib/activemq/webapps/camel/WEB-INF/decorators/printable.jsp lib/activemq/webapps/camel/WEB-INF/jspf/header.jspf lib/activemq/webapps/camel/WEB-INF/lib/asm-3.1.jar +lib/activemq/webapps/camel/WEB-INF/lib/bytelist-1.0.6.jar +lib/activemq/webapps/camel/WEB-INF/lib/constantine-0.6.jar +lib/activemq/webapps/camel/WEB-INF/lib/jaffl-0.5.1.jar +lib/activemq/webapps/camel/WEB-INF/lib/jcodings-1.0.4.jar lib/activemq/webapps/camel/WEB-INF/lib/jersey-atom-1.1.5.jar lib/activemq/webapps/camel/WEB-INF/lib/jersey-core-1.1.5.jar lib/activemq/webapps/camel/WEB-INF/lib/jersey-json-1.1.5.jar lib/activemq/webapps/camel/WEB-INF/lib/jersey-server-1.1.5.jar lib/activemq/webapps/camel/WEB-INF/lib/jersey-spring-1.1.5.jar -lib/activemq/webapps/camel/WEB-INF/lib/jline-0.9.94.jar +lib/activemq/webapps/camel/WEB-INF/lib/jffi-1.0.1.jar +lib/activemq/webapps/camel/WEB-INF/lib/jline-0.9.93.jar +lib/activemq/webapps/camel/WEB-INF/lib/jnr-netdb-1.0.jar +lib/activemq/webapps/camel/WEB-INF/lib/jnr-posix-1.1.4.jar +lib/activemq/webapps/camel/WEB-INF/lib/joda-time-1.6.jar +lib/activemq/webapps/camel/WEB-INF/lib/joni-1.1.4.jar lib/activemq/webapps/camel/WEB-INF/lib/jsr311-api-1.1.1.jar lib/activemq/webapps/camel/WEB-INF/tags/api/doc.tag lib/activemq/webapps/camel/WEB-INF/tags/api/resource.tag -lib/activemq/webapps/camel/WEB-INF/decorators.xml lib/activemq/webapps/camel/WEB-INF/web.xml -lib/activemq/webapps/camel/WEB-INF/applicationContext.xml -lib/activemq/webapps/admin/WEB-INF/webconsole-embedded.xml -lib/activemq/webapps/admin/WEB-INF/jspf/headertags.jspf -lib/activemq/webapps/admin/WEB-INF/jspf/old.jspf -lib/activemq/webapps/admin/WEB-INF/tags/form/checkbox.tag -lib/activemq/webapps/admin/WEB-INF/tags/form/forEachMapEntry.tag -lib/activemq/webapps/admin/WEB-INF/tags/form/option.tag -lib/activemq/webapps/admin/WEB-INF/tags/form/short.tag -lib/activemq/webapps/admin/WEB-INF/tags/form/text.tag -lib/activemq/webapps/admin/WEB-INF/tags/form/tooltip.tag -lib/activemq/webapps/admin/WEB-INF/tags/form/uri.tag -lib/activemq/webapps/admin/WEB-INF/tags/jms/forEachConnection.tag -lib/activemq/webapps/admin/WEB-INF/tags/jms/forEachMessage.tag -lib/activemq/webapps/admin/WEB-INF/tags/jms/formatTimestamp.tag -lib/activemq/webapps/admin/WEB-INF/tags/jms/persistent.tag -lib/activemq/webapps/admin/WEB-INF/decorators.xml -lib/activemq/webapps/admin/WEB-INF/dispatcher-servlet.xml -lib/activemq/webapps/admin/WEB-INF/web.xml -lib/activemq/webapps/admin/WEB-INF/webconsole-default.xml -lib/activemq/webapps/admin/WEB-INF/webconsole-invm.xml -lib/activemq/webapps/admin/WEB-INF/webconsole-jndi.xml -lib/activemq/webapps/admin/WEB-INF/webconsole-properties.xml -lib/activemq/webapps/admin/WEB-INF/webconsole-query.xml -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CopyMessage.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateDestination.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateSubscriber.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteDestination.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteMessage.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteSubscriber.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/MoveMessage.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/PurgeDestination.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/SendMessage.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$1.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$2.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/handler/BindingBeanNameUrlHandlerMapping.class -lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/WebConsoleStarter.class -lib/activemq/webapps/admin/decorators/main.jsp -lib/activemq/webapps/admin/decorators/panel.jsp -lib/activemq/webapps/admin/decorators/printable.jsp -lib/activemq/webapps/admin/images/activemq-logo.png -lib/activemq/webapps/admin/images/asf-logo.png -lib/activemq/webapps/admin/images/big-bullet.png -lib/activemq/webapps/admin/images/black-footer-bottom.png -lib/activemq/webapps/admin/images/black-footer-left.png -lib/activemq/webapps/admin/images/black-footer-right.png -lib/activemq/webapps/admin/images/bottom-red-bar.png -lib/activemq/webapps/admin/images/checker-bg.png -lib/activemq/webapps/admin/images/content-left.png -lib/activemq/webapps/admin/images/content-right.png -lib/activemq/webapps/admin/images/feed_atom.png -lib/activemq/webapps/admin/images/feed_rss.png -lib/activemq/webapps/admin/images/left-box-bottom.png -lib/activemq/webapps/admin/images/left-box-right.png -lib/activemq/webapps/admin/images/left-box-top.png -lib/activemq/webapps/admin/images/oval-arrow.png -lib/activemq/webapps/admin/images/right-box-bottom.png -lib/activemq/webapps/admin/images/spacer.gif -lib/activemq/webapps/admin/images/right-box-left.png -lib/activemq/webapps/admin/images/right-box-top.png -lib/activemq/webapps/admin/images/small-bullet-gray.png -lib/activemq/webapps/admin/images/small-bullet-red.png -lib/activemq/webapps/admin/images/top-red-bar.png -lib/activemq/webapps/admin/images/white-header-left.png -lib/activemq/webapps/admin/images/white-header-right.png -lib/activemq/webapps/admin/images/white-header-top.png -lib/activemq/webapps/admin/js/mochi/__package__.js -lib/activemq/webapps/admin/js/mochi/MochiKit.js -lib/activemq/webapps/admin/js/plotkit/Base.js -lib/activemq/webapps/admin/js/plotkit/Canvas.js -lib/activemq/webapps/admin/js/plotkit/dummy.svg -lib/activemq/webapps/admin/js/plotkit/iecanvas.htc -lib/activemq/webapps/admin/js/plotkit/Layout.js -lib/activemq/webapps/admin/js/plotkit/SVG.js -lib/activemq/webapps/admin/js/plotkit/SweetCanvas.js -lib/activemq/webapps/admin/js/plotkit/SweetSVG.js -lib/activemq/webapps/admin/js/common.js -lib/activemq/webapps/admin/js/css.js -lib/activemq/webapps/admin/js/prettify.js -lib/activemq/webapps/admin/js/standardista-table-sorting.js -lib/activemq/webapps/admin/META-INF/LICENSE -lib/activemq/webapps/admin/META-INF/NOTICE -lib/activemq/webapps/admin/styles/prettify.css -lib/activemq/webapps/admin/styles/site.css -lib/activemq/webapps/admin/styles/sorttable.css -lib/activemq/webapps/admin/styles/type-settings.css -lib/activemq/webapps/admin/test/dummy.jsp -lib/activemq/webapps/admin/test/index.jsp -lib/activemq/webapps/admin/test/systemProperties.jsp -lib/activemq/webapps/admin/xml/queues.jsp -lib/activemq/webapps/admin/xml/topics.jsp -lib/activemq/webapps/admin/browse.jsp -lib/activemq/webapps/admin/connection.jsp -lib/activemq/webapps/admin/connections.jsp -lib/activemq/webapps/admin/graph.jsp -lib/activemq/webapps/admin/index.jsp -lib/activemq/webapps/admin/message.jsp -lib/activemq/webapps/admin/queueConsumers.jsp -lib/activemq/webapps/admin/queueGraph.jsp -lib/activemq/webapps/admin/queues.jsp -lib/activemq/webapps/admin/send.jsp -lib/activemq/webapps/admin/subscribers.jsp -lib/activemq/webapps/admin/topics.jsp -lib/activemq/webapps/static/index.html -lib/activemq/webapps/favicon.ico -lib/activemq/webapps/demo/js/scriptaculous.js +lib/activemq/webapps/camel/com/sun/jersey/server/impl/wadl/WadlResource/index.jsp +lib/activemq/webapps/camel/com/sun/jersey/server/impl/wadl/WadlResourceResource/index.jsp +lib/activemq/webapps/camel/css/prettify/prettify.css +lib/activemq/webapps/camel/css/site.css +lib/activemq/webapps/camel/css/sorttable.css +lib/activemq/webapps/camel/css/type-settings.css +lib/activemq/webapps/camel/images/asf-logo.png +lib/activemq/webapps/camel/images/big-bullet.png +lib/activemq/webapps/camel/images/black-footer-bottom.png +lib/activemq/webapps/camel/images/black-footer-left.png +lib/activemq/webapps/camel/images/black-footer-right.png +lib/activemq/webapps/camel/images/bottom-red-bar.png +lib/activemq/webapps/camel/images/camel-logo.png +lib/activemq/webapps/camel/images/checker-bg.png +lib/activemq/webapps/camel/images/content-left.png +lib/activemq/webapps/camel/images/content-right.png +lib/activemq/webapps/camel/images/feed_atom.png +lib/activemq/webapps/camel/images/feed_rss.png +lib/activemq/webapps/camel/images/left-box-bottom.png +lib/activemq/webapps/camel/images/left-box-right.png +lib/activemq/webapps/camel/images/left-box-top.png +lib/activemq/webapps/camel/images/oval-arrow.png +lib/activemq/webapps/camel/images/right-box-bottom.png +lib/activemq/webapps/camel/images/right-box-left.png +lib/activemq/webapps/camel/images/right-box-top.png +lib/activemq/webapps/camel/images/small-bullet-gray.png +lib/activemq/webapps/camel/images/small-bullet-red.png +lib/activemq/webapps/camel/images/spacer.gif +lib/activemq/webapps/camel/images/top-red-bar.png +lib/activemq/webapps/camel/images/white-header-left.png +lib/activemq/webapps/camel/images/white-header-right.png +lib/activemq/webapps/camel/images/white-header-top.png +lib/activemq/webapps/camel/js/buildProfile.js +lib/activemq/webapps/camel/js/common.js +lib/activemq/webapps/camel/js/css.js +lib/activemq/webapps/camel/js/dojo/dojo.js +lib/activemq/webapps/camel/js/prettify/lang-css.js +lib/activemq/webapps/camel/js/prettify/lang-hs.js +lib/activemq/webapps/camel/js/prettify/lang-lisp.js +lib/activemq/webapps/camel/js/prettify/lang-lua.js +lib/activemq/webapps/camel/js/prettify/lang-ml.js +lib/activemq/webapps/camel/js/prettify/lang-proto.js +lib/activemq/webapps/camel/js/prettify/lang-sql.js +lib/activemq/webapps/camel/js/prettify/lang-vb.js +lib/activemq/webapps/camel/js/prettify/lang-wiki.js +lib/activemq/webapps/camel/js/prettify/prettify.js +lib/activemq/webapps/camel/js/route.js +lib/activemq/webapps/camel/js/standardista-table-sorting.js +lib/activemq/webapps/camel/js/th/borders.js +lib/activemq/webapps/camel/js/th/components.js +lib/activemq/webapps/camel/js/th/css.js +lib/activemq/webapps/camel/js/th/docs.txt +lib/activemq/webapps/camel/js/th/helpers.js +lib/activemq/webapps/camel/js/th/models.js +lib/activemq/webapps/camel/js/th/th.js +lib/activemq/webapps/camel/org/apache/camel/web/resources/CamelContextResource/api.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/CamelContextResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/CamelContextResource/systemProperties.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/ComponentResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/ComponentsResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/ConvertersFromResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/ConvertersResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/EndpointResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/EndpointResource/send.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/EndpointsResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/ExchangeResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/LanguageResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/LanguagesResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/RouteResource/edit.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/RouteResource/index.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/RoutesResource/create.jsp +lib/activemq/webapps/camel/org/apache/camel/web/resources/RoutesResource/index.jsp lib/activemq/webapps/demo/META-INF/LICENSE lib/activemq/webapps/demo/META-INF/NOTICE +lib/activemq/webapps/demo/WEB-INF/web.xml +lib/activemq/webapps/demo/chat.css +lib/activemq/webapps/demo/chat.html +lib/activemq/webapps/demo/index.html +lib/activemq/webapps/demo/js/amq.js +lib/activemq/webapps/demo/js/amq_dojo_adapter.js +lib/activemq/webapps/demo/js/amq_jquery_adapter.js +lib/activemq/webapps/demo/js/amq_prototype_adapter.js +lib/activemq/webapps/demo/js/chat.js +lib/activemq/webapps/demo/js/dojo.js +lib/activemq/webapps/demo/js/jquery-1.4.2.min.js +lib/activemq/webapps/demo/js/prototype.js lib/activemq/webapps/demo/portfolio/portfolio.html lib/activemq/webapps/demo/portfolio/portfolio.js lib/activemq/webapps/demo/sandbox/index.html @@ -270,106 +367,40 @@ lib/activemq/webapps/demo/sandbox/portfolio.js lib/activemq/webapps/demo/sandbox/util.js lib/activemq/webapps/demo/sandbox/webmq.js -lib/activemq/webapps/demo/WEB-INF/web.xml -lib/activemq/webapps/demo/chat.css -lib/activemq/webapps/demo/chat.html -lib/activemq/webapps/demo/chat.js -lib/activemq/webapps/demo/index.html lib/activemq/webapps/demo/send.html lib/activemq/webapps/demo/style.css +lib/activemq/webapps/demo/test/amq_test.html +lib/activemq/webapps/demo/test/assets/README +lib/activemq/webapps/demo/test/assets/jsunittest.js +lib/activemq/webapps/demo/test/assets/unittest.css +lib/activemq/webapps/demo/test/send_subscribe.html +lib/activemq/webapps/demo/test/subscribe_send.html +lib/activemq/webapps/favicon.ico lib/activemq/webapps/fileserver/META-INF/LICENSE lib/activemq/webapps/fileserver/META-INF/NOTICE -lib/activemq/webapps/fileserver/WEB-INF/web.xml lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/FilenameGuardFilter$GuardedHttpServletRequest.class lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/FilenameGuardFilter.class +lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/IOHelper.class lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/RestFilter.class +lib/activemq/webapps/fileserver/WEB-INF/web.xml lib/activemq/webapps/fileserver/index.html -lib/activemq/lib/activemq-camel-5.3.2.jar -lib/activemq/lib/camel-jms-2.2.0.jar -lib/activemq/lib/camel-core-2.2.0.jar -lib/activemq/lib/jaxb-api-2.1.jar -lib/activemq/lib/activation-1.1.jar -lib/activemq/lib/jaxb-impl-2.1.6.jar -lib/activemq/lib/camel-spring-2.2.0.jar -lib/activemq/lib/commons-logging-1.1.jar -lib/activemq/lib/geronimo-jms_1.1_spec-1.1.1.jar -lib/activemq/lib/activemq-core-5.3.2.jar -lib/activemq/lib/kahadb-5.3.2.jar -lib/activemq/lib/activemq-protobuf-1.0.jar -lib/activemq/lib/geronimo-j2ee-management_1.0_spec-1.0.jar -lib/activemq/lib/geronimo-jta_1.0.1B_spec-1.0.1.jar -lib/activemq/lib/web/commons-management-1.0.jar -lib/activemq/lib/web/jetty-6.1.9.jar -lib/activemq/lib/web/jetty-util-6.1.9.jar -lib/activemq/lib/web/rome-0.8.jar -lib/activemq/lib/web/jdom-1.0.jar -lib/activemq/lib/web/spring-webmvc-2.5.6.jar -lib/activemq/lib/web/spring-web-2.5.6.jar -lib/activemq/lib/web/geronimo-servlet_2.5_spec-1.2.jar -lib/activemq/lib/web/jetty-xbean-6.1.9.jar -lib/activemq/lib/web/slf4j-api-1.5.0.jar -lib/activemq/lib/web/slf4j-jcl-1.5.0.jar -lib/activemq/lib/web/sitemesh-2.2.1.jar -lib/activemq/lib/web/jsp-2.1-6.1.9.jar -lib/activemq/lib/web/core-3.1.1.jar -lib/activemq/lib/web/jsp-api-2.1-6.1.9.jar -lib/activemq/lib/activemq-console-5.3.2.jar -lib/activemq/lib/activemq-web-5.3.2.jar -lib/activemq/lib/activemq-jaas-5.3.2.jar -lib/activemq/lib/camel-jetty-2.2.0.jar -lib/activemq/lib/stax-api-1.0.1.jar -lib/activemq/lib/stax-1.2.0.jar -lib/activemq/lib/optional/spring-context-2.5.6.jar -lib/activemq/lib/optional/spring-beans-2.5.6.jar -lib/activemq/lib/optional/spring-core-2.5.6.jar -lib/activemq/lib/optional/spring-aop-2.5.6.jar -lib/activemq/lib/optional/spring-tx-2.5.6.jar -lib/activemq/lib/optional/spring-jms-2.5.6.jar -lib/activemq/lib/optional/commons-pool-1.5.4.jar -lib/activemq/lib/optional/activeio-core-3.1.2.jar -lib/activemq/lib/optional/org.osgi.core-4.1.0.jar -lib/activemq/lib/optional/spring-osgi-core-1.2.1.jar -lib/activemq/lib/optional/commons-net-2.0.jar -lib/activemq/lib/optional/activemq-pool-5.3.2.jar -lib/activemq/lib/optional/xbean-spring-3.6.jar -lib/activemq/lib/optional/velocity-1.6.2.jar -lib/activemq/lib/optional/commons-collections-3.2.1.jar -lib/activemq/lib/optional/commons-lang-2.4.jar -lib/activemq/lib/optional/josql-1.5.jar -lib/activemq/lib/optional/activemq-optional-5.3.2.jar -lib/activemq/lib/optional/xstream-1.3.1.jar -lib/activemq/lib/optional/xmlpull-1.1.3.4d_b4_min.jar -lib/activemq/lib/optional/commons-httpclient-3.1.jar -lib/activemq/lib/optional/commons-codec-1.2.jar -lib/activemq/lib/optional/log4j-1.2.14.jar -lib/activemq/lib/optional/activemq-xmpp-5.3.2.jar -lib/activemq/lib/optional/wstx-asl-3.0.1.jar -lib/activemq/lib/optional/activemq-rar-5.3.2.rar -lib/activemq/lib/optional/commons-beanutils-1.6.1.jar -lib/activemq/lib/optional/commons-dbcp-1.2.2.jar -lib/activemq/lib/optional/activemq-jmdns_1.0-5.3.2.jar -lib/activemq/lib/optional/geronimo-j2ee-connector_1.5_spec-2.0.0.jar -lib/activemq/lib/optional/spring-oxm-tiger-1.5.8.jar -lib/activemq/lib/optional/jettison-1.1.jar -lib/activemq/bin/run.jar -lib/activemq/bin/activemq -lib/activemq/bin/activemq-admin -lib/activemq/bin/wrapper.jar +lib/activemq/webapps/index.html +lib/activemq/webapps/styles/site.css +lib/activemq/webapps/styles/type-settings.css +%%EXAMPLESDIR%%/example/build.xml %%EXAMPLESDIR%%/example/conf/activemq.xml %%EXAMPLESDIR%%/example/conf/log4j.properties %%EXAMPLESDIR%%/example/conf/resin-web.xml %%EXAMPLESDIR%%/example/conf/web.xml %%EXAMPLESDIR%%/example/perfharness/perfharness-activemq.sh +%%EXAMPLESDIR%%/example/ruby/README.txt %%EXAMPLESDIR%%/example/ruby/catstomp.rb %%EXAMPLESDIR%%/example/ruby/listener.rb %%EXAMPLESDIR%%/example/ruby/publisher.rb -%%EXAMPLESDIR%%/example/ruby/README.txt %%EXAMPLESDIR%%/example/ruby/stompcat.rb %%EXAMPLESDIR%%/example/src/CommandLineSupport.java %%EXAMPLESDIR%%/example/src/ConsumerTool.java %%EXAMPLESDIR%%/example/src/EmbeddedBroker.java -%%EXAMPLESDIR%%/example/src/jndi.properties -%%EXAMPLESDIR%%/example/src/log4j-jms.properties %%EXAMPLESDIR%%/example/src/Log4jJMSAppenderExample.java %%EXAMPLESDIR%%/example/src/ProducerAndConsumerTool.java %%EXAMPLESDIR%%/example/src/ProducerTool.java @@ -377,13 +408,14 @@ %%EXAMPLESDIR%%/example/src/StompExample.java %%EXAMPLESDIR%%/example/src/TopicListener.java %%EXAMPLESDIR%%/example/src/TopicPublisher.java +%%EXAMPLESDIR%%/example/src/jndi.properties +%%EXAMPLESDIR%%/example/src/log4j-jms.properties +%%EXAMPLESDIR%%/example/transactions/README.txt +%%EXAMPLESDIR%%/example/transactions/build.xml %%EXAMPLESDIR%%/example/transactions/src/Retailer.java %%EXAMPLESDIR%%/example/transactions/src/Supplier.java %%EXAMPLESDIR%%/example/transactions/src/TransactionsDemo.java %%EXAMPLESDIR%%/example/transactions/src/Vendor.java -%%EXAMPLESDIR%%/example/transactions/build.xml -%%EXAMPLESDIR%%/example/transactions/README.txt -%%EXAMPLESDIR%%/example/build.xml %%PORTDOCS%%%%DOCSDIR%%/docs/index.html %%ETCDIR%%/activemq-command.xml %%ETCDIR%%/activemq-demo.xml @@ -392,6 +424,7 @@ %%ETCDIR%%/activemq-jdbc.xml %%ETCDIR%%/activemq-scalability.xml %%ETCDIR%%/activemq-security.xml +%%ETCDIR%%/activemq-specjms.xml %%ETCDIR%%/activemq-static-network-broker1.xml %%ETCDIR%%/activemq-static-network-broker2.xml %%ETCDIR%%/activemq-stomp.xml @@ -403,13 +436,22 @@ %%ETCDIR%%/camel.xml %%ETCDIR%%/client.ks %%ETCDIR%%/client.ts +%%ETCDIR%%/credentials-enc.properties %%ETCDIR%%/credentials.properties +%%ETCDIR%%/jetty-realm.properties %%ETCDIR%%/jetty.xml %%ETCDIR%%/log4j.properties %%ETCDIR%%/logging.properties -@dirrm %%ETCDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/docs -@dirrm lib/activemq/webapps/static +@dirrm %%EXAMPLESDIR%%/example/transactions/src +@dirrm %%EXAMPLESDIR%%/example/transactions +@dirrm %%EXAMPLESDIR%%/example/src +@dirrm %%EXAMPLESDIR%%/example/ruby +@dirrm %%EXAMPLESDIR%%/example/perfharness +@dirrm %%EXAMPLESDIR%%/example/conf +@dirrm %%EXAMPLESDIR%%/example +@dirrm %%EXAMPLESDIR%% +@dirrm lib/activemq/webapps/styles @dirrm lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util @dirrm lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq @dirrm lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache @@ -418,6 +460,8 @@ @dirrm lib/activemq/webapps/fileserver/WEB-INF @dirrm lib/activemq/webapps/fileserver/META-INF @dirrm lib/activemq/webapps/fileserver +@dirrm lib/activemq/webapps/demo/test/assets +@dirrm lib/activemq/webapps/demo/test @dirrm lib/activemq/webapps/demo/sandbox @dirrm lib/activemq/webapps/demo/portfolio @dirrm lib/activemq/webapps/demo/js @@ -501,14 +545,6 @@ @dirrm lib/activemq/webapps/admin/META-INF @dirrm lib/activemq/webapps/admin @dirrm lib/activemq/webapps -@dirrm %%EXAMPLESDIR%%/example/transactions/src -@dirrm %%EXAMPLESDIR%%/example/transactions -@dirrm %%EXAMPLESDIR%%/example/src -@dirrm %%EXAMPLESDIR%%/example/ruby -@dirrm %%EXAMPLESDIR%%/example/perfharness -@dirrm %%EXAMPLESDIR%%/example/conf -@dirrm %%EXAMPLESDIR%%/example -@dirrm %%EXAMPLESDIR%% @dirrm lib/activemq/lib/web @dirrm lib/activemq/lib/optional @dirrm lib/activemq/lib >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 21:40:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8225E10656AE; Sun, 24 Oct 2010 21:40:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 588FE8FC0C; Sun, 24 Oct 2010 21:40:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OLeJtE017799; Sun, 24 Oct 2010 21:40:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OLeJeA017787; Sun, 24 Oct 2010 21:40:19 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 21:40:19 GMT Message-Id: <201010242140.o9OLeJeA017787@freefall.freebsd.org> To: alex.deiter@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151705: [path] update ports net/activemq up to 5.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 21:40:19 -0000 Synopsis: [path] update ports net/activemq up to 5.4.1 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Oct 24 21:40:18 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151705 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 21:50:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2048106564A for ; Sun, 24 Oct 2010 21:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E04798FC08 for ; Sun, 24 Oct 2010 21:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9OLo8u6026320 for ; Sun, 24 Oct 2010 21:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9OLo8fZ026319; Sun, 24 Oct 2010 21:50:08 GMT (envelope-from gnats) Date: Sun, 24 Oct 2010 21:50:08 GMT Message-Id: <201010242150.o9OLo8fZ026319@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151705: [path] update ports net/activemq up to 5.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 21:50:09 -0000 The following reply was made to PR ports/151705; it has been noted by GNATS. From: Edwin Groothuis To: g.veniamin@googlemail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/151705: [path] update ports net/activemq up to 5.4.1 Date: Sun, 24 Oct 2010 21:40:16 UT Maintainer of net/activemq, Please note that PR ports/151705 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151705 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 23:50:03 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 783481065674 for ; Sun, 24 Oct 2010 23:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2524B8FC1C for ; Sun, 24 Oct 2010 23:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ONo2Z5049464 for ; Sun, 24 Oct 2010 23:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9ONo2QO049463; Sun, 24 Oct 2010 23:50:02 GMT (envelope-from gnats) Resent-Date: Sun, 24 Oct 2010 23:50:02 GMT Resent-Message-Id: <201010242350.o9ONo2QO049463@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAB0D106564A for ; Sun, 24 Oct 2010 23:46:16 +0000 (UTC) (envelope-from cyberbotx@kirby.cyberbotx.com) Received: from qmta08.emeryville.ca.mail.comcast.net (qmta08.emeryville.ca.mail.comcast.net [76.96.30.80]) by mx1.freebsd.org (Postfix) with ESMTP id 9D1F98FC0C for ; Sun, 24 Oct 2010 23:46:16 +0000 (UTC) Received: from omta15.emeryville.ca.mail.comcast.net ([76.96.30.71]) by qmta08.emeryville.ca.mail.comcast.net with comcast id NnBT1f0061Y3wxoA8nmGGu; Sun, 24 Oct 2010 23:46:16 +0000 Received: from kirby.cyberbotx.com ([71.238.30.182]) by omta15.emeryville.ca.mail.comcast.net with comcast id NnmD1f0073vlkZB8bnmDy5; Sun, 24 Oct 2010 23:46:15 +0000 Received: from kirby.cyberbotx.com (localhost [127.0.0.1]) by kirby.cyberbotx.com (Postfix) with ESMTP id DF0192843B; Sun, 24 Oct 2010 19:46:05 -0400 (EDT) Received: (from root@localhost) by kirby.cyberbotx.com (8.14.3/8.14.3/Submit) id o9ONjwlv005351; Sun, 24 Oct 2010 19:45:58 -0400 (EDT) (envelope-from cyberbotx) Message-Id: <201010242345.o9ONjwlv005351@kirby.cyberbotx.com> Date: Sun, 24 Oct 2010 19:45:58 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: freebsd-ports@sslash.org.ua Subject: ports/151706: [PATCH] games/endgame-singularity: update to 0.30b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 23:50:03 -0000 >Number: 151706 >Category: ports >Synopsis: [PATCH] games/endgame-singularity: update to 0.30b >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 24 23:50:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.1-RELEASE FreeBSD 8.1-RELEASE #2: Thu Aug 19 19:09:40 EDT 2010 >Description: - Update to 0.30b Port maintainer (freebsd-ports@sslash.org.ua) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- endgame-singularity-0.30b.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/endgame-singularity/Makefile /kirby/shared/ports/endgame-singularity/Makefile --- /usr/ports/games/endgame-singularity/Makefile 2010-03-28 02:34:49.000000000 -0400 +++ /kirby/shared/ports/endgame-singularity/Makefile 2010-10-24 19:44:53.000000000 -0400 @@ -6,10 +6,9 @@ # PORTNAME= singularity -PORTVERSION= 0.30 -PORTREVISION= 4 +PORTVERSION= 0.30b CATEGORIES= games -MASTER_SITES= http://emhsoft.com/singularity/ CENKES +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= endgame- EXTRACT_SUFX= -src.tar.gz @@ -23,6 +22,7 @@ USE_PYTHON= yes USE_SDL= image mixer PORTDOCS= AUTHORS Changelog README.txt TODO +PROJECTHOST= ${PKGNAMEPREFIX}${PORTNAME} OPTIONS= MUSIC "Install original music pack" on diff -ruN --exclude=CVS /usr/ports/games/endgame-singularity/distinfo /kirby/shared/ports/endgame-singularity/distinfo --- /usr/ports/games/endgame-singularity/distinfo 2009-05-13 22:06:27.000000000 -0400 +++ /kirby/shared/ports/endgame-singularity/distinfo 2010-10-24 19:44:55.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (singularity-0.30-src.tar.gz) = eabb989da9dde3636672d26aad38d201 -SHA256 (singularity-0.30-src.tar.gz) = 8fc8b4a79b49854ec4a0e83d99237f3c5b3cd3fbcd657368cbb45bc59fa25ff4 -SIZE (singularity-0.30-src.tar.gz) = 2142971 +MD5 (singularity-0.30b-src.tar.gz) = 4e59703a7f8a0d0a06984f41160f7735 +SHA256 (singularity-0.30b-src.tar.gz) = 24c5d454b29fdf000663c238513465c0d2dc7c58be510cfd11c00373ef89d6c8 +SIZE (singularity-0.30b-src.tar.gz) = 2265019 --- endgame-singularity-0.30b.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 24 23:50:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62A221065674; Sun, 24 Oct 2010 23:50:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 385968FC13; Sun, 24 Oct 2010 23:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ONoDnE050332; Sun, 24 Oct 2010 23:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9ONoDum050319; Sun, 24 Oct 2010 23:50:13 GMT (envelope-from edwin) Date: Sun, 24 Oct 2010 23:50:13 GMT Message-Id: <201010242350.o9ONoDum050319@freefall.freebsd.org> To: cyberbotx@cyberbotx.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151706: [PATCH] games/endgame-singularity: update to 0.30b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Oct 2010 23:50:13 -0000 Synopsis: [PATCH] games/endgame-singularity: update to 0.30b State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Oct 24 23:50:12 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151706 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 00:00:30 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A8CF10656C1 for ; Mon, 25 Oct 2010 00:00:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D53D88FC20 for ; Mon, 25 Oct 2010 00:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P00QJG059044 for ; Mon, 25 Oct 2010 00:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P00QdU059026; Mon, 25 Oct 2010 00:00:26 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 00:00:26 GMT Message-Id: <201010250000.o9P00QdU059026@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151706: [PATCH] games/endgame-singularity: update to 0.30b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 00:00:30 -0000 The following reply was made to PR ports/151706; it has been noted by GNATS. From: Edwin Groothuis To: freebsd-ports@sslash.org.ua Cc: bug-followup@FreeBSD.org Subject: Re: ports/151706: [PATCH] games/endgame-singularity: update to 0.30b Date: Sun, 24 Oct 2010 23:50:10 UT Maintainer of games/endgame-singularity, Please note that PR ports/151706 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151706 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 00:00:30 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FCD510656C4 for ; Mon, 25 Oct 2010 00:00:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BB1068FC22 for ; Mon, 25 Oct 2010 00:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P00R8G059212 for ; Mon, 25 Oct 2010 00:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P00RI3059195; Mon, 25 Oct 2010 00:00:27 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 00:00:27 GMT Resent-Message-Id: <201010250000.o9P00RI3059195@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31936106564A for ; Sun, 24 Oct 2010 23:59:39 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (deep.tw [122.116.130.101]) by mx1.freebsd.org (Postfix) with ESMTP id F2A478FC0A for ; Sun, 24 Oct 2010 23:59:38 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id 201AD6469; Mon, 25 Oct 2010 07:59:37 +0800 (CST) Message-Id: <20101024235937.201AD6469@deep.tw> Date: Mon, 25 Oct 2010 07:59:37 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151707: [MAINTAINER] www/node: update to 0.2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 00:00:30 -0000 >Number: 151707 >Category: ports >Synopsis: [MAINTAINER] www/node: update to 0.2.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 00:00:26 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 8.1-STABLE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 8.1-STABLE FreeBSD 8.1-STABLE #0: Fri Sep 24 14:46:08 CST 2010 >Description: - Update to 0.2.4 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- node-0.2.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/node.orig/Makefile /usr/ports/www/node/Makefile --- /usr/ports/www/node.orig/Makefile 2010-10-08 03:57:04.000000000 +0800 +++ /usr/ports/www/node/Makefile 2010-10-25 07:30:28.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= node -PORTVERSION= 0.2.3 +PORTVERSION= 0.2.4 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN --exclude=CVS /usr/ports/www/node.orig/distinfo /usr/ports/www/node/distinfo --- /usr/ports/www/node.orig/distinfo 2010-10-08 03:57:04.000000000 +0800 +++ /usr/ports/www/node/distinfo 2010-10-25 07:43:06.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (node-v0.2.3.tar.gz) = 08fe2ff7808faed5e362a45211078874 -SHA256 (node-v0.2.3.tar.gz) = 7358f8969b7bf6da7b066185bfa72d3bbc92e80b174ff5ea0e2b536fd357c8cf -SIZE (node-v0.2.3.tar.gz) = 3877908 +MD5 (node-v0.2.4.tar.gz) = 413c8f648be1cb9f6f6db615894c75a2 +SHA256 (node-v0.2.4.tar.gz) = e6952007dacf18d9d85ae8ede8228e25cfe46e00be21b31c4d166239ec1fa533 +SIZE (node-v0.2.4.tar.gz) = 4002347 --- node-0.2.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 01:23:40 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 314C0106566C; Mon, 25 Oct 2010 01:23:40 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 06F128FC08; Mon, 25 Oct 2010 01:23:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P1NdOQ052950; Mon, 25 Oct 2010 01:23:39 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P1NdnK052946; Mon, 25 Oct 2010 01:23:39 GMT (envelope-from vanilla) Date: Mon, 25 Oct 2010 01:23:39 GMT Message-Id: <201010250123.o9P1NdnK052946@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org From: vanilla@FreeBSD.org Cc: Subject: Re: ports/151707: [MAINTAINER] www/node: update to 0.2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 01:23:40 -0000 Synopsis: [MAINTAINER] www/node: update to 0.2.4 Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Mon Oct 25 01:23:23 UTC 2010 Responsible-Changed-Why: I will handle this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=151707 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 02:00:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A20AD1065679 for ; Mon, 25 Oct 2010 02:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5856C8FC12 for ; Mon, 25 Oct 2010 02:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P20N2D083065 for ; Mon, 25 Oct 2010 02:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P20NNE083039; Mon, 25 Oct 2010 02:00:23 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 02:00:23 GMT Resent-Message-Id: <201010250200.o9P20NNE083039@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D61F3106566B for ; Mon, 25 Oct 2010 01:52:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C39F78FC1C for ; Mon, 25 Oct 2010 01:52:41 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9P1qfrH029211 for ; Mon, 25 Oct 2010 01:52:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9P1qfhr029210; Mon, 25 Oct 2010 01:52:41 GMT (envelope-from nobody) Message-Id: <201010250152.o9P1qfhr029210@www.freebsd.org> Date: Mon, 25 Oct 2010 01:52:41 GMT From: Dmitry To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151708: ports/net/linuxigd failed to install in 7.3-release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 02:00:23 -0000 >Number: 151708 >Category: ports >Synopsis: ports/net/linuxigd failed to install in 7.3-release >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 02:00:22 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Dmitry >Release: 7.3-RELEASE >Organization: >Environment: FreeBSD gateway.local 7.3-RELEASE FreeBSD 7.3-RELEASE #7: Tue Jul 13 12:33:06 EEST 2010 root@gateway.local:/usr/src/sys/amd64/compile/NODENY amd64 >Description: [root@gateway /usr/ports/net/linuxigd]# make install clean ===> Vulnerability check disabled, database not found ===> License check disabled, port has not defined LICENSE ===> Extracting for linuxigd-1.0_3 => MD5 Checksum OK for linuxigd-1.0.tar.gz. => SHA256 Checksum OK for linuxigd-1.0.tar.gz. ===> Patching for linuxigd-1.0_3 ===> Applying FreeBSD patches for linuxigd-1.0_3 ===> linuxigd-1.0_3 depends on executable: gmake - found ===> linuxigd-1.0_3 depends on shared library: upnp.4 - found ===> Configuring for linuxigd-1.0_3 ===> Building for linuxigd-1.0_3 cc -O2 -fno-strict-aliasing -pipe -Wall -g -O2 -I/usr/local/include -I../include -c main.c main.c: In function 'main': main.c:40: warning: implicit declaration of function 'strcmp' main.c:46: warning: implicit declaration of function 'strncpy' main.c:46: warning: incompatible implicit declaration of built-in function 'strncpy' cc -O2 -fno-strict-aliasing -pipe -Wall -g -O2 -I/usr/local/include -I../include -c gatedevice.c gatedevice.c: In function 'GetConnectionTypeInfo': gatedevice.c:208: warning: implicit declaration of function 'snprintf' gatedevice.c:208: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'GetNATRSIPStatus': gatedevice.c:237: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'GetCommonLinkProperties': gatedevice.c:302: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'GetTotal': gatedevice.c:333: error: 'FILE' undeclared (first use in this function) gatedevice.c:333: error: (Each undeclared identifier is reported only once gatedevice.c:333: error: for each function it appears in.) gatedevice.c:333: error: 'proc' undeclared (first use in this function) gatedevice.c:337: warning: implicit declaration of function 'fopen' gatedevice.c:340: warning: implicit declaration of function 'fprintf' gatedevice.c:340: warning: incompatible implicit declaration of built-in function 'fprintf' gatedevice.c:340: error: 'stderr' undeclared (first use in this function) gatedevice.c:345: warning: implicit declaration of function 'fscanf' gatedevice.c:345: warning: incompatible implicit declaration of built-in function 'fscanf' gatedevice.c:350: error: 'EOF' undeclared (first use in this function) gatedevice.c:352: warning: implicit declaration of function 'fclose' gatedevice.c:354: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'GetStatusInfo': gatedevice.c:385: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'AddPortMapping': gatedevice.c:451: warning: implicit declaration of function 'sprintf' gatedevice.c:451: warning: incompatible implicit declaration of built-in function 'sprintf' gatedevice.c:485: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'GetGenericPortMappingEntry': gatedevice.c:514: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c:520: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'GetSpecificPortMappingEntry': gatedevice.c:560: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c:571: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'GetExternalIPAddress': gatedevice.c:610: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'DeletePortMapping': gatedevice.c:653: warning: incompatible implicit declaration of built-in function 'sprintf' gatedevice.c:686: warning: incompatible implicit declaration of built-in function 'snprintf' gatedevice.c: In function 'ExpireMapping': gatedevice.c:776: warning: incompatible implicit declaration of built-in function 'sprintf' gmake: *** [gatedevice.o] Error 1 *** Error code 1 Stop in /usr/ports/net/linuxigd. >How-To-Repeat: cd /usr/ports/net/linuxigd make install clean >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 05:40:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38D5E1065673 for ; Mon, 25 Oct 2010 05:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 10C6E8FC17 for ; Mon, 25 Oct 2010 05:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P5e850015633 for ; Mon, 25 Oct 2010 05:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P5e8HE015632; Mon, 25 Oct 2010 05:40:08 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 05:40:08 GMT Resent-Message-Id: <201010250540.o9P5e8HE015632@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Deiter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5B3C106564A for ; Mon, 25 Oct 2010 05:30:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D3D548FC16 for ; Mon, 25 Oct 2010 05:30:23 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9P5UNAu092524 for ; Mon, 25 Oct 2010 05:30:23 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9P5UNXq092523; Mon, 25 Oct 2010 05:30:23 GMT (envelope-from nobody) Message-Id: <201010250530.o9P5UNXq092523@www.freebsd.org> Date: Mon, 25 Oct 2010 05:30:23 GMT From: Alex Deiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151709: [path] tomcat6 rc.d script status command X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 05:40:09 -0000 >Number: 151709 >Category: ports >Synopsis: [path] tomcat6 rc.d script status command >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 05:40:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Alex Deiter >Release: 8.1-RELEASE >Organization: N/A >Environment: FreeBSD x4150b.tdc 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Hi, status/poll command don't work for www/tomcat6: # /usr/local/etc/rc.d/tomcat6 start Starting tomcat60. # /usr/local/etc/rc.d/tomcat6 status ==>no any output here <== # /usr/local/etc/rc.d/tomcat6 poll ==>no any output here <== ^C # /usr/local/etc/rc.d/tomcat6 stop Stopping tomcat60. Waiting (max 60 secs) for PIDS: 73398. Please review small patch for rc.d script. >How-To-Repeat: cd /usr/ports/www/tomcat6 && make install >Fix: Please review small patch for rc.d script: # /usr/local/etc/rc.d/tomcat6 start Starting tomcat60. # /usr/local/etc/rc.d/tomcat6 status tomcat60 is running as pid 75572. # /usr/local/etc/rc.d/tomcat6 poll Waiting for PIDS: 75572, 75572, 75572, 75572^C # /usr/local/etc/rc.d/tomcat6 stop Stopping tomcat60. Waiting (max 60 secs) for PIDS: 75572. Patch attached with submission follows: --- www/tomcat6/files/tomcat6.sh.in.orig 2010-10-25 08:50:37.000000000 +0000 +++ www/tomcat6/files/tomcat6.sh.in 2010-10-25 09:28:07.000000000 +0000 @@ -145,14 +145,21 @@ echo "${name} not running? (check $pidfile)." return 1 fi + echo "${name} is running as pid ${rc_pid}." } tomcat_poll() { + _prefix= while (true) ; do rc_pid=$(tomcat_check_pidfile $pidfile) [ -z "$rc_pid" ] && break + echo -n ${_prefix:-"Waiting for PIDS: "}$rc_pid + _prefix=", " sleep 2 done + if [ -n "$_prefix" ]; then + echo "." + fi } tomcat_check_pidfile() { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 06:00:29 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FF771065695 for ; Mon, 25 Oct 2010 06:00:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6D8D58FC15 for ; Mon, 25 Oct 2010 06:00:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P60TY1035210 for ; Mon, 25 Oct 2010 06:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P60TML035189; Mon, 25 Oct 2010 06:00:29 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 06:00:29 GMT Message-Id: <201010250600.o9P60TML035189@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Stanislav A Svirid Cc: Subject: Re: ports/151646: [PATCH] databases/py-south: update to 0.7.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stanislav A Svirid List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 06:00:29 -0000 The following reply was made to PR ports/151646; it has been noted by GNATS. From: Stanislav A Svirid To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151646: [PATCH] databases/py-south: update to 0.7.2 Date: Mon, 25 Oct 2010 12:56:27 +0700 I approve this patch. All ok. On Fri, 22 Oct 2010, Edwin Groothuis wrote: > Maintainer of databases/py-south, > > Please note that PR ports/151646 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151646 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org -- Stanislav Svirid > Siberian Networks, Novosibirsk, Russia > SAS-RIPE, 3909675@ICQ From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 06:19:28 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E49210657BA; Mon, 25 Oct 2010 06:19:28 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DDEE58FC36; Mon, 25 Oct 2010 06:19:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P6JRSW057191; Mon, 25 Oct 2010 06:19:27 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P6JRjx057187; Mon, 25 Oct 2010 06:19:27 GMT (envelope-from vanilla) Date: Mon, 25 Oct 2010 06:19:27 GMT Message-Id: <201010250619.o9P6JRjx057187@freefall.freebsd.org> To: johnson.peter@gmail.com, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: vanilla@FreeBSD.org Cc: Subject: Re: ports/151679: [NEW PORT] multimedia/mkclean: Clean and optimize Matroska and WebM files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 06:19:28 -0000 Synopsis: [NEW PORT] multimedia/mkclean: Clean and optimize Matroska and WebM files State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Oct 25 06:19:27 UTC 2010 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=151679 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 06:20:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3576B106564A for ; Mon, 25 Oct 2010 06:20:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 127008FC1A for ; Mon, 25 Oct 2010 06:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P6KCHV057277 for ; Mon, 25 Oct 2010 06:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P6KCsp057276; Mon, 25 Oct 2010 06:20:12 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 06:20:12 GMT Message-Id: <201010250620.o9P6KCsp057276@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151679: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 06:20:13 -0000 The following reply was made to PR ports/151679; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151679: commit references a PR Date: Mon, 25 Oct 2010 06:18:56 +0000 (UTC) vanilla 2010-10-25 06:18:51 UTC FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/mkclean Makefile distinfo pkg-descr multimedia/mkclean/files patch-file_libc.c patch-root.proj Log: Add mkclean 0.6.0, clean and optimize Matroska and WebM files. PR: ports/151679 Submitted by: Peter Johnson Revision Changes Path 1.396 +1 -0 ports/multimedia/Makefile 1.1 +33 -0 ports/multimedia/mkclean/Makefile (new) 1.1 +3 -0 ports/multimedia/mkclean/distinfo (new) 1.1 +11 -0 ports/multimedia/mkclean/files/patch-file_libc.c (new) 1.1 +10 -0 ports/multimedia/mkclean/files/patch-root.proj (new) 1.1 +11 -0 ports/multimedia/mkclean/pkg-descr (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 07:16:49 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 753A0106566C; Mon, 25 Oct 2010 07:16:49 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4AD088FC17; Mon, 25 Oct 2010 07:16:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P7GnFS024059; Mon, 25 Oct 2010 07:16:49 GMT (envelope-from mandree@freefall.freebsd.org) Received: (from mandree@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P7Gnr2024055; Mon, 25 Oct 2010 07:16:49 GMT (envelope-from mandree) Date: Mon, 25 Oct 2010 07:16:49 GMT Message-Id: <201010250716.o9P7Gnr2024055@freefall.freebsd.org> To: chalpin@cs.wisc.edu, mandree@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mandree@FreeBSD.org From: mandree@FreeBSD.org Cc: Subject: Re: ports/151686: [PATCH] mail/fetchmail: update to 6.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 07:16:49 -0000 Synopsis: [PATCH] mail/fetchmail: update to 6.3.18 Responsible-Changed-From-To: freebsd-ports-bugs->mandree Responsible-Changed-By: mandree Responsible-Changed-When: Mon Oct 25 07:16:48 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151686 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 07:20:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20A391065670 for ; Mon, 25 Oct 2010 07:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D46DF8FC0C for ; Mon, 25 Oct 2010 07:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P7KAp7024242 for ; Mon, 25 Oct 2010 07:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P7KAN7024241; Mon, 25 Oct 2010 07:20:10 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 07:20:10 GMT Resent-Message-Id: <201010250720.o9P7KAN7024241@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Armin Pirkovitsch Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20896106566B for ; Mon, 25 Oct 2010 07:12:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0CFED8FC1A for ; Mon, 25 Oct 2010 07:12:41 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9P7Ce1s076774 for ; Mon, 25 Oct 2010 07:12:40 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9P7CeYn076773; Mon, 25 Oct 2010 07:12:40 GMT (envelope-from nobody) Message-Id: <201010250712.o9P7CeYn076773@www.freebsd.org> Date: Mon, 25 Oct 2010 07:12:40 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151710: multimedia/miro update to 3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 07:20:11 -0000 >Number: 151710 >Category: ports >Synopsis: multimedia/miro update to 3.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 07:20:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: TB testruns: http://tb.frozen-zone.org/index.php?action=describe_port&id=1072 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/Makefile multimedia/miro/Makefile --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/Makefile 2010-10-25 08:40:21.000000000 +0200 +++ multimedia/miro/Makefile 2010-10-25 09:09:42.000000000 +0200 @@ -6,8 +6,7 @@ # PORTNAME= miro -PORTVERSION= 3.0.3 -PORTREVISION= 1 +PORTVERSION= 3.5 CATEGORIES= multimedia MASTER_SITES= ftp://ftp.osuosl.org/pub/pculture.org/miro/src/ \ http://ftp.osuosl.org/pub/pculture.org/miro/src/ @@ -16,6 +15,7 @@ COMMENT= A video player to get internet TV broadcasts BUILD_DEPENDS= pyrexc:${PORTSDIR}/devel/pyrex \ + ${PYTHON_SITELIBDIR}/webkit/__init__.py:${PORTSDIR}/www/py-webkitgtk \ update-mime-database:${PORTSDIR}/misc/shared-mime-info RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb \ ${PYTHON_SITELIBDIR}/pysqlite2/_sqlite.so:${PORTSDIR}/databases/py-pysqlite23 \ @@ -23,10 +23,11 @@ ${PYTHON_SITELIBDIR}/gtk-2.0/pynotify/_pynotify.so:${PORTSDIR}/devel/py-notify \ ${PYTHON_SITELIBDIR}/libtorrent.so:${PORTSDIR}/net-p2p/libtorrent-rasterbar-15-python \ ${PYTHON_SITELIBDIR}/webkit/webkit.so:${PORTSDIR}/www/py-webkitgtk \ - ${PYTHON_SITELIBDIR}/gtk-2.0/gconf.so:${PORTSDIR}/x11-toolkits/py-gnome2 + ${PYTHON_SITELIBDIR}/gtk-2.0/gconf.so:${PORTSDIR}/x11-toolkits/py-gnome2 \ + ${PYTHON_SITELIBDIR}/pycurl.so:${PORTSDIR}/ftp/py-curl -BUILD_WRKSRC= ${WRKSRC}/platform/gtk-x11 -INSTALL_WRKSRC= ${WRKSRC}/platform/gtk-x11 +BUILD_WRKSRC= ${WRKSRC}/linux +INSTALL_WRKSRC= ${WRKSRC}/linux CONFLICTS= Miro-[0-9]* diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/distinfo multimedia/miro/distinfo --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/distinfo 2010-10-25 08:40:21.000000000 +0200 +++ multimedia/miro/distinfo 2010-10-23 09:42:07.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (miro-3.0.3.tar.gz) = 851de31dce0baf07922a22b4d29cfeac -SHA256 (miro-3.0.3.tar.gz) = d01972721b801f7944f5859c7849c4a88ee4814a099cc56fbe06c3621ba7a116 -SIZE (miro-3.0.3.tar.gz) = 9695616 +MD5 (miro-3.5.tar.gz) = 6e15d2d6ce086b0fe943a6cbea3c363c +SHA256 (miro-3.5.tar.gz) = 66e250fe2a5fb6623978668ac1ffb0147b70f3025eaaa1cf9af12cdd469a66f5 +SIZE (miro-3.5.tar.gz) = 10640526 diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-lib_startup.py multimedia/miro/files/patch-lib_startup.py --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-lib_startup.py 1970-01-01 01:00:00.000000000 +0100 +++ multimedia/miro/files/patch-lib_startup.py 2010-10-24 14:41:28.000000000 +0200 @@ -0,0 +1,11 @@ +--- lib/startup.py.orig 2010-10-24 14:40:03.000000000 +0200 ++++ lib/startup.py 2010-10-24 14:40:38.000000000 +0200 +@@ -370,7 +370,7 @@ + yield None + commandline.startup() + yield None +- autoupdate.check_for_updates() ++ # autoupdate.check_for_updates() + yield None + # Wait a bit before starting the downloader daemon. It can cause a bunch + # of disk/CPU load, so try to avoid it slowing other stuff down. diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-linux_plat_resources.py multimedia/miro/files/patch-linux_plat_resources.py --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-linux_plat_resources.py 1970-01-01 01:00:00.000000000 +0100 +++ multimedia/miro/files/patch-linux_plat_resources.py 2010-10-24 14:39:32.000000000 +0200 @@ -0,0 +1,23 @@ +--- linux/plat/resources.py.orig 2010-10-24 14:34:46.000000000 +0200 ++++ linux/plat/resources.py 2010-10-24 14:35:12.000000000 +0200 +@@ -44,9 +44,9 @@ + import platform + + RESOURCE_ROOT = os.path.abspath( +- os.environ.get('MIRO_RESOURCE_ROOT', '/usr/share/miro/resources/')) ++ os.environ.get('MIRO_RESOURCE_ROOT', '%%PREFIX%%/share/miro/resources/')) + SHARE_ROOT = os.path.abspath( +- os.environ.get('MIRO_SHARE_ROOT', '/usr/share/')) ++ os.environ.get('MIRO_SHARE_ROOT', '%%PREFIX%%/share/')) + + def root(): + return RESOURCE_ROOT +@@ -67,7 +67,7 @@ + return u'file://%s' % urllib.quote(path(relative_path)) + + def theme_path(theme, relative_path): +- return os.path.join('/usr/share/miro/themes', theme, relative_path) ++ return os.path.join('%%PREFIX%%/share/miro/themes', theme, relative_path) + + def check_kde(): + return os.environ.get("KDE_FULL_SESSION", None) != None diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-linux_setup.py multimedia/miro/files/patch-linux_setup.py --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-linux_setup.py 1970-01-01 01:00:00.000000000 +0100 +++ multimedia/miro/files/patch-linux_setup.py 2010-10-24 16:01:03.000000000 +0200 @@ -0,0 +1,114 @@ +--- linux/setup.py.orig 2010-10-21 18:46:03.000000000 +0200 ++++ linux/setup.py 2010-10-24 15:22:13.000000000 +0200 +@@ -199,6 +199,9 @@ + options_dict['library_dirs'].append(rest) + elif prefix == '-l': + options_dict['libraries'].append(rest) ++ elif prefix == '-W': ++ # throw away, it breaks cc1 ++ continue + else: + options_dict['extra_compile_args'].append(comp) + +@@ -242,7 +245,7 @@ + exit; + fi + +- $GDB -ex 'set breakpoint pending on' -ex 'run' --args $PYTHON ./miro.real --sync "$@" ++ $GDB -ex 'set breakpoint pending on' -ex 'run' --args $PYTHON %%PREFIX%%/bin/miro.real --sync "$@" + else + miro.real "$@" + fi +@@ -254,7 +257,7 @@ + xlib_ext = \ + Extension("miro.plat.xlibhelper", + [os.path.join(platform_package_dir, 'xlibhelper.pyx')], +- library_dirs = ['/usr/X11R6/lib'], ++ library_dirs = ['%%LOCALBASE%%/lib'], + libraries = ['X11'], + ) + +@@ -283,37 +286,37 @@ + # filter out app.config.template (which is handled specially) + files = [f for f in listfiles(resource_dir) \ + if os.path.basename(f) != 'app.config.template'] +-data_files.append(('/usr/share/miro/resources/', files)) ++data_files.append(('%%PREFIX%%/share/miro/resources/', files)) + # handle the sub directories. + for dir in ('searchengines', 'images', 'testdata', 'conversions', + os.path.join('testdata', 'stripperdata'), + os.path.join('testdata', 'httpserver'), + os.path.join('testdata', 'locale', 'fr', 'LC_MESSAGES')): + source_dir = os.path.join(resource_dir, dir) +- dest_dir = os.path.join('/usr/share/miro/resources/', dir) ++ dest_dir = os.path.join('%%PREFIX%%/share/miro/resources/', dir) + data_files.append((dest_dir, listfiles(source_dir))) + + for mem in ["24", "48", "72", "128"]: + d = os.path.join("icons", "hicolor", "%sx%s" % (mem, mem), "apps") + source = os.path.join(platform_dir, d, "miro.png") +- dest = os.path.join("/usr/share/", d) ++ dest = os.path.join("%%PREFIX%%/share/", d) + data_files.append((dest, [source])) + + # add ADOPTERS file, the desktop file, mime data, and man page + data_files += [ +- ('/usr/share/miro/resources', ++ ('%%PREFIX%%/share/miro/resources', + [os.path.join(root_dir, 'CREDITS')]), +- ('/usr/share/miro/resources', ++ ('%%PREFIX%%/share/miro/resources', + [os.path.join(root_dir, 'ADOPTERS')]), +- ('/usr/share/pixmaps', ++ ('%%PREFIX%%/share/pixmaps', + glob(os.path.join(platform_dir, 'miro.xpm'))), +- ('/usr/share/applications', ++ ('%%PREFIX%%/share/applications', + [os.path.join(platform_dir, 'miro.desktop')]), +- ('/usr/share/mime/packages', ++ ('%%PREFIX%%/share/mime/packages', + [os.path.join(platform_dir, 'miro.xml')]), +- ('/usr/share/man/man1', ++ ('%%PREFIX%%/man/man1', + [os.path.join(platform_dir, 'miro.1.gz')]), +- ('/usr/share/man/man1', ++ ('%%PREFIX%%/man/man1', + [os.path.join(platform_dir, 'miro.real.1.gz')]), + ] + +@@ -336,7 +339,7 @@ + + def install_app_config(self): + source = os.path.join(resource_dir, 'app.config.template') +- dest = '/usr/share/miro/resources/app.config' ++ dest = '%%PREFIX%%/share/miro/resources/app.config' + + config_file = util.read_simple_config_file(source) + print "Trying to figure out the git revision...." +@@ -378,7 +381,7 @@ + lang = os.path.basename(source)[:-3] + if 'LINGUAS' in os.environ and lang not in os.environ['LINGUAS']: + continue +- dest = '/usr/share/locale/%s/LC_MESSAGES/miro.mo' % lang ++ dest = '%%PREFIX%%/share/locale/%s/LC_MESSAGES/miro.mo' % lang + if self.root: + dest = change_root(self.root, dest) + self.mkpath(os.path.dirname(dest)) +@@ -407,7 +410,7 @@ + + #### install_theme installs a specified theme .zip + class install_theme(Command): +- description = 'Install a provided theme to /usr/share/miro/themes' ++ description = 'Install a provided theme to %%PREFIX%%/share/miro/themes' + user_options = [("theme=", None, 'ZIP file containing the theme')] + + def initialize_options(self): +@@ -435,7 +438,7 @@ + raise DistutilsOptionError, "invalid theme file" + self.zipfile = zf + self.theme_name = themeName +- self.theme_dir = '/usr/share/miro/themes/%s' % themeName ++ self.theme_dir = '%%PREFIX%%/share/miro/themes/%s' % themeName + + def run(self): + if os.path.exists(self.theme_dir): diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-platform__gtk-x11__plat__resources.py multimedia/miro/files/patch-platform__gtk-x11__plat__resources.py --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-platform__gtk-x11__plat__resources.py 2010-10-25 08:40:21.000000000 +0200 +++ multimedia/miro/files/patch-platform__gtk-x11__plat__resources.py 1970-01-01 01:00:00.000000000 +0100 @@ -1,22 +0,0 @@ ---- platform/gtk-x11/plat/resources.py.orig 2009-07-25 12:41:11.000000000 +0900 -+++ platform/gtk-x11/plat/resources.py 2009-07-30 15:48:04.000000000 +0900 -@@ -44,8 +44,8 @@ - import platform - - resource_root = os.path.abspath(os.environ.get('MIRO_RESOURCE_ROOT', -- '/usr/share/miro/resources/')) --share_root = os.path.abspath(os.environ.get('MIRO_SHARE_ROOT', '/usr/share/')) -+ '%%PREFIX%%/share/miro/resources/')) -+share_root = os.path.abspath(os.environ.get('MIRO_SHARE_ROOT', '%%PREFIX%%/share/')) - - def root(): - return resource_root -@@ -71,7 +71,7 @@ - return u"file://%s" % urllib.quote(absolute_path) - - def theme_path(theme, relative_path): -- return os.path.join('/usr/share/miro/themes', theme, relative_path) -+ return os.path.join('%%PREFIX%%/share/miro/themes', theme, relative_path) - - def check_kde(): - return os.environ.get("KDE_FULL_SESSION", None) != None diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-platform_gtk-x11_setup.py multimedia/miro/files/patch-platform_gtk-x11_setup.py --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-platform_gtk-x11_setup.py 2010-10-25 08:40:21.000000000 +0200 +++ multimedia/miro/files/patch-platform_gtk-x11_setup.py 1970-01-01 01:00:00.000000000 +0100 @@ -1,110 +0,0 @@ ---- platform/gtk-x11/setup.py.orig 2010-05-23 05:39:24.000000000 +0900 -+++ platform/gtk-x11/setup.py 2010-06-14 18:47:40.000000000 +0900 -@@ -198,6 +198,9 @@ - options_dict['library_dirs'].append(rest) - elif prefix == '-l': - options_dict['libraries'].append(rest) -+ elif prefix == '-W': -+ # throw away, it breaks cc1 -+ continue - else: - options_dict['extra_compile_args'].append(comp) - -@@ -241,7 +244,7 @@ - exit; - fi - -- $GDB -ex 'set breakpoint pending on' -ex 'run' --args $PYTHON ./miro.real --sync "$@" -+ $GDB -ex 'set breakpoint pending on' -ex 'run' --args $PYTHON %%PREFIX%%/bin/miro.real --sync "$@" - else - miro.real "$@" - fi -@@ -253,7 +256,7 @@ - xlib_ext = \ - Extension("miro.plat.xlibhelper", - [ os.path.join(platform_package_dir,'xlibhelper.pyx') ], -- library_dirs = ['/usr/X11R6/lib'], -+ library_dirs = ['%%LOCALBASE%%/lib'], - libraries = ['X11'], - ) - -@@ -274,34 +277,34 @@ - # filter out app.config.template (which is handled specially) - files = [f for f in listfiles(resource_dir) \ - if os.path.basename(f) != 'app.config.template'] --data_files.append(('/usr/share/miro/resources/', files)) -+data_files.append(('%%PREFIX%%/share/miro/resources/', files)) - # handle the sub directories. - for dir in ('searchengines', 'images', 'testdata', - os.path.join('testdata', 'stripperdata'), - os.path.join('testdata', 'locale', 'fr', 'LC_MESSAGES')): - source_dir = os.path.join(resource_dir, dir) -- dest_dir = os.path.join('/usr/share/miro/resources/', dir) -+ dest_dir = os.path.join('%%PREFIX%%/share/miro/resources/', dir) - data_files.append((dest_dir, listfiles(source_dir))) - - for mem in ["24", "48", "72", "128"]: - d = os.path.join("icons", "hicolor", "%sx%s" % (mem, mem), "apps") - source = os.path.join(platform_dir, d, "miro.png") -- dest = os.path.join("/usr/share/", d) -+ dest = os.path.join("%%PREFIX%%/share/", d) - data_files.append((dest, [source])) - - # add ADOPTERS file, the desktop file, mime data, and man page - data_files += [ -- ('/usr/share/miro/resources', -+ ('%%PREFIX%%/share/miro/resources', - [os.path.join(root_dir, 'ADOPTERS')]), -- ('/usr/share/pixmaps', -+ ('%%PREFIX%%/share/pixmaps', - glob(os.path.join(platform_dir, 'miro.xpm'))), -- ('/usr/share/applications', -+ ('%%PREFIX%%/share/applications', - [os.path.join(platform_dir, 'miro.desktop')]), -- ('/usr/share/mime/packages', -+ ('%%PREFIX%%/share/mime/packages', - [os.path.join(platform_dir, 'miro.xml')]), -- ('/usr/share/man/man1', -+ ('%%MANPREFIX%%/man/man1', - [os.path.join(platform_dir, 'miro.1.gz')]), -- ('/usr/share/man/man1', -+ ('%%MANPREFIX%%/man/man1', - [os.path.join(platform_dir, 'miro.real.1.gz')]), - ] - -@@ -324,7 +327,7 @@ - - def install_app_config(self): - source = os.path.join(resource_dir, 'app.config.template') -- dest = '/usr/share/miro/resources/app.config' -+ dest = '%%PREFIX%%/share/miro/resources/app.config' - - config_file = util.read_simple_config_file(source) - print "Trying to figure out the git revision...." -@@ -366,7 +369,7 @@ - lang = os.path.basename(source)[:-3] - if 'LINGUAS' in os.environ and lang not in os.environ['LINGUAS']: - continue -- dest = '/usr/share/locale/%s/LC_MESSAGES/miro.mo' % lang -+ dest = '%%PREFIX%%/share/locale/%s/LC_MESSAGES/miro.mo' % lang - if self.root: - dest = change_root(self.root, dest) - self.mkpath(os.path.dirname(dest)) -@@ -395,7 +398,7 @@ - - #### install_theme installs a specified theme .zip - class install_theme(Command): -- description = 'Install a provided theme to /usr/share/miro/themes' -+ description = 'Install a provided theme to %%PREFIX%%/share/miro/themes' - user_options = [("theme=", None, 'ZIP file containing the theme')] - - def initialize_options(self): -@@ -423,7 +426,7 @@ - raise DistutilsOptionError, "invalid theme file" - self.zipfile = zf - self.theme_name = themeName -- self.theme_dir = '/usr/share/miro/themes/%s' % themeName -+ self.theme_dir = '%%PREFIX%%/share/miro/themes/%s' % themeName - - def run(self): - if os.path.exists(self.theme_dir): diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-portable__startup.py multimedia/miro/files/patch-portable__startup.py --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/files/patch-portable__startup.py 2010-10-25 08:40:21.000000000 +0200 +++ multimedia/miro/files/patch-portable__startup.py 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ ---- portable/startup.py.orig 2009-02-12 06:37:23.000000000 +0900 -+++ portable/startup.py 2009-02-12 18:25:40.000000000 +0900 -@@ -250,7 +250,7 @@ - yield None - parse_command_line_args() - yield None -- autoupdate.check_for_updates() -+ # autoupdate.check_for_updates() - yield None - # Wait a bit before starting the downloader daemon. It can cause a bunch - # of disk/CPU load, so try to avoid it slowing other stuff down. diff -Nur /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/pkg-plist multimedia/miro/pkg-plist --- /mnt/ad12/tinderbox/portstrees/FreeBSD/ports/multimedia/miro/pkg-plist 2010-10-25 08:40:21.000000000 +0200 +++ multimedia/miro/pkg-plist 2010-10-24 15:58:58.000000000 +0200 @@ -3,9 +3,6 @@ %%PYTHON_SITELIBDIR%%/miro/__init__.py %%PYTHON_SITELIBDIR%%/miro/__init__.pyc %%PYTHON_SITELIBDIR%%/miro/__init__.pyo -%%PYTHON_SITELIBDIR%%/miro/adscraper.py -%%PYTHON_SITELIBDIR%%/miro/adscraper.pyc -%%PYTHON_SITELIBDIR%%/miro/adscraper.pyo %%PYTHON_SITELIBDIR%%/miro/app.py %%PYTHON_SITELIBDIR%%/miro/app.pyc %%PYTHON_SITELIBDIR%%/miro/app.pyo @@ -36,6 +33,9 @@ %%PYTHON_SITELIBDIR%%/miro/convert20database.py %%PYTHON_SITELIBDIR%%/miro/convert20database.pyc %%PYTHON_SITELIBDIR%%/miro/convert20database.pyo +%%PYTHON_SITELIBDIR%%/miro/crashreport.py +%%PYTHON_SITELIBDIR%%/miro/crashreport.pyc +%%PYTHON_SITELIBDIR%%/miro/crashreport.pyo %%PYTHON_SITELIBDIR%%/miro/database.py %%PYTHON_SITELIBDIR%%/miro/database.pyc %%PYTHON_SITELIBDIR%%/miro/database.pyo @@ -57,6 +57,9 @@ %%PYTHON_SITELIBDIR%%/miro/dbupgradeprogress.py %%PYTHON_SITELIBDIR%%/miro/dbupgradeprogress.pyc %%PYTHON_SITELIBDIR%%/miro/dbupgradeprogress.pyo +%%PYTHON_SITELIBDIR%%/miro/debugutil.py +%%PYTHON_SITELIBDIR%%/miro/debugutil.pyc +%%PYTHON_SITELIBDIR%%/miro/debugutil.pyo %%PYTHON_SITELIBDIR%%/miro/dialogs.py %%PYTHON_SITELIBDIR%%/miro/dialogs.pyc %%PYTHON_SITELIBDIR%%/miro/dialogs.pyo @@ -262,6 +265,7 @@ %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/weakconnect.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/weakconnect.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/weakconnect.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/webkitgtkhacks.so %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgets.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgets.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgets.pyo @@ -319,9 +323,9 @@ %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/prefpanel.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/prefpanel.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/prefpanel.pyo -%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitwhiledownloading.py -%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitwhiledownloading.pyc -%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitwhiledownloading.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitconfirmation.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitconfirmation.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitconfirmation.pyo %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/removefeeds.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/removefeeds.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/removefeeds.pyo @@ -358,6 +362,9 @@ %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videoconversionscontroller.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videoconversionscontroller.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videoconversionscontroller.pyo %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.pyo @@ -382,15 +389,18 @@ %%PYTHON_SITELIBDIR%%/miro/httpauth.py %%PYTHON_SITELIBDIR%%/miro/httpauth.pyc %%PYTHON_SITELIBDIR%%/miro/httpauth.pyo +%%PYTHON_SITELIBDIR%%/miro/httpauthtools.py +%%PYTHON_SITELIBDIR%%/miro/httpauthtools.pyc +%%PYTHON_SITELIBDIR%%/miro/httpauthtools.pyo %%PYTHON_SITELIBDIR%%/miro/httpclient.py %%PYTHON_SITELIBDIR%%/miro/httpclient.pyc %%PYTHON_SITELIBDIR%%/miro/httpclient.pyo %%PYTHON_SITELIBDIR%%/miro/iconcache.py %%PYTHON_SITELIBDIR%%/miro/iconcache.pyc %%PYTHON_SITELIBDIR%%/miro/iconcache.pyo -%%PYTHON_SITELIBDIR%%/miro/iso_639.py -%%PYTHON_SITELIBDIR%%/miro/iso_639.pyc -%%PYTHON_SITELIBDIR%%/miro/iso_639.pyo +%%PYTHON_SITELIBDIR%%/miro/iso639.py +%%PYTHON_SITELIBDIR%%/miro/iso639.pyc +%%PYTHON_SITELIBDIR%%/miro/iso639.pyo %%PYTHON_SITELIBDIR%%/miro/item.py %%PYTHON_SITELIBDIR%%/miro/item.pyc %%PYTHON_SITELIBDIR%%/miro/item.pyo @@ -406,12 +416,18 @@ %%PYTHON_SITELIBDIR%%/miro/moviedata.py %%PYTHON_SITELIBDIR%%/miro/moviedata.pyc %%PYTHON_SITELIBDIR%%/miro/moviedata.pyo +%%PYTHON_SITELIBDIR%%/miro/net.py +%%PYTHON_SITELIBDIR%%/miro/net.pyc +%%PYTHON_SITELIBDIR%%/miro/net.pyo %%PYTHON_SITELIBDIR%%/miro/opml.py %%PYTHON_SITELIBDIR%%/miro/opml.pyc %%PYTHON_SITELIBDIR%%/miro/opml.pyo %%PYTHON_SITELIBDIR%%/miro/plat/__init__.py %%PYTHON_SITELIBDIR%%/miro/plat/__init__.pyc %%PYTHON_SITELIBDIR%%/miro/plat/__init__.pyo +%%PYTHON_SITELIBDIR%%/miro/plat/clconverter.py +%%PYTHON_SITELIBDIR%%/miro/plat/clconverter.pyc +%%PYTHON_SITELIBDIR%%/miro/plat/clconverter.pyo %%PYTHON_SITELIBDIR%%/miro/plat/config.py %%PYTHON_SITELIBDIR%%/miro/plat/config.pyc %%PYTHON_SITELIBDIR%%/miro/plat/config.pyo @@ -442,9 +458,6 @@ %%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/widgetset.py %%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/widgetset.pyc %%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/widgetset.pyo -%%PYTHON_SITELIBDIR%%/miro/plat/idletime.py -%%PYTHON_SITELIBDIR%%/miro/plat/idletime.pyc -%%PYTHON_SITELIBDIR%%/miro/plat/idletime.pyo %%PYTHON_SITELIBDIR%%/miro/plat/onetime.py %%PYTHON_SITELIBDIR%%/miro/plat/onetime.pyc %%PYTHON_SITELIBDIR%%/miro/plat/onetime.pyo @@ -515,6 +528,9 @@ %%PYTHON_SITELIBDIR%%/miro/test/__init__.py %%PYTHON_SITELIBDIR%%/miro/test/__init__.pyc %%PYTHON_SITELIBDIR%%/miro/test/__init__.pyo +%%PYTHON_SITELIBDIR%%/miro/test/conversionstest.py +%%PYTHON_SITELIBDIR%%/miro/test/conversionstest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/conversionstest.pyo %%PYTHON_SITELIBDIR%%/miro/test/databasesanitytest.py %%PYTHON_SITELIBDIR%%/miro/test/databasesanitytest.pyc %%PYTHON_SITELIBDIR%%/miro/test/databasesanitytest.pyo @@ -524,6 +540,9 @@ %%PYTHON_SITELIBDIR%%/miro/test/datastructurestest.py %%PYTHON_SITELIBDIR%%/miro/test/datastructurestest.pyc %%PYTHON_SITELIBDIR%%/miro/test/datastructurestest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/downloadertest.py +%%PYTHON_SITELIBDIR%%/miro/test/downloadertest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/downloadertest.pyo %%PYTHON_SITELIBDIR%%/miro/test/feedparsertest.py %%PYTHON_SITELIBDIR%%/miro/test/feedparsertest.pyc %%PYTHON_SITELIBDIR%%/miro/test/feedparsertest.pyo @@ -533,6 +552,9 @@ %%PYTHON_SITELIBDIR%%/miro/test/filetypestest.py %%PYTHON_SITELIBDIR%%/miro/test/filetypestest.pyc %%PYTHON_SITELIBDIR%%/miro/test/filetypestest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/flashscrapertest.py +%%PYTHON_SITELIBDIR%%/miro/test/flashscrapertest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/flashscrapertest.pyo %%PYTHON_SITELIBDIR%%/miro/test/framework.py %%PYTHON_SITELIBDIR%%/miro/test/framework.pyc %%PYTHON_SITELIBDIR%%/miro/test/framework.pyo @@ -554,6 +576,12 @@ %%PYTHON_SITELIBDIR%%/miro/test/messagetest.py %%PYTHON_SITELIBDIR%%/miro/test/messagetest.pyc %%PYTHON_SITELIBDIR%%/miro/test/messagetest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/networktest.py +%%PYTHON_SITELIBDIR%%/miro/test/networktest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/networktest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/opmltest.py +%%PYTHON_SITELIBDIR%%/miro/test/opmltest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/opmltest.pyo %%PYTHON_SITELIBDIR%%/miro/test/parseurltest.py %%PYTHON_SITELIBDIR%%/miro/test/parseurltest.pyc %%PYTHON_SITELIBDIR%%/miro/test/parseurltest.pyo @@ -581,6 +609,9 @@ %%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.py %%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.pyc %%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/testhttpserver.py +%%PYTHON_SITELIBDIR%%/miro/test/testhttpserver.pyc +%%PYTHON_SITELIBDIR%%/miro/test/testhttpserver.pyo %%PYTHON_SITELIBDIR%%/miro/test/unicodetest.py %%PYTHON_SITELIBDIR%%/miro/test/unicodetest.pyc %%PYTHON_SITELIBDIR%%/miro/test/unicodetest.pyo @@ -602,9 +633,13 @@ %%PYTHON_SITELIBDIR%%/miro/util.py %%PYTHON_SITELIBDIR%%/miro/util.pyc %%PYTHON_SITELIBDIR%%/miro/util.pyo +%%PYTHON_SITELIBDIR%%/miro/videoconversion.py +%%PYTHON_SITELIBDIR%%/miro/videoconversion.pyc +%%PYTHON_SITELIBDIR%%/miro/videoconversion.pyo %%PYTHON_SITELIBDIR%%/miro/xhtmltools.py %%PYTHON_SITELIBDIR%%/miro/xhtmltools.pyc %%PYTHON_SITELIBDIR%%/miro/xhtmltools.pyo + share/applications/miro.desktop share/icons/hicolor/128x128/apps/miro.png share/icons/hicolor/24x24/apps/miro.png @@ -645,6 +680,7 @@ share/locale/hi/LC_MESSAGES/miro.mo share/locale/hr/LC_MESSAGES/miro.mo share/locale/hu/LC_MESSAGES/miro.mo +share/locale/hy/LC_MESSAGES/miro.mo share/locale/id/LC_MESSAGES/miro.mo share/locale/is/LC_MESSAGES/miro.mo share/locale/it/LC_MESSAGES/miro.mo @@ -695,17 +731,26 @@ share/locale/zu/LC_MESSAGES/miro.mo share/mime/packages/miro.xml %%DATADIR%%/resources/ADOPTERS +%%DATADIR%%/resources/CREDITS %%DATADIR%%/resources/app.config +%%DATADIR%%/resources/conversions/android.conv +%%DATADIR%%/resources/conversions/apple.conv +%%DATADIR%%/resources/conversions/others.conv %%DATADIR%%/resources/images/broken-image.gif %%DATADIR%%/resources/images/cancel-button.png %%DATADIR%%/resources/images/channelguide-icon-tablist.png +%%DATADIR%%/resources/images/clear-image.png %%DATADIR%%/resources/images/download-arrow.png %%DATADIR%%/resources/images/feedicon.png %%DATADIR%%/resources/images/folder-icon-tablist.png %%DATADIR%%/resources/images/folder-icon.png +%%DATADIR%%/resources/images/fullscreen_enter.png +%%DATADIR%%/resources/images/fullscreen_exit.png %%DATADIR%%/resources/images/icon-audio.png %%DATADIR%%/resources/images/icon-audio_large.png %%DATADIR%%/resources/images/icon-channel-title.png +%%DATADIR%%/resources/images/icon-conversions.png +%%DATADIR%%/resources/images/icon-conversions_large.png %%DATADIR%%/resources/images/icon-downloading.png %%DATADIR%%/resources/images/icon-downloading_large.png %%DATADIR%%/resources/images/icon-folder.png @@ -779,6 +824,7 @@ %%DATADIR%%/resources/images/playlist-icon.png %%DATADIR%%/resources/images/popin.png %%DATADIR%%/resources/images/popout.png +%%DATADIR%%/resources/images/pref-tab-conversions.png %%DATADIR%%/resources/images/pref-tab-disk-space.png %%DATADIR%%/resources/images/pref-tab-downloads.png %%DATADIR%%/resources/images/pref-tab-feeds.png @@ -859,6 +905,11 @@ %%DATADIR%%/resources/testdata/dean.jpg %%DATADIR%%/resources/testdata/democracy-now-unicode-bug.xml %%DATADIR%%/resources/testdata/hide-result +%%DATADIR%%/resources/testdata/httpserver/foo.txt +%%DATADIR%%/resources/testdata/httpserver/linux-screen.jpg +%%DATADIR%%/resources/testdata/httpserver/redirect.html +%%DATADIR%%/resources/testdata/httpserver/test with spaces.txt +%%DATADIR%%/resources/testdata/httpserver/test.txt %%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES/messages.pot %%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES/miro.mo %%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES/miro.po @@ -908,9 +959,11 @@ @dirrm %%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES @dirrm %%DATADIR%%/resources/testdata/locale/fr @dirrm %%DATADIR%%/resources/testdata/locale +@dirrm %%DATADIR%%/resources/testdata/httpserver @dirrm %%DATADIR%%/resources/testdata @dirrm %%DATADIR%%/resources/searchengines @dirrm %%DATADIR%%/resources/images +@dirrm %%DATADIR%%/resources/conversions @dirrm %%DATADIR%%/resources @dirrm %%DATADIR%% @dirrmtry share/locale/nds/LC_MESSAGES >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 07:22:50 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97FCE1065672; Mon, 25 Oct 2010 07:22:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6D6128FC0C; Mon, 25 Oct 2010 07:22:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P7Mopq033534; Mon, 25 Oct 2010 07:22:50 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P7Mo09033530; Mon, 25 Oct 2010 07:22:50 GMT (envelope-from sunpoet) Date: Mon, 25 Oct 2010 07:22:50 GMT Message-Id: <201010250722.o9P7Mo09033530@freefall.freebsd.org> To: count@211.ru, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151646: [PATCH] databases/py-south: update to 0.7.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 07:22:50 -0000 Synopsis: [PATCH] databases/py-south: update to 0.7.2 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Mon Oct 25 07:22:50 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151646 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 07:28:58 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 459FC1065675; Mon, 25 Oct 2010 07:28:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C4938FC08; Mon, 25 Oct 2010 07:28:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P7Swlb049129; Mon, 25 Oct 2010 07:28:58 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P7SvDG049125; Mon, 25 Oct 2010 07:28:57 GMT (envelope-from sunpoet) Date: Mon, 25 Oct 2010 07:28:57 GMT Message-Id: <201010250728.o9P7SvDG049125@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151678: Update port: sysutils/gather X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 07:28:58 -0000 Synopsis: Update port: sysutils/gather Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Mon Oct 25 07:28:57 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151678 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 07:32:51 2010 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 892A2106566B; Mon, 25 Oct 2010 07:32:51 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4F9028FC17; Mon, 25 Oct 2010 07:32:51 +0000 (UTC) Received: by iwn39 with SMTP id 39so4037572iwn.13 for ; Mon, 25 Oct 2010 00:32:50 -0700 (PDT) MIME-Version: 1.0 Received: by 10.231.37.138 with SMTP id x10mr5341926ibd.23.1287990547518; Mon, 25 Oct 2010 00:09:07 -0700 (PDT) Received: by 10.220.186.135 with HTTP; Mon, 25 Oct 2010 00:09:07 -0700 (PDT) In-Reply-To: <201010250619.o9P6JRjx057187@freefall.freebsd.org> References: <201010250619.o9P6JRjx057187@freefall.freebsd.org> Date: Mon, 25 Oct 2010 15:09:07 +0800 Message-ID: From: Sunpoet Hsieh To: johnson.peter@gmail.com, vanilla@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-ports-bugs@freebsd.org Subject: Re: ports/151679: [NEW PORT] multimedia/mkclean: Clean and optimize Matroska and WebM files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 07:32:51 -0000 On Mon, Oct 25, 2010 at 2:19 PM, wrote: > Synopsis: [NEW PORT] multimedia/mkclean: Clean and optimize Matroska and = WebM files > > State-Changed-From-To: open->closed > State-Changed-By: vanilla > State-Changed-When: Mon Oct 25 06:19:27 UTC 2010 > State-Changed-Why: > Committed, thanks. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D151679 > _______________________________________________ > freebsd-ports-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs > To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.= org" > Hi, This application depends on libmatroska and libebml which are shipped in the tarball. However, we have multimedia/libmatroska and textproc/libebml in our ports t= ree. Is it possible to use these two ports instead? Regards, sunpoet --=20 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A04096R/CC57E36B 8AD8 68F2 7D2B 0A10 7E9B = =C2=A08CC0 DC44 247E CC57 E36B =C2=A0Sunpoet Po-Chuan Hsieh , From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 08:48:57 2010 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C681D106564A; Mon, 25 Oct 2010 08:48:57 +0000 (UTC) (envelope-from armin@frozen-zone.org) Received: from mailbackup.inode.at (mailbackup.inode.at [213.229.60.24]) by mx1.freebsd.org (Postfix) with ESMTP id 812E28FC1A; Mon, 25 Oct 2010 08:48:57 +0000 (UTC) Received: from [62.99.145.7] (port=32397 helo=mx.inode.at) by mailbackup.inode.at with esmtp (Exim 4.67) (envelope-from ) id 1PAIQo-0007LO-HA; Mon, 25 Oct 2010 10:29:26 +0200 Received: from [84.119.27.69] (port=2685 helo=fz-nbook.local) by smartmx-07.inode.at with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1PAIQl-0004KQ-Et; Mon, 25 Oct 2010 10:29:24 +0200 Message-ID: <4CC53FDB.4090308@frozen-zone.org> Date: Mon, 25 Oct 2010 10:29:15 +0200 From: Armin Pirkovitsch User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.11) Gecko/20101021 Thunderbird/3.1.5 MIME-Version: 1.0 To: Edwin Groothuis References: <201010242120.o9OLKCsn096939@freefall.freebsd.org> In-Reply-To: <201010242120.o9OLKCsn096939@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports-bugs@FreeBSD.org, churanov.port.maintainer@gmail.com, bug-followup@FreeBSD.org Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 08:48:57 -0000 I've already made a patch for 1.44 - however since 1.45 is planned to be released on 01.11.2010 I plan to to submit a patch for that version instead - I see no reason to push that kind of library in last minute - but that's just imho. (If the maintainer of boost wants that patch however I'm willing to send it) Armin From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 08:50:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F5F810656A3 for ; Mon, 25 Oct 2010 08:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0DCAE8FC16 for ; Mon, 25 Oct 2010 08:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P8oAN6041510 for ; Mon, 25 Oct 2010 08:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P8oAMo041505; Mon, 25 Oct 2010 08:50:10 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 08:50:10 GMT Message-Id: <201010250850.o9P8oAMo041505@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Armin Pirkovitsch Cc: Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Armin Pirkovitsch List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 08:50:11 -0000 The following reply was made to PR ports/151704; it has been noted by GNATS. From: Armin Pirkovitsch To: Edwin Groothuis Cc: freebsd-ports-bugs@FreeBSD.org, bug-followup@FreeBSD.org, churanov.port.maintainer@gmail.com Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 Date: Mon, 25 Oct 2010 10:29:15 +0200 I've already made a patch for 1.44 - however since 1.45 is planned to be released on 01.11.2010 I plan to to submit a patch for that version instead - I see no reason to push that kind of library in last minute - but that's just imho. (If the maintainer of boost wants that patch however I'm willing to send it) Armin From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 09:08:58 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 282BB10656A3; Mon, 25 Oct 2010 09:08:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F26028FC16; Mon, 25 Oct 2010 09:08:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P98vTP063374; Mon, 25 Oct 2010 09:08:57 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P98vVj063370; Mon, 25 Oct 2010 09:08:57 GMT (envelope-from sunpoet) Date: Mon, 25 Oct 2010 09:08:57 GMT Message-Id: <201010250908.o9P98vVj063370@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151666: [MAINTAINER] textproc/discount: update to 2.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 09:08:58 -0000 Synopsis: [MAINTAINER] textproc/discount: update to 2.0 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Mon Oct 25 09:08:57 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151666 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 09:50:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 629E51065675 for ; Mon, 25 Oct 2010 09:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 39CC48FC12 for ; Mon, 25 Oct 2010 09:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P9o9Zt003222 for ; Mon, 25 Oct 2010 09:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P9o9Yd003221; Mon, 25 Oct 2010 09:50:09 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 09:50:09 GMT Resent-Message-Id: <201010250950.o9P9o9Yd003221@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Boris Samorodov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA968106566C for ; Mon, 25 Oct 2010 09:44:07 +0000 (UTC) (envelope-from bsam@bb.ipt.ru) Received: from bb.ipt.ru (bb.ipt.ru [194.62.233.89]) by mx1.freebsd.org (Postfix) with ESMTP id 4EE1B8FC08 for ; Mon, 25 Oct 2010 09:44:06 +0000 (UTC) Received: from bb.ipt.ru (localhost [127.0.0.1]) by bb.ipt.ru (8.14.4/8.14.4) with ESMTP id o9P9J7nr076770 for ; Mon, 25 Oct 2010 13:19:07 +0400 (MSD) (envelope-from bsam@bb.ipt.ru) Received: (from bsam@localhost) by bb.ipt.ru (8.14.4/8.14.4/Submit) id o9P9J7u9076769; Mon, 25 Oct 2010 13:19:07 +0400 (MSD) (envelope-from bsam) Message-Id: <201010250919.o9P9J7u9076769@bb.ipt.ru> Date: Mon, 25 Oct 2010 13:19:07 +0400 (MSD) From: Boris Samorodov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151711: [repocopy] textproc/goldendict -> textproc/goldendict-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Boris Samorodov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 09:50:09 -0000 >Number: 151711 >Category: ports >Synopsis: [repocopy] textproc/goldendict -> textproc/goldendict-devel >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 09:50:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Boris Samorodov >Release: FreeBSD 9.0-CURRENT i386 >Organization: InPharmTech, Co. >Environment: System: FreeBSD bb.ipt.ru 9.0-CURRENT FreeBSD 9.0-CURRENT #4 r214238M: Sat Oct 23 19:23:53 MSD 2010 bsam@bb.ipt.ru:/usr/obj/usr/src/sys/BB i386 >Description: >How-To-Repeat: >Fix: Please, do a repocopy textproc/goldendict -> textproc/goldendict-devel and assign the PR back to me. Thanks. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 09:50:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EE3E1065679; Mon, 25 Oct 2010 09:50:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 351518FC16; Mon, 25 Oct 2010 09:50:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9P9oGHa003731; Mon, 25 Oct 2010 09:50:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9P9oG2T003727; Mon, 25 Oct 2010 09:50:16 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 09:50:16 GMT Message-Id: <201010250950.o9P9oG2T003727@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bsam@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151711: [repocopy] textproc/goldendict -> textproc/goldendict-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 09:50:16 -0000 Synopsis: [repocopy] textproc/goldendict -> textproc/goldendict-devel Responsible-Changed-From-To: freebsd-ports-bugs->bsam Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 25 09:50:15 UTC 2010 Responsible-Changed-Why: Submitter is maintainer and has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151711 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 10:30:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D46921065694 for ; Mon, 25 Oct 2010 10:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C22638FC0C for ; Mon, 25 Oct 2010 10:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PAUFjw044989 for ; Mon, 25 Oct 2010 10:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PAUFaH044984; Mon, 25 Oct 2010 10:30:15 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 10:30:15 GMT Message-Id: <201010251030.o9PAUFaH044984@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Alexander Churanov Cc: Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Churanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 10:30:15 -0000 The following reply was made to PR ports/151704; it has been noted by GNATS. From: Alexander Churanov To: Armin Pirkovitsch Cc: Edwin Groothuis , freebsd-ports-bugs@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 Date: Mon, 25 Oct 2010 14:21:43 +0400 Yuri, Armin, Edwin and all who is interested, The version 1.45 is planned to be released soon. I also see no reason for updating to 1.44. I am going to start testing for compatibility of 1.45 and FreeBSD ports as soon as the first beta is officially available. Alexander Churanov, maintainer of devel/boost-* From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 10:40:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0CB91065673 for ; Mon, 25 Oct 2010 10:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A339C8FC1A for ; Mon, 25 Oct 2010 10:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PAe9eV055337 for ; Mon, 25 Oct 2010 10:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PAe96I055336; Mon, 25 Oct 2010 10:40:09 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 10:40:09 GMT Resent-Message-Id: <201010251040.o9PAe96I055336@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pavel Argentov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 418C5106566B for ; Mon, 25 Oct 2010 10:37:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 2FC688FC13 for ; Mon, 25 Oct 2010 10:37:40 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PAbeYh056879 for ; Mon, 25 Oct 2010 10:37:40 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PAbdEO056870; Mon, 25 Oct 2010 10:37:39 GMT (envelope-from nobody) Message-Id: <201010251037.o9PAbdEO056870@www.freebsd.org> Date: Mon, 25 Oct 2010 10:37:39 GMT From: Pavel Argentov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151712: shouldn't we upgrade ruby18 to last patchlevel? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 10:40:10 -0000 >Number: 151712 >Category: ports >Synopsis: shouldn't we upgrade ruby18 to last patchlevel? >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 10:40:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pavel Argentov >Release: 8.1 RELEASE >Organization: >Environment: FreeBSD paul.rtelekom.ru 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #0: Tue Oct 19 10:27:53 MSD 2010 root@paul.rtelekom.ru:/usr/obj/usr/src/sys/PAUL_SMP i386 >Description: The last Ruby 1.8 version available in ports is 1.8.7 p248. According to http://edgeguides.rubyonrails.org/3_0_release_notes.html : "Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails 3.0." Can we update the patchlevel to latest (p302?) to fix this issue? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 10:49:34 2010 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B73F7106564A; Mon, 25 Oct 2010 10:49:34 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5C8898FC14; Mon, 25 Oct 2010 10:49:34 +0000 (UTC) Received: by yxl31 with SMTP id 31so2018903yxl.13 for ; Mon, 25 Oct 2010 03:49:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=TFF9GmOIe6q6lyIYylAhnCAQxKAc09GeJT0+OBTdl2g=; b=PL7NnPsxVzzoHoQaHL/wv+5TLQnNqLZdUQVhfc5ftJWn/uoRDGpvh619mZ/aJ61DEb c7iDVXGwtnI5DYXXE9ZARVlDQ94HGF5zxSEAACOocPBDW5Fc4re0g/DehKWYf5KSSZZM AKTTdvZ+c+dXkDOun9G7JiNbNEqjB8W97arTM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=a/Dyi0GlaPab0WJCeCpi6aDp2bpbl4GsIujeOoe1xNNCez8fUikFcJ3bEsdTF8CHSM 9Xu42TqcYcwlayUZHTNGNvaDrPpWgqlgFIh7ZVdj1XR1kZMEzTxIHZp0+i9JfoigwnRy BQ1wuYEBKeQZk8Q+8H+WIfghqWuGn3ins0KlM= MIME-Version: 1.0 Received: by 10.100.209.18 with SMTP id h18mr1627744ang.113.1288002103104; Mon, 25 Oct 2010 03:21:43 -0700 (PDT) Received: by 10.101.93.17 with HTTP; Mon, 25 Oct 2010 03:21:43 -0700 (PDT) In-Reply-To: <4CC53FDB.4090308@frozen-zone.org> References: <201010242120.o9OLKCsn096939@freefall.freebsd.org> <4CC53FDB.4090308@frozen-zone.org> Date: Mon, 25 Oct 2010 14:21:43 +0400 Message-ID: From: Alexander Churanov To: Armin Pirkovitsch Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-ports-bugs@freebsd.org, bug-followup@freebsd.org, Edwin Groothuis Subject: Re: ports/151704: port update: devel/boost-libs to 1.44.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 10:49:34 -0000 Yuri, Armin, Edwin and all who is interested, The version 1.45 is planned to be released soon. I also see no reason for updating to 1.44. I am going to start testing for compatibility of 1.45 and FreeBSD ports as soon as the first beta is officially available. Alexander Churanov, maintainer of devel/boost-* From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 12:40:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29A921065784 for ; Mon, 25 Oct 2010 12:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12E488FC08 for ; Mon, 25 Oct 2010 12:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PCeAZi086600 for ; Mon, 25 Oct 2010 12:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PCeACd086599; Mon, 25 Oct 2010 12:40:10 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 12:40:10 GMT Message-Id: <201010251240.o9PCeACd086599@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dominic Fandrey Cc: Subject: Re: ports/151521: pkg_upgrade (sysutils/bsdadminscripts) not working if /usr/ports not present X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dominic Fandrey List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 12:40:12 -0000 The following reply was made to PR ports/151521; it has been noted by GNATS. From: Dominic Fandrey To: bug-followup@FreeBSD.org, subs@christiantena.net Cc: Subject: Re: ports/151521: pkg_upgrade (sysutils/bsdadminscripts) not working if /usr/ports not present Date: Mon, 25 Oct 2010 14:38:31 +0200 This is fixed upstream. There'll be a CFT by the end of the week, should my health allow it. Thank you for the report! Regards From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 13:20:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FA601065673 for ; Mon, 25 Oct 2010 13:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32EDE8FC25 for ; Mon, 25 Oct 2010 13:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PDKC0T028914 for ; Mon, 25 Oct 2010 13:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PDKCsq028913; Mon, 25 Oct 2010 13:20:12 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 13:20:12 GMT Message-Id: <201010251320.o9PDKCsq028913@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dominic Fandrey Cc: Subject: Re: ports/151520: pkg_upgrade (sysutils/bsdadminscripts) not working in jail because devs missing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dominic Fandrey List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 13:20:12 -0000 The following reply was made to PR ports/151520; it has been noted by GNATS. From: Dominic Fandrey To: bug-followup@FreeBSD.org, subs@christiantena.net Cc: Subject: Re: ports/151520: pkg_upgrade (sysutils/bsdadminscripts) not working in jail because devs missing Date: Mon, 25 Oct 2010 15:12:27 +0200 Also fixed upstream. Use the -c parameter to work around this for now. Thank you for the report. Regards From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 13:40:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C1621065679 for ; Mon, 25 Oct 2010 13:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F16108FC21 for ; Mon, 25 Oct 2010 13:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PDeAg4049225 for ; Mon, 25 Oct 2010 13:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PDeAZp049224; Mon, 25 Oct 2010 13:40:10 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 13:40:10 GMT Resent-Message-Id: <201010251340.o9PDeAZp049224@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gerard Seibert Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 108491065670 for ; Mon, 25 Oct 2010 13:33:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id F24948FC3B for ; Mon, 25 Oct 2010 13:33:48 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PDXmHv042925 for ; Mon, 25 Oct 2010 13:33:48 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PDXmx7042909; Mon, 25 Oct 2010 13:33:48 GMT (envelope-from nobody) Message-Id: <201010251333.o9PDXmx7042909@www.freebsd.org> Date: Mon, 25 Oct 2010 13:33:48 GMT From: Gerard Seibert To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151714: Acroread9 not usable due to lack of support in the FreeBSD Linux emulator for the inotify_init syscall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 13:40:11 -0000 >Number: 151714 >Category: ports >Synopsis: Acroread9 not usable due to lack of support in the FreeBSD Linux emulator for the inotify_init syscall >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 13:40:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Gerard Seibert >Release: FreeBSD-8.1 >Organization: seibercom.net >Environment: FreeBSD scorpio.seibercom.net 8.1-STABLE FreeBSD 8.1-STABLE #0: Tue Oct 5 20:10:13 EDT 2010 gerard@scorpio.seibercom.net:/usr/obj/usr/src/sys/SCORPIO amd64 >Description: The /usr/ports/print/acroread9 port is not usable due to the lack of support in the FreeBSD Linux emulator for the inotify_init syscall. I would suggest that either the port be marked "broken" or some other suitable label so that potential end users do not waste their time in a futile attempt to get the port working only to then discover that it is not going to happen; or update the FreeBSD Linux emulator to properly handle the inotify_init syscall. >How-To-Repeat: Attempt to run the application. >Fix: Apparently, it requires updating the FreeBSD Linux emulator to handle the inotify_init syscall. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 14:00:22 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05A831065675 for ; Mon, 25 Oct 2010 14:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B88658FC12 for ; Mon, 25 Oct 2010 14:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PE0LCP068507 for ; Mon, 25 Oct 2010 14:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PE0LVh068492; Mon, 25 Oct 2010 14:00:21 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 14:00:21 GMT Resent-Message-Id: <201010251400.o9PE0LVh068492@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Toni Viemerö Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 401F0106566B for ; Mon, 25 Oct 2010 13:51:36 +0000 (UTC) (envelope-from toniv@sugarhill.7am.fi) Received: from sugarhill.7am.fi (sugarhill.7am.fi [77.240.22.37]) by mx1.freebsd.org (Postfix) with ESMTP id C2AE28FC0A for ; Mon, 25 Oct 2010 13:51:35 +0000 (UTC) Received: by sugarhill.7am.fi (Postfix, from userid 1001) id 4634210E453; Mon, 25 Oct 2010 16:34:22 +0300 (EEST) Message-Id: <20101025133422.4634210E453@sugarhill.7am.fi> Date: Mon, 25 Oct 2010 16:34:22 +0300 (EEST) From: Toni Viemerö To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ports@christianserving.org Subject: ports/151715: [PATCH] mail/imapsync: update to 1.363 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 14:00:22 -0000 >Number: 151715 >Category: ports >Synopsis: [PATCH] mail/imapsync: update to 1.363 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 14:00:20 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Toni Viemerö >Release: FreeBSD 8.1-RELEASE-p1 amd64 >Organization: >Environment: System: FreeBSD sugarhill.7am.fi 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #11: Mon Sep 20 23:33:06 EEST 2010 >Description: - Update to 1.363 http://www.linux-france.org/prj/imapsync/ChangeLog revision 1.347 - Rewrote good_date and removed Date::Manip usage. Port maintainer (ports@christianserving.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- imapsync-1.363_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/imapsync/Makefile /srv/home/toniv/imapsync/Makefile --- /usr/ports/mail/imapsync/Makefile 2010-06-23 23:02:05.000000000 +0300 +++ /srv/home/toniv/imapsync/Makefile 2010-10-25 16:33:24.000000000 +0300 @@ -6,7 +6,7 @@ # PORTNAME= imapsync -PORTVERSION= 1.315 +PORTVERSION= 1.363 PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= http://www.linux-france.org/prj/${PORTNAME}/dist/ \ @@ -18,7 +18,6 @@ BUILD_DEPENDS= p5-Mail-IMAPClient>0:${PORTSDIR}/mail/p5-Mail-IMAPClient \ p5-Term-ReadKey>0:${PORTSDIR}/devel/p5-Term-ReadKey \ - p5-Date-Manip>0:${PORTSDIR}/devel/p5-Date-Manip \ p5-IO-Socket-SSL>0:${PORTSDIR}/security/p5-IO-Socket-SSL RUN_DEPENDS= ${BUILD_DEPENDS} diff -ruN --exclude=CVS /usr/ports/mail/imapsync/distinfo /srv/home/toniv/imapsync/distinfo --- /usr/ports/mail/imapsync/distinfo 2010-06-23 23:02:05.000000000 +0300 +++ /srv/home/toniv/imapsync/distinfo 2010-10-25 16:31:44.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (imapsync-1.315.tgz) = 35032428a47fcba2adbf4ba532b68a99 -SHA256 (imapsync-1.315.tgz) = 9aa50748ffb31024a1fcab5cb331b09f7d3e077fb8bd76b77a1235ca3c45340d -SIZE (imapsync-1.315.tgz) = 769411 +MD5 (imapsync-1.363.tgz) = b825e8a35160e41f1b65bc96b89defba +SHA256 (imapsync-1.363.tgz) = dffb0b1c978a36083e4f1a573428c4f0b2320cab78814720bd3aee87850191a1 +SIZE (imapsync-1.363.tgz) = 894385 --- imapsync-1.363_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 14:00:31 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DADB41065674; Mon, 25 Oct 2010 14:00:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B0C518FC1B; Mon, 25 Oct 2010 14:00:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PE0VVA071347; Mon, 25 Oct 2010 14:00:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PE0VqS071317; Mon, 25 Oct 2010 14:00:31 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 14:00:31 GMT Message-Id: <201010251400.o9PE0VqS071317@freefall.freebsd.org> To: toni.viemero@iki.fi, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 14:00:31 -0000 Synopsis: [PATCH] mail/imapsync: update to 1.363 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Oct 25 14:00:30 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151715 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 14:10:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC0CA1065675 for ; Mon, 25 Oct 2010 14:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9A9578FC12 for ; Mon, 25 Oct 2010 14:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PEADuV080520 for ; Mon, 25 Oct 2010 14:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PEADoB080519; Mon, 25 Oct 2010 14:10:13 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 14:10:13 GMT Message-Id: <201010251410.o9PEADoB080519@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 14:10:13 -0000 The following reply was made to PR ports/151715; it has been noted by GNATS. From: Edwin Groothuis To: ports@christianserving.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 Date: Mon, 25 Oct 2010 14:00:26 UT Maintainer of mail/imapsync, Please note that PR ports/151715 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151715 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 14:10:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52036106566C for ; Mon, 25 Oct 2010 14:10:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 40E088FC15 for ; Mon, 25 Oct 2010 14:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PEAFaD080530 for ; Mon, 25 Oct 2010 14:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PEAF13080529; Mon, 25 Oct 2010 14:10:15 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 14:10:15 GMT Message-Id: <201010251410.o9PEAF13080529@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151702: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 14:10:15 -0000 The following reply was made to PR ports/151702; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151702: commit references a PR Date: Mon, 25 Oct 2010 14:07:16 +0000 (UTC) wen 2010-10-25 14:07:08 UTC FreeBSD ports repository Modified files: sysutils/rdup Makefile distinfo Log: - Update to 1.1.8 PR: ports/151702 Submitted by: Charlie Kester (maintainer) Revision Changes Path 1.11 +1 -2 ports/sysutils/rdup/Makefile 1.7 +3 -3 ports/sysutils/rdup/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 14:11:55 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EA491065672; Mon, 25 Oct 2010 14:11:55 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 748898FC12; Mon, 25 Oct 2010 14:11:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PEBtxa089805; Mon, 25 Oct 2010 14:11:55 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PEBt6a089801; Mon, 25 Oct 2010 14:11:55 GMT (envelope-from wen) Date: Mon, 25 Oct 2010 14:11:55 GMT Message-Id: <201010251411.o9PEBt6a089801@freefall.freebsd.org> To: corky1951@comcast.net, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151702: [MAINTAINER] sysutils/rdup: update to 1.1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 14:11:55 -0000 Synopsis: [MAINTAINER] sysutils/rdup: update to 1.1.8 State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Mon Oct 25 14:11:55 UTC 2010 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151702 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 14:40:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF748106566C for ; Mon, 25 Oct 2010 14:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE60F8FC0C for ; Mon, 25 Oct 2010 14:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PEe7vo011157 for ; Mon, 25 Oct 2010 14:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PEe753011156; Mon, 25 Oct 2010 14:40:07 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 14:40:07 GMT Message-Id: <201010251440.o9PEe753011156@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jim Riggs Cc: Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jim Riggs List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 14:40:08 -0000 The following reply was made to PR ports/151715; it has been noted by GNATS. From: Jim Riggs To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 Date: Mon, 25 Oct 2010 09:12:15 -0500 Approved. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 15:00:22 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2798106566B for ; Mon, 25 Oct 2010 15:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D88F48FC12 for ; Mon, 25 Oct 2010 15:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PF0LHx030115 for ; Mon, 25 Oct 2010 15:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PF0Lx5030082; Mon, 25 Oct 2010 15:00:21 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 15:00:21 GMT Message-Id: <201010251500.o9PF0Lx5030082@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Olivier Duchateau Cc: Subject: Re: ports/151628: [NEW PORTS] www/py-flask-uploads, Flask-Uploads provides flexible upload handling for Flask applications X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Olivier Duchateau List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 15:00:22 -0000 The following reply was made to PR ports/151628; it has been noted by GNATS. From: Olivier Duchateau To: lwhsu@freebsd.org, bug-followup@freebsd.org Cc: Subject: Re: ports/151628: [NEW PORTS] www/py-flask-uploads, Flask-Uploads provides flexible upload handling for Flask applications Date: Mon, 25 Oct 2010 16:52:30 +0200 2010/10/24 : > Synopsis: [NEW PORTS] www/py-flask-uploads, Flask-Uploads provides flexible upload handling for Flask applications > > State-Changed-From-To: open->feedback > State-Changed-By: lwhsu > State-Changed-When: Sun Oct 24 20:29:27 UTC 2010 > State-Changed-Why: > Is this a typo? "PORTNAME= flask-themes" > > http://www.freebsd.org/cgi/query-pr.cgi?pr=151628 > You are right, it's typo, real PORTNAME should : PORTNAME= flask-uploads -- olivier From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 15:00:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 245CE1065674 for ; Mon, 25 Oct 2010 15:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CFCDD8FC25 for ; Mon, 25 Oct 2010 15:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PF0MdC030426 for ; Mon, 25 Oct 2010 15:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PF0MsA030402; Mon, 25 Oct 2010 15:00:22 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 15:00:22 GMT Resent-Message-Id: <201010251500.o9PF0MsA030402@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcin Cieslak Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1492D10656A7 for ; Mon, 25 Oct 2010 15:00:13 +0000 (UTC) (envelope-from saper@saper.info) Received: from k.saper.info (smtp-out.saper.info [IPv6:2001:41d0:1:c823::1002]) by mx1.freebsd.org (Postfix) with ESMTP id 992778FC17 for ; Mon, 25 Oct 2010 15:00:11 +0000 (UTC) Received: from k.saper.info (uucp@localhost [127.0.0.1]) by k.saper.info (8.14.4/8.14.4) with ESMTP id o9PF09dn001430 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 25 Oct 2010 15:00:09 GMT (envelope-from saper@saper.info) Received: (from uucp@localhost) by k.saper.info (8.14.4/8.14.4/Submit) with UUCP id o9PF09M3001429 for FreeBSD-gnats-submit@freebsd.org; Mon, 25 Oct 2010 15:00:09 GMT (envelope-from saper@saper.info) Received: from radziecki.saper.info (localhost [127.0.0.1]) by radziecki.saper.info (8.14.4/8.14.4) with ESMTP id o9PExpvc047263 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 25 Oct 2010 14:59:51 GMT (envelope-from saper@saper.info) Received: (from saper@localhost) by radziecki.saper.info (8.14.4/8.14.4/Submit) id o9PExnCE047194; Mon, 25 Oct 2010 14:59:49 GMT (envelope-from saper) Message-Id: <201010251459.o9PExnCE047194@radziecki.saper.info> Date: Mon, 25 Oct 2010 14:59:49 GMT From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151717: [NEW PORT] deskutils/x026: IBM 026 Keypunch Emulator for the X Window System X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 15:00:23 -0000 >Number: 151717 >Category: ports >Synopsis: [NEW PORT] deskutils/x026: IBM 026 Keypunch Emulator for the X Window System >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 15:00:21 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Marcin Cieslak >Release: FreeBSD 9.0-CURRENT amd64 >Organization: http://saper.info >Environment: System: FreeBSD radziecki.saper.info 9.0-CURRENT FreeBSD 9.0-CURRENT #1 r212217M: Wed Sep 22 08:56:19 CEST >Description: IBM 026 Keypunch Emulator for the X Window System. * Requires slow, deliberate typing or input will be lost (typeahead can be enabled if you insist) * Overpunches available by backspacing or holding down Alt or Meta * Tab set for FORTRAN * Automatic sequence numbers in columns 73-80 (can be disabled) * Paste X11 selection with middle mouse button * Can save deck in file, either in ASCII or in Douglas Jones's standard format * Can select from several card and keypunch types WWW: http://x3270.bgp.nu/x026.html Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- x026-1.2.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # x026 # x026/pkg-descr # x026/pkg-plist # x026/Makefile # x026/distinfo # echo c - x026 mkdir -p x026 > /dev/null 2>&1 echo x - x026/pkg-descr sed 's/^X//' >x026/pkg-descr << '18727ee52bb7ea75c967792b41e9071a' XIBM 026 Keypunch Emulator for the X Window System. X X * Requires slow, deliberate typing or input will be lost X (typeahead can be enabled if you insist) X * Overpunches available by backspacing or holding down Alt or Meta X * Tab set for FORTRAN X * Automatic sequence numbers in columns 73-80 (can be disabled) X * Paste X11 selection with middle mouse button X * Can save deck in file, either in ASCII or in Douglas Jones's standard format X * Can select from several card and keypunch types X XWWW: http://x3270.bgp.nu/x026.html 18727ee52bb7ea75c967792b41e9071a echo x - x026/pkg-plist sed 's/^X//' >x026/pkg-plist << '24e7cd3bab5576571b79255097782384' X@comment $FreeBSD$ Xbin/x026 24e7cd3bab5576571b79255097782384 echo x - x026/Makefile sed 's/^X//' >x026/Makefile << '98fcaa964d138655994c8cff723c4cbe' X# New ports collection makefile for: x026 X# Date created: 2010-10-23 X# Whom: Marcin Cieslak X# X# $FreeBSD$ X# X XPORTNAME= x026 XPORTVERSION= 1.2 XCATEGORIES= deskutils XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= x3270/${PORTNAME}/${PORTVERSION} XEXTRACT_SUFX= .tgz X XMAINTAINER= saper@saper.info XCOMMENT= IBM 026 Keypunch Emulator for the X Window System X XUSE_IMAKE= yes X XMAN1= ${PORTNAME}.1 X X.include X.include 98fcaa964d138655994c8cff723c4cbe echo x - x026/distinfo sed 's/^X//' >x026/distinfo << '94bff3af40008aef4a5c81b6a2555689' XMD5 (x026-1.2.tgz) = 00fb68f2f663ac05cacb3fddafdaae5e XSHA256 (x026-1.2.tgz) = 74f54b63b41551b33649dbc5a76317f41ffdf3009ca545fb1f25ae563548dc96 XSIZE (x026-1.2.tgz) = 393202 94bff3af40008aef4a5c81b6a2555689 exit --- x026-1.2.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 15:50:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5ED91065694 for ; Mon, 25 Oct 2010 15:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 83A908FC16 for ; Mon, 25 Oct 2010 15:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PFoAIt082553 for ; Mon, 25 Oct 2010 15:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PFoAON082552; Mon, 25 Oct 2010 15:50:10 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 15:50:10 GMT Resent-Message-Id: <201010251550.o9PFoAON082552@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Joe Horn Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E89F51065670 for ; Mon, 25 Oct 2010 15:46:08 +0000 (UTC) (envelope-from root@Leo.mi.chu.edu.tw) Received: from Leo.mi.chu.edu.tw (Leo.mi.chu.edu.tw [140.126.143.63]) by mx1.freebsd.org (Postfix) with ESMTP id AA7498FC14 for ; Mon, 25 Oct 2010 15:46:05 +0000 (UTC) Received: from Leo.mi.chu.edu.tw (localhost [127.0.0.1]) by Leo.mi.chu.edu.tw (Postfix) with ESMTP id 4C82E4DFC2C for ; Mon, 25 Oct 2010 23:46:02 +0800 (CST) Received: from Leo.mi.chu.edu.tw ([127.0.0.1]) by Leo.mi.chu.edu.tw (Leo.mi.chu.edu.tw [127.0.0.1]) (amavisd-new, port 10024) with LMTP id fzgqtRESxDml for ; Mon, 25 Oct 2010 23:46:01 +0800 (CST) Received: by Leo.mi.chu.edu.tw (Postfix, from userid 0) id A1CF84DFC2B; Mon, 25 Oct 2010 23:46:01 +0800 (CST) Message-Id: <20101025154601.A1CF84DFC2B@Leo.mi.chu.edu.tw> Date: Mon, 25 Oct 2010 23:46:01 +0800 (CST) From: Joe Horn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151718: [NEW PORT] www/dwoo: Dwoo is a PHP5 template engine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 15:50:10 -0000 >Number: 151718 >Category: ports >Synopsis: [NEW PORT] www/dwoo: Dwoo is a PHP5 template engine >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 15:50:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Joe Horn >Release: FreeBSD 8.1-RELEASE amd64 >Organization: Taiwanese User >Environment: System: FreeBSD joehorn.idv.tw 8.1-RELEASE FreeBSD 8.1-RELEASE #2: Tue Jul 20 22:36:33 CST 2010 >Description: Dwoo is a PHP5 Template Engine that was started in early 2008. The idea came from the fact that Smarty, a well known template engine, is getting older and older. It carries the weight of it's age, having old features that are inconsistent compared to newer ones, being written for PHP4 its Object Oriented aspect doesn't take advantage of PHP5's more advanced features in the area, etc. Hence Dwoo was born, hoping to provide a more up to date and stronger engine. So far it has proven to be faster than Smarty in many areas, and it provides a compatibility layer to allow developers that have been using Smarty for years to switch their application over to Dwoo progressively. WWW: http://dwoo.org/ Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- dwoo-1.1.1.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dwoo # dwoo/files # dwoo/files/pkg-message.in # dwoo/Makefile # dwoo/distinfo # dwoo/pkg-descr # dwoo/pkg-plist # echo c - dwoo mkdir -p dwoo > /dev/null 2>&1 echo c - dwoo/files mkdir -p dwoo/files > /dev/null 2>&1 echo x - dwoo/files/pkg-message.in sed 's/^X//' >dwoo/files/pkg-message.in << '54ab110e950cadb63a623d30e64879e0' X XDwoo supports only PHP version 5 and higher. X XYou can add the Dwoo path (%%DATADIR%%) Xinto the "include_path=" directive in your php.ini . X 54ab110e950cadb63a623d30e64879e0 echo x - dwoo/Makefile sed 's/^X//' >dwoo/Makefile << 'ae840ea93fbee62d5bd40140bd6fbda6' X# New ports collection makefile for: dwoo X# Date created: 2010-10-26 X# Whom: Joe Horn X# X# $FreeBSD$ X# X XPORTNAME= dwoo XPORTVERSION= 1.1.1 XCATEGORIES= www XMASTER_SITES= http://dwoo.org/upload/code/ XDISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz X.if !defined(NOPORTDOCS) XDISTFILES+= ${PORTNAME}-${PORTVERSION}-docs.tar.gz X.endif X XMAINTAINER= joehorn@gmail.com XCOMMENT= Dwoo is a PHP5 template engine X XWRKSRC= ${WRKDIR}/${PORTNAME} X XNO_BUILD= yes XUSE_PHP= pcre XWANT_PHP_WEB= yes X XDEFAULT_PHP_VER=5 XIGNORE_WITH_PHP=4 X XPKGMESSAGE= ${WRKDIR}/pkg-message XSUB_FILES= pkg-message X Xdo-install: X @${MKDIR} ${DATADIR} X @cd ${WRKSRC}; ${FIND} . -type d \ X -exec ${MKDIR} ${DATADIR}/{} \; X @cd ${WRKSRC}; ${FIND} . -type f \ X -exec ${INSTALL_DATA} ${WRKSRC}/{} ${DATADIR}/{} \; X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X @cd ${WRKDIR}/docs; ${FIND} . -type d \ X -exec ${MKDIR} ${DOCSDIR}/{} \; X @cd ${WRKDIR}/docs; ${FIND} . -type f \ X -exec ${INSTALL_DATA} ${WRKDIR}/docs/{} ${DOCSDIR}/{} \; X.endif X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include ae840ea93fbee62d5bd40140bd6fbda6 echo x - dwoo/distinfo sed 's/^X//' >dwoo/distinfo << '6d92b01f7fe2b070e605d1ed6d8db5cf' XMD5 (dwoo-1.1.1.tar.gz) = 2d8a6eb722a9c8e43db955abdf5d7f41 XSHA256 (dwoo-1.1.1.tar.gz) = 619cb83f0bc3bbf5a5bfea30f37944b5a86b659cfbafed07b7a7d0228e890e3c XSIZE (dwoo-1.1.1.tar.gz) = 109594 XMD5 (dwoo-1.1.1-docs.tar.gz) = 97697284df85ef7bfbf7ce8ae0b1bb8c XSHA256 (dwoo-1.1.1-docs.tar.gz) = 67cea75fbaf9a2a3e8ad25486049b63cdece809f66f3cf26a15e14570eff3514 XSIZE (dwoo-1.1.1-docs.tar.gz) = 373637 6d92b01f7fe2b070e605d1ed6d8db5cf echo x - dwoo/pkg-descr sed 's/^X//' >dwoo/pkg-descr << '7c052a83c593e6b0378806facaa84dce' XDwoo is a PHP5 Template Engine that was started in early 2008. The idea Xcame from the fact that Smarty, a well known template engine, is getting Xolder and older. It carries the weight of it's age, having old features Xthat are inconsistent compared to newer ones, being written for PHP4 its XObject Oriented aspect doesn't take advantage of PHP5's more advanced Xfeatures in the area, etc. Hence Dwoo was born, hoping to provide a more Xup to date and stronger engine. So far it has proven to be faster than XSmarty in many areas, and it provides a compatibility layer to allow Xdevelopers that have been using Smarty for years to switch their Xapplication over to Dwoo progressively. X XWWW: http://dwoo.org/ 7c052a83c593e6b0378806facaa84dce echo x - dwoo/pkg-plist sed 's/^X//' >dwoo/pkg-plist << '3b71c4a33ade6166abe0feda6cd00573' X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Block_Plugin.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Compilation_Exception.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Compiler.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Data.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Exception.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Filter.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Filter_html_format.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ICompilable.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ICompilable_Block.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ICompiler.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_IDataProvider.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_IElseable.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ILoader.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_IPluginProxy.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ITemplate.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Loader.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_a.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_auto_escape.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_block.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_capture.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_counter.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_cycle.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_dump.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_dynamic.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_else.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_elseif.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_extends.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_for.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_foreach.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_foreachelse.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_forelse.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_if.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_loop.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_section.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_smartyinterface.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_strip.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_template.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_textformat.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_topLevelBlock.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_with.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_withelse.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Processor.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Processor_smarty_compat.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Security_Exception.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Security_Policy.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Smarty_Adapter.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Smarty_Filter_Adapter.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Smarty_Processor_Adapter.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Smarty__Adapter.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Template_File.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Template_String.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Smarty.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Block---Plugin.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Compilation---Exception.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Compiler.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Data.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Exception.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Filter.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ICompilable---Block.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ICompilable.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ICompiler.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---IDataProvider.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---IElseable.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ILoader.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---IPluginProxy.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ITemplate.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Loader.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Plugin.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Processor.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Security---Exception.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Security---Policy.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Smarty---Adapter.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Template---File.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Template---String.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_dwooAutoload.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---a.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---auto_escape.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---block.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---capture.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---dynamic.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---else.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---elseif.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---for.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---foreach.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---foreachelse.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---forelse.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---if.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---loop.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---section.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---smartyinterface.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---strip.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---template.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---textformat.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---topLevelBlock.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---with.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---withelse.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---filters---html_format.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---assign.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---capitalize.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---cat.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---count_characters.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---count_paragraphs.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---count_sentences.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---count_words.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---counter.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---cycle.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---date_format.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---default.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---dump.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---eol.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---escape.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---eval.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---extends.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---extendsCheck.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---fetch.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---include.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---indent.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---isset.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---load_templates.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---lower.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---mailto.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---math.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---nl2br.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---optional.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---regex_replace.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---replace.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---reverse.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---safe.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---spacify.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---string_format.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---strip_tags.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---tif.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---truncate.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---upper.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---whitespace.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---wordwrap.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---helper.array.php.html X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---processors---pre.smarty_compat.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__Dwoo.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooBlockPlugin.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooCompilationException.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooCompiler.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooData.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooException.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooFilter.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooICompilable.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooICompilableBlock.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooICompiler.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooIDataProvider.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooIElseable.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooILoader.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooIPluginProxy.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooITemplate.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooLoader.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooPlugin.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooProcessor.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooSecurityException.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooSecurityPolicy.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooSmartyAdapter.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooTemplateFile.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooTemplateString.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__dwooAutoload.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksa.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksauto_escape.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksblock.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockscapture.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksdynamic.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockselse.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockselseif.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksfor.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksforeach.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksforeachelse.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksforelse.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksif.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksloop.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockssection.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockssmartyinterface.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksstrip.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockstemplate.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockstextformat.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockstopLevelBlock.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockswith.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockswithelse.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfiltershtml_format.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsassign.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscapitalize.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscat.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscount_characters.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscount_paragraphs.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscount_sentences.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscount_words.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscounter.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscycle.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsdate_format.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsdefault.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsdump.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionseol.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsescape.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionseval.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsextends.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsextendsCheck.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsfetch.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsinclude.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsindent.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsisset.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsload_templates.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionslower.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsmailto.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsmath.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsnl2br.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsoptional.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsregex_replace.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsreplace.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsreverse.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionssafe.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsspacify.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsstring_format.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsstrip_tags.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionstif.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionstruncate.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsupper.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionswhitespace.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionswordwrap.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinhelper.array.php.html X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinprocessorspre.smarty_compat.php.html X%%PORTDOCS%%%%DOCSDIR%%/blank.html X%%PORTDOCS%%%%DOCSDIR%%/classtrees_Dwoo.html X%%PORTDOCS%%%%DOCSDIR%%/elementindex.html X%%PORTDOCS%%%%DOCSDIR%%/elementindex_Dwoo.html X%%PORTDOCS%%%%DOCSDIR%%/errors.html X%%PORTDOCS%%%%DOCSDIR%%/index.html X%%PORTDOCS%%%%DOCSDIR%%/li_Dwoo.html X%%PORTDOCS%%%%DOCSDIR%%/media/banner.css X%%PORTDOCS%%%%DOCSDIR%%/media/stylesheet.css X%%PORTDOCS%%%%DOCSDIR%%/packages.html X%%DATADIR%%/CHANGELOG X%%DATADIR%%/Dwoo.compiled.php X%%DATADIR%%/Dwoo.php X%%DATADIR%%/Dwoo/Adapters/Agavi/DwooRenderer.php X%%DATADIR%%/Dwoo/Adapters/Agavi/README X%%DATADIR%%/Dwoo/Adapters/Agavi/dwoo_plugins/t.php X%%DATADIR%%/Dwoo/Adapters/Agavi/dwoo_plugins/url.php X%%DATADIR%%/Dwoo/Adapters/CakePHP/README X%%DATADIR%%/Dwoo/Adapters/CakePHP/dwoo.php X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/README X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/config/dwootemplate.php X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/controllers/dwoowelcome.php X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/libraries/Dwootemplate.php X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/views/dwoowelcome.tpl X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/views/page.tpl X%%DATADIR%%/Dwoo/Adapters/ZendFramework/PluginProxy.php X%%DATADIR%%/Dwoo/Adapters/ZendFramework/README X%%DATADIR%%/Dwoo/Adapters/ZendFramework/View.php X%%DATADIR%%/Dwoo/Block/Plugin.php X%%DATADIR%%/Dwoo/Compilation/Exception.php X%%DATADIR%%/Dwoo/Compiler.php X%%DATADIR%%/Dwoo/Data.php X%%DATADIR%%/Dwoo/Exception.php X%%DATADIR%%/Dwoo/Filter.php X%%DATADIR%%/Dwoo/ICompilable.php X%%DATADIR%%/Dwoo/ICompilable/Block.php X%%DATADIR%%/Dwoo/ICompiler.php X%%DATADIR%%/Dwoo/IDataProvider.php X%%DATADIR%%/Dwoo/IElseable.php X%%DATADIR%%/Dwoo/ILoader.php X%%DATADIR%%/Dwoo/IPluginProxy.php X%%DATADIR%%/Dwoo/ITemplate.php X%%DATADIR%%/Dwoo/Loader.php X%%DATADIR%%/Dwoo/Plugin.php X%%DATADIR%%/Dwoo/Processor.php X%%DATADIR%%/Dwoo/Security/Exception.php X%%DATADIR%%/Dwoo/Security/Policy.php X%%DATADIR%%/Dwoo/Smarty/Adapter.php X%%DATADIR%%/Dwoo/Template/File.php X%%DATADIR%%/Dwoo/Template/String.php X%%DATADIR%%/LICENSE X%%DATADIR%%/README X%%DATADIR%%/UPGRADE_NOTES X%%DATADIR%%/dwooAutoload.php X%%DATADIR%%/plugins/builtin/blocks/a.php X%%DATADIR%%/plugins/builtin/blocks/auto_escape.php X%%DATADIR%%/plugins/builtin/blocks/block.php X%%DATADIR%%/plugins/builtin/blocks/capture.php X%%DATADIR%%/plugins/builtin/blocks/dynamic.php X%%DATADIR%%/plugins/builtin/blocks/else.php X%%DATADIR%%/plugins/builtin/blocks/elseif.php X%%DATADIR%%/plugins/builtin/blocks/for.php X%%DATADIR%%/plugins/builtin/blocks/foreach.php X%%DATADIR%%/plugins/builtin/blocks/foreachelse.php X%%DATADIR%%/plugins/builtin/blocks/forelse.php X%%DATADIR%%/plugins/builtin/blocks/if.php X%%DATADIR%%/plugins/builtin/blocks/loop.php X%%DATADIR%%/plugins/builtin/blocks/section.php X%%DATADIR%%/plugins/builtin/blocks/smartyinterface.php X%%DATADIR%%/plugins/builtin/blocks/strip.php X%%DATADIR%%/plugins/builtin/blocks/template.php X%%DATADIR%%/plugins/builtin/blocks/textformat.php X%%DATADIR%%/plugins/builtin/blocks/topLevelBlock.php X%%DATADIR%%/plugins/builtin/blocks/with.php X%%DATADIR%%/plugins/builtin/blocks/withelse.php X%%DATADIR%%/plugins/builtin/filters/html_format.php X%%DATADIR%%/plugins/builtin/functions/assign.php X%%DATADIR%%/plugins/builtin/functions/capitalize.php X%%DATADIR%%/plugins/builtin/functions/cat.php X%%DATADIR%%/plugins/builtin/functions/count_characters.php X%%DATADIR%%/plugins/builtin/functions/count_paragraphs.php X%%DATADIR%%/plugins/builtin/functions/count_sentences.php X%%DATADIR%%/plugins/builtin/functions/count_words.php X%%DATADIR%%/plugins/builtin/functions/counter.php X%%DATADIR%%/plugins/builtin/functions/cycle.php X%%DATADIR%%/plugins/builtin/functions/date_format.php X%%DATADIR%%/plugins/builtin/functions/default.php X%%DATADIR%%/plugins/builtin/functions/dump.php X%%DATADIR%%/plugins/builtin/functions/eol.php X%%DATADIR%%/plugins/builtin/functions/escape.php X%%DATADIR%%/plugins/builtin/functions/eval.php X%%DATADIR%%/plugins/builtin/functions/extends.php X%%DATADIR%%/plugins/builtin/functions/extendsCheck.php X%%DATADIR%%/plugins/builtin/functions/fetch.php X%%DATADIR%%/plugins/builtin/functions/include.php X%%DATADIR%%/plugins/builtin/functions/indent.php X%%DATADIR%%/plugins/builtin/functions/isset.php X%%DATADIR%%/plugins/builtin/functions/load_templates.php X%%DATADIR%%/plugins/builtin/functions/lower.php X%%DATADIR%%/plugins/builtin/functions/mailto.php X%%DATADIR%%/plugins/builtin/functions/math.php X%%DATADIR%%/plugins/builtin/functions/nl2br.php X%%DATADIR%%/plugins/builtin/functions/optional.php X%%DATADIR%%/plugins/builtin/functions/regex_replace.php X%%DATADIR%%/plugins/builtin/functions/replace.php X%%DATADIR%%/plugins/builtin/functions/reverse.php X%%DATADIR%%/plugins/builtin/functions/safe.php X%%DATADIR%%/plugins/builtin/functions/spacify.php X%%DATADIR%%/plugins/builtin/functions/string_format.php X%%DATADIR%%/plugins/builtin/functions/strip_tags.php X%%DATADIR%%/plugins/builtin/functions/tif.php X%%DATADIR%%/plugins/builtin/functions/truncate.php X%%DATADIR%%/plugins/builtin/functions/upper.php X%%DATADIR%%/plugins/builtin/functions/whitespace.php X%%DATADIR%%/plugins/builtin/functions/wordwrap.php X%%DATADIR%%/plugins/builtin/helper.array.php X%%DATADIR%%/plugins/builtin/processors/pre.smarty_compat.php X@dirrm %%DATADIR%%/plugins/thirdparty X@dirrm %%DATADIR%%/plugins/personal X@dirrm %%DATADIR%%/plugins/builtin/processors X@dirrm %%DATADIR%%/plugins/builtin/functions X@dirrm %%DATADIR%%/plugins/builtin/filters X@dirrm %%DATADIR%%/plugins/builtin/blocks X@dirrm %%DATADIR%%/plugins/builtin X@dirrm %%DATADIR%%/plugins X@dirrm %%DATADIR%%/compiled X@dirrm %%DATADIR%%/cache X@dirrm %%DATADIR%%/Dwoo/Template X@dirrm %%DATADIR%%/Dwoo/Smarty X@dirrm %%DATADIR%%/Dwoo/Security X@dirrm %%DATADIR%%/Dwoo/ICompilable X@dirrm %%DATADIR%%/Dwoo/Compilation X@dirrm %%DATADIR%%/Dwoo/Block X@dirrm %%DATADIR%%/Dwoo/Adapters/ZendFramework X@dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter/views X@dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter/libraries X@dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter/controllers X@dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter/config X@dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter X@dirrm %%DATADIR%%/Dwoo/Adapters/CakePHP X@dirrm %%DATADIR%%/Dwoo/Adapters/Agavi/dwoo_plugins X@dirrm %%DATADIR%%/Dwoo/Adapters/Agavi X@dirrm %%DATADIR%%/Dwoo/Adapters X@dirrm %%DATADIR%%/Dwoo X@dirrm %%DATADIR%% X%%PORTDOCS%%@dirrm %%DOCSDIR%%/media X%%PORTDOCS%%@dirrm %%DOCSDIR%%/__filesource X%%PORTDOCS%%@dirrm %%DOCSDIR%%/Dwoo X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@exec mkdir -p %D/%%DATADIR%%/plugins/thirdparty X@exec mkdir -p %D/%%DATADIR%%/plugins/personal X@exec mkdir -p %D/%%DATADIR%%/compiled X@exec mkdir -p %D/%%DATADIR%%/cache 3b71c4a33ade6166abe0feda6cd00573 exit --- dwoo-1.1.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 15:51:32 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 539EB10656A6; Mon, 25 Oct 2010 15:51:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 28D778FC08; Mon, 25 Oct 2010 15:51:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PFpWia091872; Mon, 25 Oct 2010 15:51:32 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PFpVad091868; Mon, 25 Oct 2010 15:51:31 GMT (envelope-from sunpoet) Date: Mon, 25 Oct 2010 15:51:31 GMT Message-Id: <201010251551.o9PFpVad091868@freefall.freebsd.org> To: ports@christianserving.org, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 15:51:32 -0000 Synopsis: [PATCH] mail/imapsync: update to 1.363 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Mon Oct 25 15:51:31 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151715 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 16:15:53 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EB2C1065670; Mon, 25 Oct 2010 16:15:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D89378FC12; Mon, 25 Oct 2010 16:15:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PGFqA1015673; Mon, 25 Oct 2010 16:15:52 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PGFpZf015666; Mon, 25 Oct 2010 16:15:51 GMT (envelope-from sunpoet) Date: Mon, 25 Oct 2010 16:15:51 GMT Message-Id: <201010251615.o9PGFpZf015666@freefall.freebsd.org> To: cris@gufi.org, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151192: mail/horde-imp: Upgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 16:15:53 -0000 Synopsis: mail/horde-imp: Upgrade State-Changed-From-To: open->closed State-Changed-By: sunpoet State-Changed-When: Mon Oct 25 16:15:51 UTC 2010 State-Changed-Why: This port is already updated by thierry@ http://www.freebsd.org/cgi/query-pr.cgi?pr=151192 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 16:16:03 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5742B1065679; Mon, 25 Oct 2010 16:16:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2DB178FC16; Mon, 25 Oct 2010 16:16:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PGG35P015784; Mon, 25 Oct 2010 16:16:03 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PGG3nX015780; Mon, 25 Oct 2010 16:16:03 GMT (envelope-from sunpoet) Date: Mon, 25 Oct 2010 16:16:03 GMT Message-Id: <201010251616.o9PGG3nX015780@freefall.freebsd.org> To: cris@gufi.org, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151191: www/horde-base: Upgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 16:16:03 -0000 Synopsis: www/horde-base: Upgrade State-Changed-From-To: open->closed State-Changed-By: sunpoet State-Changed-When: Mon Oct 25 16:16:02 UTC 2010 State-Changed-Why: This port is already updated by thierry@ http://www.freebsd.org/cgi/query-pr.cgi?pr=151191 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 16:24:41 2010 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 765B9106564A for ; Mon, 25 Oct 2010 16:24:41 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-px0-f182.google.com (mail-px0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4C8A68FC12 for ; Mon, 25 Oct 2010 16:24:40 +0000 (UTC) Received: by pxi1 with SMTP id 1so649797pxi.13 for ; Mon, 25 Oct 2010 09:24:40 -0700 (PDT) Received: by 10.143.2.3 with SMTP id e3mr5267008wfi.243.1288023880705; Mon, 25 Oct 2010 09:24:40 -0700 (PDT) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx.google.com with ESMTPS id w14sm11663449wfd.6.2010.10.25.09.24.37 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 25 Oct 2010 09:24:39 -0700 (PDT) Sender: Sunpoet Hsieh Received: by sunpoet.net (Postfix, from userid 1000) id D01CB2AEC567; Tue, 26 Oct 2010 00:24:33 +0800 (CST) Date: Tue, 26 Oct 2010 00:24:33 +0800 From: Sunpoet Po-Chuan Hsieh To: Jim Riggs Message-ID: <20101025162433.GA52549@bonjour.sunpoet.net> References: <201010251440.o9PEe753011156@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uAKRQypu60I7Lcqm" Content-Disposition: inline In-Reply-To: <201010251440.o9PEe753011156@freefall.freebsd.org> Organization: The FreeBSD Project User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 16:24:41 -0000 --uAKRQypu60I7Lcqm Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 25, 2010 at 02:40:07PM +0000, Jim Riggs wrote: > The following reply was made to PR ports/151715; it has been noted by GNA= TS. >=20 > From: Jim Riggs > To: bug-followup@FreeBSD.org > Cc: =20 > Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 > Date: Mon, 25 Oct 2010 09:12:15 -0500 >=20 > Approved. Hi, Would you please check if imapsync 1.363 is available at http://christianserving.org/ports/mail/imapsync/imapsync-1.363.tgz ? I got a 404 error message. Thanks. Regards, sunpoet --=20 4096R/CC57E36B 8AD8 68F2 7D2B 0A10 7E9B 8CC0 DC44 247E CC57 E36B Sunpoet Po-Chuan Hsieh , --uAKRQypu60I7Lcqm Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iQIcBAEBAgAGBQJMxa9BAAoJENxEJH7MV+NruoUQAIZPsG5eLlt0P79GTRF7VPFJ OlUEaFRJ9br7ILZWjAzp4SxMPWR+JGKLMQPSwje0/ivE7Iu+zQEerTwSpJED0w2V cF3U2f3KOafjwMfb3cBoIx1PyoMKq55BrPYBU+ePirYZ7S8vm/iT9A/k6rf3LF1d 91AYOhep60FPSmhn0D4wjmfBiu2vU+b1FglMMA/DJh+5xUuu55mIyzvWGTzf/dhx ho5Qm+m2gd1g8o6sgrQ/ygBgGu+l5sMeyBWFOS54MBvgRCTPJ8gjcfxQlStHXtZ1 bS/Icv1Y9lfc+O2A1hTNWqJB6SSa8lYRSX5MtF0kZz5ujkzcKhUVXbwVGHhvJxim HuPZA746c9ZoW5AXvNSKJI9v46HdhpX/yBu9MIfthW7/yGXJseTyarIznMM8brHH 7QP/IELNCN6KBQ87yJQaRdU4XYm1oOJv9vtTZymWzRC5Nb8JPsWOiB+K0HLEVBvp /Hh3rAB/zaJ6PclzN9wtrD97gzYez4xBSzX9MOKiacGIya8pdQPCO99pehMYyzX+ GoZ87RlcEp4PZIprtsP9T+RPyd7TtxMd0wC88vcGQFl0sPVb/q6cnD5m6hfFGQf4 mU7Pgs3W97q/3W6HNoKdwUPcN4QT9JuDSVl6w9yNNLtUphbPO0Z/gr4+kX/pC+EG WmS94E+EnsgnVcYmng5L =EHDU -----END PGP SIGNATURE----- --uAKRQypu60I7Lcqm-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 16:51:05 2010 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B5FA106566C for ; Mon, 25 Oct 2010 16:51:05 +0000 (UTC) (envelope-from ports@christianserving.org) Received: from zion.christianserving.org (zion.christianserving.org [66.128.242.154]) by mx1.freebsd.org (Postfix) with ESMTP id 0C4108FC0C for ; Mon, 25 Oct 2010 16:51:04 +0000 (UTC) Received: from localhost (localhost.christianserving.org [127.0.0.1]) by zion.christianserving.org (Postfix) with ESMTP id B082C27AA24; Mon, 25 Oct 2010 11:35:48 -0500 (CDT) X-Virus-Scanned: amavisd-new at christianserving.org X-Spam-Flag: NO X-Spam-Score: -3.429 X-Spam-Level: X-Spam-Status: No, score=-3.429 tagged_above=-9999 required=6 tests=[AWL=-0.830, BAYES_00=-2.599] autolearn=ham Received: from mm-riggsj.peace.daveramsey.com (mail.daveramsey.com [67.216.167.148]) by zion.christianserving.org (Postfix) with ESMTPSA; Mon, 25 Oct 2010 11:35:48 -0500 (CDT) Mime-Version: 1.0 (Apple Message framework v1081) Content-Type: text/plain; charset=us-ascii From: Jim Riggs In-Reply-To: <20101025162433.GA52549@bonjour.sunpoet.net> Date: Mon, 25 Oct 2010 11:35:47 -0500 Content-Transfer-Encoding: 7bit Message-Id: <96824BB4-6531-466D-AA37-15449617FA20@christianserving.org> References: <201010251440.o9PEe753011156@freefall.freebsd.org> <20101025162433.GA52549@bonjour.sunpoet.net> To: Sunpoet Po-Chuan Hsieh X-Mailer: Apple Mail (2.1081) Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/151715: [PATCH] mail/imapsync: update to 1.363 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 16:51:05 -0000 On Oct 25, 2010, at 11:24 AM, Sunpoet Po-Chuan Hsieh wrote: > Would you please check if imapsync 1.363 is available at > http://christianserving.org/ports/mail/imapsync/imapsync-1.363.tgz ? > I got a 404 error message. > Thanks. Good catch. It's there now. Thanks! From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 17:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14B451065693 for ; Mon, 25 Oct 2010 17:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CAF728FC1F for ; Mon, 25 Oct 2010 17:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PHA7B4069552 for ; Mon, 25 Oct 2010 17:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PHA7j0069551; Mon, 25 Oct 2010 17:10:07 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 17:10:07 GMT Resent-Message-Id: <201010251710.o9PHA7j0069551@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Arseny Nasokin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 055BE106566C for ; Mon, 25 Oct 2010 17:01:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id E7ADE8FC15 for ; Mon, 25 Oct 2010 17:01:25 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PH1PB8045398 for ; Mon, 25 Oct 2010 17:01:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PH1PnL045397; Mon, 25 Oct 2010 17:01:25 GMT (envelope-from nobody) Message-Id: <201010251701.o9PH1PnL045397@www.freebsd.org> Date: Mon, 25 Oct 2010 17:01:25 GMT From: Arseny Nasokin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151719: [PATCH] Lack of NLS option in devel/gmake X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 17:10:08 -0000 >Number: 151719 >Category: ports >Synopsis: [PATCH] Lack of NLS option in devel/gmake >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 17:10:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Arseny Nasokin >Release: FreeBSD-CURRENT >Organization: >Environment: # New ports collection makefile for: GNU make # Date created: 11 September 1994 # Whom: jkh # # $FreeBSD: ports/devel/gmake/Makefile,v 1.68 2010/05/31 01:58:12 ade Exp $ >Description: devel/gmake port will depend on devel/gettext if you don't explicitly specify WITHOUT_NLS make option. >How-To-Repeat: update ports tree, go to devel/gmake to build gmake and type #make config no options to configure #grep WITHOUT_NLS Makefile .if !defined(WITHOUT_NLS) >Fix: patch attached Patch attached with submission follows: --- Makefile.orig 2010-10-25 18:39:42.986958118 +0400 +++ Makefile 2010-10-25 18:44:29.141969160 +0400 @@ -19,9 +19,12 @@ MAINTAINER= autotools@FreeBSD.org COMMENT= GNU version of 'make' utility +OPTIONS = NLS "Native Language Support" on +.include USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+=--program-prefix=g + .if !defined(WITHOUT_NLS) USE_GETTEXT= yes CONFIGURE_ARGS+=--with-libiconv-prefix=${LOCALBASE} \ @@ -39,7 +42,7 @@ .ifdef USE_GMAKE .error You have `USE_GMAKE' variable defined either in environment or in make(1) arguments. Please undefine and try again. .endif - +.include post-patch: @${RM} ${WRKSRC}/doc/make.info* @@ -49,4 +52,4 @@ @${CHMOD} g-s ${PREFIX}/bin/gmake @chgrp ${BINGRP} ${PREFIX}/bin/gmake -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 17:10:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6628610656D3; Mon, 25 Oct 2010 17:10:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3BD458FC18; Mon, 25 Oct 2010 17:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PHADKJ069818; Mon, 25 Oct 2010 17:10:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PHADbH069814; Mon, 25 Oct 2010 17:10:13 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 17:10:13 GMT Message-Id: <201010251710.o9PHADbH069814@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, autotools@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151719: [PATCH] Lack of NLS option in devel/gmake X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 17:10:13 -0000 Synopsis: [PATCH] Lack of NLS option in devel/gmake Responsible-Changed-From-To: freebsd-ports-bugs->autotools Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 25 17:10:12 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151719 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 17:20:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 667C01065675 for ; Mon, 25 Oct 2010 17:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1E6958FC0A for ; Mon, 25 Oct 2010 17:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PHK8WP080179 for ; Mon, 25 Oct 2010 17:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PHK8SH080178; Mon, 25 Oct 2010 17:20:08 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 17:20:08 GMT Resent-Message-Id: <201010251720.o9PHK8SH080178@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Josh Paetzel Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EAC161065670 for ; Mon, 25 Oct 2010 17:19:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D98E48FC19 for ; Mon, 25 Oct 2010 17:19:22 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PHJMgw057734 for ; Mon, 25 Oct 2010 17:19:22 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PHJMaW057733; Mon, 25 Oct 2010 17:19:22 GMT (envelope-from nobody) Message-Id: <201010251719.o9PHJMaW057733@www.freebsd.org> Date: Mon, 25 Oct 2010 17:19:22 GMT From: Josh Paetzel To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151721: [PATCH] add rsyncable option to archivers/gzip X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 17:20:09 -0000 >Number: 151721 >Category: ports >Synopsis: [PATCH] add rsyncable option to archivers/gzip >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 17:20:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Josh Paetzel >Release: >Organization: >Environment: FreeBSD cvsup.tcbug.org 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #4: Mon Sep 20 17:49:53 CDT 2010 jpaetzel@cvsup.tcbug.org:/usr/obj/usr/src/sys/EIGHTY amd64 >Description: Add the --rsyncable option to gzip, which lowers the compression ratio slightly while producing output that is rsync friendlier. >How-To-Repeat: N/A >Fix: # fetch -o files/extra-patch-gzip-rsyncable.diff "https://trac.macports.org/raw-attachment/ticket/16446/patch-gzip-rsyncable.diff" And apply the attached patch to the Makefile Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/gzip/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 5 Feb 2010 21:55:09 -0000 1.23 +++ Makefile 25 Oct 2010 17:16:11 -0000 @@ -7,6 +7,7 @@ PORTNAME= gzip PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= archivers MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -23,6 +24,14 @@ DOC_FILES= AUTHORS COPYING ChangeLog ChangeLog-2007 INSTALL NEWS README \ THANKS TODO +OPTIONS= RSYNCABLE "Include --rsyncable patch" OFF + +.include + +.if defined(WITH_RSYNCABLE) +EXTRA_PATCHES= ${FILESDIR}/extra-patch-gzip-rsyncable.diff +.endif + post-configure: @${REINPLACE_CMD} -e 's|^SHELL =.*|SHELL=/bin/sh|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|need_charset_alias=true|need_charset_alias=false|g' \ @@ -36,4 +45,4 @@ .endfor .endif -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 17:20:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92BF8106564A; Mon, 25 Oct 2010 17:20:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 68A228FC0C; Mon, 25 Oct 2010 17:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PHKF68080637; Mon, 25 Oct 2010 17:20:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PHKFV6080623; Mon, 25 Oct 2010 17:20:15 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 17:20:15 GMT Message-Id: <201010251720.o9PHKFV6080623@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gabor@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151721: [PATCH] add rsyncable option to archivers/gzip X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 17:20:15 -0000 Synopsis: [PATCH] add rsyncable option to archivers/gzip Responsible-Changed-From-To: freebsd-ports-bugs->gabor Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 25 17:20:14 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151721 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 17:50:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3A68106566C for ; Mon, 25 Oct 2010 17:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7CB9D8FC1C for ; Mon, 25 Oct 2010 17:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PHo94A009655 for ; Mon, 25 Oct 2010 17:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PHo9x3009654; Mon, 25 Oct 2010 17:50:09 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 17:50:09 GMT Resent-Message-Id: <201010251750.o9PHo9x3009654@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Doug Barton Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A84E21065670 for ; Mon, 25 Oct 2010 17:47:09 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9635A8FC23 for ; Mon, 25 Oct 2010 17:47:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PHl9mv009602 for ; Mon, 25 Oct 2010 17:47:09 GMT (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PHl9AN009601; Mon, 25 Oct 2010 17:47:09 GMT (envelope-from dougb) Message-Id: <201010251747.o9PHl9AN009601@freefall.freebsd.org> Date: Mon, 25 Oct 2010 17:47:09 GMT From: Doug Barton To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151723: x11-clocks/asclock-xlib needs imake to build, mark jobs unsafe and interactive X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Doug Barton List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 17:50:09 -0000 >Number: 151723 >Category: ports >Synopsis: x11-clocks/asclock-xlib needs imake to build, mark jobs unsafe and interactive >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 17:50:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Doug Barton >Release: FreeBSD 8.1-PRERELEASE i386 >Organization: AAAG >Environment: DNA >Description: This port requires imake, but for typical user builds there is no dependency for it. USE_IMAKE is defined for BATCH which conceals the problem on the build cluster. I added MAKE_JOBS_UNSAFE because it failed on my C2D system with make jobs forced. I added IS_INTERACTIVE because for user builds it has a menu to choose the type of clock to build. >How-To-Repeat: Build without -BATCH on a clean system. >Fix: Apply the following patch: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/x11-clocks/asclock-xlib/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- Makefile 19 Apr 2008 17:54:48 -0000 1.18 +++ Makefile 25 Oct 2010 17:42:27 -0000 @@ -15,15 +15,13 @@ MAINTAINER= kuriyama@FreeBSD.org COMMENT= New flavor of asclock -WRKSRC= ${WRKDIR}/asclock-xlib -USE_XORG= xpm +MAKE_JOBS_UNSAFE= yes -.if defined(BATCH) +WRKSRC= ${WRKDIR}/asclock-xlib +USE_XORG= xpm x11 USE_IMAKE= YES -.else -USE_XORG= x11 HAS_CONFIGURE= YES -.endif +IS_INTERACTIVE= YES .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 17:50:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32AF8106564A; Mon, 25 Oct 2010 17:50:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 07F758FC21; Mon, 25 Oct 2010 17:50:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PHoFe2010060; Mon, 25 Oct 2010 17:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PHoFUQ010048; Mon, 25 Oct 2010 17:50:15 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 17:50:15 GMT Message-Id: <201010251750.o9PHoFUQ010048@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151723: x11-clocks/asclock-xlib needs imake to build, mark jobs unsafe and interactive X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 17:50:16 -0000 Synopsis: x11-clocks/asclock-xlib needs imake to build, mark jobs unsafe and interactive Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 25 17:50:15 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151723 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 18:50:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F860106566C for ; Mon, 25 Oct 2010 18:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D4EAB8FC14 for ; Mon, 25 Oct 2010 18:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PIo9hE071636 for ; Mon, 25 Oct 2010 18:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PIo96Q071635; Mon, 25 Oct 2010 18:50:09 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 18:50:09 GMT Resent-Message-Id: <201010251850.o9PIo96Q071635@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Deiter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8893106564A for ; Mon, 25 Oct 2010 18:45:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id B63D58FC08 for ; Mon, 25 Oct 2010 18:45:37 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PIjbMZ043737 for ; Mon, 25 Oct 2010 18:45:37 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PIjbP7043736; Mon, 25 Oct 2010 18:45:37 GMT (envelope-from nobody) Message-Id: <201010251845.o9PIjbP7043736@www.freebsd.org> Date: Mon, 25 Oct 2010 18:45:37 GMT From: Alex Deiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151724: [path] update www/red5 up to 0.9.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 18:50:10 -0000 >Number: 151724 >Category: ports >Synopsis: [path] update www/red5 up to 0.9.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 18:50:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Alex Deiter >Release: 8.1-RELEASE >Organization: N/A >Environment: FreeBSD x4150b.tdc 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update www/red5 up to 0.9.1. Port changes: - change MASTER_SITES - change MAINTAINER - update pkg-descr - add rc.d script - add pkg-install script - add new system user/group: red5 with uid/gid: 931 - tested on 8.1 i386/amd64 with Sun JDK/OpenJDK >How-To-Repeat: cd /usr/ports/www/red5 && make install >Fix: Patch attached with submission follows: diff -Nur red5.orig/Makefile red5/Makefile --- red5.orig/Makefile 2010-02-01 12:52:52.000000000 +0000 +++ red5/Makefile 2010-10-24 22:51:19.000000000 +0000 @@ -6,55 +6,36 @@ # PORTNAME= red5 -PORTVERSION= 0.7.0 -PORTREVISION= 2 +PORTVERSION= 0.9.1 CATEGORIES= www java -MASTER_SITES= http://www.nielsenaa.com/red5-installers/ \ - http://www.red5.fr/release/0.7.0/war/ -DISTNAME= Red5War_${PORTVERSION}-java5 +MASTER_SITES= http://www.red5.org/downloads/0_9/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= alex.deiter@gmail.com COMMENT= Red5 is an Open Source flash server -OPTIONS= TOMCAT4 "Use Tomcat 4.1" OFF \ - TOMCAT5 "Use Tomcat 5.5" OFF \ - TOMCAT6 "Use Tomcat 6.0" ON - -WRKSRC= ${WRKDIR} -USE_ZIP= yes USE_JAVA= yes -JAVA_VERSION= 1.5 +JAVA_VERSION= 1.6 NO_BUILD= yes +USE_RC_SUBR= ${PORTNAME} +SUB_FILES= pkg-install +RED5HOME?= ${PREFIX}/lib/${PORTNAME} +RED5USER?= red5 +RED5GROUP?= red5 +RED5LOGDIR?= /var/log/red5 +SUB_LIST= RED5HOME=${RED5HOME} \ + RED5USER=${RED5USER} \ + RED5GROUP=${RED5GROUP} \ + RED5LOGDIR=${RED5LOGDIR} -.include - -.if (defined(WITH_TOMCAT4) && defined(WITH_TOMCAT5)) || \ - (defined(WITH_TOMCAT4) && defined(WITH_TOMCAT6)) || \ - (defined(WITH_TOMCAT5) && defined(WITH_TOMCAT6)) -IGNORE= please select only one version of Tomcat -.endif - -.if defined(WITH_TOMCAT4) -RUN_DEPENDS+= ${LOCALBASE}/apache-tomcat4.1:${PORTSDIR}/www/tomcat41 -WEBAPPDIR= ${PREFIX}/apache-tomcat4.1/webapps -.elif defined(WITH_TOMCAT5) -RUN_DEPENDS+= ${LOCALBASE}/tomcat5.5:${PORTSDIR}/www/tomcat55 -WEBAPPDIR= ${PREFIX}/tomcat5.5/webapps -.elif defined(WITH_TOMCAT6) -RUN_DEPENDS+= ${LOCALBASE}/apache-tomcat-6.0:${PORTSDIR}/www/tomcat6 -WEBAPPDIR= ${PREFIX}/apache-tomcat-6.0/webapps -.else -IGNORE= please select one version of Tomcat -.endif - -PLIST_FILES= ${WEBAPPDIR:S|^${PREFIX}/||}/red5.war +pre-install: + @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL do-install: - @${MKDIR} ${WEBAPPDIR} - @${INSTALL_DATA} ${WRKSRC}/ROOT.war ${WEBAPPDIR}/red5.war - @${CHOWN} ${WWWOWN}:${WWWGRP} ${WEBAPPDIR}/red5.war - -post-install: - @${CAT} ${PKGMESSAGE} + @${MKDIR} ${RED5HOME} + @cd ${WRKSRC} && ${COPYTREE_SHARE} "boot.jar red5.jar conf lib webapps" ${RED5HOME} + @${INSTALL} -d -g ${RED5GROUP} -o ${RED5USER} ${RED5HOME}/work + @${CHOWN} -R ${RED5USER}:${RED5GROUP} ${RED5HOME}/conf ${RED5HOME}/webapps + @${FIND} -s -d ${RED5HOME} -type f | ${SED} "s#${PREFIX}/##g" >${TMPPLIST} + @${FIND} -s -d ${RED5HOME} -type d | ${SED} "s#${PREFIX}/#@dirrm #g" >>${TMPPLIST} -.include +.include diff -Nur red5.orig/distinfo red5/distinfo --- red5.orig/distinfo 2008-03-20 10:00:37.000000000 +0000 +++ red5/distinfo 2010-10-23 13:47:46.000000000 +0000 @@ -1,3 +1,3 @@ -MD5 (Red5War_0.7.0-java5.zip) = 88cd86aff8a50f35e8a4d07cb210bd0d -SHA256 (Red5War_0.7.0-java5.zip) = 058d2be8ae20d567cf92be1edd02332532f0ca32b56365b8ae5302f086068946 -SIZE (Red5War_0.7.0-java5.zip) = 20335816 +MD5 (red5-0.9.1.tar.gz) = a2eb54ce2a86584c5274db9d0a515475 +SHA256 (red5-0.9.1.tar.gz) = 71290b8b22db8c267752be432126a89e4105809d16c9bfc84d6d1e7f52438efd +SIZE (red5-0.9.1.tar.gz) = 35466436 diff -Nur red5.orig/files/patch-conf-red5-core.xml red5/files/patch-conf-red5-core.xml --- red5.orig/files/patch-conf-red5-core.xml 1970-01-01 00:00:00.000000000 +0000 +++ red5/files/patch-conf-red5-core.xml 2010-10-25 15:21:00.000000000 +0000 @@ -0,0 +1,18 @@ +--- conf/red5-core.xml.orig 2010-10-25 15:19:56.000000000 +0000 ++++ conf/red5-core.xml 2010-10-25 15:20:17.000000000 +0000 +@@ -115,7 +115,6 @@ + + + +- + + + diff -Nur red5.orig/files/pkg-install.in red5/files/pkg-install.in --- red5.orig/files/pkg-install.in 1970-01-01 00:00:00.000000000 +0000 +++ red5/files/pkg-install.in 2010-10-24 22:40:05.000000000 +0000 @@ -0,0 +1,35 @@ +#!/bin/sh +# $FreeBSD$ +# + +if [ "$2" != "PRE-INSTALL" ]; then + exit 0 +fi + +RED5USER=%%RED5USER%% +RED5GROUP=%%RED5GROUP%% +RED5UID=931 +RED5GID=${RED5UID} + +if ! pw groupshow "${RED5GROUP}" 2>/dev/null 1>&2; then + if pw groupadd ${RED5GROUP} -g ${RED5GID}; then + echo "Added group \"${RED5GROUP}\"." + else + echo "Adding group \"${RED5GROUP}\" failed..." + exit 1 + fi +fi + +if ! pw usershow "${RED5USER}" 2>/dev/null 1>&2; then + if pw useradd ${RED5USER} -u ${RED5UID} -g ${RED5GROUP} -h - \ + -s "/sbin/nologin" -d "/nonexistent" \ + -c "Red5 Daemon"; \ + then + echo "Added user \"${RED5USER}\"." + else + echo "Adding user \"${RED5USER}\" failed..." + exit 1 + fi +fi + +exit 0 diff -Nur red5.orig/files/red5.in red5/files/red5.in --- red5.orig/files/red5.in 1970-01-01 00:00:00.000000000 +0000 +++ red5/files/red5.in 2010-10-25 14:58:10.000000000 +0000 @@ -0,0 +1,188 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: red5 +# REQUIRE: NETWORKING SERVERS +# BEFORE: DAEMON +# KEYWORD: shutdown + +# +# Configuration settings for red5 +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# red5_enable (bool): +# Set to "NO" by default. +# Set it to "YES" to enable red5. +# +# red5_user (str): +# Set to "%%RED5USER%%" by default. +# +# red5_group (str): +# Set to "%%RED5GROUP%%" by default. +# +# red5_home (str): +# Set to "%%RED5HOME%%" by default. +# +# red5_log_dir (str): +# Set to "%%RED5LOGDIR%%" by default. +# +# red5_stop_timeout (num): +# Set to "10" by default. +# +# red5_start_opts (str): +# See below for default value. +# Java VM args for start red5. +# +# red5_stop_opts (str): +# See below for default value. +# Java VM args for stop red5. +# +# red5_start_class_opts (str): +# See below for default value. +# Start class arguments. +# +# red5_stop_class_opts (str): +# See below for default value. +# Stop class arguments. +# + +. /etc/rc.subr + +name="red5" +rcvar=`set_rcvar` +pidfile="/var/run/${name}.pid" + +load_rc_config $name + +: ${red5_enable:="NO"} +: ${red5_user:="%%RED5USER%%"} +: ${red5_group:="%%RED5GROUP%%"} +: ${red5_home:="%%RED5HOME%%"} +: ${red5_log_dir:="%%RED5LOGDIR%%"} +: ${red5_stop_timeout:="10"} +: ${red5_start_opts:="-Xrs -Xms512M -Xmx1024M -Xss128K -XX:NewSize=256m -XX:SurvivorRatio=16 -XX:MinHeapFreeRatio=20 -XX:+ExplicitGCInvokesConcurrent -XX:+UseConcMarkSweepGC -Dsun.rmi.dgc.client.gcInterval=990000 -Dsun.rmi.dgc.server.gcInterval=990000 -Djava.net.preferIPv4Stack=true -Xverify:none"} +: ${red5_stop_opts:="-Djavax.net.ssl.keyStore=${red5_home}/conf/keystore.jmx -Djavax.net.ssl.keyStorePassword=password"} +: ${red5_start_class_opts:=""} +: ${red5_stop_class_opts:="9999 red5user changeme"} + +red5_chdir="${red5_home}" +java_command="%%LOCALBASE%%/bin/java" +red5_start_class="org.red5.server.Bootstrap" +red5_stop_class="org.red5.server.Shutdown" + +red5_opts="-Dpython.home=lib \ + -Dred5.root=${red5_home} \ + -Dlogback.ContextSelector=org.red5.logging.LoggingContextSelector \ + -Dcatalina.useNaming=true \ + -Djava.security.debug=failure \ + -cp ${red5_home}/boot.jar:${red5_home}/conf" + +red5_stdout_log="${red5_log_dir}/stdout.log" +red5_stderr_log="${red5_log_dir}/stderr.log" +log_args=">>${red5_stdout_log} 2>>${red5_stderr_log}" + +required_files="${red5_home}/conf/red5.xml" + +command="/usr/sbin/daemon" +command_args="-p ${pidfile} ${java_command} ${red5_start_opts} ${red5_opts} \ + ${red5_start_class} ${red5_start_class_opts} ${log_args}" + +start_precmd="red5_precmd" +status_cmd="red5_status" +stop_cmd="red5_stop" +poll_cmd="red5_poll" + +red5_precmd() { + mkdir -p ${red5_log_dir} + chown ${red5_user}:${red5_group} ${red5_log_dir} + touch ${pidfile} ${red5_stdout_log} ${red5_stderr_log} + chown ${red5_user}:${red5_group} ${pidfile} \ + ${red5_stdout_log} ${red5_stderr_log} + rm -f ${red5_home}/log + ln -s ${red5_log_dir} ${red5_home}/log +} + +red5_stop() { + rc_pid=$(red5_check_pidfile $pidfile) + + if [ -z "$rc_pid" ]; then + [ -n "$rc_fast" ] && return 0 + echo "${name} not running? (check $pidfile)." + return 1 + fi + + echo "Stopping ${name}." + su -m ${red5_user} -c "sh -c '${java_command} ${red5_stop_opts} \ + ${red5_opts} ${red5_stop_class} ${red5_stop_class_opts} \ + ${log_args}'" + red5_wait_max_for_pid ${red5_stop_timeout} ${rc_pid} + kill -KILL ${rc_pid} 2>/dev/null && echo "Killed." + rm -f ${pidfile} ${red5_home}/log +} + +red5_status() { + rc_pid=$(red5_check_pidfile $pidfile) + + if [ -z "$rc_pid" ]; then + [ -n "$rc_fast" ] && return 0 + echo "${name} not running? (check $pidfile)." + return 1 + fi + echo "${name} is running as pid ${rc_pid}." +} + +red5_poll() { + _prefix= + while (true) ; do + rc_pid=$(red5_check_pidfile $pidfile) + [ -z "$rc_pid" ] && break + echo -n ${_prefix:-"Waiting for PIDS: "}$rc_pid + _prefix=", " + sleep 2 + done + if [ -n "$_prefix" ]; then + echo "." + fi +} + +red5_check_pidfile() { + _pidfile=$1 + if [ -z "$_pidfile" ]; then + err 3 'USAGE: red5_check_pidfile pidfile' + fi + if [ ! -f $_pidfile ]; then + debug "pid file ($_pidfile): not readable." + return + fi + read _pid _junk < $_pidfile + if [ -z "$_pid" ]; then + debug "pid file ($_pidfile): no pid in file." + return + fi + if [ -n "`%%LOCALBASE%%/bin/jps -l | grep -e "^$_pid ${red5_start_class}\$"`" ]; then + echo -n $_pid + fi +} + +red5_wait_max_for_pid() { + _timeout=$1 + shift + _pid=$1 + _prefix= + while [ $_timeout -gt 0 ] ; do + echo -n ${_prefix:-"Waiting (max $_timeout secs) for PIDS: "}$_pid + _prefix=", " + sleep 2 + kill -0 $_pid 2>/dev/null || break + _timeout=$(($_timeout-2)) + done + if [ -n "$_prefix" ]; then + echo "." + fi +} + +run_rc_command "$1" diff -Nur red5.orig/pkg-descr red5/pkg-descr --- red5.orig/pkg-descr 2008-03-20 10:00:37.000000000 +0000 +++ red5/pkg-descr 2010-10-23 13:35:01.000000000 +0000 @@ -1,6 +1,7 @@ -Red5 is an Open Source Flash Server written +Red5 is an Open Source Flash Server written in Java that supports streaming Audio/Video -(FLV and MP3),Recording Client Streams, -Live Stream Publishing, etc. +(FLV, MP3, F4V, MP4, AAC and M4A), Recording +Client Streams, Shared Objects, Live Stream +Publishing, Remoting, etc. -WWW: http://www.red5.fr/ +WWW: http://www.red5.org/ diff -Nur red5.orig/pkg-message red5/pkg-message --- red5.orig/pkg-message 2008-03-20 10:00:37.000000000 +0000 +++ red5/pkg-message 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -===================================== -Now start your Tomcat and browse with: -http://your-server-ip:8180/red5/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 19:41:04 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E908A1065672; Mon, 25 Oct 2010 19:41:04 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C01008FC0A; Mon, 25 Oct 2010 19:41:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PJf4I3031783; Mon, 25 Oct 2010 19:41:04 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PJf4J7031772; Mon, 25 Oct 2010 19:41:04 GMT (envelope-from makc) Date: Mon, 25 Oct 2010 19:41:04 GMT Message-Id: <201010251941.o9PJf4J7031772@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151685: [PATCH] games/empire update to 1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 19:41:05 -0000 Synopsis: [PATCH] games/empire update to 1.8 Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Mon Oct 25 19:41:04 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151685 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 19:41:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1904E1065695; Mon, 25 Oct 2010 19:41:08 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E3CAC8FC0C; Mon, 25 Oct 2010 19:41:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PJf7lM032216; Mon, 25 Oct 2010 19:41:07 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PJf7Cm032207; Mon, 25 Oct 2010 19:41:07 GMT (envelope-from makc) Date: Mon, 25 Oct 2010 19:41:07 GMT Message-Id: <201010251941.o9PJf7Cm032207@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151668: [maintainer-update] conky bugfix for the kvm_getprocs crash X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 19:41:08 -0000 Synopsis: [maintainer-update] conky bugfix for the kvm_getprocs crash Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Mon Oct 25 19:41:07 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151668 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 19:44:02 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 113881065675; Mon, 25 Oct 2010 19:44:02 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DC8008FC12; Mon, 25 Oct 2010 19:44:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PJi1aX033182; Mon, 25 Oct 2010 19:44:01 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PJi1HS033170; Mon, 25 Oct 2010 19:44:01 GMT (envelope-from makc) Date: Mon, 25 Oct 2010 19:44:01 GMT Message-Id: <201010251944.o9PJi1HS033170@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151566: New port: audio/mangler X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 19:44:02 -0000 Synopsis: New port: audio/mangler Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Mon Oct 25 19:44:01 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151566 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 19:45:46 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58A77106566B; Mon, 25 Oct 2010 19:45:46 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2ED6C8FC12; Mon, 25 Oct 2010 19:45:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PJjkDt033369; Mon, 25 Oct 2010 19:45:46 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PJjku8033365; Mon, 25 Oct 2010 19:45:46 GMT (envelope-from makc) Date: Mon, 25 Oct 2010 19:45:46 GMT Message-Id: <201010251945.o9PJjku8033365@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151687: [NEW PORT] x11-themes/gtk-equinox-engine: Equinox GTK+ 2.x engine and themes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 19:45:46 -0000 Synopsis: [NEW PORT] x11-themes/gtk-equinox-engine: Equinox GTK+ 2.x engine and themes Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Mon Oct 25 19:45:45 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151687 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 19:46:45 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CC70106566C; Mon, 25 Oct 2010 19:46:45 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 695E98FC13; Mon, 25 Oct 2010 19:46:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PJki5d033472; Mon, 25 Oct 2010 19:46:44 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PJkiG0033468; Mon, 25 Oct 2010 19:46:44 GMT (envelope-from makc) Date: Mon, 25 Oct 2010 19:46:44 GMT Message-Id: <201010251946.o9PJkiG0033468@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151562: [PATCH] graphics/cbrpager update to 0.9.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 19:46:45 -0000 Synopsis: [PATCH] graphics/cbrpager update to 0.9.22 Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Mon Oct 25 19:46:44 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151562 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 19:49:32 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48EA51065672; Mon, 25 Oct 2010 19:49:32 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1FCC88FC08; Mon, 25 Oct 2010 19:49:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PJnWgf033584; Mon, 25 Oct 2010 19:49:32 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PJnVWE033580; Mon, 25 Oct 2010 19:49:31 GMT (envelope-from makc) Date: Mon, 25 Oct 2010 19:49:31 GMT Message-Id: <201010251949.o9PJnVWE033580@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151281: [UPDATE] audio/libaacplus: update to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 19:49:32 -0000 Synopsis: [UPDATE] audio/libaacplus: update to 1.1.0 Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Mon Oct 25 19:49:31 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151281 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 20:00:25 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C673210656A6 for ; Mon, 25 Oct 2010 20:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4ED518FC21 for ; Mon, 25 Oct 2010 20:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PK0PpE043059 for ; Mon, 25 Oct 2010 20:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PK0P11043043; Mon, 25 Oct 2010 20:00:25 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 20:00:25 GMT Resent-Message-Id: <201010252000.o9PK0P11043043@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kevin Oberman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0758106564A for ; Mon, 25 Oct 2010 19:51:04 +0000 (UTC) (envelope-from oberman@es.net) Received: from mailgw.es.net (mail1.es.net [IPv6:2001:400:201:1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 8D1588FC18 for ; Mon, 25 Oct 2010 19:51:04 +0000 (UTC) Received: from ptavv.es.net (ptavv.es.net [IPv6:2001:400:910::29]) by mailgw.es.net (8.14.3/8.14.3) with ESMTP id o9PJp3wU022211 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 25 Oct 2010 12:51:04 -0700 Received: by ptavv.es.net (Tachyon Server, from userid 9381) id D01171CC45; Mon, 25 Oct 2010 12:51:03 -0700 (PDT) Message-Id: <20101025195103.D01171CC45@ptavv.es.net> Date: Mon, 25 Oct 2010 12:51:03 -0700 (PDT) From: Kevin Oberman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151725: hald fails to start with dbus-1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kevin Oberman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 20:00:26 -0000 >Number: 151725 >Category: ports >Synopsis: hald fails to start with dbus-1.4 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 20:00:24 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Kevin Oberman >Release: FreeBSD 8.1-STABLE i386 >Organization: ESnet--The Energy Sciences Network >Environment: System: FreeBSD slan.es.net 8.1-STABLE FreeBSD 8.1-STABLE #2: Mon Oct 20 14:53:07 PDT 2010 root@slan.es.net:/usr/obj/usr/src/sys/IBM-T43 i386 >Description: System is a uniprocessor 2GHz Pentium-M base Thinkpad T43. After upgrade of dbus last weekend, hald fails to run. Here is the tail end of the output of 'hald --verbose=yes --daemon=no': 11:50:54.104 [I] hald.c:108: Added device to GDL; udi=/org/freedesktop/Hal/devices/usb_device_0_0_noserial Run started hald-probe-usb2-interface (20000) (0) ! full path is '/usr/local/libexec/hald-probe-usb2-interface', program_dir is '/usr/local/libexec' 11:50:54.129 [D] hald_dbus.c:1659: udi=/org/freedesktop/Hal/devices/temp/42, key=usb.interface.class 11:50:54.129 [D] hald_dbus.c:1659: udi=/org/freedesktop/Hal/devices/temp/42, key=usb.interface.subclass 11:50:54.130 [D] hald_dbus.c:1659: udi=/org/freedesktop/Hal/devices/temp/42, key=usb.interface.protocol 11:50:54.130 [D] hald_dbus.c:1659: udi=/org/freedesktop/Hal/devices/temp/42, key=usb.interface.description 11:50:54.130 [D] hald_dbus.c:1659: udi=/org/freedesktop/Hal/devices/temp/42, key=usb.freebsd.devname 11:50:54.131 [I] hald_runner.c:110: runner_server_message_handler: destination=(null) obj_path=/org/freedesktop/DBus/Local interface=org.freedesktop.DBus.Local method=Disconnected 11:50:54.131 [I] hald_runner.c:151: runner process disconnected *** [DIE] hald_runner.c:runner_died():204 : Runner died I can make the full log available, but it looks prettty normal to me. On exactly one of 6 attempts, hald did run, so there may be a race involved. dbus does appear to be running normally. 94475 ?? Is 0:00.44 /usr/local/bin/dbus-daemon --system 94550 ?? Is 0:00.12 /usr/local/bin/dbus-daemon --fork --print-pid 5 --pri 94526 v0 I 0:00.00 ck-launch-session dbus-launch --exit-with-session gno 94549 v0 I 0:00.00 dbus-launch --exit-with-session gnome-session >How-To-Repeat: Upgrade to dbus-1.4.0. Start dbus and then hald. >Fix: Roll back to dbus-1.2.24_2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 20:00:26 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 984941065696 for ; Mon, 25 Oct 2010 20:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 458728FC27 for ; Mon, 25 Oct 2010 20:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PK0Q6P043311 for ; Mon, 25 Oct 2010 20:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PK0QTw043297; Mon, 25 Oct 2010 20:00:26 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 20:00:26 GMT Resent-Message-Id: <201010252000.o9PK0QTw043297@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E29F1065693 for ; Mon, 25 Oct 2010 19:59:58 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 02FA68FC13 for ; Mon, 25 Oct 2010 19:59:58 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PJxvZJ004041 for ; Mon, 25 Oct 2010 19:59:57 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PJxvrg004040; Mon, 25 Oct 2010 19:59:57 GMT (envelope-from nobody) Message-Id: <201010251959.o9PJxvrg004040@www.freebsd.org> Date: Mon, 25 Oct 2010 19:59:57 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151727: [PATCH] sysutils/fio: update to 1.44.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 20:00:26 -0000 >Number: 151727 >Category: ports >Synopsis: [PATCH] sysutils/fio: update to 1.44.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 20:00:25 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 8.1-STABLE >Organization: >Environment: 8.1-STABLE i386 >Description: - update to 1.44.1 - eliminate bash dependency and remove corresponding patch - add new manpage - move PLIST_FILES from pkg-plist to Makefile. delete pkg-plist >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruNa fio/Makefile fio/Makefile --- fio/Makefile 2010-02-13 21:39:27.000000000 +0300 +++ fio/Makefile 2010-10-25 00:53:36.000000000 +0400 @@ -8,27 +8,24 @@ # PORTNAME= fio -PORTVERSION= 1.25 +PORTVERSION= 1.44.1 CATEGORIES= sysutils MASTER_SITES= http://brick.kernel.dk/snaps/ MAINTAINER= luigi@FreeBSD.org COMMENT= The program fio - flexible IO tester -BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash - -SCRIPTS_ENV= "SHELL=bash" -WRKSRC= ${WRKDIR}/${PORTNAME} - USE_GMAKE= yes MAKEFILE= Makefile.FreeBSD -MAN1= fio.1 +MAN1= fio.1 fio_generate_plots.1 +PLIST_FILES= bin/fio bin/fio_generate_plots do-install: ${INSTALL_PROGRAM} ${WRKSRC}/fio ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/fio_generate_plots ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/fio.1 ${PREFIX}/man/man1/ + ${INSTALL_MAN} ${WRKSRC}/fio_generate_plots.1 ${PREFIX}/man/man1/ .include diff -ruNa fio/distinfo fio/distinfo --- fio/distinfo 2010-02-13 21:39:27.000000000 +0300 +++ fio/distinfo 2010-10-25 00:47:30.000000000 +0400 @@ -1,3 +1,3 @@ -MD5 (fio-1.25.tar.gz) = de2689cb3af10eac6912b908ca4e0f4b -SHA256 (fio-1.25.tar.gz) = 11d632542582aec55591555d53059b3a6793913469a8de8cb0883fff5f1f4a8d -SIZE (fio-1.25.tar.gz) = 1468706 +MD5 (fio-1.44.1.tar.gz) = 88024867de9c439b9acc300e19deffae +SHA256 (fio-1.44.1.tar.gz) = d0393f3ab98fcd8c3f23c9433a80c69731040e0ddecb3058bd5e2576223baff1 +SIZE (fio-1.44.1.tar.gz) = 204213 diff -ruNa fio/files/patch-01 fio/files/patch-01 --- fio.orig/files/patch-01 2009-02-14 22:32:30.000000000 +0300 +++ fio/files/patch-01 1970-01-01 03:00:00.000000000 +0300 @@ -1,8 +0,0 @@ ---- fio_generate_plots.orig 2009-02-06 14:13:52.000000000 +0100 -+++ fio_generate_plots 2009-02-14 20:00:49.000000000 +0100 -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!/usr/local/bin/bash - - # Use gnuplot to generate plots from fio run with -l and/or -w - diff -ruNa fio/pkg-plist fio/pkg-plist --- fio/pkg-plist 2009-02-17 00:20:05.000000000 +0300 +++ fio/pkg-plist 1970-01-01 03:00:00.000000000 +0300 @@ -1,2 +0,0 @@ -bin/fio -bin/fio_generate_plots >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 20:00:37 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E2F510656C5; Mon, 25 Oct 2010 20:00:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 060AD8FC20; Mon, 25 Oct 2010 20:00:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PK0aCu046482; Mon, 25 Oct 2010 20:00:36 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PK0aOt046458; Mon, 25 Oct 2010 20:00:36 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 20:00:36 GMT Message-Id: <201010252000.o9PK0aOt046458@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, luigi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151727: [PATCH] sysutils/fio: update to 1.44.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 20:00:37 -0000 Synopsis: [PATCH] sysutils/fio: update to 1.44.1 Responsible-Changed-From-To: freebsd-ports-bugs->luigi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 25 20:00:36 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151727 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 20:10:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73B4B10656F6 for ; Mon, 25 Oct 2010 20:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 485198FC18 for ; Mon, 25 Oct 2010 20:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PKADHH055413 for ; Mon, 25 Oct 2010 20:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PKADDe055412; Mon, 25 Oct 2010 20:10:13 GMT (envelope-from gnats) Date: Mon, 25 Oct 2010 20:10:13 GMT Message-Id: <201010252010.o9PKADDe055412@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ruslan Mahmatkhanov Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ruslan Mahmatkhanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 20:10:13 -0000 The following reply was made to PR ports/151699; it has been noted by GNATS. From: Ruslan Mahmatkhanov To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 Date: Tue, 26 Oct 2010 00:03:20 +0400 This is a multi-part message in MIME format. --------------090501060602070001030306 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Please use this patch instead. It contains LICENSE fix suggested by swell.k at gmail.com. -- Regards, Ruslan --------------090501060602070001030306 Content-Type: text/plain; name="txt-1.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="txt-1.txt" CmRpZmYgLXJ1TmEgaHlkcmEvTWFrZWZpbGUgaHlkcmEvTWFrZWZpbGUKLS0tIGh5ZHJhL01h a2VmaWxlCTIwMTAtMDMtMjggMTA6NDM6MjEuMDAwMDAwMDAwICswNDAwCisrKyBoeWRyYS9N YWtlZmlsZQkyMDEwLTEwLTI0IDIyOjU1OjIwLjAwMDAwMDAwMCArMDQwMApAQCAtNywxNyAr NywxOCBAQAogIwogCiBQT1JUTkFNRT0JaHlkcmEKLVBPUlRWRVJTSU9OPQk1LjQKLVBPUlRS RVZJU0lPTj0JNQorUE9SVFZFUlNJT049CTUuOAogQ0FURUdPUklFUz0Jc2VjdXJpdHkKLU1B U1RFUl9TSVRFUz0JaHR0cDovL3d3dy50aGMub3JnL3JlbGVhc2VzLyBcCi0JCSR7TUFTVEVS X1NJVEVfUEFDS0VUU1RPUk19CitNQVNURVJfU0lURVM9CWh0dHA6Ly9mcmVld29ybGQudGhj Lm9yZy9yZWxlYXNlcy8KKyMJCSR7TUFTVEVSX1NJVEVfUEFDS0VUU1RPUk19CiBNQVNURVJf U0lURV9TVUJESVI9CWdyb3Vwcy90aGMKIEVYVFJBQ1RfU1VGWD0JLXNyYy50YXIuZ3oKIAog TUFJTlRBSU5FUj0JbGxldmllckBhcmdvc25ldC5jb20KIENPTU1FTlQ9CUJydXRlIGZvcmNl IGF0dGFjayB1dGlsaXR5IHdvcmtpbmcgb24gbXVsdGlwbGUgbmV0d29yayBzZXJ2aWNlcwog CitMSUNFTlNFPQlHUEx2MworTElDRU5TRV9GSUxFPSR7V1JLU1JDfS9MSUNFTlNFCiBOT19M QVRFU1RfTElOSz0JeWVzCiBQTElTVF9GSUxFUz0JYmluL2h5ZHJhIGJpbi94aHlkcmEKIEdO VV9DT05GSUdVUkU9CXllcwpkaWZmIC1ydU5hIGh5ZHJhL2Rpc3RpbmZvIGh5ZHJhL2Rpc3Rp bmZvCi0tLSBoeWRyYS9kaXN0aW5mbwkyMDA3LTA0LTExIDA1OjQ2OjQ4LjAwMDAwMDAwMCAr MDQwMAorKysgaHlkcmEvZGlzdGluZm8JMjAxMC0xMC0yNCAyMjozMjowNy4wMDAwMDAwMDAg KzA0MDAKQEAgLTEsMyArMSwzIEBACi1NRDUgKGh5ZHJhLTUuNC1zcmMudGFyLmd6KSA9IGZh MDhiNDY1ZDE5MzIxZTc3YjFhMGVmOTEyZWVlY2MxCi1TSEEyNTYgKGh5ZHJhLTUuNC1zcmMu dGFyLmd6KSA9IGNkMmU3ZTVlYTQ3OWQ1MDk4MmIwODMzNGIxZjQ0NzdhNjYyMGU2YjQ1YmM3 OWFiNTVkZGQwN2IxMjhjNjQ2MTEKLVNJWkUgKGh5ZHJhLTUuNC1zcmMudGFyLmd6KSA9IDIw ODI3MgorTUQ1IChoeWRyYS01Ljgtc3JjLnRhci5neikgPSAxYjk0N2RiY2QwNDEzN2VmZDhj OWJiZGM3OWQwNDQ4YgorU0hBMjU2IChoeWRyYS01Ljgtc3JjLnRhci5neikgPSA4Yzk3NDcy NTA5YTFhZmU5YzYwYmRkYmIzZjM1NDFlYjcwNmQzNzE5ZmIxYzQ2MzQ3NDlkMTUzMTM5NzM3 N2FhCitTSVpFIChoeWRyYS01Ljgtc3JjLnRhci5neikgPSAyMDMxNjQKZGlmZiAtcnVOYSBo eWRyYS9maWxlcy9wYXRjaC1NYWtlZmlsZS5hbSBoeWRyYS9maWxlcy9wYXRjaC1NYWtlZmls ZS5hbQotLS0gaHlkcmEvZmlsZXMvcGF0Y2gtTWFrZWZpbGUuYW0JMjAwNS0wNS0yMiAwMzo1 NTozOS4wMDAwMDAwMDAgKzA0MDAKKysrIGh5ZHJhL2ZpbGVzL3BhdGNoLU1ha2VmaWxlLmFt CTIwMTAtMTAtMjQgMjI6MzY6MDYuMDAwMDAwMDAwICswNDAwCkBAIC0xLDYgKzEsNiBAQAot LS0tIE1ha2VmaWxlLmFtLm9yaWcJRnJpIE1heSAyMCAxNjo1NDoxNiAyMDA1Ci0rKysgTWFr ZWZpbGUuYW0JRnJpIE1heSAyMCAxNjo1NDoyNCAyMDA1Ci1AQCAtMzYsNyArMzYsNyBAQAor LS0tIE1ha2VmaWxlLmFtLm9yaWcJMjAxMC0wOS0yOSAxNToxOTo0My4wMDAwMDAwMDAgKzA0 MDAKKysrKyBNYWtlZmlsZS5hbQkyMDEwLTEwLTI0IDIyOjM1OjQ5LjAwMDAwMDAwMCArMDQw MAorQEAgLTQ1LDcgKzQ1LDcgQEAKICAJQGVjaG8KICAKICB4aHlkcmE6CQpkaWZmIC1ydU5h IGh5ZHJhL2ZpbGVzL3BhdGNoLWNvbmZpZ3VyZSBoeWRyYS9maWxlcy9wYXRjaC1jb25maWd1 cmUKLS0tIGh5ZHJhL2ZpbGVzL3BhdGNoLWNvbmZpZ3VyZQkyMDA2LTExLTIyIDAwOjU2OjI1 LjAwMDAwMDAwMCArMDMwMAorKysgaHlkcmEvZmlsZXMvcGF0Y2gtY29uZmlndXJlCTIwMTAt MTAtMjQgMjI6NTA6MzguMDAwMDAwMDAwICswNDAwCkBAIC0xLDExICsxLDExIEBACi0tLS0g Y29uZmlndXJlLm9yaWcJU2F0IE9jdCAyOCAxOTo1MToyNCAyMDA2Ci0rKysgY29uZmlndXJl CVNhdCBPY3QgMjggMTk6NDI6MDMgMjAwNgotQEAgLTExOCwxMSArMTE4LDExIEBACi0gICAg IGVjaG8gIiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC4uLiBOT1QgZm91bmQsIG1v ZHVsZSBwb3N0Z3JlcyBkaXNhYmxlZCIKKy0tLSBjb25maWd1cmUub3JpZwkyMDEwLTA5LTI5 IDE1OjE5OjQzLjAwMDAwMDAwMCArMDQwMAorKysrIGNvbmZpZ3VyZQkyMDEwLTEwLTI0IDIy OjQ5OjEwLjAwMDAwMDAwMCArMDQwMAorQEAgLTEyNSwxMSArMTI1LDExIEBACisgICAgIGVj aG8gIiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC4uLiBOT1QgZm91bmQsIG1v ZHVsZSBwb3N0Z3JlcyBkaXNhYmxlZCIKICBmaQogIAotLWVjaG8gIkNoZWNraW5nIGZvciBT Vk4gKGlic3ZuX2NsaWVudC0xIGxpYmFwci0wLnNvIGxpYmFwcnV0aWwtMC5zbykgLi4uIgot K2VjaG8gIkNoZWNraW5nIGZvciBTVk4gKGlic3ZuX2NsaWVudC0xIGxpYmFwci0xLnNvIGxp YmFwcnV0aWwtMS5zbykgLi4uIgorLWVjaG8gIkNoZWNraW5nIGZvciBTVk4gKGxpYnN2bl9j bGllbnQtMSBsaWJhcHItMC5zbyBsaWJhcHJ1dGlsLTAuc28pIC4uLiIKKytlY2hvICJDaGVj a2luZyBmb3IgU1ZOIChsaWJzdm5fY2xpZW50LTEgbGliYXByLTEuc28gbGliYXBydXRpbC0x LnNvKSAuLi4iCiAgZm9yIGkgaW4gICRMSUJESVJTIC9saWIgIC91c3IvbGliIC91c3IvbG9j YWwvbGliIC9vcHQvbG9jYWwvbGliIC4KICBkbwogICAgICBpZiBbICJYIiA9ICJYJFNWTl9Q QVRIIiBdOyB0aGVuCkBAIC0xNCw3ICsxNCw3IEBACiAgICAgICAgICAgICAgU1ZOX1BBVEg9 IiRpIgogICAgICAgICAgZmkKICAgICAgZmkKLUBAIC0yMDIsOCArMjAyLDggQEAKK0BAIC0z MDMsOCArMzAzLDggQEAKICAgICAgICAgIGZpCiAgICAgIGZpICAKICAgICAgaWYgWyAiWCIg PSAiWCRBUFJfSVBBVEgiIF07IHRoZW4KQEAgLTI1LDcgKzI1LDcgQEAKICAgICAgICAgIGZp CiAgICAgIGZpICAKICBkb25lCi1AQCAtMjIwLDggKzIyMCw4IEBACitAQCAtMzIxLDggKzMy MSw4IEBACiAgICAgICAgICBmaQogICAgICBmaSAgCiAgICAgIGlmIFsgIlgiID0gIlgkQVBS X0lQQVRIIiBdOyB0aGVuCkBAIC0zNiw3ICszNiw3IEBACiAgICAgICAgICBmaQogICAgICBm aSAgCiAgZG9uZQotQEAgLTM3OSwxMCArMzc5LDEwIEBACitAQCAtNTI4LDEwICs1MjgsMTAg QEAKICAgICAgWExJQlM9IiRYTElCUyAtbHBxIgogIGZpCiAgaWYgWyAtbiAiJFNWTl9QQVRI IiBdOyB0aGVuCmRpZmYgLXJ1TmEgaHlkcmEvcGtnLWRlc2NyIGh5ZHJhL3BrZy1kZXNjcgot LS0gaHlkcmEvcGtnLWRlc2NyCTIwMDMtMDYtMzAgMTE6NDE6MDQuMDAwMDAwMDAwICswNDAw CisrKyBoeWRyYS9wa2ctZGVzY3IJMjAxMC0xMC0yNCAyMjozMToyOS4wMDAwMDAwMDAgKzA0 MDAKQEAgLTUsNCArNSw0IEBACiAKIE5FV1M6IEh5ZHJhIGlzIG5vdyBpbmNsdWRlZCBpbiBO ZXNzdXMhCiAKLVdXVzogaHR0cDovL3d3dy50aGMub3JnL3JlbGVhc2VzLnBocAorV1dXOiBo dHRwOi8vZnJlZXdvcmxkLnRoYy5vcmcvdGhjLWh5ZHJhLwoKCg== --------------090501060602070001030306-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 20:24:39 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2DA321065672; Mon, 25 Oct 2010 20:24:39 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 045998FC1D; Mon, 25 Oct 2010 20:24:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PKOcTT075141; Mon, 25 Oct 2010 20:24:38 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PKOcu3075137; Mon, 25 Oct 2010 20:24:38 GMT (envelope-from pav) Date: Mon, 25 Oct 2010 20:24:38 GMT Message-Id: <201010252024.o9PKOcu3075137@freefall.freebsd.org> To: smallcms@gmail.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/151708: ports/net/linuxigd failed to install in 7.3-release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 20:24:39 -0000 Synopsis: ports/net/linuxigd failed to install in 7.3-release State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Mon Oct 25 20:24:12 UTC 2010 State-Changed-Why: Annotated BROKEN. If you have a fix, let me know http://www.freebsd.org/cgi/query-pr.cgi?pr=151708 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 21:00:20 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B30A1065670 for ; Mon, 25 Oct 2010 21:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 16F8D8FC16 for ; Mon, 25 Oct 2010 21:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PL0JZM005982 for ; Mon, 25 Oct 2010 21:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PL0Juj005974; Mon, 25 Oct 2010 21:00:19 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 21:00:19 GMT Resent-Message-Id: <201010252100.o9PL0Juj005974@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Ilya A. Arhipov" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC33B1065670 for ; Mon, 25 Oct 2010 20:58:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id CB36C8FC13 for ; Mon, 25 Oct 2010 20:58:47 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PKwlL1055559 for ; Mon, 25 Oct 2010 20:58:47 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PKwlWq055557; Mon, 25 Oct 2010 20:58:47 GMT (envelope-from nobody) Message-Id: <201010252058.o9PKwlWq055557@www.freebsd.org> Date: Mon, 25 Oct 2010 20:58:47 GMT From: "Ilya A. Arhipov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151728: Crash using OSS when trying to rewind html5 video X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 21:00:20 -0000 >Number: 151728 >Category: ports >Synopsis: Crash using OSS when trying to rewind html5 video >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 21:00:19 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ilya A. Arhipov >Release: FreeBSD 9.0-CURRENT >Organization: gorodkirov.ru >Environment: FreeBSD micro 9.0-CURRENT FreeBSD 9.0-CURRENT #3: Tue Oct 19 19:56:40 MSD 2010 root@micro:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Crash using OSS when trying to rewind html5 video. >How-To-Repeat: 1. open http://fosscasts.com/screencasts/6-System-Monitoring-With-Monit 2. start html5 video 3. try to rewind... crash :( >Fix: Patch attached with submission follows: --- sydney_audio_oss.c.orig 2010-10-12 21:45:53.000000000 +0400 +++ sydney_audio_oss.c 2010-10-25 23:33:08.919096567 +0400 @@ -258,6 +258,7 @@ int sa_stream_destroy(sa_stream_t *s) { int result = SA_SUCCESS; + pthread_t thread_id; if (s == NULL) { return SA_SUCCESS; @@ -265,8 +266,10 @@ pthread_mutex_lock(&s->mutex); + thread_id = s->thread_id; + /* - * This causes the thread sending data to ALSA to stop + * This causes the thread sending data to OSS to stop */ s->thread_id = 0; @@ -281,6 +284,8 @@ pthread_mutex_unlock(&s->mutex); + pthread_join(thread_id, NULL); + /* * Release resources. */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 21:10:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70693106567A for ; Mon, 25 Oct 2010 21:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EF0B88FC1E for ; Mon, 25 Oct 2010 21:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PLA9oh017434 for ; Mon, 25 Oct 2010 21:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PLA9EA017433; Mon, 25 Oct 2010 21:10:09 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 21:10:09 GMT Resent-Message-Id: <201010252110.o9PLA9EA017433@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris St Denis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 176F5106566C for ; Mon, 25 Oct 2010 21:06:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id DFC758FC08 for ; Mon, 25 Oct 2010 21:06:09 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PL69Tp056502 for ; Mon, 25 Oct 2010 21:06:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PL69Vx056501; Mon, 25 Oct 2010 21:06:09 GMT (envelope-from nobody) Message-Id: <201010252106.o9PL69Vx056501@www.freebsd.org> Date: Mon, 25 Oct 2010 21:06:09 GMT From: Chris St Denis To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151729: New port: devel/pear-Text_CAPTCHA Pear Implementation of CAPTCHAs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 21:10:10 -0000 >Number: 151729 >Category: ports >Synopsis: New port: devel/pear-Text_CAPTCHA Pear Implementation of CAPTCHAs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 21:10:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris St Denis >Release: >Organization: SmarttNet >Environment: >Description: port of pear package Text_CAPTCHA >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pear-Text_CAPTCHA # pear-Text_CAPTCHA/Makefile # pear-Text_CAPTCHA/distinfo # pear-Text_CAPTCHA/pkg-descr # echo c - pear-Text_CAPTCHA mkdir -p pear-Text_CAPTCHA > /dev/null 2>&1 echo x - pear-Text_CAPTCHA/Makefile sed 's/^X//' >pear-Text_CAPTCHA/Makefile << '4e89e063e0e1bcbec78bee84702dda91' X# Ports collection makefile for: pear-Text_CAPTCHA X# Date created: 25 October 2010 X# Whom: Chris St Denis X# X# $FreeBSD$ X# X XPORTNAME= Text_CAPTCHA XPORTVERSION= 0.4.1 XCATEGORIES= devel www pear XDISTNAME= ${PORTNAME}-${PORTVERSION} X XMAINTAINER= chris@smartt.com XCOMMENT= Pear Implementation of CAPTCHAs X XBUILD_DEPENDS= ${PEARDIR}/HTML/QuickForm.php:${PORTSDIR}/devel/pear-HTML_QuickForm \ X ${PEARDIR}/Text/Password.php:${PORTSDIR}/security/pear-Text_Password XRUN_DEPENDS= ${BUILD_DEPENDS} X XFILES= Text/CAPTCHA.php Text/CAPTCHA/Driver/Equation.php Text/CAPTCHA/Driver/Figlet.php Text/CAPTCHA/Driver/Image.php Text/CAPTCHA/Driver/Numeral.php Text/CAPTCHA/Driver/Word.php X XEXAMPLES= CAPTCHA_Equation_test.php CAPTCHA_Figlet_test.php CAPTCHA_Numeral_test.php CAPTCHA_test.php CAPTCHA_test_measure.php CAPTCHA_test_phraseoptions.php CAPTCHA_Word_test.php X X.include X.include "${PORTSDIR}/devel/pear/bsd.pear.mk" X.include 4e89e063e0e1bcbec78bee84702dda91 echo x - pear-Text_CAPTCHA/distinfo sed 's/^X//' >pear-Text_CAPTCHA/distinfo << '168689ae60da430b7bc72c88e67e07af' XMD5 (PEAR/Text_CAPTCHA-0.4.1.tgz) = 793dab7aadf92a67968f79b9e1727f54 XSHA256 (PEAR/Text_CAPTCHA-0.4.1.tgz) = c713b67c4f2fce55f0b0408c52ca40fed56c16408cc191127f0b9c633e3bceb5 XSIZE (PEAR/Text_CAPTCHA-0.4.1.tgz) = 12759 168689ae60da430b7bc72c88e67e07af echo x - pear-Text_CAPTCHA/pkg-descr sed 's/^X//' >pear-Text_CAPTCHA/pkg-descr << '982df8961160f916fed9e23381d4b882' XPear Implementation of CAPTCHAs (completely automated public Turing test to Xtell computers and humans apart) X XWWW: http://pear.php.net/package/Text_CAPTCHA/ 982df8961160f916fed9e23381d4b882 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 21:10:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0FAC106564A; Mon, 25 Oct 2010 21:10:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 973798FC1B; Mon, 25 Oct 2010 21:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PLAF9V017732; Mon, 25 Oct 2010 21:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PLAFkH017723; Mon, 25 Oct 2010 21:10:15 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 21:10:15 GMT Message-Id: <201010252110.o9PLAFkH017723@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151729: New port: devel/pear-Text_CAPTCHA Pear Implementation of CAPTCHAs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 21:10:15 -0000 Synopsis: New port: devel/pear-Text_CAPTCHA Pear Implementation of CAPTCHAs Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 25 21:10:15 UTC 2010 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151729 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 21:20:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F339106566C for ; Mon, 25 Oct 2010 21:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C522B8FC1D for ; Mon, 25 Oct 2010 21:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PLKAS7028079 for ; Mon, 25 Oct 2010 21:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PLKA5u028078; Mon, 25 Oct 2010 21:20:10 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 21:20:10 GMT Resent-Message-Id: <201010252120.o9PLKA5u028078@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris St Denis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60A3B106566C for ; Mon, 25 Oct 2010 21:12:21 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 34B298FC13 for ; Mon, 25 Oct 2010 21:12:21 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PLCLMe067595 for ; Mon, 25 Oct 2010 21:12:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PLCK6V067594; Mon, 25 Oct 2010 21:12:20 GMT (envelope-from nobody) Message-Id: <201010252112.o9PLCK6V067594@www.freebsd.org> Date: Mon, 25 Oct 2010 21:12:20 GMT From: Chris St Denis To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151730: New port: devel/pear-HTML_QuickForm_CAPTCHA Pear HTML_QuickForm element for CAPTCHAs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 21:20:11 -0000 >Number: 151730 >Category: ports >Synopsis: New port: devel/pear-HTML_QuickForm_CAPTCHA Pear HTML_QuickForm element for CAPTCHAs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 21:20:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris St Denis >Release: >Organization: SmarttNet >Environment: >Description: port of pear package HTML_QuickForm_CAPTCHA Depends on port devel/pear-Text_CAPTCHA I just submitted before this. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pear-Text_CAPTCHA # pear-Text_CAPTCHA/Makefile # pear-Text_CAPTCHA/distinfo # pear-Text_CAPTCHA/pkg-descr # echo c - pear-Text_CAPTCHA mkdir -p pear-Text_CAPTCHA > /dev/null 2>&1 echo x - pear-Text_CAPTCHA/Makefile sed 's/^X//' >pear-Text_CAPTCHA/Makefile << '4e89e063e0e1bcbec78bee84702dda91' X# Ports collection makefile for: pear-Text_CAPTCHA X# Date created: 25 October 2010 X# Whom: Chris St Denis X# X# $FreeBSD$ X# X XPORTNAME= Text_CAPTCHA XPORTVERSION= 0.4.1 XCATEGORIES= devel www pear XDISTNAME= ${PORTNAME}-${PORTVERSION} X XMAINTAINER= chris@smartt.com XCOMMENT= Pear Implementation of CAPTCHAs X XBUILD_DEPENDS= ${PEARDIR}/HTML/QuickForm.php:${PORTSDIR}/devel/pear-HTML_QuickForm \ X ${PEARDIR}/Text/Password.php:${PORTSDIR}/security/pear-Text_Password XRUN_DEPENDS= ${BUILD_DEPENDS} X XFILES= Text/CAPTCHA.php Text/CAPTCHA/Driver/Equation.php Text/CAPTCHA/Driver/Figlet.php Text/CAPTCHA/Driver/Image.php Text/CAPTCHA/Driver/Numeral.php Text/CAPTCHA/Driver/Word.php X XEXAMPLES= CAPTCHA_Equation_test.php CAPTCHA_Figlet_test.php CAPTCHA_Numeral_test.php CAPTCHA_test.php CAPTCHA_test_measure.php CAPTCHA_test_phraseoptions.php CAPTCHA_Word_test.php X X.include X.include "${PORTSDIR}/devel/pear/bsd.pear.mk" X.include 4e89e063e0e1bcbec78bee84702dda91 echo x - pear-Text_CAPTCHA/distinfo sed 's/^X//' >pear-Text_CAPTCHA/distinfo << '168689ae60da430b7bc72c88e67e07af' XMD5 (PEAR/Text_CAPTCHA-0.4.1.tgz) = 793dab7aadf92a67968f79b9e1727f54 XSHA256 (PEAR/Text_CAPTCHA-0.4.1.tgz) = c713b67c4f2fce55f0b0408c52ca40fed56c16408cc191127f0b9c633e3bceb5 XSIZE (PEAR/Text_CAPTCHA-0.4.1.tgz) = 12759 168689ae60da430b7bc72c88e67e07af echo x - pear-Text_CAPTCHA/pkg-descr sed 's/^X//' >pear-Text_CAPTCHA/pkg-descr << '982df8961160f916fed9e23381d4b882' XPear Implementation of CAPTCHAs (completely automated public Turing test to Xtell computers and humans apart) X XWWW: http://pear.php.net/package/Text_CAPTCHA/ 982df8961160f916fed9e23381d4b882 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 21:20:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09B5A1065674; Mon, 25 Oct 2010 21:20:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D3D9C8FC1E; Mon, 25 Oct 2010 21:20:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PLKGrl028450; Mon, 25 Oct 2010 21:20:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PLKGFL028440; Mon, 25 Oct 2010 21:20:16 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 21:20:16 GMT Message-Id: <201010252120.o9PLKGFL028440@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151730: New port: devel/pear-HTML_QuickForm_CAPTCHA Pear HTML_QuickForm element for CAPTCHAs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 21:20:17 -0000 Synopsis: New port: devel/pear-HTML_QuickForm_CAPTCHA Pear HTML_QuickForm element for CAPTCHAs Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 25 21:20:16 UTC 2010 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151730 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 21:40:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10A501065670 for ; Mon, 25 Oct 2010 21:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C0F038FC15 for ; Mon, 25 Oct 2010 21:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PLe7q8048011 for ; Mon, 25 Oct 2010 21:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PLe7Zx048010; Mon, 25 Oct 2010 21:40:07 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 21:40:07 GMT Resent-Message-Id: <201010252140.o9PLe7Zx048010@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris St Denis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 938C3106564A for ; Mon, 25 Oct 2010 21:34:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 763A88FC24 for ; Mon, 25 Oct 2010 21:34:50 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PLYoWL080527 for ; Mon, 25 Oct 2010 21:34:50 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PLYoAN080526; Mon, 25 Oct 2010 21:34:50 GMT (envelope-from nobody) Message-Id: <201010252134.o9PLYoAN080526@www.freebsd.org> Date: Mon, 25 Oct 2010 21:34:50 GMT From: Chris St Denis To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151731: New port: devel/pear-HTML_QuickForm_Renderer_Tableless Implementation of Tableless Renderer for HTML_QuickForm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 21:40:08 -0000 >Number: 151731 >Category: ports >Synopsis: New port: devel/pear-HTML_QuickForm_Renderer_Tableless Implementation of Tableless Renderer for HTML_QuickForm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 21:40:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris St Denis >Release: >Organization: SmarttNet >Environment: >Description: Replacement for the default renderer of HTML_QuickForm that uses only XHTML and CSS but no table tags, and generates fully valid XHTML output. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pear-HTML_QuickForm_Renderer_Tableless # pear-HTML_QuickForm_Renderer_Tableless/Makefile # pear-HTML_QuickForm_Renderer_Tableless/pkg-descr # pear-HTML_QuickForm_Renderer_Tableless/distinfo # echo c - pear-HTML_QuickForm_Renderer_Tableless mkdir -p pear-HTML_QuickForm_Renderer_Tableless > /dev/null 2>&1 echo x - pear-HTML_QuickForm_Renderer_Tableless/Makefile sed 's/^X//' >pear-HTML_QuickForm_Renderer_Tableless/Makefile << '5fd38f01b3510ff084f9f2c33b351315' X# Ports collection makefile for: HTML_QuickForm_Renderer_Tableless X# Date created: 25 October 2010 X# Whom: Chris St Denis X# X# $FreeBSD$ X# X XPORTNAME= HTML_QuickForm_Renderer_Tableless XPORTVERSION= 0.6.1 XCATEGORIES= devel www pear XDISTNAME= ${PORTNAME}-${PORTVERSION} X XMAINTAINER= chris@smartt.com XCOMMENT= Implementation of Tableless Renderer for HTML_QuickForm X XBUILD_DEPENDS= ${PEARDIR}/HTML/QuickForm.php:${PORTSDIR}/devel/pear-HTML_QuickForm XRUN_DEPENDS= ${BUILD_DEPENDS} X XFILES= HTML/QuickForm/Renderer/Tableless.php X X_EXAMPLESDIR= docs/examples XEXAMPLES= contact.php X XDATA= stylesheet.css X X.include X.include "${PORTSDIR}/devel/pear/bsd.pear.mk" X.include 5fd38f01b3510ff084f9f2c33b351315 echo x - pear-HTML_QuickForm_Renderer_Tableless/pkg-descr sed 's/^X//' >pear-HTML_QuickForm_Renderer_Tableless/pkg-descr << 'b93bdc6d4c14b17eaca5c8a58ac7021b' XReplacement for the default renderer of HTML_QuickForm that uses only XHTML and XCSS but no table tags, and generates fully valid XHTML output. X XWWW: http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless b93bdc6d4c14b17eaca5c8a58ac7021b echo x - pear-HTML_QuickForm_Renderer_Tableless/distinfo sed 's/^X//' >pear-HTML_QuickForm_Renderer_Tableless/distinfo << '4c04ccb5a891fc3bec5109a245bf7fcc' XMD5 (PEAR/HTML_QuickForm_Renderer_Tableless-0.6.1.tgz) = 533c6f6b338a4686f22f5f6e4f7a10bb XSHA256 (PEAR/HTML_QuickForm_Renderer_Tableless-0.6.1.tgz) = be9a7e6ecf4b35100b0b3468566299fb94c5562defe05ac3880bc3e5e65be22e XSIZE (PEAR/HTML_QuickForm_Renderer_Tableless-0.6.1.tgz) = 6828 4c04ccb5a891fc3bec5109a245bf7fcc exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 21:40:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EFF6106566B; Mon, 25 Oct 2010 21:40:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E7F438FC12; Mon, 25 Oct 2010 21:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PLeDV1048420; Mon, 25 Oct 2010 21:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PLeDuQ048408; Mon, 25 Oct 2010 21:40:13 GMT (envelope-from edwin) Date: Mon, 25 Oct 2010 21:40:13 GMT Message-Id: <201010252140.o9PLeDuQ048408@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151731: New port: devel/pear-HTML_QuickForm_Renderer_Tableless Implementation of Tableless Renderer for HTML_QuickForm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 21:40:14 -0000 Synopsis: New port: devel/pear-HTML_QuickForm_Renderer_Tableless Implementation of Tableless Renderer for HTML_QuickForm Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 25 21:40:13 UTC 2010 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151731 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 21:47:45 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE1D6106566C; Mon, 25 Oct 2010 21:47:45 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A4DC28FC08; Mon, 25 Oct 2010 21:47:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PLlj0g057516; Mon, 25 Oct 2010 21:47:45 GMT (envelope-from beat@freefall.freebsd.org) Received: (from beat@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PLlj7n057512; Mon, 25 Oct 2010 21:47:45 GMT (envelope-from beat) Date: Mon, 25 Oct 2010 21:47:45 GMT Message-Id: <201010252147.o9PLlj7n057512@freefall.freebsd.org> To: beat@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beat@FreeBSD.org From: beat@FreeBSD.org Cc: Subject: Re: ports/151728: Crash using OSS when trying to rewind html5 video X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 21:47:45 -0000 Synopsis: Crash using OSS when trying to rewind html5 video Responsible-Changed-From-To: freebsd-ports-bugs->beat Responsible-Changed-By: beat Responsible-Changed-When: Mon Oct 25 21:47:45 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151728 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 22:03:58 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DDC8106566C; Mon, 25 Oct 2010 22:03:58 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 13CDE8FC08; Mon, 25 Oct 2010 22:03:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PM3vo0079186; Mon, 25 Oct 2010 22:03:57 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PM3vmk079182; Mon, 25 Oct 2010 22:03:57 GMT (envelope-from linimon) Date: Mon, 25 Oct 2010 22:03:57 GMT Message-Id: <201010252203.o9PM3vmk079182@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151709: [patch] www/tomcat6 rc.d script status command X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 22:03:58 -0000 Old Synopsis: [path] tomcat6 rc.d script status command New Synopsis: [patch] www/tomcat6 rc.d script status command Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: linimon Responsible-Changed-When: Mon Oct 25 22:03:04 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=151709 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 22:40:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 411DA1065670 for ; Mon, 25 Oct 2010 22:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED9EB8FC14 for ; Mon, 25 Oct 2010 22:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PMe6iu010005 for ; Mon, 25 Oct 2010 22:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PMe6Sx010004; Mon, 25 Oct 2010 22:40:06 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 22:40:06 GMT Resent-Message-Id: <201010252240.o9PMe6Sx010004@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 738DA106566B for ; Mon, 25 Oct 2010 22:34:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 622068FC15 for ; Mon, 25 Oct 2010 22:34:38 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PMYciX027087 for ; Mon, 25 Oct 2010 22:34:38 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PMYb1h027086; Mon, 25 Oct 2010 22:34:37 GMT (envelope-from nobody) Message-Id: <201010252234.o9PMYb1h027086@www.freebsd.org> Date: Mon, 25 Oct 2010 22:34:37 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151733: [PATCH] unbreak biology/tinker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 22:40:07 -0000 >Number: 151733 >Category: ports >Synopsis: [PATCH] unbreak biology/tinker >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 22:40:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 8.1-STABLE >Organization: none >Environment: FreeBSD 8.1-STABLE >Description: unbreak tinker by adding some new distfile sites. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: tinker/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/biology/tinker/Makefile,v retrieving revision 1.40 diff -u -r1.40 Makefile --- tinker/Makefile 30 Sep 2010 08:53:18 -0000 1.40 +++ tinker/Makefile 25 Oct 2010 22:31:57 -0000 @@ -7,11 +7,11 @@ PORTNAME= tinker PORTVERSION= 4.2.20040908 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= biology -MASTER_SITES= ${MASTER_SITE_GENTOO} \ - ftp://dasher.wustl.edu/pub/ -MASTER_SITE_SUBDIR= distfiles +MASTER_SITES= ftp://ftp.tu-chemnitz.de/.SAN0/pub/FreeBSD/ports/distfiles/RESTRICTED/${PORTNAME}-${PORTVERSION}/\ + ftp://ftp.tw.freebsd.org/pub/ports/distfiles/${PORTNAME}-${PORTVERSION}/ \ + ftp://ftp.uvsq.fr/pub/FreeBSD/ports/distfiles/RESTRICTED/${PORTNAME}-${PORTVERSION}/ DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} @@ -26,7 +26,6 @@ ALL_TARGET= all listing INSTALL_TARGET= rename RESTRICTED= author requests no distribution except from his FTP site -BROKEN= does not fetch DOCS= README *.pdf *.txt release* SAMPLES= README clean.make *.1st *.boat *.cell *.chair *.dat *.dyn0 \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 22:42:40 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F67E1065672; Mon, 25 Oct 2010 22:42:40 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 53B2B8FC1D; Mon, 25 Oct 2010 22:42:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PMge8h019346; Mon, 25 Oct 2010 22:42:40 GMT (envelope-from pgollucci@freefall.freebsd.org) Received: (from pgollucci@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PMgeHW019342; Mon, 25 Oct 2010 22:42:40 GMT (envelope-from pgollucci) Date: Mon, 25 Oct 2010 22:42:40 GMT Message-Id: <201010252242.o9PMgeHW019342@freefall.freebsd.org> To: mi@aldan.algebra.com, pgollucci@p6m7g8.com, pgollucci@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pgollucci@FreeBSD.org Cc: Subject: Re: ports/151591: [PATCH] www/ap22-mod_dtcl: superceeded by mod_rivet X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 22:42:40 -0000 Synopsis: [PATCH] www/ap22-mod_dtcl: superceeded by mod_rivet State-Changed-From-To: feedback->closed State-Changed-By: pgollucci State-Changed-When: Mon Oct 25 22:42:39 UTC 2010 State-Changed-Why: Committed, Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151591 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 22:50:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD2B51065696 for ; Mon, 25 Oct 2010 22:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 771728FC18 for ; Mon, 25 Oct 2010 22:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PMo7CP019636 for ; Mon, 25 Oct 2010 22:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PMo7DD019635; Mon, 25 Oct 2010 22:50:07 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 22:50:07 GMT Resent-Message-Id: <201010252250.o9PMo7DD019635@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3D2F106566B for ; Mon, 25 Oct 2010 22:43:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id B289A8FC13 for ; Mon, 25 Oct 2010 22:43:10 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PMhA0g038176 for ; Mon, 25 Oct 2010 22:43:10 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PMhAWi038175; Mon, 25 Oct 2010 22:43:10 GMT (envelope-from nobody) Message-Id: <201010252243.o9PMhAWi038175@www.freebsd.org> Date: Mon, 25 Oct 2010 22:43:10 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151734: [PATCH] unbreak net-mgmt/nipper X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 22:50:07 -0000 >Number: 151734 >Category: ports >Synopsis: [PATCH] unbreak net-mgmt/nipper >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 22:50:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 8.1-STABLE >Organization: none >Environment: FreeBSD 8.1-STABLE >Description: unbreak nipper by adding some distfile sites. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: nipper/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/net-mgmt/nipper/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- nipper/Makefile 1 Oct 2010 08:45:23 -0000 1.26 +++ nipper/Makefile 25 Oct 2010 22:41:03 -0000 @@ -9,13 +9,14 @@ PORTVERSION= 0.11.10 PORTEPOCH= 1 CATEGORIES= net-mgmt -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Nipper%20${PORTVERSION} +MASTER_SITES= ${MASTER_SITE_FREEBSD_ORG} +MASTER_SITE_SUBDIR= distfiles EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Netdev config analyzer -BROKEN= does not fetch +#BROKEN= does not fetch PLIST_FILES= bin/${PORTNAME} etc/nipper.conf.sample PORTDOCS= Changelog Readme TODO Features.txt Options.txt Quickstart.txt \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 25 23:00:18 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D19061065679 for ; Mon, 25 Oct 2010 23:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 854ED8FC1F for ; Mon, 25 Oct 2010 23:00:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9PN0Iif028940 for ; Mon, 25 Oct 2010 23:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9PN0I7N028938; Mon, 25 Oct 2010 23:00:18 GMT (envelope-from gnats) Resent-Date: Mon, 25 Oct 2010 23:00:18 GMT Resent-Message-Id: <201010252300.o9PN0I7N028938@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61259106566C for ; Mon, 25 Oct 2010 22:53:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 4FFB08FC13 for ; Mon, 25 Oct 2010 22:53:47 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9PMrluW039041 for ; Mon, 25 Oct 2010 22:53:47 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9PMrk03039040; Mon, 25 Oct 2010 22:53:46 GMT (envelope-from nobody) Message-Id: <201010252253.o9PMrk03039040@www.freebsd.org> Date: Mon, 25 Oct 2010 22:53:46 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151735: [PATCH] unbreak news/ija X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 23:00:18 -0000 >Number: 151735 >Category: ports >Synopsis: [PATCH] unbreak news/ija >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 25 23:00:18 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 8.1-STABLE >Organization: none >Environment: FreeBSD 8.1-STABLE >Description: unbreak ija >How-To-Repeat: >Fix: Patch attached with submission follows: Index: ija/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/news/ija/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- ija/Makefile 1 Oct 2010 08:37:07 -0000 1.12 +++ ija/Makefile 25 Oct 2010 22:52:51 -0000 @@ -9,7 +9,8 @@ PORTNAME= ija PORTVERSION= 0.4.15 CATEGORIES= news -MASTER_SITES= http://wildspark.com/asher/ija/ +MASTER_SITES= ${MASTER_SITE_FREEBSD_ORG} +MASTER_SITE_SUBDIR= distfiles EXTRACT_SUFX= .gz MAINTAINER= ports@FreeBSD.org @@ -18,8 +19,6 @@ RUN_DEPENDS= ${SITE_PERL}/URI/Escape.pm:${PORTSDIR}/net/p5-URI \ ${SITE_PERL}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww -BROKEN= checksum mismatch - USE_PERL5= yes NO_WRKSUBDIR= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 01:25:55 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A8BC1065670; Tue, 26 Oct 2010 01:25:55 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 103D78FC12; Tue, 26 Oct 2010 01:25:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q1PsEO084677; Tue, 26 Oct 2010 01:25:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q1Pssf084673; Tue, 26 Oct 2010 01:25:54 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 01:25:54 GMT Message-Id: <201010260125.o9Q1Pssf084673@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stas@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151712: shouldn't we upgrade lang/ruby18 to last patchlevel? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 01:25:55 -0000 Synopsis: shouldn't we upgrade lang/ruby18 to last patchlevel? Responsible-Changed-From-To: freebsd-ports-bugs->stas Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 01:25:54 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151712 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 04:05:21 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7ED61065672; Tue, 26 Oct 2010 04:05:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8D5B08FC0A; Tue, 26 Oct 2010 04:05:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q45LUq050196; Tue, 26 Oct 2010 04:05:21 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q45LVg050192; Tue, 26 Oct 2010 04:05:21 GMT (envelope-from sunpoet) Date: Tue, 26 Oct 2010 04:05:21 GMT Message-Id: <201010260405.o9Q45LVg050192@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151683: [Patch] Unbreak sysutils/aimage by updating to version 3.2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 04:05:21 -0000 Synopsis: [Patch] Unbreak sysutils/aimage by updating to version 3.2.4 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Oct 26 04:05:20 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151683 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 05:20:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71FA61065672 for ; Tue, 26 Oct 2010 05:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AF0178FC16 for ; Tue, 26 Oct 2010 05:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q5K90C028743 for ; Tue, 26 Oct 2010 05:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q5K9ru028742; Tue, 26 Oct 2010 05:20:09 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 05:20:09 GMT Resent-Message-Id: <201010260520.o9Q5K9ru028742@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthew Seaman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FE1D106564A for ; Tue, 26 Oct 2010 05:14:25 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3fd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id D17258FC12 for ; Tue, 26 Oct 2010 05:14:24 +0000 (UTC) Received: from lucid-nonsense.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.4/8.14.4) with ESMTP id o9Q5EKJW027212 for ; Tue, 26 Oct 2010 06:14:20 +0100 (BST) (envelope-from matthew@lucid-nonsense.infracaninophile.co.uk) Received: (from matthew@localhost) by lucid-nonsense.infracaninophile.co.uk (8.14.4/8.14.4/Submit) id o9Q5EKoL027211; Tue, 26 Oct 2010 06:14:20 +0100 (BST) (envelope-from matthew) Message-Id: <201010260514.o9Q5EKoL027211@lucid-nonsense.infracaninophile.co.uk> Date: Tue, 26 Oct 2010 06:14:20 +0100 (BST) From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151738: [maintainer] databases/phpmyadmin -- update to 3.3.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 05:20:10 -0000 >Number: 151738 >Category: ports >Synopsis: [maintainer] databases/phpmyadmin -- update to 3.3.8 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 05:20:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 8.1-STABLE amd64 >Organization: Infracaninophile >Environment: System: FreeBSD lucid-nonsense.infracaninophile.co.uk 8.1-STABLE FreeBSD 8.1-STABLE #17: Sun Oct 24 10:13:01 BST 2010 root@lucid-nonsense.infracaninophile.co.uk:/usr/obj/usr/src/sys/LUCID-NONSENSE amd64 >Description: Routine bugfix update to version 3.3.8 Annonce message: "Welcome to phpMyAdmin 3.3.8, a bugfix release. Details will appear on http://phpmyadmin.net. In a hurry? you can visit http://sourceforge.net/projects/phpmyadmin to download. Marc Delisle, for the team" ChangeLog: http://sourceforge.net/projects/phpmyadmin/files//phpMyAdmin/3.3.8/phpMyAdmin-3.3.8-notes.html/view >How-To-Repeat: >Fix: --- phpmyadmin.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/phpmyadmin/Makefile,v retrieving revision 1.126 diff -u -u -r1.126 Makefile --- Makefile 9 Sep 2010 13:40:50 -0000 1.126 +++ Makefile 26 Oct 2010 05:10:00 -0000 @@ -6,7 +6,7 @@ # PORTNAME= phpMyAdmin -DISTVERSION= 3.3.7 +DISTVERSION= 3.3.8 CATEGORIES= databases www MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}-${DISTVERSION}-all-languages Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/phpmyadmin/distinfo,v retrieving revision 1.104 diff -u -u -r1.104 distinfo --- distinfo 9 Sep 2010 13:40:50 -0000 1.104 +++ distinfo 26 Oct 2010 05:10:00 -0000 @@ -1,3 +1,3 @@ -MD5 (phpMyAdmin-3.3.7-all-languages.tar.bz2) = 639cdc0158d60aaf20592665893fc564 -SHA256 (phpMyAdmin-3.3.7-all-languages.tar.bz2) = 716039de9c5181340a0faeb7b7d515748faa4b7024d7db5a12c6716792989ae7 -SIZE (phpMyAdmin-3.3.7-all-languages.tar.bz2) = 3667086 +MD5 (phpMyAdmin-3.3.8-all-languages.tar.bz2) = 7a5b26f37f3f2fa1e2335ce9c2d36944 +SHA256 (phpMyAdmin-3.3.8-all-languages.tar.bz2) = 411e74f939ab42ce72dc20c95767f468c8ff944154eb4d0f1d4e9e583b45659d +SIZE (phpMyAdmin-3.3.8-all-languages.tar.bz2) = 3677750 --- phpmyadmin.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 05:21:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C704F106566B; Tue, 26 Oct 2010 05:21:13 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D3658FC15; Tue, 26 Oct 2010 05:21:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q5LDNZ037143; Tue, 26 Oct 2010 05:21:13 GMT (envelope-from trasz@freefall.freebsd.org) Received: (from trasz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q5LDs5037134; Tue, 26 Oct 2010 05:21:13 GMT (envelope-from trasz) Date: Tue, 26 Oct 2010 05:21:13 GMT Message-Id: <201010260521.o9Q5LDs5037134@freefall.freebsd.org> To: trasz@FreeBSD.org, trasz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: trasz@FreeBSD.org Cc: Subject: Re: ports/147847: audio/zynaddsubfx mxml error when opening instruments X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 05:21:13 -0000 Synopsis: audio/zynaddsubfx mxml error when opening instruments Responsible-Changed-From-To: trasz->freebsd-ports-bugs Responsible-Changed-By: trasz Responsible-Changed-When: Tue Oct 26 05:20:28 UTC 2010 Responsible-Changed-Why: Back to the queue; I'm no longer maintainer for this port. http://www.freebsd.org/cgi/query-pr.cgi?pr=147847 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 05:22:25 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E20A106564A; Tue, 26 Oct 2010 05:22:25 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 046428FC08; Tue, 26 Oct 2010 05:22:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q5MOq1037985; Tue, 26 Oct 2010 05:22:24 GMT (envelope-from trasz@freefall.freebsd.org) Received: (from trasz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q5MO5q037981; Tue, 26 Oct 2010 05:22:24 GMT (envelope-from trasz) Date: Tue, 26 Oct 2010 05:22:24 GMT Message-Id: <201010260522.o9Q5MO5q037981@freefall.freebsd.org> To: trasz@FreeBSD.org, trasz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: trasz@FreeBSD.org Cc: Subject: Re: ports/145989: audio/qjackctl - jackd does not start from not root user X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 05:22:25 -0000 Synopsis: audio/qjackctl - jackd does not start from not root user Responsible-Changed-From-To: trasz->freebsd-ports-bugs Responsible-Changed-By: trasz Responsible-Changed-When: Tue Oct 26 05:21:46 UTC 2010 Responsible-Changed-Why: Back to the queue; I'm no longer maintainer for this port. http://www.freebsd.org/cgi/query-pr.cgi?pr=145989 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 05:23:03 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FD15106564A; Tue, 26 Oct 2010 05:23:03 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DA81D8FC0C; Tue, 26 Oct 2010 05:23:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q5N2xh038037; Tue, 26 Oct 2010 05:23:02 GMT (envelope-from trasz@freefall.freebsd.org) Received: (from trasz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q5N2eM038033; Tue, 26 Oct 2010 05:23:02 GMT (envelope-from trasz) Date: Tue, 26 Oct 2010 05:23:02 GMT Message-Id: <201010260523.o9Q5N2eM038033@freefall.freebsd.org> To: trasz@FreeBSD.org, trasz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: trasz@FreeBSD.org Cc: Subject: Re: ports/143501: devel/libcoyotl: install fails because GNU cp is assumed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 05:23:03 -0000 Synopsis: devel/libcoyotl: install fails because GNU cp is assumed Responsible-Changed-From-To: trasz->freebsd-ports-bugs Responsible-Changed-By: trasz Responsible-Changed-When: Tue Oct 26 05:22:35 UTC 2010 Responsible-Changed-Why: Back to the queue; I'm no longer maintainer for this port. http://www.freebsd.org/cgi/query-pr.cgi?pr=143501 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 07:10:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A9FD1065673 for ; Tue, 26 Oct 2010 07:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3BEFD8FC1B for ; Tue, 26 Oct 2010 07:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q7A9kl045017 for ; Tue, 26 Oct 2010 07:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q7A9sS045014; Tue, 26 Oct 2010 07:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 07:10:09 GMT Resent-Message-Id: <201010260710.o9Q7A9sS045014@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Boris Samorodov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BC43106566C for ; Tue, 26 Oct 2010 07:09:07 +0000 (UTC) (envelope-from bsam@bb.ipt.ru) Received: from bb.ipt.ru (bb.ipt.ru [194.62.233.89]) by mx1.freebsd.org (Postfix) with ESMTP id BC0058FC1E for ; Tue, 26 Oct 2010 07:09:05 +0000 (UTC) Received: from bb.ipt.ru (localhost [127.0.0.1]) by bb.ipt.ru (8.14.4/8.14.4) with ESMTP id o9Q795bJ089451 for ; Tue, 26 Oct 2010 11:09:05 +0400 (MSD) (envelope-from bsam@bb.ipt.ru) Received: (from bsam@localhost) by bb.ipt.ru (8.14.4/8.14.4/Submit) id o9Q794mv089450; Tue, 26 Oct 2010 11:09:04 +0400 (MSD) (envelope-from bsam) Message-Id: <201010260709.o9Q794mv089450@bb.ipt.ru> Date: Tue, 26 Oct 2010 11:09:04 +0400 (MSD) From: Boris Samorodov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151739: [patch] mail/imapsync: update to version 1.366 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Boris Samorodov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 07:10:09 -0000 >Number: 151739 >Category: ports >Synopsis: [patch] mail/imapsync: update to version 1.366 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 07:10:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Boris Samorodov >Release: FreeBSD 9.0-CURRENT i386 >Organization: InPharmTech, Co. >Environment: System: FreeBSD bb.ipt.ru 9.0-CURRENT FreeBSD 9.0-CURRENT #4 r214238M: Sat Oct 23 19:23:53 MSD 2010 bsam@bb.ipt.ru:/usr/obj/usr/src/sys/BB i386 >Description: A new version is available. >How-To-Repeat: >Fix: --- imapsync.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/mail/imapsync/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- Makefile 26 Oct 2010 01:08:50 -0000 1.44 +++ Makefile 26 Oct 2010 05:01:05 -0000 @@ -6,7 +6,7 @@ # PORTNAME= imapsync -PORTVERSION= 1.363 +PORTVERSION= 1.366 CATEGORIES= mail perl5 MASTER_SITES= http://www.linux-france.org/prj/${PORTNAME}/dist/ \ http://christianserving.org/ports/mail/${PORTNAME}/ Index: distinfo =================================================================== RCS file: /home/pcvs/ports/mail/imapsync/distinfo,v retrieving revision 1.38 diff -u -r1.38 distinfo --- distinfo 26 Oct 2010 01:08:50 -0000 1.38 +++ distinfo 26 Oct 2010 05:01:05 -0000 @@ -1,3 +1,3 @@ -MD5 (imapsync-1.363.tgz) = b825e8a35160e41f1b65bc96b89defba -SHA256 (imapsync-1.363.tgz) = dffb0b1c978a36083e4f1a573428c4f0b2320cab78814720bd3aee87850191a1 -SIZE (imapsync-1.363.tgz) = 894385 +MD5 (imapsync-1.366.tgz) = 56641586a58d0361bf8decac026565f0 +SHA256 (imapsync-1.366.tgz) = d7f78a4a072c9ba0ad0e6007aef0078a6f570d4573a0020aeef00b4699d1ec12 +SIZE (imapsync-1.366.tgz) = 894408 --- imapsync.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 07:10:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0768B1065763; Tue, 26 Oct 2010 07:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D22DE8FC12; Tue, 26 Oct 2010 07:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q7AFiP045376; Tue, 26 Oct 2010 07:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q7AFHK045367; Tue, 26 Oct 2010 07:10:15 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 07:10:15 GMT Message-Id: <201010260710.o9Q7AFHK045367@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bsam@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151739: [patch] mail/imapsync: update to version 1.366 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 07:10:16 -0000 Synopsis: [patch] mail/imapsync: update to version 1.366 Responsible-Changed-From-To: freebsd-ports-bugs->bsam Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 07:10:15 UTC 2010 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151739 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 07:20:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1B991065674 for ; Tue, 26 Oct 2010 07:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B4FB48FC1D for ; Tue, 26 Oct 2010 07:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q7K8Wr057250 for ; Tue, 26 Oct 2010 07:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q7K8OP057247; Tue, 26 Oct 2010 07:20:08 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 07:20:08 GMT Resent-Message-Id: <201010260720.o9Q7K8OP057247@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aldis Berjoza Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CC2B106564A for ; Tue, 26 Oct 2010 07:12:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 4C34B8FC13 for ; Tue, 26 Oct 2010 07:12:22 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9Q7CLBK075650 for ; Tue, 26 Oct 2010 07:12:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9Q7CLrh075648; Tue, 26 Oct 2010 07:12:21 GMT (envelope-from nobody) Message-Id: <201010260712.o9Q7CLrh075648@www.freebsd.org> Date: Tue, 26 Oct 2010 07:12:21 GMT From: Aldis Berjoza To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151740: [PATCH] sysutils/zfsnap pdate to v1.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 07:20:09 -0000 >Number: 151740 >Category: ports >Synopsis: [PATCH] sysutils/zfsnap pdate to v1.6.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 07:20:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Aldis Berjoza >Release: >Organization: >Environment: >Description: zfSnap v1.6.0 was patched to handle over 10K snapshots Thanks to Palle Girgensohn for patch >How-To-Repeat: >Fix: Patch attached with submission follows: diff zfsnap.bak/Makefile zfsnap/Makefile 9c9 < PORTVERSION= 1.5.0 --- > PORTVERSION= 1.6.0 diff zfsnap.bak/distinfo zfsnap/distinfo 1,3c1,3 < MD5 (zfSnap-1.5.0.tar.gz) = 9d0a784d9bc52701c6451b06e1662eea < SHA256 (zfSnap-1.5.0.tar.gz) = db6cd0a5dcd47113543164941f6a7aa9ef39a9707068bff2f7889de7ca379e8c < SIZE (zfSnap-1.5.0.tar.gz) = 2672 --- > MD5 (zfSnap-1.6.0.tar.gz) = 8a8a7d7788fd0bbff1bc8b94a13db146 > SHA256 (zfSnap-1.6.0.tar.gz) = fe9b802e735a4b2d80e2728e763ad63a7e8ca2acf3af255db5e4db90dc888808 > SIZE (zfSnap-1.6.0.tar.gz) = 2676 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 07:35:25 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80CB8106566C; Tue, 26 Oct 2010 07:35:25 +0000 (UTC) (envelope-from brucec@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5791B8FC1A; Tue, 26 Oct 2010 07:35:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q7ZPws093622; Tue, 26 Oct 2010 07:35:25 GMT (envelope-from brucec@freefall.freebsd.org) Received: (from brucec@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q7ZP6b093618; Tue, 26 Oct 2010 07:35:25 GMT (envelope-from brucec) Date: Tue, 26 Oct 2010 07:35:25 GMT Message-Id: <201010260735.o9Q7ZP6b093618@freefall.freebsd.org> To: brucec@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: brucec@FreeBSD.org Cc: Subject: Re: ports /151737: [PATCH] update www/libxul to 1.9.2.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 07:35:25 -0000 Synopsis: [PATCH] update www/libxul to 1.9.2.10 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: brucec Responsible-Changed-When: Tue Oct 26 07:35:03 UTC 2010 Responsible-Changed-Why: Ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=151737 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 08:05:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77FB51065670; Tue, 26 Oct 2010 08:05:11 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4EB458FC1E; Tue, 26 Oct 2010 08:05:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q85BSb030188; Tue, 26 Oct 2010 08:05:11 GMT (envelope-from girgen@freefall.freebsd.org) Received: (from girgen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q85BXQ030184; Tue, 26 Oct 2010 08:05:11 GMT (envelope-from girgen) Date: Tue, 26 Oct 2010 08:05:11 GMT Message-Id: <201010260805.o9Q85BXQ030184@freefall.freebsd.org> To: aldis@bsdroot.lv, girgen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: girgen@FreeBSD.org Cc: Subject: Re: ports/151740: [PATCH] sysutils/zfsnap pdate to v1.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 08:05:11 -0000 Synopsis: [PATCH] sysutils/zfsnap pdate to v1.6.0 State-Changed-From-To: open->closed State-Changed-By: girgen State-Changed-When: Tue Oct 26 08:04:42 UTC 2010 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151740 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 08:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 037B8106564A for ; Tue, 26 Oct 2010 08:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B25F98FC1F for ; Tue, 26 Oct 2010 08:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q8A7Sn031570 for ; Tue, 26 Oct 2010 08:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q8A7dM031569; Tue, 26 Oct 2010 08:10:07 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 08:10:07 GMT Resent-Message-Id: <201010260810.o9Q8A7dM031569@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Wen Heping Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 745111065675 for ; Tue, 26 Oct 2010 08:02:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 63C048FC20 for ; Tue, 26 Oct 2010 08:02:04 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9Q824d0020442 for ; Tue, 26 Oct 2010 08:02:04 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9Q824Ht020441; Tue, 26 Oct 2010 08:02:04 GMT (envelope-from nobody) Message-Id: <201010260802.o9Q824Ht020441@www.freebsd.org> Date: Tue, 26 Oct 2010 08:02:04 GMT From: Wen Heping To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151742: [Update]www/p5-Catalyst-Action-REST:update to 0.86 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 08:10:08 -0000 >Number: 151742 >Category: ports >Synopsis: [Update]www/p5-Catalyst-Action-REST:update to 0.86 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 08:10:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 9.0 >Organization: FreeBSD >Environment: >Description: Update to 0.86 >How-To-Repeat: >Fix: --- Makefile.orig 2010-10-26 15:48:10.000000000 +0800 +++ Makefile 2010-10-26 15:48:40.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= Catalyst-Action-REST -PORTVERSION= 0.85 +PORTVERSION= 0.86 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- --- distinfo.orig 2010-10-26 15:48:19.000000000 +0800 +++ distinfo 2010-10-26 15:48:57.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (Catalyst-Action-REST-0.85.tar.gz) = a39c58cc357ed4cf38544ea16a881d67 -SHA256 (Catalyst-Action-REST-0.85.tar.gz) = 8d9348835b470a44b48fa088224a7b0822dae0a751988d10d5df28d15b8b50ae -SIZE (Catalyst-Action-REST-0.85.tar.gz) = 61087 +MD5 (Catalyst-Action-REST-0.86.tar.gz) = aa61241bb46bbc77f892a387df1bc8c6 +SHA256 (Catalyst-Action-REST-0.86.tar.gz) = 49cad51f0be86b2ee61b43ad67a8531a4528f6239049033f1624a59e1c920076 +SIZE (Catalyst-Action-REST-0.86.tar.gz) = 62337 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 08:10:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B74481065674 for ; Tue, 26 Oct 2010 08:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A68FF8FC0C for ; Tue, 26 Oct 2010 08:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q8ABn7031647 for ; Tue, 26 Oct 2010 08:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q8ABLC031646; Tue, 26 Oct 2010 08:10:11 GMT (envelope-from gnats) Date: Tue, 26 Oct 2010 08:10:11 GMT Message-Id: <201010260810.o9Q8ABLC031646@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151740: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 08:10:11 -0000 The following reply was made to PR ports/151740; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151740: commit references a PR Date: Tue, 26 Oct 2010 08:04:19 +0000 (UTC) girgen 2010-10-26 08:04:14 UTC FreeBSD ports repository Modified files: sysutils/zfsnap Makefile distinfo Log: Update to version 1.6.0 PR: ports/151740 Revision Changes Path 1.10 +1 -1 ports/sysutils/zfsnap/Makefile 1.10 +3 -3 ports/sysutils/zfsnap/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 08:10:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 267E710656BE; Tue, 26 Oct 2010 08:10:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F0D2D8FC15; Tue, 26 Oct 2010 08:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q8ACSX031776; Tue, 26 Oct 2010 08:10:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q8ACKd031772; Tue, 26 Oct 2010 08:10:12 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 08:10:12 GMT Message-Id: <201010260810.o9Q8ACKd031772@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151742: [Update]www/p5-Catalyst-Action-REST:update to 0.86 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 08:10:13 -0000 Synopsis: [Update]www/p5-Catalyst-Action-REST:update to 0.86 Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 08:10:12 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151742 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 08:17:37 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 225621065696; Tue, 26 Oct 2010 08:17:37 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EDCA78FC16; Tue, 26 Oct 2010 08:17:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q8HasS042613; Tue, 26 Oct 2010 08:17:36 GMT (envelope-from beat@freefall.freebsd.org) Received: (from beat@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q8Hat5042609; Tue, 26 Oct 2010 08:17:36 GMT (envelope-from beat) Date: Tue, 26 Oct 2010 08:17:36 GMT Message-Id: <201010260817.o9Q8Hat5042609@freefall.freebsd.org> To: beat@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-gecko@FreeBSD.org From: beat@FreeBSD.org Cc: Subject: Re: ports/151737: [PATCH] update www/libxul to 1.9.2.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 08:17:37 -0000 Synopsis: [PATCH] update www/libxul to 1.9.2.10 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-gecko Responsible-Changed-By: beat Responsible-Changed-When: Tue Oct 26 08:17:36 UTC 2010 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=151737 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 08:20:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C5751065673 for ; Tue, 26 Oct 2010 08:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2C98D8FC17 for ; Tue, 26 Oct 2010 08:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q8K8hg043342 for ; Tue, 26 Oct 2010 08:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q8K86F043341; Tue, 26 Oct 2010 08:20:08 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 08:20:08 GMT Resent-Message-Id: <201010260820.o9Q8K86F043341@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, takefu@airport.fm Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4EF71065673; Tue, 26 Oct 2010 08:12:01 +0000 (UTC) (envelope-from takefu@airport.fm) Received: from ae-osaka.co.jp (unknown [IPv6:2001:3e0:4ec:a000::1]) by mx1.freebsd.org (Postfix) with ESMTP id 783418FC14; Tue, 26 Oct 2010 08:12:01 +0000 (UTC) Received: from ae-osaka.co.jp (localhost.ae-osaka.co.jp [127.0.0.1]) by ae-osaka.co.jp (Postfix) with ESMTP id C056111469; Tue, 26 Oct 2010 17:12:00 +0900 (JST) Received: from ae-osaka.co.jp ([127.0.0.1]) by ae-osaka.co.jp (ae-osaka.co.jp [127.0.0.1]) (amavisd-new, port 10024) with LMTP id SCsi9SCABwns; Tue, 26 Oct 2010 17:12:00 +0900 (JST) Received: from [IPv6:2001:3e0:4ec:a011:9c90:6f7e:94a8:3e0f] (unknown [IPv6:2001:3e0:4ec:a011:9c90:6f7e:94a8:3e0f]) by ae-osaka.co.jp (Postfix) with ESMTPSA id 8CF411143E; Tue, 26 Oct 2010 17:12:00 +0900 (JST) Message-Id: <4CC68D50.7060008@airport.fm> Date: Tue, 26 Oct 2010 17:12:00 +0900 From: Takefu To: freebsd-gnats-submit@FreeBSD.org Cc: timur@FreeBSD.org Subject: ports/151743: [PATCH] databases/tdb: fix manpage install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: takefu@airport.fm List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 08:20:08 -0000 >Number: 151743 >Category: ports >Synopsis: [PATCH] databases/tdb: fix manpage install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 08:20:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: >Organization: FOX Amateur Radio Club >Environment: >Description: >How-To-Repeat: # make install ===> Installing for tdb-1.2.1 ===> tdb-1.2.1 depends on file: /usr/local/bin/python2.6 - found ===> tdb-1.2.1 depends on executable: pkg-config - found ===> Generating temporary packing list ===> Checking if databases/tdb already installed mkdir -p /usr/local/bin mkdir -p /usr/local/include mkdir -p /usr/local/lib mkdir -p /usr/local/libdata/pkgconfig tdb will be compiled with flags: CFLAGS = -I./include -Iinclude -O2 -fno-strict-aliasing -pipe -I./libreplace CPPFLAGS = -I./include -Iinclude LDFLAGS = LIBS = cp bin/tdbtool bin/tdbdump bin/tdbbackup /usr/local/bin cp ./include/tdb.h /usr/local/include cp tdb.pc /usr/local/libdata/pkgconfig cp libtdb.a libtdb.so.1 /usr/local/lib rm -f /usr/local/lib/libtdb.so ln -s libtdb.so.1 /usr/local/lib/libtdb.so rm -f /usr/local/lib/libtdb.so.1 ln -s libtdb.so.1 /usr/local/lib/libtdb.so.1 mkdir -p `/usr/local/bin/python2.6 -c "import distutils.sysconfig; print distutils.sysconfig.get_python_lib(1, prefix='/usr/local')"` cp tdb.so `/usr/local/bin/python2.6 -c "import distutils.sysconfig; print distutils.sysconfig.get_python_lib(1, prefix='/usr/local')"` /usr/bin/install -c -o root -g wheel -d /usr/local/man/man8 for I in manpages/*.8; do \ /usr/bin/install -c -o root -g wheel -m 644 $I /usr/local/man/man8; \ done install: manpages/*.8: No such file or directory gmake: *** [installdocs] エラー 71 *** Error code 2 Stop in /usr/ports/databases/tdb. >Fix: --- tdb.diff begins here --- diff -ruN /usr/ports/databases/tdb/Makefile databases/tdb/Makefile --- /usr/ports/databases/tdb/Makefile 2010-10-26 15:17:01.000000000 +0900 +++ databases/tdb/Makefile 2010-10-26 17:01:20.000000000 +0900 @@ -7,10 +7,9 @@ PORTNAME= tdb PORTVERSION= 1.2.1 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases -MASTER_SITES= ftp://ftp.samba.org/pub/%SUBDIR%/ \ - ftp://ca.samba.org/pub/%SUBDIR%/ \ +MASTER_SITES= ftp://ftp.samba.org/pub/%SUBDIR%/\ ftp://de.samba.org/pub/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTNAME} @@ -25,6 +24,8 @@ GNU_CONFIGURE= yes USE_GNOME= pkgconfig USE_AUTOTOOLS= autoconf:268 autoheader:268 +BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt\ + ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl IPATHS= -I${WRKSRC}/libreplace AUTOHEADER_ARGS= ${IPATHS} @@ -34,6 +35,9 @@ PKGCONFIGDIR_REL?= ${PKGCONFIGDIR:S|^${PREFIX}/||} PYTHON_SITELIBDIR_REL?= ${PYTHONPREFIX_SITELIBDIR:S|^${PREFIX}/||} +MAN8= tdbbackup.8\ + tdbdump.8\ + tdbtool.8 PLIST_FILES= bin/tdbbackup \ bin/tdbdump \ bin/tdbtool \ diff -ruN /usr/ports/databases/tdb/files/patch-tdb.mk databases/tdb/files/patch-tdb.mk --- /usr/ports/databases/tdb/files/patch-tdb.mk 2010-02-05 09:50:46.000000000 +0900 +++ databases/tdb/files/patch-tdb.mk 2010-10-26 16:25:03.000000000 +0900 @@ -1,5 +1,5 @@ ---- ./tdb.mk.orig 2010-01-09 02:39:48.000000000 +0000 -+++ ./tdb.mk 2010-01-09 02:42:49.000000000 +0000 +--- tdb.mk.orig 2010-02-09 00:12:57.000000000 +0900 ++++ tdb.mk 2010-10-26 16:24:29.000000000 +0900 @@ -6,7 +6,7 @@ ALL_PROGS = $(PROGS) $(PROGS_NOINSTALL) @@ -9,7 +9,16 @@ TDB_STLIB = libtdb.a TDB_LIB = $(TDB_STLIB) -@@ -67,7 +67,7 @@ +@@ -58,7 +58,7 @@ + .SUFFIXES: .8.xml .8 + + .8.xml.8: +- -test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< ++ -test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl $< + + installdocs:: + ${INSTALLCMD} -d $(DESTDIR)$(mandir)/man8 +@@ -80,7 +80,7 @@ mkdir -p $(DESTDIR)$(bindir) mkdir -p $(DESTDIR)$(includedir) mkdir -p $(DESTDIR)$(libdir) @@ -18,16 +27,16 @@ installbin:: all installdirs cp $(PROGS) $(DESTDIR)$(bindir) -@@ -76,7 +76,7 @@ +@@ -89,7 +89,7 @@ cp $(srcdir)/include/tdb.h $(DESTDIR)$(includedir) installlibs:: all installdirs - cp tdb.pc $(DESTDIR)$(libdir)/pkgconfig + cp tdb.pc $(DESTDIR)$(prefix)/libdata/pkgconfig cp $(TDB_STLIB) $(TDB_SOLIB) $(DESTDIR)$(libdir) - - $(TDB_STLIB): $(TDB_OBJ) -@@ -84,6 +84,3 @@ + rm -f $(DESTDIR)$(libdir)/libtdb.$(SHLIBEXT) + ln -s $(TDB_SOLIB) $(DESTDIR)$(libdir)/libtdb.$(SHLIBEXT) +@@ -101,6 +101,3 @@ libtdb.$(SHLIBEXT): $(TDB_SOLIB) ln -fs $< $@ --- tdb.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 08:20:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0370B1065673; Tue, 26 Oct 2010 08:20:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CE5288FC08; Tue, 26 Oct 2010 08:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q8KEfb043585; Tue, 26 Oct 2010 08:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q8KEnF043577; Tue, 26 Oct 2010 08:20:14 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 08:20:14 GMT Message-Id: <201010260820.o9Q8KEnF043577@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151743: [PATCH] databases/tdb: fix manpage install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 08:20:15 -0000 Synopsis: [PATCH] databases/tdb: fix manpage install Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 08:20:14 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151743 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 08:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D26B106564A for ; Tue, 26 Oct 2010 08:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B53E8FC18 for ; Tue, 26 Oct 2010 08:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q8e9cT065928 for ; Tue, 26 Oct 2010 08:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q8e9kO065927; Tue, 26 Oct 2010 08:40:09 GMT (envelope-from gnats) Date: Tue, 26 Oct 2010 08:40:09 GMT Message-Id: <201010260840.o9Q8e9kO065927@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Beat Gaetzi Cc: Subject: Re: ports/151402: [maintainer-update] sysutils/automounter - 1.4.4 release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Beat Gaetzi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 08:40:10 -0000 The following reply was made to PR ports/151402; it has been noted by GNATS. From: Beat Gaetzi To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151402: [maintainer-update] sysutils/automounter - 1.4.4 release Date: Tue, 26 Oct 2010 10:11:13 +0200 Please do not restart devd in pkg-install. A note in pkg-message is sufficient as the administrator could decide if he want's to restart devd or not. This is also mentioned in the porters handbook: http://www.freebsd.org/doc/en/books/porters-handbook/book.html#AEN5402 This example is about stopping services at deinstall but I think it also matches this case about restarting services at installation time. Beat From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 09:26:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 839B01065673; Tue, 26 Oct 2010 09:26:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 59FDB8FC1A; Tue, 26 Oct 2010 09:26:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q9QJtj017115; Tue, 26 Oct 2010 09:26:19 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q9QJuh017111; Tue, 26 Oct 2010 09:26:19 GMT (envelope-from sunpoet) Date: Tue, 26 Oct 2010 09:26:19 GMT Message-Id: <201010260926.o9Q9QJuh017111@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151738: [maintainer] databases/phpmyadmin -- update to 3.3.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 09:26:19 -0000 Synopsis: [maintainer] databases/phpmyadmin -- update to 3.3.8 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Oct 26 09:26:18 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151738 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 09:30:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75B0510656A4 for ; Tue, 26 Oct 2010 09:30:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C5568FC23 for ; Tue, 26 Oct 2010 09:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q9UBiV017338 for ; Tue, 26 Oct 2010 09:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q9UBHm017335; Tue, 26 Oct 2010 09:30:11 GMT (envelope-from gnats) Date: Tue, 26 Oct 2010 09:30:11 GMT Message-Id: <201010260930.o9Q9UBHm017335@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Janne Snabb Cc: Subject: Re: ports/150879: update to version 0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Janne Snabb List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 09:30:12 -0000 The following reply was made to PR ports/150879; it has been noted by GNATS. From: Janne Snabb To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/150879: update to version 0.3 Date: Tue, 26 Oct 2010 09:29:34 +0000 (UTC) Version 0.3 of downtimed fixes manual page formatting on FreeBSD and other OSes. Please apply the patch below before committing. I hope it does not get mangled. -- Janne Snabb / EPIPE Communications snabb@epipe.com - http://epipe.com/ === modified file 'Makefile' --- Makefile 2010-09-22 15:31:26 +0000 +++ Makefile 2010-10-26 09:19:22 +0000 @@ -6,7 +6,7 @@ # PORTNAME= downtimed -PORTVERSION= 0.2 +PORTVERSION= 0.3 CATEGORIES= sysutils MASTER_SITES= http://dist.epipe.com/${PORTNAME}/ \ http://launchpadlibrarian.net/56261240/ === modified file 'distinfo' --- distinfo 2010-09-22 14:56:42 +0000 +++ distinfo 2010-10-26 09:19:22 +0000 @@ -1,3 +1,3 @@ -MD5 (downtimed-0.2.tar.xz) = 7fd24af6479247c43d6078c59205d010 -SHA256 (downtimed-0.2.tar.xz) = 4ffd52e9b0dcc4513687ce0d9cfcd139732692001ba246a2552087ac80404e07 -SIZE (downtimed-0.2.tar.xz) = 73608 +MD5 (downtimed-0.3.tar.xz) = 007b41a4ee905499e24b7cbb59940a11 +SHA256 (downtimed-0.3.tar.xz) = 864004cafb04bf45666b4797f0f7806110284fa8bac5d58ac6d359aa36392447 +SIZE (downtimed-0.3.tar.xz) = 74264 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 09:50:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FB621065674 for ; Tue, 26 Oct 2010 09:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4E0B28FC0A for ; Tue, 26 Oct 2010 09:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9Q9o9uW037765 for ; Tue, 26 Oct 2010 09:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9Q9o9FT037764; Tue, 26 Oct 2010 09:50:09 GMT (envelope-from gnats) Date: Tue, 26 Oct 2010 09:50:09 GMT Message-Id: <201010260950.o9Q9o9FT037764@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Janne Snabb Cc: Subject: Re: ports/150879: update to version 0.3 with correct launchpad download URL X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Janne Snabb List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 09:50:10 -0000 The following reply was made to PR ports/150879; it has been noted by GNATS. From: Janne Snabb To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/150879: update to version 0.3 with correct launchpad download URL Date: Tue, 26 Oct 2010 09:47:21 +0000 (UTC) Oops, it seems that the launchpad download URL changes with every release. Please apply this patch before comitting instead of the previous one. -- Janne Snabb / EPIPE Communications snabb@epipe.com - http://epipe.com/ === modified file 'Makefile' --- Makefile 2010-09-22 15:31:26 +0000 +++ Makefile 2010-10-26 09:44:54 +0000 @@ -6,10 +6,10 @@ # PORTNAME= downtimed -PORTVERSION= 0.2 +PORTVERSION= 0.3 CATEGORIES= sysutils MASTER_SITES= http://dist.epipe.com/${PORTNAME}/ \ - http://launchpadlibrarian.net/56261240/ + http://launchpadlibrarian.net/58217312/ DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= snabb@epipe.com === modified file 'distinfo' --- distinfo 2010-09-22 14:56:42 +0000 +++ distinfo 2010-10-26 09:19:22 +0000 @@ -1,3 +1,3 @@ -MD5 (downtimed-0.2.tar.xz) = 7fd24af6479247c43d6078c59205d010 -SHA256 (downtimed-0.2.tar.xz) = 4ffd52e9b0dcc4513687ce0d9cfcd139732692001ba246a2552087ac80404e07 -SIZE (downtimed-0.2.tar.xz) = 73608 +MD5 (downtimed-0.3.tar.xz) = 007b41a4ee905499e24b7cbb59940a11 +SHA256 (downtimed-0.3.tar.xz) = 864004cafb04bf45666b4797f0f7806110284fa8bac5d58ac6d359aa36392447 +SIZE (downtimed-0.3.tar.xz) = 74264 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 10:30:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0CFC1065672 for ; Tue, 26 Oct 2010 10:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B25E68FC0C for ; Tue, 26 Oct 2010 10:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QAU9VI082096 for ; Tue, 26 Oct 2010 10:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QAU9Xp082090; Tue, 26 Oct 2010 10:30:09 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 10:30:09 GMT Resent-Message-Id: <201010261030.o9QAU9Xp082090@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Deiter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33BB9106564A for ; Tue, 26 Oct 2010 10:22:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 2268D8FC17 for ; Tue, 26 Oct 2010 10:22:54 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9QAMrJJ067655 for ; Tue, 26 Oct 2010 10:22:53 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9QAMrMI067654; Tue, 26 Oct 2010 10:22:53 GMT (envelope-from nobody) Message-Id: <201010261022.o9QAMrMI067654@www.freebsd.org> Date: Tue, 26 Oct 2010 10:22:53 GMT From: Alex Deiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151744: [SHAR] New port net/appkonference X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 10:30:10 -0000 >Number: 151744 >Category: ports >Synopsis: [SHAR] New port net/appkonference >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 10:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Alex Deiter >Release: 8.1-RELEASE >Organization: N/A >Environment: FreeBSD x4150b.tdc 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please review new port net/appkonference: App_konference is a channel-independent conference application. It features efficient audio mixing algorithms as well as video selection support based on VAD, DTMF or CLI. WWW: http://sourceforge.net/projects/appkonference/ >How-To-Repeat: cd /usr/ports/net/appkonference && make install >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # appkonference # appkonference/files # appkonference/files/patch-Makefile # appkonference/pkg-descr # appkonference/distinfo # appkonference/Makefile # echo c - appkonference mkdir -p appkonference > /dev/null 2>&1 echo c - appkonference/files mkdir -p appkonference/files > /dev/null 2>&1 echo x - appkonference/files/patch-Makefile sed 's/^X//' >appkonference/files/patch-Makefile << 'cb1ef23936b2e09bf733d4b82ff31e18' X--- Makefile.orig 2010-10-23 00:28:54.000000000 +0000 X+++ Makefile 2010-10-23 00:31:39.000000000 +0000 X@@ -18,9 +18,9 @@ X # X X INSTALL_PREFIX := X-INSTALL_MODULES_DIR := $(INSTALL_PREFIX)/usr/lib/asterisk/modules X+INSTALL_MODULES_DIR := $(INSTALL_PREFIX)/${LOCALBASE}/lib/asterisk/modules X X-ASTERISK_INCLUDE_DIR ?= ../asterisk/include X+ASTERISK_INCLUDE_DIR ?= ${LOCALBASE}/include X X RELEASE = 1.5 X X@@ -157,7 +157,7 @@ X $(RM) $(TARGET) X X $(TARGET): $(OBJS) X- $(CC) -pg $(SOLINK) -o $@ $(OBJS) X+ $(CC) $(SOLINK) -o $@ $(OBJS) X X vad_test: vad_test.o libspeex/preprocess.o libspeex/misc.o libspeex/smallft.o X $(CC) $(PROFILE) -o $@ $^ -lm cb1ef23936b2e09bf733d4b82ff31e18 echo x - appkonference/pkg-descr sed 's/^X//' >appkonference/pkg-descr << 'ef576a4d3945d4cfcf24430ae81de770' XApp_konference is a channel-independent conference application. XIt features efficient audio mixing algorithms as well as video selection Xsupport based on VAD, DTMF or CLI. X XWWW: http://sourceforge.net/projects/appkonference/ ef576a4d3945d4cfcf24430ae81de770 echo x - appkonference/distinfo sed 's/^X//' >appkonference/distinfo << 'ea51e350aad532bb6a5005e80ece2e80' XMD5 (appkonference-1.5.tar.gz) = 3a116a71a08f23cef510fa0b47d705cb XSHA256 (appkonference-1.5.tar.gz) = 6470cc38b07a14b27993bc1e6a5c636943ae36e7e2385a3e136b3bc55a87af27 XSIZE (appkonference-1.5.tar.gz) = 186882 ea51e350aad532bb6a5005e80ece2e80 echo x - appkonference/Makefile sed 's/^X//' >appkonference/Makefile << 'b863180086c43c46a625654923af7e23' X# New ports collection makefile for: net/appkonference X# Date created: 19 October 2010 X# Whom: Alex Deiter X# X# $FreeBSD$ X# X XPORTNAME= appkonference XPORTVERSION= 1.5 XCATEGORIES= net XMASTER_SITES= SF X XMAINTAINER= alex.deiter@gmail.com XCOMMENT= High-performance Asterisk voice/video conferencing plugin X XBUILD_DEPENDS= asterisk:${PORTSDIR}/net/asterisk XRUN_DEPENDS= asterisk:${PORTSDIR}/net/asterisk X XUSE_GMAKE= yes XMAKE_ENV= LOCALBASE=${LOCALBASE} XWRKSRC= ${WRKDIR}/${PORTNAME}/konference X XPLIST_FILES= lib/asterisk/modules/app_konference.so X X.include b863180086c43c46a625654923af7e23 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 10:50:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D73E106567A for ; Tue, 26 Oct 2010 10:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E12E28FC19 for ; Tue, 26 Oct 2010 10:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QAo7PI002062 for ; Tue, 26 Oct 2010 10:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QAo7Zp002061; Tue, 26 Oct 2010 10:50:07 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 10:50:07 GMT Resent-Message-Id: <201010261050.o9QAo7Zp002061@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Koop Mast Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF3CD106564A for ; Tue, 26 Oct 2010 10:48:21 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep19.mx.upcmail.net (fep19.mx.upcmail.net [62.179.121.39]) by mx1.freebsd.org (Postfix) with ESMTP id 179668FC12 for ; Tue, 26 Oct 2010 10:48:20 +0000 (UTC) Received: from edge04.upcmail.net ([192.168.13.239]) by viefep19-int.chello.at (InterMail vM.8.01.02.02 201-2260-120-106-20100312) with ESMTP id <20101026104819.ZIZY1944.viefep19-int.chello.at@edge04.upcmail.net> for ; Tue, 26 Oct 2010 12:48:19 +0200 Received: from mail.rainbow-runner.nl ([77.250.185.191]) by edge04.upcmail.net with edge id PNoH1f02X48Bq8D04NoJN1; Tue, 26 Oct 2010 12:48:19 +0200 Received: from hermes.rainbow-runner.nl (localhost [127.0.0.1]) by mail.rainbow-runner.nl (Postfix) with ESMTP id 8E4F7107C272 for ; Tue, 26 Oct 2010 12:48:17 +0200 (CEST) Received: from mail.rainbow-runner.nl ([127.0.0.1]) by hermes.rainbow-runner.nl (hermes.rainbow-runner.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lorOrboqrkeW for ; Tue, 26 Oct 2010 12:48:15 +0200 (CEST) Received: by mail.rainbow-runner.nl (Postfix, from userid 1001) id 725251077183; Tue, 26 Oct 2010 12:48:15 +0200 (CEST) Message-Id: <20101026104815.725251077183@mail.rainbow-runner.nl> Date: Tue, 26 Oct 2010 12:48:15 +0200 (CEST) From: Koop Mast To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151745: Gnome 2.32 update. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Koop Mast List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 10:50:09 -0000 >Number: 151745 >Category: ports >Synopsis: Gnome 2.32 update. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 10:50:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Koop Mast >Release: FreeBSD 8.1-RELEASE-p1 amd64 >Organization: >Environment: System: FreeBSD hermes.rainbow-runner.nl 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #3 r212995: Wed Sep 22 14:19:30 CEST 2010 root@hermes.rainbow-runner.nl:/var/obj/usr/src/sys/Hermes amd64 >Description: Request for ports exp-run to check for regressions in this GNOME update. Patch tested localy and passes make index. Patch available at http://people.freebsd.org/~kwm/gnome-full-2.32.0-1.diff >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 11:01:42 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26060106566C; Tue, 26 Oct 2010 11:01:42 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F07408FC19; Tue, 26 Oct 2010 11:01:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QB1fKP023181; Tue, 26 Oct 2010 11:01:41 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QB1fkV023169; Tue, 26 Oct 2010 11:01:41 GMT (envelope-from kwm) Date: Tue, 26 Oct 2010 11:01:41 GMT Message-Id: <201010261101.o9QB1fkV023169@freefall.freebsd.org> To: kwm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: kwm@FreeBSD.org Cc: Subject: Re: ports/151745: Gnome 2.32 update. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 11:01:42 -0000 Synopsis: Gnome 2.32 update. Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: kwm Responsible-Changed-When: Tue Oct 26 11:00:45 UTC 2010 Responsible-Changed-Why: Assign to portmgr@ so then can schedule a exp-run. http://www.freebsd.org/cgi/query-pr.cgi?pr=151745 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 11:40:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97924106564A for ; Tue, 26 Oct 2010 11:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6AEAF8FC14 for ; Tue, 26 Oct 2010 11:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QBeBn7056777 for ; Tue, 26 Oct 2010 11:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QBeBMq056776; Tue, 26 Oct 2010 11:40:11 GMT (envelope-from gnats) Date: Tue, 26 Oct 2010 11:40:11 GMT Message-Id: <201010261140.o9QBeBMq056776@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Guido Falsi Cc: Subject: Re: ports/151473: [maintainer-update] www/squidguard: fix ldap support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Guido Falsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 11:40:11 -0000 The following reply was made to PR ports/151473; it has been noted by GNATS. From: Guido Falsi To: bug-followup@FreeBSD.org, mad@madpilot.net Cc: Subject: Re: ports/151473: [maintainer-update] www/squidguard: fix ldap support Date: Tue, 26 Oct 2010 13:31:42 +0200 --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Fixed patch. Previous one was plainly wrong. Sorry! -- Guido Falsi --jRHKVT23PllUwdXP Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="sg.diff" diff -ruN squidguard.old/Makefile squidguard/Makefile --- squidguard.old/Makefile 2010-08-13 16:11:05.000000000 +0200 +++ squidguard/Makefile 2010-10-26 13:05:47.879973000 +0200 @@ -7,7 +7,7 @@ PORTNAME= squidGuard PORTVERSION= 1.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://www.squidguard.org/Downloads/ @@ -25,7 +25,7 @@ --with-sg-logdir=${LOGDIR} \ --exec-prefix=${PREFIX} -CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${PREFIX}/include" +CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${PREFIX}/include" LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" CFGINPUT= ${.CURDIR}/files/sgcfg.in @@ -156,7 +156,7 @@ ${FIND} ${DATADIR} -type f -name *.db -exec ${CHMOD} 660 {} \; ; \ ${ECHO_MSG} " -> Blacklist databases installed in: ${DATADIR}" .else - ${ECHO_MSG} "===> Existing configuration file found - blacklist databases not created" + @${ECHO_MSG} "===> Existing configuration file found - blacklist databases not created" .endif post-install: --jRHKVT23PllUwdXP-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:00:21 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB5BB10656F5 for ; Tue, 26 Oct 2010 12:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 808C38FC22 for ; Tue, 26 Oct 2010 12:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QC0LNq075461 for ; Tue, 26 Oct 2010 12:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QC0LEP075446; Tue, 26 Oct 2010 12:00:21 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 12:00:21 GMT Resent-Message-Id: <201010261200.o9QC0LEP075446@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E54E1065670 for ; Tue, 26 Oct 2010 11:51:48 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (deep.tw [122.116.130.101]) by mx1.freebsd.org (Postfix) with ESMTP id 1482A8FC15 for ; Tue, 26 Oct 2010 11:51:47 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id 28B1B6497; Tue, 26 Oct 2010 19:51:46 +0800 (CST) Message-Id: <20101026115146.28B1B6497@deep.tw> Date: Tue, 26 Oct 2010 19:51:46 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151746: [NEW PORT] www/node-devel: V8 javascript for client and server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:00:21 -0000 >Number: 151746 >Category: ports >Synopsis: [NEW PORT] www/node-devel: V8 javascript for client and server >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 12:00:19 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 8.1-STABLE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 8.1-STABLE FreeBSD 8.1-STABLE #0: Fri Sep 24 14:46:08 CST 2010 >Description: node - evented I/O for V8 javascript WWW: http://nodejs.org/ Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- node-devel-0.3.0.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # node-devel # node-devel/files # node-devel/files/patch-deps-v8-platform # node-devel/files/patch-man-and-pkgconfig-path # node-devel/Makefile # node-devel/distinfo # node-devel/pkg-descr # node-devel/pkg-plist # echo c - node-devel mkdir -p node-devel > /dev/null 2>&1 echo c - node-devel/files mkdir -p node-devel/files > /dev/null 2>&1 echo x - node-devel/files/patch-deps-v8-platform sed 's/^X//' >node-devel/files/patch-deps-v8-platform << 'be03779fe1384c1a4be58e3d574fa563' X--- deps/v8/src/platform-freebsd.cc.orig 2010-10-24 07:00:15.000000000 +0800 X+++ deps/v8/src/platform-freebsd.cc 2010-10-26 17:10:36.000000000 +0800 X@@ -617,7 +617,10 @@ X X X Sampler::Sampler(int interval, bool profiling) X- : interval_(interval), profiling_(profiling), active_(false) { X+ : interval_(interval), X+ profiling_(profiling), X+ synchronous_(profiling), X+ active_(false) { X data_ = new PlatformData(); X } X be03779fe1384c1a4be58e3d574fa563 echo x - node-devel/files/patch-man-and-pkgconfig-path sed 's/^X//' >node-devel/files/patch-man-and-pkgconfig-path << '826778c281dc53978dc0ce256c70bd08' X--- wscript.orig 2010-10-24 07:00:15.000000000 +0800 X+++ wscript 2010-10-26 18:09:54.000000000 +0800 X@@ -571,8 +571,6 @@ X X # Only install the man page if it exists. X # Do 'make doc install' to build and install it. X- if os.path.exists('doc/node.1'): X- bld.install_files('${PREFIX}/share/man/man1/', 'doc/node.1') X X bld.install_files('${PREFIX}/bin/', 'bin/*', chmod=0755) X bld.install_files('${PREFIX}/lib/node/wafadmin', 'tools/wafadmin/*.py') X@@ -584,7 +582,7 @@ X node_conf.target = 'tools/nodejs.pc' X node_conf.dict = subflags(node) X X- bld.install_files('${PREFIX}/lib/pkgconfig', 'tools/nodejs.pc') X+ bld.install_files('${PREFIX}/libdata/pkgconfig', 'tools/nodejs.pc') X X def shutdown(): X Options.options.debug 826778c281dc53978dc0ce256c70bd08 echo x - node-devel/Makefile sed 's/^X//' >node-devel/Makefile << '3e6c3f8bf1ced45dee155fbad1c11c68' X# New ports collection makefile for: node X# Date created: 2010-10-26 X# Whom: Jin-Sih Lin X# X# $FreeBSD$ X# X XPORTNAME= node XPORTVERSION= 0.3.0 XCATEGORIES= www XMASTER_SITES= http://nodejs.org/dist/ XPKGNAMESUFFIX= -devel XDISTNAME= ${PORTNAME}-v${PORTVERSION} X XMAINTAINER= linpct@gmail.com XCOMMENT= V8 javascript for client and server X XLIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo X XMAN1= node.1 X XHAS_CONFIGURE= yes XUSE_LDCONFIG= yes XUSE_PYTHON= yes XUSE_GNOME= pkgconfig X XONLY_FOR_ARCHS= i386 amd64 XMAKE_JOBS_SAFE= yes X XCONFLICTS= node-0.2* X XCONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} XPREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,} X X.if !defined(DISABLE_MAKE_JOBS) XWAF_ARGS= --jobs=${MAKE_JOBS_NUMBER} X.endif X Xdo-build: X @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} tools/waf-light ${WAF_ARGS} build) X Xpost-install: X @${INSTALL_MAN} ${WRKSRC}/doc/node.1 ${MANPREFIX}/man/man1 X X.include 3e6c3f8bf1ced45dee155fbad1c11c68 echo x - node-devel/distinfo sed 's/^X//' >node-devel/distinfo << 'f9f81502acff733fe6bf47285bfc88c6' XMD5 (node-v0.3.0.tar.gz) = 4e4e56c8538afafcdf45fd99cdb1ae45 XSHA256 (node-v0.3.0.tar.gz) = aa53c3d136ceaa02108ad013d9d9917e6e2ea22f10e3bd7414f4ba6f6a1427b5 XSIZE (node-v0.3.0.tar.gz) = 4054239 f9f81502acff733fe6bf47285bfc88c6 echo x - node-devel/pkg-descr sed 's/^X//' >node-devel/pkg-descr << '786dbefd21b2f90c753c47e237f8ed76' Xnode - evented I/O for V8 javascript X XWWW: http://nodejs.org/ 786dbefd21b2f90c753c47e237f8ed76 echo x - node-devel/pkg-plist sed 's/^X//' >node-devel/pkg-plist << 'de5fca0285b1d30d86a5bdfc93b8cda2' Xbin/node Xbin/node-repl Xbin/node-waf Xinclude/node/config.h Xinclude/node/eio.h Xinclude/node/ev.h Xinclude/node/node.h Xinclude/node/node_buffer.h Xinclude/node/node_config.h Xinclude/node/node_events.h Xinclude/node/node_object_wrap.h Xinclude/node/node_version.h Xinclude/node/v8-debug.h Xinclude/node/v8-profiler.h Xinclude/node/v8.h Xlib/node/wafadmin/Build.py Xlib/node/wafadmin/Configure.py Xlib/node/wafadmin/Constants.py Xlib/node/wafadmin/Environment.py Xlib/node/wafadmin/Logs.py Xlib/node/wafadmin/Node.py Xlib/node/wafadmin/Options.py Xlib/node/wafadmin/Runner.py Xlib/node/wafadmin/Scripting.py Xlib/node/wafadmin/Task.py Xlib/node/wafadmin/TaskGen.py Xlib/node/wafadmin/Tools/__init__.py Xlib/node/wafadmin/Tools/ar.py Xlib/node/wafadmin/Tools/cc.py Xlib/node/wafadmin/Tools/ccroot.py Xlib/node/wafadmin/Tools/compiler_cc.py Xlib/node/wafadmin/Tools/compiler_cxx.py Xlib/node/wafadmin/Tools/compiler_d.py Xlib/node/wafadmin/Tools/config_c.py Xlib/node/wafadmin/Tools/cxx.py Xlib/node/wafadmin/Tools/d.py Xlib/node/wafadmin/Tools/dmd.py Xlib/node/wafadmin/Tools/gas.py Xlib/node/wafadmin/Tools/gcc.py Xlib/node/wafadmin/Tools/gdc.py Xlib/node/wafadmin/Tools/gnu_dirs.py Xlib/node/wafadmin/Tools/gob2.py Xlib/node/wafadmin/Tools/gxx.py Xlib/node/wafadmin/Tools/icc.py Xlib/node/wafadmin/Tools/icpc.py Xlib/node/wafadmin/Tools/intltool.py Xlib/node/wafadmin/Tools/libtool.py Xlib/node/wafadmin/Tools/misc.py Xlib/node/wafadmin/Tools/nasm.py Xlib/node/wafadmin/Tools/node_addon.py Xlib/node/wafadmin/Tools/osx.py Xlib/node/wafadmin/Tools/preproc.py Xlib/node/wafadmin/Tools/python.py Xlib/node/wafadmin/Tools/suncc.py Xlib/node/wafadmin/Tools/suncxx.py Xlib/node/wafadmin/Tools/unittestw.py Xlib/node/wafadmin/Tools/winres.py Xlib/node/wafadmin/Tools/xlc.py Xlib/node/wafadmin/Tools/xlcxx.py Xlib/node/wafadmin/Utils.py Xlib/node/wafadmin/__init__.py Xlib/node/wafadmin/ansiterm.py Xlib/node/wafadmin/pproc.py Xlib/node/wafadmin/py3kfixes.py Xlibdata/pkgconfig/nodejs.pc X@dirrmtry libdata/pkgconfig X@dirrm lib/node/wafadmin/Tools X@dirrm lib/node/wafadmin X@dirrm lib/node X@dirrm include/node de5fca0285b1d30d86a5bdfc93b8cda2 exit --- node-devel-0.3.0.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:00:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C90710656D3 for ; Tue, 26 Oct 2010 12:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1461C8FC28 for ; Tue, 26 Oct 2010 12:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QC0MTJ075642 for ; Tue, 26 Oct 2010 12:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QC0MiQ075616; Tue, 26 Oct 2010 12:00:22 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 12:00:22 GMT Resent-Message-Id: <201010261200.o9QC0MiQ075616@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F3461065670 for ; Tue, 26 Oct 2010 11:58:58 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (deep.tw [122.116.130.101]) by mx1.freebsd.org (Postfix) with ESMTP id F043B8FC0A for ; Tue, 26 Oct 2010 11:58:57 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id D9BF76589; Tue, 26 Oct 2010 19:58:56 +0800 (CST) Message-Id: <20101026115856.D9BF76589@deep.tw> Date: Tue, 26 Oct 2010 19:58:56 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151748: [MAINTAINER] www/node: add CONFLICTS to node-devel* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:00:23 -0000 >Number: 151748 >Category: ports >Synopsis: [MAINTAINER] www/node: add CONFLICTS to node-devel* >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 12:00:22 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 8.1-STABLE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 8.1-STABLE FreeBSD 8.1-STABLE #0: Fri Sep 24 14:46:08 CST 2010 >Description: add CONFLICTS to node-devel* Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- node-0.2.4_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/node.orig/Makefile /usr/ports/www/node/Makefile --- /usr/ports/www/node.orig/Makefile 2010-10-26 19:55:37.000000000 +0800 +++ /usr/ports/www/node/Makefile 2010-10-26 18:30:33.000000000 +0800 @@ -7,6 +7,7 @@ PORTNAME= node PORTVERSION= 0.2.4 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/ DISTNAME= ${PORTNAME}-v${PORTVERSION} @@ -25,6 +26,8 @@ ONLY_FOR_ARCHS= i386 amd64 MAKE_JOBS_SAFE= yes +CONFLICTS= node-devel* + CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,} --- node-0.2.4_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:10:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E69D61065695 for ; Tue, 26 Oct 2010 12:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A660D8FC12 for ; Tue, 26 Oct 2010 12:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QCA7Au087759 for ; Tue, 26 Oct 2010 12:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QCA7b1087758; Tue, 26 Oct 2010 12:10:07 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 12:10:07 GMT Resent-Message-Id: <201010261210.o9QCA7b1087758@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Timofeev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D5011065679 for ; Tue, 26 Oct 2010 12:09:32 +0000 (UTC) (envelope-from vovkasm@veda.park.rambler.ru) Received: from pmx1.rambler.ru (mail01.park.rambler.ru [81.19.66.124]) by mx1.freebsd.org (Postfix) with ESMTP id 246CC8FC18 for ; Tue, 26 Oct 2010 12:09:32 +0000 (UTC) Received: from veda.park.rambler.ru ([10.12.2.8]) by pmx1.rambler.ru with esmtp (Exim 4.70 (FreeBSD)) (envelope-from ) id 1PAhut-000DIJ-EJ for FreeBSD-gnats-submit@freebsd.org; Tue, 26 Oct 2010 15:42:11 +0400 Received: from vovkasm by veda.park.rambler.ru with local (Exim 4.71 (FreeBSD)) (envelope-from ) id 1PAhut-000BzQ-Bo for FreeBSD-gnats-submit@freebsd.org; Tue, 26 Oct 2010 15:42:11 +0400 Message-Id: Date: Tue, 26 Oct 2010 15:42:11 +0400 From: Vladimir Timofeev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151749: [MAINTAINER] devel/p5-EV: update to 4.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:10:08 -0000 >Number: 151749 >Category: ports >Synopsis: [MAINTAINER] devel/p5-EV: update to 4.00 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 12:10:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vladimir Timofeev >Release: FreeBSD 7.1-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD veda.park.rambler.ru 7.1-RELEASE-p2 FreeBSD 7.1-RELEASE-p2 #0: Thu Feb 12 22:34:21 MSK 2009 >Description: - Update to 4.00 Changes: http://cpansearch.perl.org/src/MLEHMANN/EV-4.00/Changes >How-To-Repeat: >Fix: --- p5-EV-4.00,1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-EV/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- Makefile 3 Jan 2010 04:07:23 -0000 1.12 +++ Makefile 26 Oct 2010 11:30:43 -0000 @@ -6,7 +6,7 @@ # PORTNAME= EV -PORTVERSION= 3.9 +PORTVERSION= 4.00 PORTEPOCH= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/p5-EV/distinfo,v retrieving revision 1.12 diff -u -r1.12 distinfo --- distinfo 3 Jan 2010 04:07:23 -0000 1.12 +++ distinfo 26 Oct 2010 11:30:43 -0000 @@ -1,3 +1,3 @@ -MD5 (EV-3.9.tar.gz) = b46709463a575485eb40ca3309963ce3 -SHA256 (EV-3.9.tar.gz) = fa6530b0dc33370ce9f2ec0b9c247f892f958f198a44f2b8daeb90b546df48ee -SIZE (EV-3.9.tar.gz) = 153556 +MD5 (EV-4.00.tar.gz) = cb8d1354d8bca4421a15999669e34418 +SHA256 (EV-4.00.tar.gz) = 06846bf7b9b6727b04b250cb7a2ace8414446bfeaf149577ee3caaeb6bc98dcf +SIZE (EV-4.00.tar.gz) = 167166 --- p5-EV-4.00,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:10:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C98CF1065670; Tue, 26 Oct 2010 12:10:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F2BB8FC18; Tue, 26 Oct 2010 12:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QCAFKF088316; Tue, 26 Oct 2010 12:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QCAF1j088307; Tue, 26 Oct 2010 12:10:15 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 12:10:15 GMT Message-Id: <201010261210.o9QCAF1j088307@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151749: [MAINTAINER] devel/p5-EV: update to 4.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:10:15 -0000 Synopsis: [MAINTAINER] devel/p5-EV: update to 4.00 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 12:10:15 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151749 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:11:54 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87345106566B; Tue, 26 Oct 2010 12:11:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5CB868FC18; Tue, 26 Oct 2010 12:11:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QCBsN5097078; Tue, 26 Oct 2010 12:11:54 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QCBsh1097074; Tue, 26 Oct 2010 12:11:54 GMT (envelope-from sunpoet) Date: Tue, 26 Oct 2010 12:11:54 GMT Message-Id: <201010261211.o9QCBsh1097074@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151748: [MAINTAINER] www/node: add CONFLICTS to node-devel* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:11:54 -0000 Synopsis: [MAINTAINER] www/node: add CONFLICTS to node-devel* Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Oct 26 12:11:53 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151748 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:12:36 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB2701065693; Tue, 26 Oct 2010 12:12:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A097A8FC1D; Tue, 26 Oct 2010 12:12:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QCCaCP097229; Tue, 26 Oct 2010 12:12:36 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QCCanB097225; Tue, 26 Oct 2010 12:12:36 GMT (envelope-from sunpoet) Date: Tue, 26 Oct 2010 12:12:36 GMT Message-Id: <201010261212.o9QCCanB097225@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151746: [NEW PORT] www/node-devel: V8 javascript for client and server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:12:36 -0000 Synopsis: [NEW PORT] www/node-devel: V8 javascript for client and server Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Oct 26 12:12:36 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151746 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:50:01 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F9CE1065674 for ; Tue, 26 Oct 2010 12:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0BB3F8FC13 for ; Tue, 26 Oct 2010 12:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QCo0gV028624 for ; Tue, 26 Oct 2010 12:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QCo0Fq028623; Tue, 26 Oct 2010 12:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 12:50:00 GMT Resent-Message-Id: <201010261250.o9QCo0Fq028623@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Timofeev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99D7B106566C for ; Tue, 26 Oct 2010 12:48:23 +0000 (UTC) (envelope-from vovkasm@veda.park.rambler.ru) Received: from pmx1.rambler.ru (mail01.park.rambler.ru [81.19.66.124]) by mx1.freebsd.org (Postfix) with ESMTP id 516768FC0C for ; Tue, 26 Oct 2010 12:48:22 +0000 (UTC) Received: from veda.park.rambler.ru ([10.12.2.8]) by pmx1.rambler.ru with esmtp (Exim 4.70 (FreeBSD)) (envelope-from ) id 1PAiwv-000Gnm-0X for FreeBSD-gnats-submit@freebsd.org; Tue, 26 Oct 2010 16:48:21 +0400 Received: from vovkasm by veda.park.rambler.ru with local (Exim 4.71 (FreeBSD)) (envelope-from ) id 1PAiwu-000Cg3-UL for FreeBSD-gnats-submit@freebsd.org; Tue, 26 Oct 2010 16:48:20 +0400 Message-Id: Date: Tue, 26 Oct 2010 16:48:20 +0400 From: Vladimir Timofeev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151750: [MAINTAINER] www/p5-Catalyst-Model-Adaptor: update to 0.09 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:50:01 -0000 >Number: 151750 >Category: ports >Synopsis: [MAINTAINER] www/p5-Catalyst-Model-Adaptor: update to 0.09 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 12:50:00 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vladimir Timofeev >Release: FreeBSD 7.1-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD veda.park.rambler.ru 7.1-RELEASE-p2 FreeBSD 7.1-RELEASE-p2 #0: Thu Feb 12 22:34:21 MSK 2009 >Description: - Update to 0.09 Changes: http://cpansearch.perl.org/src/BOBTFISH/Catalyst-Model-Adaptor-0.09/Changes >How-To-Repeat: >Fix: --- p5-Catalyst-Model-Adaptor-0.09.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Model-Adaptor/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 10 Feb 2010 14:38:30 -0000 1.4 +++ Makefile 26 Oct 2010 12:38:30 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Catalyst-Model-Adaptor -PORTVERSION= 0.08 +PORTVERSION= 0.09 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Index: distinfo =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Model-Adaptor/distinfo,v retrieving revision 1.4 diff -u -r1.4 distinfo --- distinfo 10 Feb 2010 14:38:30 -0000 1.4 +++ distinfo 26 Oct 2010 12:38:30 -0000 @@ -1,3 +1,3 @@ -MD5 (Catalyst-Model-Adaptor-0.08.tar.gz) = 60d17e5bb2890f9d0fb827797427d6da -SHA256 (Catalyst-Model-Adaptor-0.08.tar.gz) = 60458516394a32300a571da7434a62824c8cf93a20b5c0446ac2b3f7884a9492 -SIZE (Catalyst-Model-Adaptor-0.08.tar.gz) = 21427 +MD5 (Catalyst-Model-Adaptor-0.09.tar.gz) = 754d72c0dbc65fc4eee7943db758f466 +SHA256 (Catalyst-Model-Adaptor-0.09.tar.gz) = 42436f53e5da8d2a2db6edce625634bc0bfef23a2d744c6da4d12e48d655862e +SIZE (Catalyst-Model-Adaptor-0.09.tar.gz) = 24936 --- p5-Catalyst-Model-Adaptor-0.09.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:50:01 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCFD41065679 for ; Tue, 26 Oct 2010 12:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 76E0E8FC16 for ; Tue, 26 Oct 2010 12:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QCo1ed028635 for ; Tue, 26 Oct 2010 12:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QCo1Us028634; Tue, 26 Oct 2010 12:50:01 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 12:50:01 GMT Resent-Message-Id: <201010261250.o9QCo1Us028634@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sofian Brabez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B931106564A for ; Tue, 26 Oct 2010 12:48:35 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 7613F8FC19 for ; Tue, 26 Oct 2010 12:48:34 +0000 (UTC) Received: by wwb24 with SMTP id 24so4494937wwb.31 for ; Tue, 26 Oct 2010 05:48:33 -0700 (PDT) Received: by 10.216.19.13 with SMTP id m13mr7528156wem.101.1288097313246; Tue, 26 Oct 2010 05:48:33 -0700 (PDT) Received: from localhost (paris.office.wallix.com [82.238.42.70]) by mx.google.com with ESMTPS id p4sm1016908wer.5.2010.10.26.05.48.31 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 26 Oct 2010 05:48:32 -0700 (PDT) Message-Id: <4cc6ce20.04f6d80a.4ae1.47df@mx.google.com> Date: Tue, 26 Oct 2010 05:48:32 -0700 (PDT) From: Sofian Brabez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151751: [patch] devel/py-testoob: update to 1.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:50:01 -0000 >Number: 151751 >Category: ports >Synopsis: [patch] devel/py-testoob: update to 1.15 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 12:50:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 8.1-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.ifr.lan 8.1-STABLE FreeBSD 8.1-STABLE #2: Thu Sep 2 14:53:08 CEST >Description: - Update to 1.15 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- py26-testoob-1.15.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/py-testoob/Makefile /tmp/py-testoob/Makefile --- /usr/ports/devel/py-testoob/Makefile 2010-10-19 10:07:17.000000000 +0200 +++ /tmp/py-testoob/Makefile 2010-10-26 14:48:30.000000000 +0200 @@ -6,9 +6,10 @@ # PORTNAME= testoob -PORTVERSION= 1.13 +PORTVERSION= 1.15 CATEGORIES= devel python -MASTER_SITES= SF +MASTER_SITES= SF \ + CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@FreeBSD.org @@ -20,8 +21,11 @@ OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options USE_BZIP2= yes -USE_PYTHON= 2.2+ -USE_PYDISTUTILS= yes +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_PKGNAME= ${PORTNAME} +PYDISTUTILS_PKGVERSION= ${PORTVERSION} +PYDISTUTILS_NOEGGINFO= yes .include @@ -33,11 +37,4 @@ RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/Ft/Xml/__init__.py:${PORTSDIR}/textproc/py-4suite-xml .endif -.if ${PYTHON_REL} < 250 -PLIST_SUB+= PYTHON_CURRENT="@comment " -.else -EGG_INFO= ${PORTNAME}-${PORTVERSION}-py${PYTHON_VERSION:S,^python,,}.egg-info -PLIST_SUB+= PYTHON_CURRENT="" EGG_INFO=${EGG_INFO} -.endif - .include diff -ruN --exclude=CVS /usr/ports/devel/py-testoob/distinfo /tmp/py-testoob/distinfo --- /usr/ports/devel/py-testoob/distinfo 2007-01-04 10:51:23.000000000 +0100 +++ /tmp/py-testoob/distinfo 2010-10-26 13:46:58.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (testoob-1.13.tar.bz2) = 218609e9ffd23d047d287471b4f5253e -SHA256 (testoob-1.13.tar.bz2) = 8fabb01d69997e658e74ecb6f8f130e1a397282a67659b3c73b7230b837f7df7 -SIZE (testoob-1.13.tar.bz2) = 94420 +MD5 (testoob-1.15.tar.bz2) = 604d2556ac01ca8f5d189ad8ffe2c8e5 +SHA256 (testoob-1.15.tar.bz2) = 61263a4d9f155ad9710f5920f25e9c7762413bb3dafc6a32e1599888c26c1c1b +SIZE (testoob-1.15.tar.bz2) = 102322 diff -ruN --exclude=CVS /usr/ports/devel/py-testoob/pkg-plist /tmp/py-testoob/pkg-plist --- /usr/ports/devel/py-testoob/pkg-plist 2006-12-22 22:42:10.000000000 +0100 +++ /tmp/py-testoob/pkg-plist 2010-10-26 14:48:48.000000000 +0200 @@ -1,196 +1,223 @@ +@comment $FreeBSD$ bin/testoob -%%PYTHON_SITELIBDIR%%/testoob/__init__.py -%%PYTHON_SITELIBDIR%%/testoob/__init__.pyc -%%PYTHON_SITELIBDIR%%/testoob/__init__.pyo -%%PYTHON_SITELIBDIR%%/testoob/asserter.py -%%PYTHON_SITELIBDIR%%/testoob/asserter.pyc -%%PYTHON_SITELIBDIR%%/testoob/asserter.pyo -%%PYTHON_SITELIBDIR%%/testoob/collecting.py -%%PYTHON_SITELIBDIR%%/testoob/collecting.pyc -%%PYTHON_SITELIBDIR%%/testoob/collecting.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/__init__.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/__init__.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/__init__.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/color_mode_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/color_mode_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/color_mode_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/glob_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/glob_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/glob_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/html_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/html_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/html_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/immediate_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/immediate_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/immediate_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/list_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/list_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/list_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/parsing.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/parsing.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/parsing.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/pbar_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/pbar_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/pbar_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/pdf_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/pdf_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/pdf_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/processes_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/processes_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/processes_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/randomize_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/randomize_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/randomize_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/regex_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/regex_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/regex_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/repeat_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/repeat_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/repeat_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/silent_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/silent_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/silent_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/timed_repeat_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/timed_repeat_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/timed_repeat_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/commandline/xml_option.py -%%PYTHON_SITELIBDIR%%/testoob/commandline/xml_option.pyc -%%PYTHON_SITELIBDIR%%/testoob/commandline/xml_option.pyo -%%PYTHON_SITELIBDIR%%/testoob/compatibility/SimpleXMLWriter.py -%%PYTHON_SITELIBDIR%%/testoob/compatibility/SimpleXMLWriter.pyc -%%PYTHON_SITELIBDIR%%/testoob/compatibility/SimpleXMLWriter.pyo -%%PYTHON_SITELIBDIR%%/testoob/compatibility/__init__.py -%%PYTHON_SITELIBDIR%%/testoob/compatibility/__init__.pyc -%%PYTHON_SITELIBDIR%%/testoob/compatibility/__init__.pyo -%%PYTHON_SITELIBDIR%%/testoob/compatibility/itertools.py -%%PYTHON_SITELIBDIR%%/testoob/compatibility/itertools.pyc -%%PYTHON_SITELIBDIR%%/testoob/compatibility/itertools.pyo -%%PYTHON_SITELIBDIR%%/testoob/compatibility/optparse.py -%%PYTHON_SITELIBDIR%%/testoob/compatibility/optparse.pyc -%%PYTHON_SITELIBDIR%%/testoob/compatibility/optparse.pyo -%%PYTHON_SITELIBDIR%%/testoob/compatibility/sets.py -%%PYTHON_SITELIBDIR%%/testoob/compatibility/sets.pyc -%%PYTHON_SITELIBDIR%%/testoob/compatibility/sets.pyo -%%PYTHON_SITELIBDIR%%/testoob/compatibility/subprocess.py -%%PYTHON_SITELIBDIR%%/testoob/compatibility/subprocess.pyc -%%PYTHON_SITELIBDIR%%/testoob/compatibility/subprocess.pyo -%%PYTHON_SITELIBDIR%%/testoob/compatibility/textwrap.py -%%PYTHON_SITELIBDIR%%/testoob/compatibility/textwrap.pyc -%%PYTHON_SITELIBDIR%%/testoob/compatibility/textwrap.pyo -%%PYTHON_SITELIBDIR%%/testoob/compatibility/trace.py -%%PYTHON_SITELIBDIR%%/testoob/compatibility/trace.pyc -%%PYTHON_SITELIBDIR%%/testoob/compatibility/trace.pyo -%%PYTHON_SITELIBDIR%%/testoob/coverage.py -%%PYTHON_SITELIBDIR%%/testoob/coverage.pyc -%%PYTHON_SITELIBDIR%%/testoob/coverage.pyo -%%PYTHON_SITELIBDIR%%/testoob/exceptions.py -%%PYTHON_SITELIBDIR%%/testoob/exceptions.pyc -%%PYTHON_SITELIBDIR%%/testoob/exceptions.pyo -%%PYTHON_SITELIBDIR%%/testoob/extracting.py -%%PYTHON_SITELIBDIR%%/testoob/extracting.pyc -%%PYTHON_SITELIBDIR%%/testoob/extracting.pyo -%%PYTHON_SITELIBDIR%%/testoob/main.py -%%PYTHON_SITELIBDIR%%/testoob/main.pyc -%%PYTHON_SITELIBDIR%%/testoob/main.pyo -%%PYTHON_SITELIBDIR%%/testoob/profiling.py -%%PYTHON_SITELIBDIR%%/testoob/profiling.pyc -%%PYTHON_SITELIBDIR%%/testoob/profiling.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/__init__.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/__init__.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/__init__.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/base.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/base.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/base.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/colored.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/colored.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/colored.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/common.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/common.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/common.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/err_info.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/err_info.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/err_info.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/html.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/html.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/html.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_standalone.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_standalone.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_standalone.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_xsl.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_xsl.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_xsl.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_xslt.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_xslt.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/html_xslt.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/pdf.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/pdf.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/pdf.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/progress_bar.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/progress_bar.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/progress_bar.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/reporter_proxy.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/reporter_proxy.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/reporter_proxy.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/test_info.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/test_info.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/test_info.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/textstream.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/textstream.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/textstream.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/xml.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/xml.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/xml.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/xslconverters.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/xslconverters.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/xslconverters.pyo -%%PYTHON_SITELIBDIR%%/testoob/reporting/xslt.py -%%PYTHON_SITELIBDIR%%/testoob/reporting/xslt.pyc -%%PYTHON_SITELIBDIR%%/testoob/reporting/xslt.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/__init__.py -%%PYTHON_SITELIBDIR%%/testoob/running/__init__.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/__init__.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/baserunner.py -%%PYTHON_SITELIBDIR%%/testoob/running/baserunner.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/baserunner.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/convenience.py -%%PYTHON_SITELIBDIR%%/testoob/running/convenience.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/convenience.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/fixture_decorators.py -%%PYTHON_SITELIBDIR%%/testoob/running/fixture_decorators.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/fixture_decorators.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/listingrunner.py -%%PYTHON_SITELIBDIR%%/testoob/running/listingrunner.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/listingrunner.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/processed_helper.py -%%PYTHON_SITELIBDIR%%/testoob/running/processed_helper.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/processed_helper.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/processedrunner.py -%%PYTHON_SITELIBDIR%%/testoob/running/processedrunner.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/processedrunner.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/pyro_runner.py -%%PYTHON_SITELIBDIR%%/testoob/running/pyro_runner.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/pyro_runner.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/simplerunner.py -%%PYTHON_SITELIBDIR%%/testoob/running/simplerunner.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/simplerunner.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/threadedrunner.py -%%PYTHON_SITELIBDIR%%/testoob/running/threadedrunner.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/threadedrunner.pyo -%%PYTHON_SITELIBDIR%%/testoob/running/threadpool.py -%%PYTHON_SITELIBDIR%%/testoob/running/threadpool.pyc -%%PYTHON_SITELIBDIR%%/testoob/running/threadpool.pyo -%%PYTHON_SITELIBDIR%%/testoob/test_loaders.py -%%PYTHON_SITELIBDIR%%/testoob/test_loaders.pyc -%%PYTHON_SITELIBDIR%%/testoob/test_loaders.pyo -%%PYTHON_SITELIBDIR%%/testoob/testing.py -%%PYTHON_SITELIBDIR%%/testoob/testing.pyc -%%PYTHON_SITELIBDIR%%/testoob/testing.pyo -%%PYTHON_SITELIBDIR%%/testoob/utils.py -%%PYTHON_SITELIBDIR%%/testoob/utils.pyc -%%PYTHON_SITELIBDIR%%/testoob/utils.pyo -%%PYTHON_CURRENT%%%%PYTHON_SITELIBDIR%%/%%EGG_INFO%% -@dirrm %%PYTHON_SITELIBDIR%%/testoob/running -@dirrm %%PYTHON_SITELIBDIR%%/testoob/reporting -@dirrm %%PYTHON_SITELIBDIR%%/testoob/compatibility -@dirrm %%PYTHON_SITELIBDIR%%/testoob/commandline -@dirrm %%PYTHON_SITELIBDIR%%/testoob +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/scripts/testoob +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/asserter.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/asserter.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/asserter.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/capabilities.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/capabilities.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/capabilities.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/collecting.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/collecting.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/collecting.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/bgcolor_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/bgcolor_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/bgcolor_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/color_mode_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/color_mode_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/color_mode_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/glob_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/glob_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/glob_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/html_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/html_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/html_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/immediate_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/immediate_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/immediate_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/list_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/list_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/list_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/parsing.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/parsing.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/parsing.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/pbar_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/pbar_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/pbar_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/pdf_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/pdf_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/pdf_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/processes_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/processes_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/processes_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/randomize_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/randomize_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/randomize_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/regex_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/regex_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/regex_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/repeat_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/repeat_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/repeat_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/silent_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/silent_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/silent_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/time_each_test_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/time_each_test_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/time_each_test_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/timed_repeat_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/timed_repeat_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/timed_repeat_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/xml_option.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/xml_option.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline/xml_option.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/SimpleXMLWriter.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/SimpleXMLWriter.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/SimpleXMLWriter.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/itertools.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/itertools.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/itertools.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/optparse.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/optparse.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/optparse.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/sets.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/sets.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/sets.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/subprocess.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/subprocess.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/subprocess.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/textwrap.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/textwrap.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/textwrap.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/trace.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/trace.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility/trace.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/coverage.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/coverage.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/coverage.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/exceptions.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/exceptions.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/exceptions.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/extracting.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/extracting.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/extracting.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/main.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/main.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/main.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/profiling.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/profiling.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/profiling.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/base.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/base.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/base.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/color_support.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/color_support.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/color_support.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/colored.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/colored.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/colored.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/common.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/common.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/common.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/err_info.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/err_info.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/err_info.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_standalone.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_standalone.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_standalone.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_xsl.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_xsl.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_xsl.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_xslt.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_xslt.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/html_xslt.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/options.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/options.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/options.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/pdf.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/pdf.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/pdf.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/progress_bar.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/progress_bar.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/progress_bar.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/reporter_proxy.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/reporter_proxy.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/reporter_proxy.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/test_info.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/test_info.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/test_info.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/textstream.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/textstream.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/textstream.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xml.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xml.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xml.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xslconverters.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xslconverters.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xslconverters.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xslt.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xslt.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting/xslt.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/run_cmd.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/run_cmd.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/run_cmd.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/baserunner.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/baserunner.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/baserunner.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/convenience.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/convenience.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/convenience.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/fixture_decorators.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/fixture_decorators.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/fixture_decorators.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/listingrunner.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/listingrunner.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/listingrunner.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/processed_helper.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/processed_helper.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/processed_helper.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/processedrunner.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/processedrunner.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/processedrunner.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/pyro_runner.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/pyro_runner.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/pyro_runner.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/simplerunner.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/simplerunner.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/simplerunner.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/threadedrunner.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/threadedrunner.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/threadedrunner.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/threadpool.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/threadpool.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running/threadpool.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/test_loaders.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/test_loaders.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/test_loaders.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/testing.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/testing.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/testing.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/utils.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/utils.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/utils.pyo +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/running +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/reporting +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/compatibility +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob/commandline +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/testoob +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/scripts +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% --- py26-testoob-1.15.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:50:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D016B106564A; Tue, 26 Oct 2010 12:50:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A5BE88FC08; Tue, 26 Oct 2010 12:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QCoCup029686; Tue, 26 Oct 2010 12:50:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QCoCgI029675; Tue, 26 Oct 2010 12:50:12 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 12:50:12 GMT Message-Id: <201010261250.o9QCoCgI029675@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151750: [MAINTAINER] www/p5-Catalyst-Model-Adaptor: update to 0.09 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:50:12 -0000 Synopsis: [MAINTAINER] www/p5-Catalyst-Model-Adaptor: update to 0.09 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 12:50:12 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151750 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 12:50:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F82F1065672; Tue, 26 Oct 2010 12:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 757B38FC16; Tue, 26 Oct 2010 12:50:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QCoHUo030288; Tue, 26 Oct 2010 12:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QCoHSR030279; Tue, 26 Oct 2010 12:50:17 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 12:50:17 GMT Message-Id: <201010261250.o9QCoHSR030279@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jadawin@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151751: [patch] devel/py-testoob: update to 1.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 12:50:17 -0000 Synopsis: [patch] devel/py-testoob: update to 1.15 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 12:50:16 UTC 2010 Responsible-Changed-Why: jadawin@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151751 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 13:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C0F81065679 for ; Tue, 26 Oct 2010 13:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 375678FC22 for ; Tue, 26 Oct 2010 13:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QDA8x3050447 for ; Tue, 26 Oct 2010 13:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QDA8KJ050446; Tue, 26 Oct 2010 13:10:08 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 13:10:08 GMT Resent-Message-Id: <201010261310.o9QDA8KJ050446@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DC181065744 for ; Tue, 26 Oct 2010 13:08:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 6AF468FC1B for ; Tue, 26 Oct 2010 13:08:23 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9QD8Nds038233 for ; Tue, 26 Oct 2010 13:08:23 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9QD8M8R038232; Tue, 26 Oct 2010 13:08:22 GMT (envelope-from nobody) Message-Id: <201010261308.o9QD8M8R038232@www.freebsd.org> Date: Tue, 26 Oct 2010 13:08:22 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151753: [PATCH] update science/peekabot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 13:10:08 -0000 >Number: 151753 >Category: ports >Synopsis: [PATCH] update science/peekabot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 13:10:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 8.1-STABLE >Organization: none >Environment: FreeBSD 8.1-STABLE >Description: 1. update to 0.8.1 2. remove files/* 3. remove PNG type patches >How-To-Repeat: >Fix: Patch attached with submission follows: Index: peekabot/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/science/peekabot/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- peekabot/Makefile 15 Jun 2010 01:01:13 -0000 1.18 +++ peekabot/Makefile 26 Oct 2010 13:02:40 -0000 @@ -6,18 +6,17 @@ # PORTNAME= peekabot -PORTVERSION= 0.7.2 -PORTREVISION= 4 +PORTVERSION= 0.8.1 CATEGORIES= science -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.7.x/ \ - http://distfiles.officialunix.com/ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.8.x/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Distributed real-time 3D visualization tool for robotics researchers LIB_DEPENDS= boost_regex.4:${PORTSDIR}/devel/boost-libs \ xerces-c.27:${PORTSDIR}/textproc/xerces-c2\ - fltk.1:${PORTSDIR}/x11-toolkits/fltk + fltk.1:${PORTSDIR}/x11-toolkits/fltk \ + gtkglextmm-x11-1.2:${PORTSDIR}/x11-toolkits/gtkglextmm GNU_CONFIGURE= yes CONFIGURE_ENV= LDFLAGS="`fltk-config --ldflags`" \ @@ -25,19 +24,13 @@ USE_LDCONFIG= yes USE_BZIP2= yes USE_GMAKE= yes +#Internal compiler error with < 4.4 +USE_GCC= 4.4+ .include -.if ${OSVERSION} < 700042 -USE_GCC= 4.2+ -.endif - .if ${ARCH} == "sparc64" BROKEN= does not compile with boost on sparc64 .endif -post-patch: - ${REINPLACE_CMD} -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \ - ${WRKSRC}/src/3rdparty/png++/io_base.hpp - .include Index: peekabot/distinfo =================================================================== RCS file: /usr/local/freebsdcvs/ports/science/peekabot/distinfo,v retrieving revision 1.4 diff -u -r1.4 distinfo --- peekabot/distinfo 5 Nov 2009 14:57:18 -0000 1.4 +++ peekabot/distinfo 26 Oct 2010 13:02:40 -0000 @@ -1,3 +1,3 @@ -MD5 (peekabot-0.7.2.tar.bz2) = 091f588e3b1931de2454539c797f7526 -SHA256 (peekabot-0.7.2.tar.bz2) = aa27e4082bb42cdc770d0090aae96b74b8a7014d8a36325e69b8d1553a4ff7b4 -SIZE (peekabot-0.7.2.tar.bz2) = 2546064 +MD5 (peekabot-0.8.1.tar.bz2) = 375e1db89dce6581fb3272b1de1c854f +SHA256 (peekabot-0.8.1.tar.bz2) = 870160df54666d2843d4663bbdccb78b21d6475cc0c7c5706444500eafa569bd +SIZE (peekabot-0.8.1.tar.bz2) = 2706247 Index: peekabot/pkg-plist =================================================================== RCS file: /usr/local/freebsdcvs/ports/science/peekabot/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- peekabot/pkg-plist 23 Aug 2009 15:48:18 -0000 1.2 +++ peekabot/pkg-plist 26 Oct 2010 13:02:40 -0000 @@ -2,11 +2,10 @@ bin/peekabot include/peekabot.hh include/peekabot/Action.hh +include/peekabot/Any.hh include/peekabot/Deprecated.hh -include/peekabot/Matrix.hh include/peekabot/PathIdentifier.hh include/peekabot/Types.hh -include/peekabot/Vector.hh include/peekabot/Visibility.hh include/peekabot/Version.hh include/peekabot/client/DelayedDispatch.hh @@ -17,7 +16,6 @@ include/peekabot/client/Recording.hh include/peekabot/client/Result.hh include/peekabot/client/Status.hh -include/peekabot/client/any_dl.hpp include/peekabot/client/proxies/CameraProxy.hh include/peekabot/client/proxies/CircleProxy.hh include/peekabot/client/proxies/CubeProxy.hh @@ -39,48 +37,45 @@ include/peekabot/client/proxies/SliderProxy.hh include/peekabot/client/proxies/SphereProxy.hh include/peekabot/client/proxies/VertexBasedProxy.hh +include/peekabot/client/proxies/OccupancyGrid3DProxy.hh +include/peekabot/client/proxies/TriMeshProxy.hh +include/peekabot/client/proxies/PolylineProxy.hh lib/libpeekabot.a lib/libpeekabot.la lib/libpeekabot.so -lib/libpeekabot.so.5 +lib/libpeekabot.so.6 %%DATADIR%%/data/default_scene.xml %%DATADIR%%/fonts/COPYING %%DATADIR%%/fonts/FreeSerif.ttf -%%DATADIR%%/images/add_camera.png -%%DATADIR%%/images/camera_object.png -%%DATADIR%%/images/camera_object2.png -%%DATADIR%%/images/camera_object3.png -%%DATADIR%%/images/circle_object.png -%%DATADIR%%/images/cont_snapshot.png -%%DATADIR%%/images/cube_object.png -%%DATADIR%%/images/cube_object_aa.png -%%DATADIR%%/images/cylinder_object.png -%%DATADIR%%/images/cylinder_object_aa.png -%%DATADIR%%/images/dof.png -%%DATADIR%%/images/grid.png -%%DATADIR%%/images/groundplane.png -%%DATADIR%%/images/group_object.png -%%DATADIR%%/images/label.png -%%DATADIR%%/images/light_object.png -%%DATADIR%%/images/line_cloud.png -%%DATADIR%%/images/locked.png -%%DATADIR%%/images/move.png -%%DATADIR%%/images/occupancy_grid_2d.png -%%DATADIR%%/images/ortho_mode.png -%%DATADIR%%/images/ortho_mode_aa.png -%%DATADIR%%/images/perspective_mode.png -%%DATADIR%%/images/perspective_mode_aa.png -%%DATADIR%%/images/point_cloud.png -%%DATADIR%%/images/polygon_object.png -%%DATADIR%%/images/polyline_object.png -%%DATADIR%%/images/polyline_object_aa.png -%%DATADIR%%/images/rotate.png -%%DATADIR%%/images/snapshot.png -%%DATADIR%%/images/snapshot_disabled.png -%%DATADIR%%/images/sphere_object.png -%%DATADIR%%/images/teapot.png -%%DATADIR%%/images/topdown.png -%%DATADIR%%/images/topdown_aa.png +%%DATADIR%%/icons/objects/camera-16.png +%%DATADIR%%/icons/objects/circle-16.png +%%DATADIR%%/icons/objects/cube-16.png +%%DATADIR%%/icons/objects/cylinder-16.png +%%DATADIR%%/icons/objects/dof-16.png +%%DATADIR%%/icons/objects/grid-16.png +%%DATADIR%%/icons/objects/label-16.png +%%DATADIR%%/icons/objects/line-cloud-16.png +%%DATADIR%%/icons/objects/model-16.png +%%DATADIR%%/icons/objects/og2d-16.png +%%DATADIR%%/icons/objects/og3d-16.png +%%DATADIR%%/icons/objects/point-cloud-16.png +%%DATADIR%%/icons/objects/polygon-16.png +%%DATADIR%%/icons/objects/polyline-16.png +%%DATADIR%%/icons/objects/sphere-16.png +%%DATADIR%%/icons/objects/tri-mesh-16.png +%%DATADIR%%/icons/log-22.png +%%DATADIR%%/icons/log-error-22.png +%%DATADIR%%/icons/move-tool-16.png +%%DATADIR%%/icons/move-tool-22.png +%%DATADIR%%/icons/navigate-tool-22.png +%%DATADIR%%/icons/ortho-16.png +%%DATADIR%%/icons/ortho-22.png +%%DATADIR%%/icons/rotate-tool-16.png +%%DATADIR%%/icons/rotate-tool-22.png +%%DATADIR%%/icons/screenshot-16.png +%%DATADIR%%/icons/screenshot-22.png +%%DATADIR%%/icons/top-down-16.png +%%DATADIR%%/icons/top-down-22.png %%DATADIR%%/schemas/basic_types.xsd %%DATADIR%%/schemas/camera.xsd %%DATADIR%%/schemas/circle.xsd @@ -100,11 +95,18 @@ %%DATADIR%%/schemas/scene_object.xsd %%DATADIR%%/schemas/slider.xsd %%DATADIR%%/schemas/sphere.xsd +%%DATADIR%%/schemas/tri_mesh.xsd +%%DATADIR%%/schemas/polyline.xsd +%%DATADIR%%/peekabot.ui +lib/pkgconfig/peekabot.pc @dirrm %%DATADIR%%/schemas @dirrm %%DATADIR%%/images @dirrm %%DATADIR%%/fonts @dirrm %%DATADIR%%/data +@dirrm %%DATADIR%%/icons/objects +@dirrm %%DATADIR%%/icons @dirrm %%DATADIR%% @dirrm include/peekabot/client/proxies @dirrm include/peekabot/client @dirrm include/peekabot +@dirrmtry lib/pkgconfig Index: peekabot/files/patch-src-3rdparty-png++-config.hpp =================================================================== RCS file: peekabot/files/patch-src-3rdparty-png++-config.hpp diff -N peekabot/files/patch-src-3rdparty-png++-config.hpp --- peekabot/files/patch-src-3rdparty-png++-config.hpp 22 Jun 2009 15:55:11 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,14 +0,0 @@ ---- src/3rdparty/png++/config.hpp.orig 2009-06-15 02:57:01.000000000 +0400 -+++ src/3rdparty/png++/config.hpp 2009-06-22 02:47:55.000000000 +0400 -@@ -47,6 +47,11 @@ - #include - #include - -+#elif defined(__FreeBSD__) -+ -+#include -+#include -+ - #else - - #error Byte-order could not be detected. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 13:30:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 608F3106566C for ; Tue, 26 Oct 2010 13:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 220DE8FC15 for ; Tue, 26 Oct 2010 13:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QDUCQX070573 for ; Tue, 26 Oct 2010 13:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QDUCMe070563; Tue, 26 Oct 2010 13:30:12 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 13:30:12 GMT Resent-Message-Id: <201010261330.o9QDUCMe070563@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A555106564A for ; Tue, 26 Oct 2010 13:23:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 2116A8FC0C for ; Tue, 26 Oct 2010 13:23:47 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9QDNkFj054694 for ; Tue, 26 Oct 2010 13:23:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9QDNkGU054669; Tue, 26 Oct 2010 13:23:46 GMT (envelope-from nobody) Message-Id: <201010261323.o9QDNkGU054669@www.freebsd.org> Date: Tue, 26 Oct 2010 13:23:46 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151754: [PATCH] add maintainer for various ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 13:30:13 -0000 >Number: 151754 >Category: ports >Synopsis: [PATCH] add maintainer for various ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 13:30:12 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 8.1-STABLE >Organization: none >Environment: FreeBSD 8.1-STABLE >Description: I have gotten back into ports, so add me as maintainer for some of my old ports. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: audio/csound/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/audio/csound/Makefile,v retrieving revision 1.53 diff -u -r1.53 Makefile --- audio/csound/Makefile 15 Jun 2010 01:01:12 -0000 1.53 +++ audio/csound/Makefile 25 Oct 2010 18:05:07 -0000 @@ -17,7 +17,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:src DIST_SUBDIR= csound -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Sound synthesizer LIB_DEPENDS= sndfile:${PORTSDIR}/audio/libsndfile Index: audio/smasher/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/audio/smasher/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- audio/smasher/Makefile 15 Jun 2010 01:01:12 -0000 1.13 +++ audio/smasher/Makefile 25 Oct 2010 20:52:10 -0000 @@ -12,7 +12,7 @@ MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-source -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Cross platform audio loop slicer LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile \ Index: editors/diakonos/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/editors/diakonos/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- editors/diakonos/Makefile 15 Jun 2010 01:01:12 -0000 1.7 +++ editors/diakonos/Makefile 25 Oct 2010 18:05:22 -0000 @@ -11,7 +11,7 @@ MASTER_SITES= http://purepistos.net/diakonos/ \ http://distfiles.officialunix.com/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A Linux editor for the masses USE_RUBY= yes Index: ftp/IglooFTP/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/ftp/IglooFTP/Makefile,v retrieving revision 1.32 diff -u -r1.32 Makefile --- ftp/IglooFTP/Makefile 24 Mar 2009 12:51:18 -0000 1.32 +++ ftp/IglooFTP/Makefile 25 Oct 2010 21:00:11 -0000 @@ -14,7 +14,7 @@ MASTER_SITE_SUBDIR= system/network/file-transfer DISTNAME= ${PORTNAME}-${PORTVERSION}.src -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Easy to use FTP client for X Window System WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src Index: games/abuse/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/games/abuse/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- games/abuse/Makefile 15 Dec 2009 19:48:23 -0000 1.12 +++ games/abuse/Makefile 25 Oct 2010 18:05:39 -0000 @@ -16,7 +16,7 @@ DISTFILES= abuse_datafiles.tar.gz EXTRACT_ONLY= # empty -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= The classic 2D action game Abuse RUN_DEPENDS= abuse.sdl:${PORTSDIR}/games/abuse_sdl Index: games/abuse_sdl/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/games/abuse_sdl/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- games/abuse_sdl/Makefile 15 Dec 2009 19:48:24 -0000 1.25 +++ games/abuse_sdl/Makefile 25 Oct 2010 18:05:53 -0000 @@ -14,7 +14,7 @@ http://casemanl.linux.tucows.com/files/ DISTNAME= abuse-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= An SDL port of the Abuse game engine # Add in the oposite, request games/abuse if being installed directly Index: graphics/mesa-demos/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/graphics/mesa-demos/Makefile,v retrieving revision 1.31 diff -u -r1.31 Makefile --- graphics/mesa-demos/Makefile 8 Oct 2010 20:40:44 -0000 1.31 +++ graphics/mesa-demos/Makefile 25 Oct 2010 22:02:37 -0000 @@ -10,7 +10,7 @@ CATEGORIES= graphics PKGNAMEPREFIX= mesa- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= OpenGL demos distributed with Mesa .if !defined(WITHOUT_NOUVEAU) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 14:10:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1645B106566C for ; Tue, 26 Oct 2010 14:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EA69E8FC12 for ; Tue, 26 Oct 2010 14:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QEA6gd012329 for ; Tue, 26 Oct 2010 14:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QEA6wY012328; Tue, 26 Oct 2010 14:10:06 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 14:10:06 GMT Resent-Message-Id: <201010261410.o9QEA6wY012328@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, TERAMOTO Masahiro Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F7D3106566B for ; Tue, 26 Oct 2010 14:02:18 +0000 (UTC) (envelope-from markun@daemon.onohara.to) Received: from daemon.onohara.to (daemon.onohara.to [204.109.63.90]) by mx1.freebsd.org (Postfix) with ESMTP id 669A28FC1A for ; Tue, 26 Oct 2010 14:02:18 +0000 (UTC) Received: by daemon.onohara.to (Postfix, from userid 1000) id B3FAC2841E; Tue, 26 Oct 2010 23:02:16 +0900 (JST) Message-Id: <20101026140216.B3FAC2841E@daemon.onohara.to> Date: Tue, 26 Oct 2010 23:02:16 +0900 (JST) From: TERAMOTO Masahiro To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151755: [MAINTAINER] www/p5-HTML-TreeBuilder-LibXML: update to 0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 14:10:07 -0000 >Number: 151755 >Category: ports >Synopsis: [MAINTAINER] www/p5-HTML-TreeBuilder-LibXML: update to 0.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 14:10:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: TERAMOTO Masahiro >Release: FreeBSD 7.3-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD daemon.onohara.to 7.3-RELEASE-p2 FreeBSD 7.3-RELEASE-p2 #0: Mon Jul 12 19:04:04 UTC 2010 >Description: - Update to 0.12 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-HTML-TreeBuilder-LibXML-0.12.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/p5-HTML-TreeBuilder-LibXML/Makefile /usr/home/markun/work/ports/p5-HTML-TreeBuilder-LibXML/Makefile --- /usr/ports/www/p5-HTML-TreeBuilder-LibXML/Makefile 2009-10-14 19:35:06.000000000 +0900 +++ /usr/home/markun/work/ports/p5-HTML-TreeBuilder-LibXML/Makefile 2010-10-26 23:01:40.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= HTML-TreeBuilder-LibXML -PORTVERSION= 0.11 +PORTVERSION= 0.12 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN --exclude=CVS /usr/ports/www/p5-HTML-TreeBuilder-LibXML/distinfo /usr/home/markun/work/ports/p5-HTML-TreeBuilder-LibXML/distinfo --- /usr/ports/www/p5-HTML-TreeBuilder-LibXML/distinfo 2009-10-14 19:35:06.000000000 +0900 +++ /usr/home/markun/work/ports/p5-HTML-TreeBuilder-LibXML/distinfo 2010-10-26 23:01:40.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (HTML-TreeBuilder-LibXML-0.11.tar.gz) = d52997df6fb69bdac081a234c32eb6ea -SHA256 (HTML-TreeBuilder-LibXML-0.11.tar.gz) = 2c210ca3fd5606ee7e5360e1020ad19f415cb006abf67410ff138dcc8c767a9f -SIZE (HTML-TreeBuilder-LibXML-0.11.tar.gz) = 45381 +MD5 (HTML-TreeBuilder-LibXML-0.12.tar.gz) = 6edd272909b8fe4b5d4056e09cfaaae2 +SHA256 (HTML-TreeBuilder-LibXML-0.12.tar.gz) = be807d654f4b336007380e7b2c5688370efba4e9abd29a2ed07274929d62ab6b +SIZE (HTML-TreeBuilder-LibXML-0.12.tar.gz) = 24471 --- p5-HTML-TreeBuilder-LibXML-0.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 14:10:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60DBB1065674 for ; Tue, 26 Oct 2010 14:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 415998FC16 for ; Tue, 26 Oct 2010 14:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QEA7uf012338 for ; Tue, 26 Oct 2010 14:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QEA7GP012337; Tue, 26 Oct 2010 14:10:07 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 14:10:07 GMT Resent-Message-Id: <201010261410.o9QEA7GP012337@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, TERAMOTO Masahiro Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D0331065670 for ; Tue, 26 Oct 2010 14:02:37 +0000 (UTC) (envelope-from markun@daemon.onohara.to) Received: from daemon.onohara.to (daemon.onohara.to [204.109.63.90]) by mx1.freebsd.org (Postfix) with ESMTP id 33FBF8FC17 for ; Tue, 26 Oct 2010 14:02:37 +0000 (UTC) Received: by daemon.onohara.to (Postfix, from userid 1000) id 1A1342841E; Tue, 26 Oct 2010 23:02:36 +0900 (JST) Message-Id: <20101026140236.1A1342841E@daemon.onohara.to> Date: Tue, 26 Oct 2010 23:02:36 +0900 (JST) From: TERAMOTO Masahiro To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151756: [MAINTAINER] textproc/p5-YAML-LibYAML: update to 0.34 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 14:10:07 -0000 >Number: 151756 >Category: ports >Synopsis: [MAINTAINER] textproc/p5-YAML-LibYAML: update to 0.34 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 14:10:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: TERAMOTO Masahiro >Release: FreeBSD 7.3-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD daemon.onohara.to 7.3-RELEASE-p2 FreeBSD 7.3-RELEASE-p2 #0: Mon Jul 12 19:04:04 UTC 2010 >Description: - Update to 0.34 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-YAML-LibYAML-0.34.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/p5-YAML-LibYAML/Makefile /usr/home/markun/work/ports/p5-YAML-LibYAML/Makefile --- /usr/ports/textproc/p5-YAML-LibYAML/Makefile 2010-04-25 09:15:33.000000000 +0900 +++ /usr/home/markun/work/ports/p5-YAML-LibYAML/Makefile 2010-10-26 23:01:42.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= YAML-LibYAML -PORTVERSION= 0.33 +PORTVERSION= 0.34 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN --exclude=CVS /usr/ports/textproc/p5-YAML-LibYAML/distinfo /usr/home/markun/work/ports/p5-YAML-LibYAML/distinfo --- /usr/ports/textproc/p5-YAML-LibYAML/distinfo 2010-04-25 09:15:33.000000000 +0900 +++ /usr/home/markun/work/ports/p5-YAML-LibYAML/distinfo 2010-10-26 23:01:43.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (YAML-LibYAML-0.33.tar.gz) = 001a21618af05ee3a12dbb8cd6bd9b13 -SHA256 (YAML-LibYAML-0.33.tar.gz) = 70c4f7604aeedfc374b64c94745963391eea192d285ffbf4234c4463d78363bc -SIZE (YAML-LibYAML-0.33.tar.gz) = 146030 +MD5 (YAML-LibYAML-0.34.tar.gz) = 85b4427e88597392d9cdefbad0469245 +SHA256 (YAML-LibYAML-0.34.tar.gz) = 99f5a1c86fe487e4e15cbbff7a4e53f8b5ba76179713df9599f2eff38817dc90 +SIZE (YAML-LibYAML-0.34.tar.gz) = 145778 --- p5-YAML-LibYAML-0.34.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 14:10:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C942510656E0; Tue, 26 Oct 2010 14:10:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9EA468FC19; Tue, 26 Oct 2010 14:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QEABvp012477; Tue, 26 Oct 2010 14:10:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QEAB4Y012473; Tue, 26 Oct 2010 14:10:11 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 14:10:11 GMT Message-Id: <201010261410.o9QEAB4Y012473@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151755: [MAINTAINER] www/p5-HTML-TreeBuilder-LibXML: update to 0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 14:10:11 -0000 Synopsis: [MAINTAINER] www/p5-HTML-TreeBuilder-LibXML: update to 0.12 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 14:10:11 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151755 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 14:10:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C2E010656B1; Tue, 26 Oct 2010 14:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E651E8FC1E; Tue, 26 Oct 2010 14:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QEAFJj012933; Tue, 26 Oct 2010 14:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QEAFfW012929; Tue, 26 Oct 2010 14:10:15 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 14:10:15 GMT Message-Id: <201010261410.o9QEAFfW012929@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151756: [MAINTAINER] textproc/p5-YAML-LibYAML: update to 0.34 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 14:10:16 -0000 Synopsis: [MAINTAINER] textproc/p5-YAML-LibYAML: update to 0.34 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 14:10:15 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151756 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 14:14:55 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FB10106566B; Tue, 26 Oct 2010 14:14:55 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EA2198FC0A; Tue, 26 Oct 2010 14:14:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QEEs80022935; Tue, 26 Oct 2010 14:14:54 GMT (envelope-from wxs@freefall.freebsd.org) Received: (from wxs@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QEEs03022931; Tue, 26 Oct 2010 14:14:54 GMT (envelope-from wxs) Date: Tue, 26 Oct 2010 14:14:54 GMT Message-Id: <201010261414.o9QEEs03022931@freefall.freebsd.org> To: wxs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wxs@FreeBSD.org From: wxs@FreeBSD.org Cc: Subject: Re: ports/151506: [PATCH] security/heimdal: update to 1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 14:14:55 -0000 Synopsis: [PATCH] security/heimdal: update to 1.4 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Tue Oct 26 14:14:54 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151506 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 18:10:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E4111065713 for ; Tue, 26 Oct 2010 18:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D2C758FC24 for ; Tue, 26 Oct 2010 18:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QIAA7H060475 for ; Tue, 26 Oct 2010 18:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QIAAfI060474; Tue, 26 Oct 2010 18:10:10 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 18:10:10 GMT Resent-Message-Id: <201010261810.o9QIAAfI060474@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pedro Garcia Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F9291065670 for ; Tue, 26 Oct 2010 18:09:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id F1F698FC20 for ; Tue, 26 Oct 2010 18:09:02 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9QI92S3051948 for ; Tue, 26 Oct 2010 18:09:02 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9QI92Ih051943; Tue, 26 Oct 2010 18:09:02 GMT (envelope-from nobody) Message-Id: <201010261809.o9QI92Ih051943@www.freebsd.org> Date: Tue, 26 Oct 2010 18:09:02 GMT From: Pedro Garcia To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151759: New port: desktutils/x-tile A tiling application for X X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 18:10:11 -0000 >Number: 151759 >Category: ports >Synopsis: New port: desktutils/x-tile A tiling application for X >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 18:10:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pedro Garcia >Release: 8.1-RELEASE >Organization: >Environment: FreeBSD freebsd 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: X-tile is a gnome applet for your panel (or optionally a standalone application, working with kde as well) that allows you to select a number of windows and tile them in different ways. This is especially useful for comparing products in separate web pages, or for programmers refering to documentation as they are programming. >How-To-Repeat: >Fix: Please, rename the x-tile.txt to x-tile.shar Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # Makefile # distinfo # pkg-descr # pkg-plist # echo x - Makefile sed 's/^X//' >Makefile << 'b67911656ef5d18c4ae36cb6741b7965' X# New ports collection makefile for: x-tile X# Date created: 2010-09-17 X# Whom: Pedro Garcia Freitas X# X# $FreeBSD$ X# X XPORTNAME= x-tile XPORTVERSION= 1.8.1 XCATEGORIES= deskutils devel python XMASTER_SITES= http://www.sawp.com.br/share/xtile/ XDISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz XEXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}.tar.gz X XMAINTAINER= sawp@sawp.com.br XCOMMENT= A Gnome Applet to Tile the Opened Windows X XUSE_PYTHON= yes XUSE_PYDISTUTILS= yes X X.include X Xpost-patch: X ${REINPLACE_CMD} -i "" -e 's|: docfiles|: []|g' ${WRKSRC}/setup.py X X.include b67911656ef5d18c4ae36cb6741b7965 echo x - distinfo sed 's/^X//' >distinfo << '57677d168a5ec21bdf22c9501f075a8f' XMD5 (x-tile-1.8.1.tar.gz) = 29280b931e168d70edea4c9a9d3ff09a XSHA256 (x-tile-1.8.1.tar.gz) = e828ad4b918d0bfddce1ddfd6648c297b91edfa65ab08ac5c8a402180f57483b XSIZE (x-tile-1.8.1.tar.gz) = 171631 57677d168a5ec21bdf22c9501f075a8f echo x - pkg-descr sed 's/^X//' >pkg-descr << '7f9555c3c1089940396b503dd37f3979' XX-tile is a gnome applet for your panel (or optionally a standalone application, working with kde as well) that allows you to select a number of windows and tile them in different ways. XThis is especially useful for comparing products in separate web pages, or for programmers refering to documentation as they are programming. X Xwww.giuspen.com/x-tile/ 7f9555c3c1089940396b503dd37f3979 echo x - pkg-plist sed 's/^X//' >pkg-plist << '842cde48cf18b70a11b15515ca566742' Xbin/x-tile Xlib/bonobo/servers/x-tile.server Xlib/python2.6/site-packages/X_Tile-1.8.1-py2.6.egg-info Xshare/applications/x-tile.desktop Xshare/locale/de/LC_MESSAGES/x-tile.mo Xshare/locale/es/LC_MESSAGES/x-tile.mo Xshare/locale/fr/LC_MESSAGES/x-tile.mo Xshare/locale/it/LC_MESSAGES/x-tile.mo Xshare/locale/ja/LC_MESSAGES/x-tile.mo Xshare/locale/pt_BR/LC_MESSAGES/x-tile.mo Xshare/locale/ru/LC_MESSAGES/x-tile.mo Xshare/locale/zh_TW/LC_MESSAGES/x-tile.mo Xshare/pixmaps/x-tile.svg Xshare/x-tile/glade/checkbox_checked.svg Xshare/x-tile/glade/checkbox_unchecked.svg Xshare/x-tile/glade/close-checked-windows.svg Xshare/x-tile/glade/help-contents.svg Xshare/x-tile/glade/maximize-checked-windows.svg Xshare/x-tile/glade/reload-windows-list.svg Xshare/x-tile/glade/tile-custom-1-exe.svg Xshare/x-tile/glade/tile-custom-1-set.svg Xshare/x-tile/glade/tile-custom-2-exe.svg Xshare/x-tile/glade/tile-custom-2-set.svg Xshare/x-tile/glade/tile-custom-exe.svg Xshare/x-tile/glade/tile-custom-set.svg Xshare/x-tile/glade/tile-horizontally.svg Xshare/x-tile/glade/tile-quad.svg Xshare/x-tile/glade/tile-triangle-down.svg Xshare/x-tile/glade/tile-triangle-left.svg Xshare/x-tile/glade/tile-triangle-right.svg Xshare/x-tile/glade/tile-triangle-up.svg Xshare/x-tile/glade/tile-vertically.svg Xshare/x-tile/glade/toolbar.png Xshare/x-tile/glade/unmaximize-checked-windows.svg Xshare/x-tile/glade/vbuttonbox.png Xshare/x-tile/glade/x-tile.glade Xshare/x-tile/glade/x-tile.glade.h Xshare/x-tile/glade/x-tile.svg Xshare/x-tile/modules/cons.py Xshare/x-tile/modules/core.py Xshare/x-tile/modules/globs.py Xshare/x-tile/modules/support.py Xshare/x-tile/modules/tilings.py X@dirrm share/x-tile/modules X@dirrm share/x-tile/glade X@dirrm share/x-tile X@dirrm share/applications X@dirrm lib/python2.6/site-packages X@dirrm lib/python2.6 X@dirrm lib/bonobo/servers X@dirrm lib/bonobo 842cde48cf18b70a11b15515ca566742 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 19:10:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D0931065672 for ; Tue, 26 Oct 2010 19:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 28B1D8FC13 for ; Tue, 26 Oct 2010 19:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QJA7bX021928 for ; Tue, 26 Oct 2010 19:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QJA780021927; Tue, 26 Oct 2010 19:10:07 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 19:10:07 GMT Resent-Message-Id: <201010261910.o9QJA780021927@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas-Martin Seck Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 989EE1065672 for ; Tue, 26 Oct 2010 19:02:31 +0000 (UTC) (envelope-from tmseck@netcologne.de) Received: from smtp5.netcologne.de (smtp5.netcologne.de [194.8.194.25]) by mx1.freebsd.org (Postfix) with ESMTP id 603718FC13 for ; Tue, 26 Oct 2010 19:02:30 +0000 (UTC) Received: from wcfields.tmseck.homedns.org (xdsl-78-35-54-243.netcologne.de [78.35.54.243]) by smtp5.netcologne.de (Postfix) with SMTP id 1501640D5CE for ; Tue, 26 Oct 2010 20:43:38 +0200 (CEST) Received: (qmail 89676 invoked by uid 1001); 26 Oct 2010 18:43:34 -0000 Message-Id: <20101026184334.89675.qmail@wcfields.tmseck.homedns.org> Date: 26 Oct 2010 18:43:34 -0000 From: Thomas-Martin Seck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151760: [Maintainer] www/squid31: update to 3.1.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 19:10:07 -0000 >Number: 151760 >Category: ports >Synopsis: [Maintainer] www/squid31: update to 3.1.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 19:10:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Thomas-Martin Seck >Release: FreeBSD 8.1-RELEASE amd64 >Organization: a private site in Germany >Environment: FreeBSD ports collection as of October 26, 2010. >Description: - Update to 3.1.9 - Replace two dead mirrors - Fix a bug in the squid rc script that caused the squid_conf rc.conf option to be non-functional >How-To-Repeat: >Fix: Apply this patch: Index: Makefile =================================================================== --- Makefile (.../www/squid31) (Revision 1885) +++ Makefile (.../local/squid31) (Revision 1885) @@ -61,13 +61,13 @@ http://mirror.aarnet.edu.au/pub/squid/squid/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/www/squid,} \ http://www.squid-cache.org/Versions/v3/3.1/ \ - http://www2.us.squid-cache.org/Versions/v3/3.1/ \ + http://www3.us.squid-cache.org/Versions/v3/3.1/ \ http://www1.at.squid-cache.org/Versions/v3/3.1/ \ http://www2.de.squid-cache.org/Versions/v3/3.1/ \ http://www.eu.squid-cache.org/Versions/v3/3.1/ \ http://www1.ie.squid-cache.org/Versions/v3/3.1/ \ http://www1.jp.squid-cache.org/Versions/v3/3.1/ \ - http://www2.tw.squid-cache.org/Versions/v3/3.1/ + http://www1.za.squid-cache.org/Versions/v3/3.1/ MASTER_SITE_SUBDIR= squid DISTNAME= squid-3.1.${SQUID_STABLE_VER} DIST_SUBDIR= squid3.1 @@ -88,7 +88,7 @@ LATEST_LINK= squid31 -SQUID_STABLE_VER= 8 +SQUID_STABLE_VER= 9 CONFLICTS= squid-2.[0-9].* squid-3.[^1].* cacheboy-[0-9]* lusca-head-[0-9]* GNU_CONFIGURE= yes Index: distinfo =================================================================== --- distinfo (.../www/squid31) (Revision 1885) +++ distinfo (.../local/squid31) (Revision 1885) @@ -1,3 +1,3 @@ -MD5 (squid3.1/squid-3.1.8.tar.bz2) = a8160dfba55ab7c400c622b72d39fc13 -SHA256 (squid3.1/squid-3.1.8.tar.bz2) = 088d4e798ca49e11713facccbd7ef3e7f9b16fc6eb86d59d0c43aa14d66501fe -SIZE (squid3.1/squid-3.1.8.tar.bz2) = 2423617 +MD5 (squid3.1/squid-3.1.9.tar.bz2) = 896ace723445ac168986ba8854437ce3 +SHA256 (squid3.1/squid-3.1.9.tar.bz2) = bcc0d8e391a442fdeef0fe4676d89eddfce3cd9d9391ba6c217b1aa57b378f03 +SIZE (squid3.1/squid-3.1.9.tar.bz2) = 2432312 Index: files/squid.in =================================================================== --- files/squid.in (.../www/squid31) (Revision 1885) +++ files/squid.in (.../local/squid31) (Revision 1885) @@ -77,6 +77,7 @@ squid_conf=${squid_conf:-"%%PREFIX%%/etc/squid/squid.conf"} squid_enable=${squid_enable:-"NO"} squid_fib=${squid_fib:-"NONE"} +squid_flags="-f ${squid_conf} ${squid_flags}" squid_pidfile=${squid_pidfile:-"/var/run/squid/squid.pid"} squid_user=${squid_user:-%%SQUID_UID%%} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 19:20:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D6F01065670 for ; Tue, 26 Oct 2010 19:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1788A8FC1A for ; Tue, 26 Oct 2010 19:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QJK7jm032472 for ; Tue, 26 Oct 2010 19:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QJK7bb032471; Tue, 26 Oct 2010 19:20:07 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 19:20:07 GMT Resent-Message-Id: <201010261920.o9QJK7bb032471@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Pawel Pekala" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB8E41065673 for ; Tue, 26 Oct 2010 19:10:21 +0000 (UTC) (envelope-from c0rn@o2.pl) Received: from moh1-ve1.go2.pl (moh1-ve2.go2.pl [193.17.41.132]) by mx1.freebsd.org (Postfix) with ESMTP id 25E5F8FC1C for ; Tue, 26 Oct 2010 19:10:20 +0000 (UTC) Received: from moh1-ve1.go2.pl (unknown [10.0.0.132]) by moh1-ve1.go2.pl (Postfix) with ESMTP id BB2115200A5 for ; Tue, 26 Oct 2010 21:10:17 +0200 (CEST) Received: from unknown (unknown [10.0.0.42]) by moh1-ve1.go2.pl (Postfix) with SMTP for ; Tue, 26 Oct 2010 21:10:17 +0200 (CEST) Received: from aecb47.neoplus.adsl.tpnet.pl [79.186.53.47] by poczta.o2.pl with ESMTP id pWAKvG; Tue, 26 Oct 2010 21:10:17 +0200 Message-Id: <1288120372.13005@caprica.slowicza.org> Date: Tue, 26 Oct 2010 21:12:52 +0200 From: "Pawel Pekala" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/151761: [maintainer] x11-themes/lxappearance fix build for ${OSVERSION} < 800000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 19:20:08 -0000 >Number: 151761 >Category: ports >Synopsis: [maintainer] x11-themes/lxappearance fix build for ${OSVERSION} < 800000 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 19:20:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD 8.1-RELEASE #2: Sat Aug 21 18:46:54 CEST 2010 corn@caprica.slowicza.org:/usr/obj/usr/src/sys/GENERIC >Description: - fix build for ${OSVERSION} < 800000 >How-To-Repeat: >Fix: --- lxappearance-0.5.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-themes/lxappearance/Makefile /home/corn/devel/lxappearance/Makefile --- /usr/ports/x11-themes/lxappearance/Makefile 2010-10-20 20:09:22.000000000 +0200 +++ /home/corn/devel/lxappearance/Makefile 2010-10-26 21:04:21.000000000 +0200 @@ -13,12 +13,19 @@ MAINTAINER= c0rn@o2.pl COMMENT= A desktop-independent theme switcher for GTK+ +LICENSE= GPLv2 + USE_GNOME= gnomehack gtk20 intlhack USE_GETTEXT= yes USE_GMAKE= yes GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes -LICENSE= GPLv2 +.include + +# earlier versions don't have mkdtemp(3) in stdlib.h +.if ${OSVERSION} < 800000 +EXTRA_PATCHES+= ${FILESDIR}/extra-src-utils.c +.endif -.include +.include diff -ruN --exclude=CVS /usr/ports/x11-themes/lxappearance/files/extra-src-utils.c /home/corn/devel/lxappearance/files/extra-src-utils.c --- /usr/ports/x11-themes/lxappearance/files/extra-src-utils.c 1970-01-01 01:00:00.000000000 +0100 +++ /home/corn/devel/lxappearance/files/extra-src-utils.c 2010-10-26 20:55:48.000000000 +0200 @@ -0,0 +1,11 @@ +--- src/utils.c.orig 2010-10-26 20:54:31.000000000 +0200 ++++ src/utils.c 2010-10-26 20:55:09.000000000 +0200 +@@ -27,7 +27,7 @@ + #include + #include + #include +- ++#include + #include "icon-theme.h" + + static void on_pid_exit(GPid pid, gint status, gpointer user_data) --- lxappearance-0.5.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 19:20:22 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26866106566B; Tue, 26 Oct 2010 19:20:22 +0000 (UTC) (envelope-from brucec@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F10608FC15; Tue, 26 Oct 2010 19:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QJKL27033834; Tue, 26 Oct 2010 19:20:21 GMT (envelope-from brucec@freefall.freebsd.org) Received: (from brucec@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QJKLDw033830; Tue, 26 Oct 2010 19:20:21 GMT (envelope-from brucec) Date: Tue, 26 Oct 2010 19:20:21 GMT Message-Id: <201010261920.o9QJKLDw033830@freefall.freebsd.org> To: brucec@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: brucec@FreeBSD.org Cc: Subject: Re: ports/151757: net/ushare: mark broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 19:20:22 -0000 Synopsis: net/ushare: mark broken Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: brucec Responsible-Changed-When: Tue Oct 26 19:19:54 UTC 2010 Responsible-Changed-Why: Ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=151757 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 20:10:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84731106566B for ; Tue, 26 Oct 2010 20:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4441F8FC18 for ; Tue, 26 Oct 2010 20:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QKAAdr083271 for ; Tue, 26 Oct 2010 20:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QKAArW083270; Tue, 26 Oct 2010 20:10:10 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 20:10:10 GMT Resent-Message-Id: <201010262010.o9QKAArW083270@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Pawel Pekala" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B1A3106566C for ; Tue, 26 Oct 2010 20:05:42 +0000 (UTC) (envelope-from c0rn@o2.pl) Received: from moh1-ve1.go2.pl (moh1-ve2.go2.pl [193.17.41.132]) by mx1.freebsd.org (Postfix) with ESMTP id 047A88FC18 for ; Tue, 26 Oct 2010 20:05:40 +0000 (UTC) Received: from moh1-ve1.go2.pl (unknown [10.0.0.132]) by moh1-ve1.go2.pl (Postfix) with ESMTP id 3789A520063 for ; Tue, 26 Oct 2010 22:05:39 +0200 (CEST) Received: from unknown (unknown [10.0.0.142]) by moh1-ve1.go2.pl (Postfix) with SMTP for ; Tue, 26 Oct 2010 22:05:38 +0200 (CEST) Received: from aecb47.neoplus.adsl.tpnet.pl [79.186.53.47] by poczta.o2.pl with ESMTP id jEtCGK; Tue, 26 Oct 2010 22:05:38 +0200 Message-Id: <1288123692.32287@caprica.slowicza.org> Date: Tue, 26 Oct 2010 22:08:12 +0200 From: "Pawel Pekala" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/151762: [maintainer] devel/upnp fix build for OSVERSION < 702000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 20:10:10 -0000 >Number: 151762 >Category: ports >Synopsis: [maintainer] devel/upnp fix build for OSVERSION < 702000 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 20:10:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD 8.1-RELEASE #2: Sat Aug 21 18:46:54 CEST 2010 corn@caprica.slowicza.org:/usr/obj/usr/src/sys/GENERIC >Description: - fix build for OSVERSION < 702000 >How-To-Repeat: >Fix: --- upnp-1.6.8_1,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/upnp/Makefile /home/corn/devel/upnp/Makefile --- /usr/ports/devel/upnp/Makefile 2010-10-22 17:40:40.000000000 +0200 +++ /home/corn/devel/upnp/Makefile 2010-10-26 22:04:57.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= upnp PORTVERSION= 1.6.8 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= SF/p${PORTNAME}/p${PORTNAME}/libUPnP%20${PORTVERSION} @@ -38,4 +39,11 @@ ${REINPLACE_CMD} '/^pkgconfigexecdir/s|$$(libdir)|$$(prefix)/libdata|' \ ${WRKSRC}/Makefile.in -.include +.include + +# strndup(3) was added in 7.2-RELEASE +.if ${OSVERSION} < 702000 +EXTRA_PATCHES+= ${FILESDIR}/extra-upnp-src-api-UpnpString.c +.endif + +.include diff -ruN --exclude=CVS /usr/ports/devel/upnp/files/extra-upnp-src-api-UpnpString.c /home/corn/devel/upnp/files/extra-upnp-src-api-UpnpString.c --- /usr/ports/devel/upnp/files/extra-upnp-src-api-UpnpString.c 1970-01-01 01:00:00.000000000 +0100 +++ /home/corn/devel/upnp/files/extra-upnp-src-api-UpnpString.c 2010-10-26 21:54:55.000000000 +0200 @@ -0,0 +1,14 @@ +--- upnp/src/api/UpnpString.c.orig 2010-10-26 21:46:15.000000000 +0200 ++++ upnp/src/api/UpnpString.c 2010-10-26 21:51:47.000000000 +0200 +@@ -165,8 +165,10 @@ + + int UpnpString_set_StringN(UpnpString *p, const char *s, size_t n) + { +- char *q = strndup(s, n); ++ char *q = malloc(n+1); + if (!q) goto error_handler1; ++ strncpy(q, s, n); ++ q[n-1] = '\0'; + free(((struct SUpnpString *)p)->m_string); + ((struct SUpnpString *)p)->m_length = strlen(q); + ((struct SUpnpString *)p)->m_string = q; --- upnp-1.6.8_1,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 21:21:31 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71D5C10656A3; Tue, 26 Oct 2010 21:21:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 485418FC13; Tue, 26 Oct 2010 21:21:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QLLV5f065412; Tue, 26 Oct 2010 21:21:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QLLVxR065408; Tue, 26 Oct 2010 21:21:31 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 21:21:31 GMT Message-Id: <201010262121.o9QLLVxR065408@freefall.freebsd.org> To: mwisnicki+freebsd@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151757: net/ushare: mark broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 21:21:31 -0000 Synopsis: net/ushare: mark broken State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Oct 26 21:21:30 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151757 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 21:30:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FD601065674 for ; Tue, 26 Oct 2010 21:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E9CF88FC12 for ; Tue, 26 Oct 2010 21:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QLUAhW065805 for ; Tue, 26 Oct 2010 21:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QLUAIH065799; Tue, 26 Oct 2010 21:30:10 GMT (envelope-from gnats) Date: Tue, 26 Oct 2010 21:30:10 GMT Message-Id: <201010262130.o9QLUAIH065799@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151757: net/ushare: mark broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 21:30:11 -0000 The following reply was made to PR ports/151757; it has been noted by GNATS. From: Edwin Groothuis To: votdev@gmx.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/151757: net/ushare: mark broken Date: Tue, 26 Oct 2010 21:21:29 UT Maintainer of net/ushare, Please note that PR ports/151757 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151757 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 21:50:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9AA2F106567A for ; Tue, 26 Oct 2010 21:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 780C58FC17 for ; Tue, 26 Oct 2010 21:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QLo8dd085498 for ; Tue, 26 Oct 2010 21:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QLo8O0085497; Tue, 26 Oct 2010 21:50:08 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 21:50:08 GMT Resent-Message-Id: <201010262150.o9QLo8O0085497@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Kreuzer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05F4B106566B for ; Tue, 26 Oct 2010 21:43:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id CF4858FC15 for ; Tue, 26 Oct 2010 21:43:07 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9QLh7m4020981 for ; Tue, 26 Oct 2010 21:43:07 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9QLh7bF020970; Tue, 26 Oct 2010 21:43:07 GMT (envelope-from nobody) Message-Id: <201010262143.o9QLh7bF020970@www.freebsd.org> Date: Tue, 26 Oct 2010 21:43:07 GMT From: Steven Kreuzer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151763: [repocopy] devel/gdb6 to devel/gdb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 21:50:08 -0000 >Number: 151763 >Category: ports >Synopsis: [repocopy] devel/gdb6 to devel/gdb >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 21:50:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Steven Kreuzer >Release: >Organization: >Environment: >Description: I have a port of gdb 7.1 with support for FreeBSD threads. I would like to repocopy devel/gdb6 to devel/gdb and check in the patches I have for 7.1 and then work on updating the port to 7.2 which is the latest version >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 21:50:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2884010656C4; Tue, 26 Oct 2010 21:50:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F2DA68FC1A; Tue, 26 Oct 2010 21:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QLoD3V085800; Tue, 26 Oct 2010 21:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QLoDbV085790; Tue, 26 Oct 2010 21:50:13 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 21:50:13 GMT Message-Id: <201010262150.o9QLoDbV085790@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skreuzer@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151763: [repocopy] devel/gdb6 to devel/gdb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 21:50:14 -0000 Synopsis: [repocopy] devel/gdb6 to devel/gdb Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 21:50:13 UTC 2010 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151763 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 22:20:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 211D11065697 for ; Tue, 26 Oct 2010 22:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E808A8FC0A for ; Tue, 26 Oct 2010 22:20:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QMK6M2018043 for ; Tue, 26 Oct 2010 22:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QMK6Rc018042; Tue, 26 Oct 2010 22:20:06 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 22:20:06 GMT Resent-Message-Id: <201010262220.o9QMK6Rc018042@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Sandford Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5DD1106566C; Tue, 26 Oct 2010 22:10:58 +0000 (UTC) (envelope-from tdgsandf@miriam.paradisegreen.co.uk) Received: from miriam.paradisegreen.co.uk (miriam.paradisegreen.co.uk [81.187.228.6]) by mx1.freebsd.org (Postfix) with ESMTP id 5CA938FC0C; Tue, 26 Oct 2010 22:10:57 +0000 (UTC) Received: from miriam.paradisegreen.co.uk (localhost [127.0.0.1]) by miriam.paradisegreen.co.uk (8.14.4/8.14.4) with ESMTP id o9QLc3RW032493; Tue, 26 Oct 2010 22:38:03 +0100 (BST) (envelope-from tdgsandf@miriam.paradisegreen.co.uk) Received: (from root@localhost) by miriam.paradisegreen.co.uk (8.14.4/8.14.4/Submit) id o9QLc383032492; Tue, 26 Oct 2010 22:38:03 +0100 (BST) (envelope-from tdgsandf) Message-Id: <201010262138.o9QLc383032492@miriam.paradisegreen.co.uk> Date: Tue, 26 Oct 2010 22:38:03 +0100 (BST) From: Thomas Sandford To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: secteam@FreeBSD.org Subject: ports/151764: vuxml update for security vulnerability: ports:samba X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 22:20:07 -0000 >Number: 151764 >Category: ports >Synopsis: vuxml update for security vulnerability: ports:samba >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 22:20:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Thomas Sandford >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD miriam.paradisegreen.co.uk 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: vuxml entry for CVE-2010-3069 affecting all versions of samba prior to 2010-09-14. Note that this means that all the recently removed old samba ports will be marked as vulnerable. >How-To-Repeat: >Fix: Proposed vuxml entry attached --- vuln.xml.patch1 begins here --- --- vuln.xml.old 2010-10-26 22:03:56.000000000 +0100 +++ vuln.xml 2010-10-26 22:22:48.000000000 +0100 @@ -34,6 +34,35 @@ --> + + Samba -- Buffer Overrun Vulnerability + + + samba + samba3 + ja-samba + 3.4.9,1 + 3.5.0,13.5.5,1 + + + + +

Vendor reports:

+
+

Affected versions of Samba are vulnerable to a buffer overrun vulnerability. The sid_parse function and related dom_sid_parse function in the source4 code do not correctly check their input lengths when reading a binary representation of a Windows SID Security ID. This allows a malicious client to send a sid that can overflow the stack variable that is being used to store the SID in the Samba smbd server.

+
+ +
+ + CVE-2010-3069 + http://www.samba.org/samba/security/CVE-2010-3069.html + + + 2010-09-14 + 2010-10-26 + +
+ opera -- multiple vulnerabilities --- vuln.xml.patch1 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 22:30:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36F3C1065670 for ; Tue, 26 Oct 2010 22:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 137258FC1C for ; Tue, 26 Oct 2010 22:30:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QMU6bM027360 for ; Tue, 26 Oct 2010 22:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QMU66f027354; Tue, 26 Oct 2010 22:30:06 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 22:30:06 GMT Resent-Message-Id: <201010262230.o9QMU66f027354@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris St Denis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67339106566C for ; Tue, 26 Oct 2010 22:28:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 563DF8FC0A for ; Tue, 26 Oct 2010 22:28:29 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9QMSTG3023009 for ; Tue, 26 Oct 2010 22:28:29 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9QMSTuW023008; Tue, 26 Oct 2010 22:28:29 GMT (envelope-from nobody) Message-Id: <201010262228.o9QMSTuW023008@www.freebsd.org> Date: Tue, 26 Oct 2010 22:28:29 GMT From: Chris St Denis To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151765: Update port: textproc/pear-Numbers_Words installs in wrong place X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 22:30:07 -0000 >Number: 151765 >Category: ports >Synopsis: Update port: textproc/pear-Numbers_Words installs in wrong place >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 22:30:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris St Denis >Release: >Organization: SmarttNet >Environment: >Description: port textproc/pear-Numbers_Words installs Words directly into /usr/local/share/pear/ instead of into the correct location /usr/local/share/pear/Numbers/ >How-To-Repeat: >Fix: Add the category to the port's makefile patch below: --- Makefile.old 2010-10-26 15:21:11.000000000 -0700 +++ Makefile 2010-10-26 15:21:42.000000000 -0700 @@ -15,6 +15,8 @@ BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear RUN_DEPENDS= ${BUILD_DEPENDS} +CATEGORY= Numbers + FILES= Words.php Words/lang.bg.php Words/lang.cs.php \ Words/lang.de.php Words/lang.dk.php Words/lang.en_100.php \ Words/lang.en_GB.php Words/lang.en_US.php Words/lang.es.php \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 22:30:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07429106566B; Tue, 26 Oct 2010 22:30:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D1A5C8FC16; Tue, 26 Oct 2010 22:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QMUFOo028099; Tue, 26 Oct 2010 22:30:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QMUFmE028085; Tue, 26 Oct 2010 22:30:15 GMT (envelope-from edwin) Date: Tue, 26 Oct 2010 22:30:15 GMT Message-Id: <201010262230.o9QMUFmE028085@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151765: Update port: textproc/pear-Numbers_Words installs in wrong place X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 22:30:16 -0000 Synopsis: Update port: textproc/pear-Numbers_Words installs in wrong place Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 26 22:30:14 UTC 2010 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151765 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 22:40:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3418F1065693 for ; Tue, 26 Oct 2010 22:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EB32D8FC1D for ; Tue, 26 Oct 2010 22:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QMeA1A038215 for ; Tue, 26 Oct 2010 22:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QMeA6C038214; Tue, 26 Oct 2010 22:40:10 GMT (envelope-from gnats) Resent-Date: Tue, 26 Oct 2010 22:40:10 GMT Resent-Message-Id: <201010262240.o9QMeA6C038214@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jun Kuriyama Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEA1F1065670 for ; Tue, 26 Oct 2010 22:34:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 83A0D8FC12 for ; Tue, 26 Oct 2010 22:34:38 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9QMYcur028971 for ; Tue, 26 Oct 2010 22:34:38 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9QMYcXc028970; Tue, 26 Oct 2010 22:34:38 GMT (envelope-from nobody) Message-Id: <201010262234.o9QMYcXc028970@www.freebsd.org> Date: Tue, 26 Oct 2010 22:34:38 GMT From: Jun Kuriyama To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151766: [repocopy] misc/amanda-{server, client} to misc/amanda26-{server, client} X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 22:40:11 -0000 >Number: 151766 >Category: ports >Synopsis: [repocopy] misc/amanda-{server,client} to misc/amanda26-{server,client} >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 26 22:40:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jun Kuriyama >Release: 8.1-RELEASE >Organization: FreeBSD Project >Environment: >Description: Amanda 3.2 was released. Amanda is backup system which will/should be used long term with compatibility. So I'd like to preserve current 2.6 branch as amanda26-{server,client} by repocopy. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 22:51:35 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 413AA106564A; Tue, 26 Oct 2010 22:51:35 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 16D9A8FC08; Tue, 26 Oct 2010 22:51:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QMpYNe056686; Tue, 26 Oct 2010 22:51:34 GMT (envelope-from kuriyama@freefall.freebsd.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QMpYba056682; Tue, 26 Oct 2010 22:51:34 GMT (envelope-from kuriyama) Date: Tue, 26 Oct 2010 22:51:34 GMT Message-Id: <201010262251.o9QMpYba056682@freefall.freebsd.org> To: kuriyama@FreeBSD.org, kuriyama@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: kuriyama@FreeBSD.org Cc: Subject: Re: ports/151766: [repocopy] misc/amanda-{server, client} to misc/amanda26-{server, client} X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 22:51:35 -0000 Synopsis: [repocopy] misc/amanda-{server,client} to misc/amanda26-{server,client} State-Changed-From-To: open->repocopy State-Changed-By: kuriyama State-Changed-When: Tue Oct 26 22:50:27 UTC 2010 State-Changed-Why: Pas to portmgr. Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: kuriyama Responsible-Changed-When: Tue Oct 26 22:50:27 UTC 2010 Responsible-Changed-Why: Pass to portmgr. http://www.freebsd.org/cgi/query-pr.cgi?pr=151766 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 00:01:45 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E752D1065670; Wed, 27 Oct 2010 00:01:45 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BFA208FC08; Wed, 27 Oct 2010 00:01:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R01jXI026829; Wed, 27 Oct 2010 00:01:45 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R01jrD026820; Wed, 27 Oct 2010 00:01:45 GMT (envelope-from wen) Date: Wed, 27 Oct 2010 00:01:45 GMT Message-Id: <201010270001.o9R01jrD026820@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151762: [maintainer] devel/upnp fix build for OSVERSION < 702000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 00:01:46 -0000 Synopsis: [maintainer] devel/upnp fix build for OSVERSION < 702000 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Wed Oct 27 00:01:44 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151762 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 00:02:00 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82C0F106566C; Wed, 27 Oct 2010 00:02:00 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5AE5E8FC1C; Wed, 27 Oct 2010 00:02:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R020Rw028023; Wed, 27 Oct 2010 00:02:00 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R020aj028015; Wed, 27 Oct 2010 00:02:00 GMT (envelope-from wen) Date: Wed, 27 Oct 2010 00:02:00 GMT Message-Id: <201010270002.o9R020aj028015@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151761: [maintainer] x11-themes/lxappearance fix build for ${OSVERSION} < 800000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 00:02:00 -0000 Synopsis: [maintainer] x11-themes/lxappearance fix build for ${OSVERSION} < 800000 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Wed Oct 27 00:01:59 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151761 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 00:48:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B5411065673; Wed, 27 Oct 2010 00:48:12 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7246F8FC1D; Wed, 27 Oct 2010 00:48:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R0mCPX071981; Wed, 27 Oct 2010 00:48:12 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R0mCAL071977; Wed, 27 Oct 2010 00:48:12 GMT (envelope-from wen) Date: Wed, 27 Oct 2010 00:48:12 GMT Message-Id: <201010270048.o9R0mCAL071977@freefall.freebsd.org> To: c.petrik.sosa@gmail.com, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151754: [PATCH] add maintainer for various ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 00:48:12 -0000 Synopsis: [PATCH] add maintainer for various ports State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Wed Oct 27 00:48:12 UTC 2010 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151754 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 00:50:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8683E106566B for ; Wed, 27 Oct 2010 00:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7595D8FC0C for ; Wed, 27 Oct 2010 00:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R0o72F072076 for ; Wed, 27 Oct 2010 00:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R0o7ff072075; Wed, 27 Oct 2010 00:50:07 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 00:50:07 GMT Message-Id: <201010270050.o9R0o7ff072075@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151754: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 00:50:07 -0000 The following reply was made to PR ports/151754; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151754: commit references a PR Date: Wed, 27 Oct 2010 00:46:59 +0000 (UTC) wen 2010-10-27 00:46:52 UTC FreeBSD ports repository Modified files: audio/csound Makefile audio/smasher Makefile editors/diakonos Makefile ftp/IglooFTP Makefile games/abuse Makefile games/abuse_sdl Makefile graphics/mesa-demos Makefile Log: - Pass maintainership to submitter PR: ports/151754 Submitted by: Chris Petrik (new maintainer) Revision Changes Path 1.54 +1 -1 ports/audio/csound/Makefile 1.14 +1 -1 ports/audio/smasher/Makefile 1.8 +1 -1 ports/editors/diakonos/Makefile 1.33 +1 -1 ports/ftp/IglooFTP/Makefile 1.13 +1 -1 ports/games/abuse/Makefile 1.26 +1 -1 ports/games/abuse_sdl/Makefile 1.32 +1 -1 ports/graphics/mesa-demos/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 01:00:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EC39106566C for ; Wed, 27 Oct 2010 01:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4EFD58FC17 for ; Wed, 27 Oct 2010 01:00:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R10DWw081340 for ; Wed, 27 Oct 2010 01:00:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R10D2l081329; Wed, 27 Oct 2010 01:00:13 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 01:00:13 GMT Resent-Message-Id: <201010270100.o9R10D2l081329@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, takefu@airport.fm Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E98B106566B; Wed, 27 Oct 2010 00:51:44 +0000 (UTC) (envelope-from takefu@airport.fm) Received: from ae-osaka.co.jp (unknown [IPv6:2001:3e0:4ec:a000::1]) by mx1.freebsd.org (Postfix) with ESMTP id 0CD308FC08; Wed, 27 Oct 2010 00:51:44 +0000 (UTC) Received: from ae-osaka.co.jp (localhost.ae-osaka.co.jp [127.0.0.1]) by ae-osaka.co.jp (Postfix) with ESMTP id 513C51146A; Wed, 27 Oct 2010 09:51:43 +0900 (JST) Received: from ae-osaka.co.jp ([127.0.0.1]) by ae-osaka.co.jp (ae-osaka.co.jp [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Q2Pd5AzggEOl; Wed, 27 Oct 2010 09:51:43 +0900 (JST) Received: from [IPv6:2001:3e0:4ec:a011:9c90:6f7e:94a8:3e0f] (unknown [IPv6:2001:3e0:4ec:a011:9c90:6f7e:94a8:3e0f]) by ae-osaka.co.jp (Postfix) with ESMTPSA id 1A6B211469; Wed, 27 Oct 2010 09:51:43 +0900 (JST) Message-Id: <4CC7779E.9010901@airport.fm> Date: Wed, 27 Oct 2010 09:51:42 +0900 From: Takefu To: freebsd-gnats-submit@FreeBSD.org Cc: timur@FreeBSD.org Subject: ports/151768: [UPDATE] databases/tdb: update to 1.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: takefu@airport.fm List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 01:00:13 -0000 >Number: 151768 >Category: ports >Synopsis: [UPDATE] databases/tdb: update to 1.2.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 01:00:12 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.1-RELEASE-p1 amd64 >Organization: FOX Amateur Radio Club >Environment: >Description: - Update to 1.2.2 Removed file(s): - files/tdbbackup.8 - files/tdbdump.8 - files/tdbtool.8 Port maintainer (timur@FreeBSD.org) is cc'd. >How-To-Repeat: >Fix: --- tdb-1.2.2,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/tdb/Makefile databases/tdb/Makefile --- /usr/ports/databases/tdb/Makefile 2010-10-27 07:41:48.000000000 +0900 +++ databases/tdb/Makefile 2010-10-27 08:29:53.000000000 +0900 @@ -6,13 +6,16 @@ # PORTNAME= tdb -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= ftp://ftp.samba.org/pub/%SUBDIR%/ \ ftp://ca.samba.org/pub/%SUBDIR%/ \ ftp://de.samba.org/pub/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTNAME} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX}\ + ${DISTNAME}${EXTRACT_SUFX}.asc +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= timur@FreeBSD.org COMMENT= Trivial Database @@ -25,8 +28,12 @@ GNU_CONFIGURE= yes USE_GNOME= pkgconfig USE_AUTOTOOLS= autoconf:268 autoheader:268 +BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt\ + ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl -IPATHS= -I${WRKSRC}/libreplace +MAKE_JOBS_SAFE= yes + +IPATHS= -I${WRKSRC}/lib/replace AUTOHEADER_ARGS= ${IPATHS} AUTOCONF_ARGS= ${IPATHS} @@ -34,8 +41,6 @@ PKGCONFIGDIR_REL?= ${PKGCONFIGDIR:S|^${PREFIX}/||} PYTHON_SITELIBDIR_REL?= ${PYTHONPREFIX_SITELIBDIR:S|^${PREFIX}/||} -CONFIGURE_ENV+= XSLTPROC="/usr/bin/true" - MAN8= tdbbackup.8 \ tdbdump.8 \ tdbtool.8 @@ -50,12 +55,12 @@ ${PKGCONFIGDIR_REL}/tdb.pc \ ${PYTHON_SITELIBDIR_REL}/tdb.so -pre-install: -.for man in ${MAN8} - @${CP} ${FILESDIR}/${man} ${WRKSRC}/manpages -.endfor +verify: checksum + gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc post-install: - @${LN} -sf libtdb.so.1 ${PREFIX}/lib/libtdb.so + ${STRIP_CMD} ${PREFIX}/bin/tdbbackup\ + ${PREFIX}/bin/tdbdump\ + ${PREFIX}/bin/tdbtool .include diff -ruN --exclude=CVS /usr/ports/databases/tdb/distinfo databases/tdb/distinfo --- /usr/ports/databases/tdb/distinfo 2010-10-27 07:41:48.000000000 +0900 +++ databases/tdb/distinfo 2010-10-26 19:48:30.000000000 +0900 @@ -1,3 +1,6 @@ -MD5 (tdb-1.2.1.tar.gz) = 73ea81282a82e5c959d9c082af2d0215 -SHA256 (tdb-1.2.1.tar.gz) = ef423b934c5ddfeddaa3d3b1567072b0d6f7243bbae5fd363a1b090b0573cdfa -SIZE (tdb-1.2.1.tar.gz) = 268142 +MD5 (tdb-1.2.2.tar.gz) = d93f31e1585971f12cbd259323c54432 +SHA256 (tdb-1.2.2.tar.gz) = faee3dbb5c0af896c98f5edf3ab68b2ed9bc4992376666f2cd502873a1b2f892 +SIZE (tdb-1.2.2.tar.gz) = 372672 +MD5 (tdb-1.2.2.tar.gz.asc) = b76e252c074e648b2b4f1c3145024b4c +SHA256 (tdb-1.2.2.tar.gz.asc) = 0e33b91d1a1122edfa294bef82a67fd97295eb225ee845db1e5a3ace9bec99fe +SIZE (tdb-1.2.2.tar.gz.asc) = 933 diff -ruN --exclude=CVS /usr/ports/databases/tdb/files/patch-tdb.mk databases/tdb/files/patch-tdb.mk --- /usr/ports/databases/tdb/files/patch-tdb.mk 2010-07-21 16:53:38.000000000 +0900 +++ databases/tdb/files/patch-tdb.mk 2010-10-26 19:41:17.000000000 +0900 @@ -1,5 +1,5 @@ ---- ./tdb.mk.orig 2010-01-09 02:39:48.000000000 +0000 -+++ ./tdb.mk 2010-01-09 02:42:49.000000000 +0000 +--- tdb.mk.orig 2010-08-22 11:53:50.000000000 +0900 ++++ tdb.mk 2010-10-26 19:37:35.000000000 +0900 @@ -6,7 +6,7 @@ ALL_PROGS = $(PROGS) $(PROGS_NOINSTALL) @@ -9,7 +9,16 @@ TDB_STLIB = libtdb.a TDB_LIB = $(TDB_STLIB) -@@ -67,7 +67,7 @@ +@@ -58,7 +58,7 @@ + .SUFFIXES: .8.xml .8 + + .8.xml.8: +- -test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< ++ -test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl $< + + installdocs:: + ${INSTALLCMD} -d $(DESTDIR)$(mandir)/man8 +@@ -80,7 +80,7 @@ mkdir -p $(DESTDIR)$(bindir) mkdir -p $(DESTDIR)$(includedir) mkdir -p $(DESTDIR)$(libdir) @@ -18,16 +27,22 @@ installbin:: all installdirs cp $(PROGS) $(DESTDIR)$(bindir) -@@ -76,7 +76,7 @@ +@@ -89,18 +89,15 @@ cp $(srcdir)/include/tdb.h $(DESTDIR)$(includedir) installlibs:: all installdirs - cp tdb.pc $(DESTDIR)$(libdir)/pkgconfig + cp tdb.pc $(DESTDIR)$(prefix)/libdata/pkgconfig cp $(TDB_STLIB) $(TDB_SOLIB) $(DESTDIR)$(libdir) + rm -f $(DESTDIR)$(libdir)/libtdb.$(SHLIBEXT) + ln -s $(TDB_SOLIB) $(DESTDIR)$(libdir)/libtdb.$(SHLIBEXT) +- rm -f $(DESTDIR)$(libdir)/$(TDB_SONAME) +- ln -s $(TDB_SOLIB) $(DESTDIR)$(libdir)/$(TDB_SONAME) ++# rm -f $(DESTDIR)$(libdir)/$(TDB_SONAME) ++# ln -s $(TDB_SOLIB) $(DESTDIR)$(libdir)/$(TDB_SONAME) $(TDB_STLIB): $(TDB_OBJ) -@@ -84,6 +84,3 @@ + ar -rv $(TDB_STLIB) $(TDB_OBJ) libtdb.$(SHLIBEXT): $(TDB_SOLIB) ln -fs $< $@ diff -ruN --exclude=CVS /usr/ports/databases/tdb/files/tdbbackup.8 databases/tdb/files/tdbbackup.8 --- /usr/ports/databases/tdb/files/tdbbackup.8 2010-10-26 22:07:59.000000000 +0900 +++ databases/tdb/files/tdbbackup.8 1970-01-01 09:00:00.000000000 +0900 @@ -1,115 +0,0 @@ -'\" t -.\" Title: tdbbackup -.\" Author: [see the "AUTHOR" section] -.\" Generator: DocBook XSL Stylesheets v1.75.2 -.\" Date: 10/26/2010 -.\" Manual: System Administration tools -.\" Source: Samba 3.6 -.\" Language: English -.\" -.TH "TDBBACKUP" "8" "10/26/2010" "Samba 3\&.6" "System Administration tools" -.\" ----------------------------------------------------------------- -.\" * set default formatting -.\" ----------------------------------------------------------------- -.\" disable hyphenation -.nh -.\" disable justification (adjust text to left margin only) -.ad l -.\" ----------------------------------------------------------------- -.\" * MAIN CONTENT STARTS HERE * -.\" ----------------------------------------------------------------- -.SH "NAME" -tdbbackup \- tool for backing up and for validating the integrity of samba \&.tdb files -.SH "SYNOPSIS" -.HP \w'\fBtdbbackup\fR\ 'u -\fBtdbbackup\fR [\-s\ suffix] [\-v] [\-h] -.SH "DESCRIPTION" -.PP -This tool is part of the -\fBsamba\fR(1) -suite\&. -.PP -\fBtdbbackup\fR -is a tool that may be used to backup samba \&.tdb files\&. This tool may also be used to verify the integrity of the \&.tdb files prior to samba startup or during normal operation\&. If it finds file damage and it finds a prior backup the backup file will be restored\&. -.SH "OPTIONS" -.PP -\-h -.RS 4 -Get help information\&. -.RE -.PP -\-s suffix -.RS 4 -The -\fB\-s\fR -option allows the adminisistrator to specify a file backup extension\&. This way it is possible to keep a history of tdb backup files by using a new suffix for each backup\&. -.RE -.PP -\-v -.RS 4 -The -\fB\-v\fR -will check the database for damages (currupt data) which if detected causes the backup to be restored\&. -.RE -.SH "COMMANDS" -.PP -\fIGENERAL INFORMATION\fR -.PP -The -\fBtdbbackup\fR -utility can safely be run at any time\&. It was designed so that it can be used at any time to validate the integrity of tdb files, even during Samba operation\&. Typical usage for the command will be: -.PP -tdbbackup [\-s suffix] *\&.tdb -.PP -Before restarting samba the following command may be run to validate \&.tdb files: -.PP -tdbbackup \-v [\-s suffix] *\&.tdb -.PP -Samba \&.tdb files are stored in various locations, be sure to run backup all \&.tdb file on the system\&. Important files includes: -.sp -.RS 4 -.ie n \{\ -\h'-04'\(bu\h'+03'\c -.\} -.el \{\ -.sp -1 -.IP \(bu 2.3 -.\} - -\fBsecrets\&.tdb\fR -\- usual location is in the /usr/local/samba/private directory, or on some systems in /etc/samba\&. -.RE -.sp -.RS 4 -.ie n \{\ -\h'-04'\(bu\h'+03'\c -.\} -.el \{\ -.sp -1 -.IP \(bu 2.3 -.\} - -\fBpassdb\&.tdb\fR -\- usual location is in the /usr/local/samba/private directory, or on some systems in /etc/samba\&. -.RE -.sp -.RS 4 -.ie n \{\ -\h'-04'\(bu\h'+03'\c -.\} -.el \{\ -.sp -1 -.IP \(bu 2.3 -.\} - -\fB*\&.tdb\fR -located in the /usr/local/samba/var directory or on some systems in the /var/cache or /var/lib/samba directories\&. -.RE -.SH "VERSION" -.PP -This man page is correct for version 3 of the Samba suite\&. -.SH "AUTHOR" -.PP -The original Samba software and related utilities were created by Andrew Tridgell\&. Samba is now developed by the Samba Team as an Open Source project similar to the way the Linux kernel is developed\&. -.PP -The tdbbackup man page was written by John H Terpstra\&. diff -ruN --exclude=CVS /usr/ports/databases/tdb/files/tdbdump.8 databases/tdb/files/tdbdump.8 --- /usr/ports/databases/tdb/files/tdbdump.8 2010-10-26 22:07:59.000000000 +0900 +++ databases/tdb/files/tdbdump.8 1970-01-01 09:00:00.000000000 +0900 @@ -1,43 +0,0 @@ -'\" t -.\" Title: tdbdump -.\" Author: [see the "AUTHOR" section] -.\" Generator: DocBook XSL Stylesheets v1.75.2 -.\" Date: 10/26/2010 -.\" Manual: System Administration tools -.\" Source: Samba 3.6 -.\" Language: English -.\" -.TH "TDBDUMP" "8" "10/26/2010" "Samba 3\&.6" "System Administration tools" -.\" ----------------------------------------------------------------- -.\" * set default formatting -.\" ----------------------------------------------------------------- -.\" disable hyphenation -.nh -.\" disable justification (adjust text to left margin only) -.ad l -.\" ----------------------------------------------------------------- -.\" * MAIN CONTENT STARTS HERE * -.\" ----------------------------------------------------------------- -.SH "NAME" -tdbdump \- tool for printing the contents of a TDB file -.SH "SYNOPSIS" -.HP \w'\fBtdbdump\fR\ 'u -\fBtdbdump\fR {filename} -.SH "DESCRIPTION" -.PP -This tool is part of the -\fBsamba\fR(1) -suite\&. -.PP -\fBtdbdump\fR -is a very simple utility that \'dumps\' the contents of a TDB (Trivial DataBase) file to standard output in a human\-readable format\&. -.PP -This tool can be used when debugging problems with TDB files\&. It is intended for those who are somewhat familiar with Samba internals\&. -.SH "VERSION" -.PP -This man page is correct for version 3 of the Samba suite\&. -.SH "AUTHOR" -.PP -The original Samba software and related utilities were created by Andrew Tridgell\&. Samba is now developed by the Samba Team as an Open Source project similar to the way the Linux kernel is developed\&. -.PP -The tdbdump man page was written by Jelmer Vernooij\&. diff -ruN --exclude=CVS /usr/ports/databases/tdb/files/tdbtool.8 databases/tdb/files/tdbtool.8 --- /usr/ports/databases/tdb/files/tdbtool.8 2010-10-26 22:07:59.000000000 +0900 +++ databases/tdb/files/tdbtool.8 1970-01-01 09:00:00.000000000 +0900 @@ -1,150 +0,0 @@ -'\" t -.\" Title: tdbtool -.\" Author: [see the "AUTHOR" section] -.\" Generator: DocBook XSL Stylesheets v1.75.2 -.\" Date: 10/26/2010 -.\" Manual: System Administration tools -.\" Source: Samba 3.6 -.\" Language: English -.\" -.TH "TDBTOOL" "8" "10/26/2010" "Samba 3\&.6" "System Administration tools" -.\" ----------------------------------------------------------------- -.\" * set default formatting -.\" ----------------------------------------------------------------- -.\" disable hyphenation -.nh -.\" disable justification (adjust text to left margin only) -.ad l -.\" ----------------------------------------------------------------- -.\" * MAIN CONTENT STARTS HERE * -.\" ----------------------------------------------------------------- -.SH "NAME" -tdbtool \- manipulate the contents TDB files -.SH "SYNOPSIS" -.HP \w'\fBtdbtool\fR\ 'u -\fBtdbtool\fR -.HP \w'\fBtdbtool\fR\ 'u -\fBtdbtool\fR \fITDBFILE\fR [\fICOMMANDS\fR...] -.SH "DESCRIPTION" -.PP -This tool is part of the -\fBsamba\fR(1) -suite\&. -.PP -\fBtdbtool\fR -a tool for displaying and altering the contents of Samba TDB (Trivial DataBase) files\&. Each of the commands listed below can be entered interactively or provided on the command line\&. -.SH "COMMANDS" -.PP -\fBcreate\fR \fITDBFILE\fR -.RS 4 -Create a new database named -\fITDBFILE\fR\&. -.RE -.PP -\fBopen\fR \fITDBFILE\fR -.RS 4 -Open an existing database named -\fITDBFILE\fR\&. -.RE -.PP -\fBerase\fR -.RS 4 -Erase the current database\&. -.RE -.PP -\fBdump\fR -.RS 4 -Dump the current database as strings\&. -.RE -.PP -\fBcdump\fR -.RS 4 -Dump the current database as connection records\&. -.RE -.PP -\fBkeys\fR -.RS 4 -Dump the current database keys as strings\&. -.RE -.PP -\fBhexkeys\fR -.RS 4 -Dump the current database keys as hex values\&. -.RE -.PP -\fBinfo\fR -.RS 4 -Print summary information about the current database\&. -.RE -.PP -\fBinsert\fR \fIKEY\fR \fIDATA\fR -.RS 4 -Insert a record into the current database\&. -.RE -.PP -\fBmove\fR \fIKEY\fR \fITDBFILE\fR -.RS 4 -Move a record from the current database into -\fITDBFILE\fR\&. -.RE -.PP -\fBstore\fR \fIKEY\fR \fIDATA\fR -.RS 4 -Store (replace) a record in the current database\&. -.RE -.PP -\fBshow\fR \fIKEY\fR -.RS 4 -Show a record by key\&. -.RE -.PP -\fBdelete\fR \fIKEY\fR -.RS 4 -Delete a record by key\&. -.RE -.PP -\fBlist\fR -.RS 4 -Print the current database hash table and free list\&. -.RE -.PP -\fBfree\fR -.RS 4 -Print the current database and free list\&. -.RE -.PP -\fB!\fR \fICOMMAND\fR -.RS 4 -Execute the given system command\&. -.RE -.PP -\fBfirst\fR -.RS 4 -Print the first record in the current database\&. -.RE -.PP -\fBnext\fR -.RS 4 -Print the next record in the current database\&. -.RE -.PP -\fBcheck\fR -.RS 4 -Check the integrity of the current database\&. -.RE -.PP -\fBquit\fR -.RS 4 -Exit -\fBtdbtool\fR\&. -.RE -.SH "CAVEATS" -.PP -The contents of the Samba TDB files are private to the implementation and should not be altered with -\fBtdbtool\fR\&. -.SH "VERSION" -.PP -This man page is correct for version 3\&.0\&.25 of the Samba suite\&. -.SH "AUTHOR" -.PP -The original Samba software and related utilities were created by Andrew Tridgell\&. Samba is now developed by the Samba Team as an Open Source project similar to the way the Linux kernel is developed\&. --- tdb-1.2.2,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 01:00:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F4AF1065674; Wed, 27 Oct 2010 01:00:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BAEFE8FC12; Wed, 27 Oct 2010 01:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R10Mwk083831; Wed, 27 Oct 2010 01:00:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R10Mdi083794; Wed, 27 Oct 2010 01:00:22 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 01:00:22 GMT Message-Id: <201010270100.o9R10Mdi083794@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151768: [UPDATE] databases/tdb: update to 1.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 01:00:23 -0000 Synopsis: [UPDATE] databases/tdb: update to 1.2.2 Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 27 01:00:21 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151768 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 03:30:06 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA48C1065673 for ; Wed, 27 Oct 2010 03:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AD5368FC16 for ; Wed, 27 Oct 2010 03:30:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R3U6FY037029 for ; Wed, 27 Oct 2010 03:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R3U68M037028; Wed, 27 Oct 2010 03:30:06 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 03:30:06 GMT Resent-Message-Id: <201010270330.o9R3U68M037028@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Wen Heping Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E39C1065673 for ; Wed, 27 Oct 2010 03:26:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 6DE818FC13 for ; Wed, 27 Oct 2010 03:26:55 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9R3Qtia025936 for ; Wed, 27 Oct 2010 03:26:55 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9R3Qtf1025935; Wed, 27 Oct 2010 03:26:55 GMT (envelope-from nobody) Message-Id: <201010270326.o9R3Qtf1025935@www.freebsd.org> Date: Wed, 27 Oct 2010 03:26:55 GMT From: Wen Heping To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151769: [Update]devel/p5-IPC-Cmd:update to 0.64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 03:30:07 -0000 >Number: 151769 >Category: ports >Synopsis: [Update]devel/p5-IPC-Cmd:update to 0.64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 03:30:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 9.0 >Organization: FreeBSD >Environment: >Description: Update to 0.64 this update is required by archivers/p5-Archive-Extract >How-To-Repeat: >Fix: --- Makefile.orig 2010-10-27 09:34:35.000000000 +0800 +++ Makefile 2010-10-27 09:35:01.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= IPC-Cmd -PORTVERSION= 0.60 +PORTVERSION= 0.64 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- --- distinfo.orig 2010-10-27 09:34:43.000000000 +0800 +++ distinfo 2010-10-27 09:35:13.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (IPC-Cmd-0.60.tar.gz) = dcb4282e413f89afa4b4fcba75ebf283 -SHA256 (IPC-Cmd-0.60.tar.gz) = 9aa31e8dd55d3e5abd296be861b50b7b2186255a174fb33841c7dc8bad8ca1b5 -SIZE (IPC-Cmd-0.60.tar.gz) = 25467 +MD5 (IPC-Cmd-0.64.tar.gz) = c94e8acff9c02c7b1ed0533fe01db2d2 +SHA256 (IPC-Cmd-0.64.tar.gz) = 76c0e599a97ce8a792f511fcb66b3fd7366a44191e86b8130e8fbd8521646b06 +SIZE (IPC-Cmd-0.64.tar.gz) = 25750 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 03:30:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A6BB106566C; Wed, 27 Oct 2010 03:30:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 30F8B8FC19; Wed, 27 Oct 2010 03:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R3UEbE037617; Wed, 27 Oct 2010 03:30:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R3UEpo037608; Wed, 27 Oct 2010 03:30:14 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 03:30:14 GMT Message-Id: <201010270330.o9R3UEpo037608@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tobez@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151769: [Update]devel/p5-IPC-Cmd:update to 0.64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 03:30:14 -0000 Synopsis: [Update]devel/p5-IPC-Cmd:update to 0.64 Responsible-Changed-From-To: freebsd-ports-bugs->tobez Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 27 03:30:13 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151769 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 06:20:05 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83BB7106566C for ; Wed, 27 Oct 2010 06:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 425658FC1D for ; Wed, 27 Oct 2010 06:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R6K5H9018091 for ; Wed, 27 Oct 2010 06:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R6K5O3018090; Wed, 27 Oct 2010 06:20:05 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 06:20:05 GMT Resent-Message-Id: <201010270620.o9R6K5O3018090@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Boris Kovalenko Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41768106566C for ; Wed, 27 Oct 2010 06:18:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 305C88FC14 for ; Wed, 27 Oct 2010 06:18:43 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9R6IgjW007007 for ; Wed, 27 Oct 2010 06:18:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9R6IgSL007006; Wed, 27 Oct 2010 06:18:42 GMT (envelope-from nobody) Message-Id: <201010270618.o9R6IgSL007006@www.freebsd.org> Date: Wed, 27 Oct 2010 06:18:42 GMT From: Boris Kovalenko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151770: spine 0.8.7g hangs up after one host poll X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 06:20:05 -0000 >Number: 151770 >Category: ports >Synopsis: spine 0.8.7g hangs up after one host poll >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 06:20:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Boris Kovalenko >Release: 7.2-R amd64 >Organization: JSC "TAGNet" >Environment: FreeBSD oms.tagnet.ru 7.2-RELEASE FreeBSD 7.2-RELEASE #2: Mon Sep 28 15:53:50 YEKST 2009 root@jails.tagnet.ru:/usr/obj/usr/src/sys/JAILS amd64 >Description: Spine hangs up after host poll (see debug output). IMHO the problem is in poller.c line 68: thread_mutex_lock(LOCK_THREAD) [root@oms ~]# spine -H 0 -V 5] SPINE: Using spine config file [/usr/local/etc/spine.conf] 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The path_php_server variable is /usr/local/share/cacti/script_server.php 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The path_cactilog variable is /usr/local/share/cacti/log/cacti.log 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The log_destination variable is 1 (FILE) 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The path_php variable is /usr/local/bin/php 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The availability_method variable is 2 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The ping_recovery_count variable is 3 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The ping_failure_count variable is 2 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The ping_method variable is 2 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The ping_retries variable is 1 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The ping_timeout variable is 400 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The snmp_retries variable is 3 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The log_perror variable is 1 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The log_pwarn variable is 0 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The boost_redirect variable is 0 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The log_pstats variable is 0 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The threads variable is 8 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The polling interval is 300 seconds 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The number of concurrent processes is 1 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The script timeout is 60 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The number of php script servers to run is 4 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: Host List to be polled='0', TotalPHPScripts='0' 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The PHP Script Server is Not Required 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The Maximum SNMP OID Get Size is 10 10/27/2010 12:15:49 PM - SPINE: Poller[0] Version 0.8.7g starting 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: MySQL is Thread Safe! 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: Spine is running asroot. 10/27/2010 12:15:49 PM - SPINE: Poller[0] SPINE: Initializing Net-SNMP API 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: Issues with SNMP Header Version information, assuming old version of Net-SNMP. 10/27/2010 12:15:49 PM - SPINE: Poller[0] SPINE: Initializing PHP Script Server(s) 10/27/2010 12:15:49 PM - SPINE: Poller[0] NOTE: Spine did not detect multithreaded device polling. 10/27/2010 12:15:49 PM - SPINE: Poller[0] NOTE: Spine is behaving in a 0.8.7g manner 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: Initial Value of Active Threads is 0 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: Valid Thread to be Created 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: In Poller, About to Start Polling of Host 10/27/2010 12:15:49 PM - SPINE: Poller[0] DEBUG: The Value of Active Threads is 1 10/27/2010 12:15:49 PM - SPINE: Poller[0] Host[0] TH[1] DEBUG: HOST COMPLETE: About to Exit Host Polling Thread Function >How-To-Repeat: Install and run cacti-spine 0.8.7g on FreeBSD 7.2R-amd64 jailed enviroment >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 06:40:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A905106564A for ; Wed, 27 Oct 2010 06:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D09338FC17 for ; Wed, 27 Oct 2010 06:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R6eA5B039005 for ; Wed, 27 Oct 2010 06:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R6eAjK039004; Wed, 27 Oct 2010 06:40:10 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 06:40:10 GMT Resent-Message-Id: <201010270640.o9R6eAjK039004@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Doug Barton Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C593D106566B for ; Wed, 27 Oct 2010 06:39:51 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B449A8FC16 for ; Wed, 27 Oct 2010 06:39:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R6dpu1038883 for ; Wed, 27 Oct 2010 06:39:51 GMT (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R6dpJl038882; Wed, 27 Oct 2010 06:39:51 GMT (envelope-from dougb) Message-Id: <201010270639.o9R6dpJl038882@freefall.freebsd.org> Date: Wed, 27 Oct 2010 06:39:51 GMT From: Doug Barton To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151771: textproc/docbook-xsl contains OPTIONS that are not optional X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Doug Barton List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 06:40:11 -0000 >Number: 151771 >Category: ports >Synopsis: textproc/docbook-xsl contains OPTIONS that are not optional >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 06:40:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Doug Barton >Release: FreeBSD 8.1-PRERELEASE i386 >Organization: AAAG >Environment: DNA >Description: Files from this port are used by many other ports to build docs. When I first installed it I un-checked all the optional elements because I like to keep my ports small. However this resulted in numerous failures in other ports. Since we're only talking about a few files the following features should be made standard parts of the port, and not available to users to disable: WITH_FO=true WITH_HTML=true WITH_MANPAGES=true WITH_XHTML=true With those 4 OPTIONS enabled I was able to get all the way through building x11/{gnome2|gnome2-fifth-toe|gnome2-power-tools} I will be glad to produce a patch if necessary, but the required changes are fairly simple. >How-To-Repeat: See above. >Fix: Remove the relevant OPTIONS, always build/install the affected files. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 06:40:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBC2B106566B; Wed, 27 Oct 2010 06:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A203B8FC13; Wed, 27 Oct 2010 06:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R6eHxg039660; Wed, 27 Oct 2010 06:40:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R6eHLK039648; Wed, 27 Oct 2010 06:40:17 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 06:40:17 GMT Message-Id: <201010270640.o9R6eHLK039648@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151771: textproc/docbook-xsl contains OPTIONS that are not optional X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 06:40:17 -0000 Synopsis: textproc/docbook-xsl contains OPTIONS that are not optional Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 27 06:40:16 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151771 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 06:50:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BB6C1065672 for ; Wed, 27 Oct 2010 06:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DC4DB8FC1B for ; Wed, 27 Oct 2010 06:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R6o7BV051462 for ; Wed, 27 Oct 2010 06:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R6o7Tc051461; Wed, 27 Oct 2010 06:50:07 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 06:50:07 GMT Resent-Message-Id: <201010270650.o9R6o7Tc051461@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Doug Barton Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41C08106566B for ; Wed, 27 Oct 2010 06:43:42 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1646C8FC18 for ; Wed, 27 Oct 2010 06:43:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R6hfL0051216 for ; Wed, 27 Oct 2010 06:43:41 GMT (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R6hfn3051215; Wed, 27 Oct 2010 06:43:41 GMT (envelope-from dougb) Message-Id: <201010270643.o9R6hfn3051215@freefall.freebsd.org> Date: Wed, 27 Oct 2010 06:43:41 GMT From: Doug Barton To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151772: pkg-message for security/libgnomesu seems stale X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Doug Barton List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 06:50:08 -0000 >Number: 151772 >Category: ports >Synopsis: pkg-message for security/libgnomesu seems stale >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 06:50:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Doug Barton >Release: FreeBSD 8.1-PRERELEASE i386 >Organization: AAAG >Environment: DNA >Description: The pkg-message for the port references FreeBSD 4/5/6, but not more recent versions. On 1 December it will be totally obsolete. :) >How-To-Repeat: Install the port/package >Fix: Update the message with information relevant to modern FreeBSD versions >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 06:50:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E70081065672; Wed, 27 Oct 2010 06:50:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BD4628FC0C; Wed, 27 Oct 2010 06:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R6oCos051705; Wed, 27 Oct 2010 06:50:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R6oCrV051695; Wed, 27 Oct 2010 06:50:12 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 06:50:12 GMT Message-Id: <201010270650.o9R6oCrV051695@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dougb@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151772: pkg-message for security/libgnomesu seems stale X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 06:50:13 -0000 Synopsis: pkg-message for security/libgnomesu seems stale Responsible-Changed-From-To: freebsd-ports-bugs->dougb Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 27 06:50:12 UTC 2010 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151772 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 07:00:18 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AF14106566C for ; Wed, 27 Oct 2010 07:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EA8DF8FC14 for ; Wed, 27 Oct 2010 07:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R70H60060956 for ; Wed, 27 Oct 2010 07:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R70H9U060947; Wed, 27 Oct 2010 07:00:17 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 07:00:17 GMT Resent-Message-Id: <201010270700.o9R70H9U060947@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Doug Barton Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 698F61065674 for ; Wed, 27 Oct 2010 06:50:44 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 588268FC0A for ; Wed, 27 Oct 2010 06:50:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R6oieB056443 for ; Wed, 27 Oct 2010 06:50:44 GMT (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R6oivE056432; Wed, 27 Oct 2010 06:50:44 GMT (envelope-from dougb) Message-Id: <201010270650.o9R6oivE056432@freefall.freebsd.org> Date: Wed, 27 Oct 2010 06:50:44 GMT From: Doug Barton To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151773: devel/ORBit hangs in configure on amd64 -current X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Doug Barton List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 07:00:18 -0000 >Number: 151773 >Category: ports >Synopsis: devel/ORBit hangs in configure on amd64 -current >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 07:00:17 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Doug Barton >Release: FreeBSD 8.1-PRERELEASE i386 >Organization: AAAG >Environment: C2D, 9-current, amd64 >Description: Trying to build the port on an otherwise up to date system fails. It hangs here: checking whether cc accepts -g... (cached) yes checking how to run the C preprocessor... cpp checking if C preprocessor likes IDL... yes checking if C preprocessor can read from stdin... yes checking how to ignore standard include path... >How-To-Repeat: Attempt to build the port on amd64 -current >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 07:00:26 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01D06106564A; Wed, 27 Oct 2010 07:00:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CC6168FC08; Wed, 27 Oct 2010 07:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R70P1V062917; Wed, 27 Oct 2010 07:00:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R70PDQ062893; Wed, 27 Oct 2010 07:00:25 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 07:00:25 GMT Message-Id: <201010270700.o9R70PDQ062893@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151773: devel/ORBit hangs in configure on amd64 -current X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 07:00:26 -0000 Synopsis: devel/ORBit hangs in configure on amd64 -current Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 27 07:00:24 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151773 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 07:30:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2059C106566C for ; Wed, 27 Oct 2010 07:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0EC348FC1C for ; Wed, 27 Oct 2010 07:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9R7UCHT010753 for ; Wed, 27 Oct 2010 07:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9R7UCPw010750; Wed, 27 Oct 2010 07:30:12 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 07:30:12 GMT Message-Id: <201010270730.o9R7UCPw010750@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Veniamin Gvozdikov Cc: Subject: Re: ports/151705: [path] update ports net/activemq up to 5.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Veniamin Gvozdikov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 07:30:13 -0000 The following reply was made to PR ports/151705; it has been noted by GNATS. From: Veniamin Gvozdikov To: bug-followup@freebsd.org Cc: Subject: Re: ports/151705: [path] update ports net/activemq up to 5.4.1 Date: Wed, 27 Oct 2010 15:00:19 +0800 --0016e642cfce4c1c16049393c75a Content-Type: text/plain; charset=ISO-8859-1 Ok. Update it. -- Veniamin Gvozdikov---------------| OpenPGP ------------------------------------------- OpenPGP for this is e-mail adress| 9B9E5154 XMMP: zloidemon(at)jabber(dot)ru | 19B4A605 --0016e642cfce4c1c16049393c75a Content-Type: text/html; charset=ISO-8859-1
Ok. Update it.

--
Veniamin Gvozdikov---------------| OpenPGP
-------------------------------------------
OpenPGP for this is e-mail adress| 9B9E5154
XMMP: zloidemon(at)jabber(dot)ru | 19B4A605
--0016e642cfce4c1c16049393c75a-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 10:20:05 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42D21106566B for ; Wed, 27 Oct 2010 10:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B65C8FC1F for ; Wed, 27 Oct 2010 10:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RAK4DM095978 for ; Wed, 27 Oct 2010 10:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RAK4VS095977; Wed, 27 Oct 2010 10:20:04 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 10:20:04 GMT Resent-Message-Id: <201010271020.o9RAK4VS095977@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrey Zonov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20DB61065670 for ; Wed, 27 Oct 2010 10:14:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0F9DE8FC17 for ; Wed, 27 Oct 2010 10:14:06 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9RAE59D092139 for ; Wed, 27 Oct 2010 10:14:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9RAE5gp092138; Wed, 27 Oct 2010 10:14:05 GMT (envelope-from nobody) Message-Id: <201010271014.o9RAE5gp092138@www.freebsd.org> Date: Wed, 27 Oct 2010 10:14:05 GMT From: Andrey Zonov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151774: [new port] sysutils/pprotectd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 10:20:05 -0000 >Number: 151774 >Category: ports >Synopsis: [new port] sysutils/pprotectd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 10:20:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Andrey Zonov >Release: stable-7, stable-8 >Organization: >Environment: >Description: Self protected daemon which protect processes from killing by the kernel when memory is exhausted. A P_PROTECTED flag protects processes from killing by the kernel when memory is exhausted. This may be useful for protection many critical daemons, such as cron, syslogd, inetd, sshd. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./pkg-descr # ./Makefile # ./distinfo # ./files # ./files/pprotectd.sh.in # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << '0e313719ff012ceaf97a028d51caa8f5' XSelf protected daemon which protect processes from killing by the Xkernel when memory is exhausted. X XA P_PROTECTED flag protects processes from killing by the kernel Xwhen memory is exhausted. This may be useful for protection many Xcritical daemons, such as cron, syslogd, inetd, sshd. X XWWW: http://zonov.pp.ru/ 0e313719ff012ceaf97a028d51caa8f5 echo x - ./Makefile sed 's/^X//' >./Makefile << '464ef7c6571951809b23e262cbe26e19' X# New ports collection makefile for: pprotectd X# Date created: 15 July 2010 X# Whom: Andrey Zonov X# X# $FreeBSD$ X# X XPORTNAME= pprotectd XPORTVERSION= 0.1 XCATEGORIES= sysutils XMASTER_SITES= http://zonov.pp.ru/pprotectd/ X XMAINTAINER= andrey.zonov@gmail.com XCOMMENT= Self protected daemon which protect processes from killing by the kernel when memory is exhausted X XUSE_RC_SUBR= pprotectd.sh X XMAN8= pprotectd.8 XPLIST_FILES= sbin/pprotectd X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin X ${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8 X X.include 464ef7c6571951809b23e262cbe26e19 echo x - ./distinfo sed 's/^X//' >./distinfo << 'aec8793adfd5b7c3f00e62ae41a09ac2' XMD5 (pprotectd-0.1.tar.gz) = 55ba0b69b9d82ae37163318c1870a409 XSHA256 (pprotectd-0.1.tar.gz) = 3d6322d79b38cac5e8d77559833bb58d1dd725db8089d9b5c7b7604cadf7d3ab XSIZE (pprotectd-0.1.tar.gz) = 39455 aec8793adfd5b7c3f00e62ae41a09ac2 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/pprotectd.sh.in sed 's/^X//' >./files/pprotectd.sh.in << '05818d657838a3f6bd70ebf584f57f54' X#!/bin/sh X# X# $FreeBSD$ X# X# PROVIDE: pprotectd X# REQUIRE: LOGIN X# KEYWORD: shutdown X# X# Add the following lines to /etc/rc.conf to enable pprotectd: X# X# pprotectd_enable (bool): Set to "NO" by default. X# Set it to "YES" to enable pprotectd X# pprotectd_pidfiles (str): Set to "/var/run/cron.pid,/var/run/syslog.pid" by default. X# Set it to "/var/run/sshd.pid" for example X# pprotectd_flags (str): Set to "" by default. X# See pprotectd(8) for pprotectd_flags X# X X. %%RC_SUBR%% X Xname="pprotectd" Xrcvar=`set_rcvar` X Xload_rc_config "$name" X X: ${pprotectd_enable="NO"} X: ${pprotectd_pidfiles="/var/run/cron.pid,/var/run/syslog.pid"} X: ${pprotectd_flags=""} X Xcommand="/usr/local/sbin/pprotectd" Xcommand_args="-F ${pprotectd_pidfiles}" X Xrun_rc_command "$1" 05818d657838a3f6bd70ebf584f57f54 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 10:30:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C171C106566B for ; Wed, 27 Oct 2010 10:30:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B00858FC14 for ; Wed, 27 Oct 2010 10:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RAUC4P005545 for ; Wed, 27 Oct 2010 10:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RAUCaY005543; Wed, 27 Oct 2010 10:30:12 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 10:30:12 GMT Message-Id: <201010271030.o9RAUCaY005543@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Andrey Zonov Cc: Subject: Re: ports/151774: [new port] sysutils/pprotectd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrey Zonov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 10:30:12 -0000 The following reply was made to PR ports/151774; it has been noted by GNATS. From: Andrey Zonov To: bug-followup@FreeBSD.org, andrey.zonov@gmail.com Cc: Subject: Re: ports/151774: [new port] sysutils/pprotectd Date: Wed, 27 Oct 2010 14:29:15 +0400 --90e6ba613ef47fa20f049396b25b Content-Type: text/plain; charset=ISO-8859-1 I've just fixed checksums in distinfo. -- Andrey Zonov --90e6ba613ef47fa20f049396b25b Content-Type: text/plain; charset=US-ASCII; name="pprotectd.shar.txt" Content-Disposition: attachment; filename="pprotectd.shar.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gfs2b3sb0 IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUgYW55 dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50ZXJpbmcg InNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBmaWxlcyBhbmQg ZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBkZWZhdWx0IHBlcm1p c3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJLgojCS4vcGtnLWRlc2NyCiMJ Li9NYWtlZmlsZQojCS4vZGlzdGluZm8KIwkuL2ZpbGVzCiMJLi9maWxlcy9wcHJvdGVjdGQuc2gu aW4KIwplY2hvIGMgLSAuCm1rZGlyIC1wIC4gPiAvZGV2L251bGwgMj4mMQplY2hvIHggLSAuL3Br Zy1kZXNjcgpzZWQgJ3MvXlgvLycgPi4vcGtnLWRlc2NyIDw8ICcwZTMxMzcxOWZmMDEyY2VhZjk3 YTAyOGQ1MWNhYThmNScKWFNlbGYgcHJvdGVjdGVkIGRhZW1vbiB3aGljaCBwcm90ZWN0IHByb2Nl c3NlcyBmcm9tIGtpbGxpbmcgYnkgdGhlClhrZXJuZWwgd2hlbiBtZW1vcnkgaXMgZXhoYXVzdGVk LgpYClhBIFBfUFJPVEVDVEVEIGZsYWcgcHJvdGVjdHMgcHJvY2Vzc2VzIGZyb20ga2lsbGluZyBi eSB0aGUga2VybmVsClh3aGVuIG1lbW9yeSBpcyBleGhhdXN0ZWQuIFRoaXMgbWF5IGJlIHVzZWZ1 bCBmb3IgcHJvdGVjdGlvbiBtYW55Clhjcml0aWNhbCBkYWVtb25zLCBzdWNoIGFzIGNyb24sIHN5 c2xvZ2QsIGluZXRkLCBzc2hkLgpYClhXV1c6IGh0dHA6Ly96b25vdi5wcC5ydS8KMGUzMTM3MTlm ZjAxMmNlYWY5N2EwMjhkNTFjYWE4ZjUKZWNobyB4IC0gLi9NYWtlZmlsZQpzZWQgJ3MvXlgvLycg Pi4vTWFrZWZpbGUgPDwgJzQ2NGVmN2M2NTcxOTUxODA5YjIzZTI2MmNiZTI2ZTE5JwpYIyBOZXcg cG9ydHMgY29sbGVjdGlvbiBtYWtlZmlsZSBmb3I6CXBwcm90ZWN0ZApYIyBEYXRlIGNyZWF0ZWQ6 CQkJCTE1IEp1bHkgMjAxMApYIyBXaG9tOgkJCQkJQW5kcmV5IFpvbm92IDxhbmRyZXkuem9ub3ZA Z21haWwuY29tPgpYIwpYIyAkRnJlZUJTRCQKWCMKWApYUE9SVE5BTUU9CXBwcm90ZWN0ZApYUE9S VFZFUlNJT049CTAuMQpYQ0FURUdPUklFUz0Jc3lzdXRpbHMKWE1BU1RFUl9TSVRFUz0JaHR0cDov L3pvbm92LnBwLnJ1L3Bwcm90ZWN0ZC8KWApYTUFJTlRBSU5FUj0JYW5kcmV5Lnpvbm92QGdtYWls LmNvbQpYQ09NTUVOVD0JU2VsZiBwcm90ZWN0ZWQgZGFlbW9uIHdoaWNoIHByb3RlY3QgcHJvY2Vz c2VzIGZyb20ga2lsbGluZyBieSB0aGUga2VybmVsIHdoZW4gbWVtb3J5IGlzIGV4aGF1c3RlZApY ClhVU0VfUkNfU1VCUj0JcHByb3RlY3RkLnNoClgKWE1BTjg9CQlwcHJvdGVjdGQuOApYUExJU1Rf RklMRVM9CXNiaW4vcHByb3RlY3RkClgKWGRvLWluc3RhbGw6ClgJJHtJTlNUQUxMX1BST0dSQU19 ICR7V1JLU1JDfS8ke1BPUlROQU1FfSAke1BSRUZJWH0vc2JpbgpYCSR7SU5TVEFMTF9NQU59ICR7 V1JLU1JDfS8ke01BTjh9ICR7TUFOUFJFRklYfS9tYW4vbWFuOApYClguaW5jbHVkZSA8YnNkLnBv cnQubWs+CjQ2NGVmN2M2NTcxOTUxODA5YjIzZTI2MmNiZTI2ZTE5CmVjaG8geCAtIC4vZGlzdGlu Zm8Kc2VkICdzL15YLy8nID4uL2Rpc3RpbmZvIDw8ICdhZWM4NzkzYWRmZDViN2MzZjAwZTYyYWU0 MWEwOWFjMicKWE1ENSAocHByb3RlY3RkLTAuMS50YXIuZ3opID0gYTIwNjhkMGZhYWZiNmI2MWM4 M2Q0OGQ3MGUyZDc4YzEKWFNIQTI1NiAocHByb3RlY3RkLTAuMS50YXIuZ3opID0gNmY2ZDY0NmM0 NTQxZmJiOGNjMjc4ODc2ZjE4Nzg5MzliZTEyNjBjZmM2YmE4OGY5MmFjMWY3MjUwYzk3M2M1MApY U0laRSAocHByb3RlY3RkLTAuMS50YXIuZ3opID0gNDc0NwphZWM4NzkzYWRmZDViN2MzZjAwZTYy YWU0MWEwOWFjMgplY2hvIGMgLSAuL2ZpbGVzCm1rZGlyIC1wIC4vZmlsZXMgPiAvZGV2L251bGwg Mj4mMQplY2hvIHggLSAuL2ZpbGVzL3Bwcm90ZWN0ZC5zaC5pbgpzZWQgJ3MvXlgvLycgPi4vZmls ZXMvcHByb3RlY3RkLnNoLmluIDw8ICcwNTgxOGQ2NTc4MzhhM2Y2YmQ3MGViZjU4NGY1N2Y1NCcK WCMhL2Jpbi9zaApYIwpYIyAkRnJlZUJTRCQKWCMKWCMgUFJPVklERTogcHByb3RlY3RkClgjIFJF UVVJUkU6IExPR0lOClgjIEtFWVdPUkQ6IHNodXRkb3duClgjClgjIEFkZCB0aGUgZm9sbG93aW5n IGxpbmVzIHRvIC9ldGMvcmMuY29uZiB0byBlbmFibGUgcHByb3RlY3RkOgpYIwpYIyBwcHJvdGVj dGRfZW5hYmxlIChib29sKToJU2V0IHRvICJOTyIgYnkgZGVmYXVsdC4KWCMJCQkJU2V0IGl0IHRv ICJZRVMiIHRvIGVuYWJsZSBwcHJvdGVjdGQKWCMgcHByb3RlY3RkX3BpZGZpbGVzIChzdHIpOglT ZXQgdG8gIi92YXIvcnVuL2Nyb24ucGlkLC92YXIvcnVuL3N5c2xvZy5waWQiIGJ5IGRlZmF1bHQu ClgjCQkJCVNldCBpdCB0byAiL3Zhci9ydW4vc3NoZC5waWQiIGZvciBleGFtcGxlClgjIHBwcm90 ZWN0ZF9mbGFncyAoc3RyKToJU2V0IHRvICIiIGJ5IGRlZmF1bHQuClgjCQkJCVNlZSBwcHJvdGVj dGQoOCkgZm9yIHBwcm90ZWN0ZF9mbGFncwpYIwpYClguICUlUkNfU1VCUiUlClgKWG5hbWU9InBw cm90ZWN0ZCIKWHJjdmFyPWBzZXRfcmN2YXJgClgKWGxvYWRfcmNfY29uZmlnICIkbmFtZSIKWApY OiAke3Bwcm90ZWN0ZF9lbmFibGU9Ik5PIn0KWDogJHtwcHJvdGVjdGRfcGlkZmlsZXM9Ii92YXIv cnVuL2Nyb24ucGlkLC92YXIvcnVuL3N5c2xvZy5waWQifQpYOiAke3Bwcm90ZWN0ZF9mbGFncz0i In0KWApYY29tbWFuZD0iL3Vzci9sb2NhbC9zYmluL3Bwcm90ZWN0ZCIKWGNvbW1hbmRfYXJncz0i LUYgJHtwcHJvdGVjdGRfcGlkZmlsZXN9IgpYClhydW5fcmNfY29tbWFuZCAiJDEiCjA1ODE4ZDY1 NzgzOGEzZjZiZDcwZWJmNTg0ZjU3ZjU0CmV4aXQKCg== --90e6ba613ef47fa20f049396b25b-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 11:17:41 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B2711065670; Wed, 27 Oct 2010 11:17:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 30DB58FC14; Wed, 27 Oct 2010 11:17:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RBHfaY059334; Wed, 27 Oct 2010 11:17:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RBHelC059330; Wed, 27 Oct 2010 11:17:40 GMT (envelope-from linimon) Date: Wed, 27 Oct 2010 11:17:40 GMT Message-Id: <201010271117.o9RBHelC059330@freefall.freebsd.org> To: g.veniamin@googlemail.com, alex.deiter@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151705: [patch] update ports net/activemq up to 5.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 11:17:41 -0000 Old Synopsis: [path] update ports net/activemq up to 5.4.1 New Synopsis: [patch] update ports net/activemq up to 5.4.1 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Wed Oct 27 11:16:55 UTC 2010 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=151705 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 11:40:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DD7D1065695 for ; Wed, 27 Oct 2010 11:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 474278FC23 for ; Wed, 27 Oct 2010 11:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RBe8oA081844 for ; Wed, 27 Oct 2010 11:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RBe8b1081843; Wed, 27 Oct 2010 11:40:08 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 11:40:08 GMT Resent-Message-Id: <201010271140.o9RBe8b1081843@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Thinker K.F. Li" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E61B1065670 for ; Wed, 27 Oct 2010 11:30:14 +0000 (UTC) (envelope-from thinker.li@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id E45428FC1A for ; Wed, 27 Oct 2010 11:30:13 +0000 (UTC) Received: by gxk9 with SMTP id 9so296119gxk.13 for ; Wed, 27 Oct 2010 04:30:13 -0700 (PDT) Received: by 10.150.97.14 with SMTP id u14mr6513911ybb.382.1288179013069; Wed, 27 Oct 2010 04:30:13 -0700 (PDT) Received: from eeebox.branda.to (61-231-70-230.dynamic.hinet.net [61.231.70.230]) by mx.google.com with ESMTPS id r25sm7575957yhc.0.2010.10.27.04.30.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 27 Oct 2010 04:30:11 -0700 (PDT) Received: from eeebox.branda.to (localhost [127.0.0.1]) by eeebox.branda.to (8.14.4/8.14.4) with ESMTP id o9RBUa1m016168; Wed, 27 Oct 2010 19:30:37 +0800 (CST) (envelope-from thinker@branda.to) Received: (from root@localhost) by eeebox.branda.to (8.14.4/8.14.4/Submit) id o9RBUaoa016167; Wed, 27 Oct 2010 19:30:36 +0800 (CST) (envelope-from thinker) Message-Id: <201010271130.o9RBUaoa016167@eeebox.branda.to> Date: Wed, 27 Oct 2010 19:30:36 +0800 (CST) From: "Thinker K.F. Li" Sender: Thinker Li To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: linpct@gmail.com Subject: ports/151775: [PATCH] www/node: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 11:40:08 -0000 >Number: 151775 >Category: ports >Synopsis: [PATCH] www/node: [SUMMARIZE CHANGES] >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 11:40:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Thinker K.F. Li >Release: FreeBSD 9.0-CURRENT i386 >Organization: >Environment: System: FreeBSD eeebox.branda.to 9.0-CURRENT FreeBSD 9.0-CURRENT #12: Mon Oct 11 18:03:28 CST 2010 >Description: When you build an plugin for nodejs with node-waf, and give different directory for source and build, it maybe fault. node-waf would compute a relative path from build directory to source directory. It works if no symbolic link in the absolute path of build directory. But, it is fault when a symbolic link in the absolute path. For example, for most FreeBSD user, their home directory is in /usr/home/XXXX. But, there is a symbolic link /home to /usr/home. If your home is specified with /home/XXXX and another path is /usr/OOOO, node-waf will get a relative path from /home/XXXX to /usr/OOOO as ../../usr/OOOO. It suppose /home/XXXX/../../ is root directory, but it is actually /usr. So, absolute path of relative path ../../usr/OOOO in /home/XXXX is actually /usr/usr/OOOO, it is different from the expected one; /usr/OOOO. Added file(s): - files/patch-wafadmin-Node.py Port maintainer (linpct@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- node-0.2.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/node/files/patch-wafadmin-Node.py /usr/ports/www/node.new/files/patch-wafadmin-Node.py --- /usr/ports/www/node/files/patch-wafadmin-Node.py 1970-01-01 08:00:00.000000000 +0800 +++ /usr/ports/www/node.new/files/patch-wafadmin-Node.py 2010-10-27 18:30:17.000000000 +0800 @@ -0,0 +1,15 @@ +--- tools/wafadmin/Node.py.orig 2010-10-25 05:45:39.000000000 +0800 ++++ tools/wafadmin/Node.py 2010-10-27 18:30:12.000000000 +0800 +@@ -349,6 +349,12 @@ + if self == from_node: return '.' + if from_node.parent == self: return '..' + ++ from_node_path = from_node.abspath() ++ from_node_realpath = os.path.realpath(from_node_path) ++ if from_node_path != from_node_realpath: ++ from_node = self.__class__.bld.root.find_dir(from_node_realpath) ++ return self.relpath_gen(from_node) ++ + # up_path is '../../../' and down_path is 'dir/subdir/subdir/file' + ancestor = self.find_ancestor(from_node) + lst = [] --- node-0.2.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 11:40:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B632C1065675; Wed, 27 Oct 2010 11:40:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8D1C78FC15; Wed, 27 Oct 2010 11:40:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RBeF88082412; Wed, 27 Oct 2010 11:40:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RBeFcV082403; Wed, 27 Oct 2010 11:40:15 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 11:40:15 GMT Message-Id: <201010271140.o9RBeFcV082403@freefall.freebsd.org> To: thinker@codemud.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151775: [PATCH] www/node: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 11:40:15 -0000 Synopsis: [PATCH] www/node: [SUMMARIZE CHANGES] State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Oct 27 11:40:14 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151775 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 11:50:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7CAC106564A for ; Wed, 27 Oct 2010 11:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C6DB08FC08 for ; Wed, 27 Oct 2010 11:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RBo7tn091380 for ; Wed, 27 Oct 2010 11:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RBo7VH091379; Wed, 27 Oct 2010 11:50:07 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 11:50:07 GMT Message-Id: <201010271150.o9RBo7VH091379@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151775: [PATCH] www/node: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 11:50:07 -0000 The following reply was made to PR ports/151775; it has been noted by GNATS. From: Edwin Groothuis To: linpct@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/151775: [PATCH] www/node: [SUMMARIZE CHANGES] Date: Wed, 27 Oct 2010 11:40:12 UT Maintainer of www/node, Please note that PR ports/151775 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151775 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7EAA31065670 for ; Wed, 27 Oct 2010 12:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 413958FC12 for ; Wed, 27 Oct 2010 12:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCA8kQ013131 for ; Wed, 27 Oct 2010 12:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCA8W7013130; Wed, 27 Oct 2010 12:10:08 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 12:10:08 GMT Resent-Message-Id: <201010271210.o9RCA8W7013130@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tilman Keskinoz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD9F910656C6; Wed, 27 Oct 2010 12:00:33 +0000 (UTC) (envelope-from arved@gazoz.arved.priv.at) Received: from gazoz.arved.priv.at (cl-1383.ham-01.de.sixxs.net [IPv6:2001:6f8:900:566::2]) by mx1.freebsd.org (Postfix) with ESMTP id 636718FC12; Wed, 27 Oct 2010 12:00:32 +0000 (UTC) Received: from gazoz.arved.priv.at (localhost [127.0.0.1]) by gazoz.arved.priv.at (8.14.3/8.14.3) with ESMTP id o9RC0Vtx030890; Wed, 27 Oct 2010 14:00:31 +0200 (CEST) (envelope-from arved@gazoz.arved.priv.at) Received: (from arved@localhost) by gazoz.arved.priv.at (8.14.3/8.14.3/Submit) id o9RC0VVQ030889; Wed, 27 Oct 2010 14:00:31 +0200 (CEST) (envelope-from arved) Message-Id: <201010271200.o9RC0VVQ030889@gazoz.arved.priv.at> Date: Wed, 27 Oct 2010 14:00:31 +0200 (CEST) From: Tilman Keskinoz To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: arved@FreeBSD.org, sergei@FreeBSD.org Subject: ports/151776: mail/t-prot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tilman Keskinoz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:10:08 -0000 >Number: 151776 >Category: ports >Synopsis: mail/t-prot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 12:10:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Tilman Keskinoz >Release: FreeBSD 8.0-RELEASE i386 >Organization: >Environment: System: FreeBSD gazoz.arved.priv.at 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat Nov 21 15:48:17 UTC 2009 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: If a locale is set, t-prot requires the Locale::gettext module. See line 1116 of the t-prot binary >How-To-Repeat: >Fix: Add a runtime dependency on devel/p5-Locale-gettext >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFE12106564A for ; Wed, 27 Oct 2010 12:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 91E738FC15 for ; Wed, 27 Oct 2010 12:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCA8IL013140 for ; Wed, 27 Oct 2010 12:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCA87l013139; Wed, 27 Oct 2010 12:10:08 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 12:10:08 GMT Resent-Message-Id: <201010271210.o9RCA87l013139@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jimmie James Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38A49106566B for ; Wed, 27 Oct 2010 12:07:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0EBC68FC1A for ; Wed, 27 Oct 2010 12:07:38 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9RC7b7G010869 for ; Wed, 27 Oct 2010 12:07:37 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9RC7b1Z010868; Wed, 27 Oct 2010 12:07:37 GMT (envelope-from nobody) Message-Id: <201010271207.o9RC7b1Z010868@www.freebsd.org> Date: Wed, 27 Oct 2010 12:07:37 GMT From: Jimmie James To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151777: deskutils/xfce4-volstatus-icon Segmentation fault and incorrect 1st run message X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:10:09 -0000 >Number: 151777 >Category: ports >Synopsis: deskutils/xfce4-volstatus-icon Segmentation fault and incorrect 1st run message >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 12:10:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jimmie James >Release: FreeBSD 7.3-STABLE >Organization: >Environment: FreeBSD jimmiejaz.org 7.3-STABLE FreeBSD 7.3-STABLE #0: Tue Jun 1 23:22:54 EDT 2010 jimmie@jimmiejaz.org:/usr/obj/usr/src/sys/FORTYTWO i386 >Description: All ports are up-to-date. Simple issue first. After installing deskutils/xfce4-volstatus-icon users are presented with the following message: At first, run /usr/local/xfce4-volstatus-icon, it will ask you, if you want to start it every time Xfce starts Which is obviously wrong, should be /usr/local/bin/xfce4-volstatus-icon 2nd problem: ~>gdb /usr/local/bin/xfce4-volstatus-icon GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"... (gdb) run Starting program: /usr/local/bin/xfce4-volstatus-icon [New LWP 100061] [New Thread 0x28e01040 (LWP 100061)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x28e01040 (LWP 100061)] 0x289e5849 in dbus_set_g_error () from /usr/local/lib/libdbus-glib-1.so.2 gdb) bt #0 0x289e5849 in dbus_set_g_error () from /usr/local/lib/libdbus-glib-1.so.2 #1 0x08052224 in ghal_context_get (dbus_connection=0x28e56234, error=0xbfbfe96c) at ghal-context.c:388 #2 0x0804d2e7 in main (argc=1, argv=0xbfbfe9d8) at main.c:224 pkg_info |grep -i dbus dbus-1.4.0 A message bus system for inter-application communication dbus-glib-0.88 GLib bindings for the D-BUS messaging system eggdbus-0.6_1 D-Bus bindings for GObject py26-dbus-0.83.1_1 Python bindings for the D-BUS messaging system >How-To-Repeat: Build/install deskutils/xfce4-volstatus-icon >Fix: 1st, add bin to files/pkg-message.in 2nd. Don't know, sorry. But I'll attempt to help out if needed. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:10:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9341106564A; Wed, 27 Oct 2010 12:10:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A24298FC1B; Wed, 27 Oct 2010 12:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCAFNw013632; Wed, 27 Oct 2010 12:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCAFk9013620; Wed, 27 Oct 2010 12:10:15 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 12:10:15 GMT Message-Id: <201010271210.o9RCAFk9013620@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sergei@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151776: mail/t-prot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:10:15 -0000 Synopsis: mail/t-prot Responsible-Changed-From-To: freebsd-ports-bugs->sergei Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 27 12:10:15 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151776 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:10:20 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5CFF10656C1; Wed, 27 Oct 2010 12:10:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9BCF18FC15; Wed, 27 Oct 2010 12:10:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCAKxL014094; Wed, 27 Oct 2010 12:10:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCAK2D014082; Wed, 27 Oct 2010 12:10:20 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 12:10:20 GMT Message-Id: <201010271210.o9RCAK2D014082@freefall.freebsd.org> To: jimmiejaz@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151777: deskutils/xfce4-volstatus-icon Segmentation fault and incorrect 1st run message X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:10:20 -0000 Synopsis: deskutils/xfce4-volstatus-icon Segmentation fault and incorrect 1st run message State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Oct 27 12:10:20 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151777 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:20:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4030106564A for ; Wed, 27 Oct 2010 12:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A24948FC17 for ; Wed, 27 Oct 2010 12:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCK7WR023944 for ; Wed, 27 Oct 2010 12:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCK7r6023943; Wed, 27 Oct 2010 12:20:07 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 12:20:07 GMT Message-Id: <201010271220.o9RCK7r6023943@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151777: deskutils/xfce4-volstatus-icon Segmentation fault and incorrect 1st run message X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:20:07 -0000 The following reply was made to PR ports/151777; it has been noted by GNATS. From: Edwin Groothuis To: duchateau.olivier@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/151777: deskutils/xfce4-volstatus-icon Segmentation fault and incorrect 1st run message Date: Wed, 27 Oct 2010 12:10:18 UT Maintainer of deskutils/xfce4-volstatus-icon, Please note that PR ports/151777 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151777 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:22:24 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1828106564A; Wed, 27 Oct 2010 12:22:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 77C0B8FC12; Wed, 27 Oct 2010 12:22:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCMOjV033090; Wed, 27 Oct 2010 12:22:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCMO1o033086; Wed, 27 Oct 2010 12:22:24 GMT (envelope-from linimon) Date: Wed, 27 Oct 2010 12:22:24 GMT Message-Id: <201010271222.o9RCMO1o033086@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gerald@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151140: USE_PERL5_BUILD in lang/gcc* ports fails to compile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:22:24 -0000 Synopsis: USE_PERL5_BUILD in lang/gcc* ports fails to compile Responsible-Changed-From-To: freebsd-ports-bugs->gerald Responsible-Changed-By: linimon Responsible-Changed-When: Wed Oct 27 12:21:08 UTC 2010 Responsible-Changed-Why: gerald@ maintains lang/gcc45 along with several others. http://www.freebsd.org/cgi/query-pr.cgi?pr=151140 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:30:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C9A21065696 for ; Wed, 27 Oct 2010 12:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1EB448FC14 for ; Wed, 27 Oct 2010 12:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCU7Aw033299 for ; Wed, 27 Oct 2010 12:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCU7O9033296; Wed, 27 Oct 2010 12:30:07 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 12:30:07 GMT Resent-Message-Id: <201010271230.o9RCU7O9033296@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79399106566C for ; Wed, 27 Oct 2010 12:24:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 4DE938FC13 for ; Wed, 27 Oct 2010 12:24:32 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9RCOWHr031762 for ; Wed, 27 Oct 2010 12:24:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9RCOWkD031756; Wed, 27 Oct 2010 12:24:32 GMT (envelope-from nobody) Message-Id: <201010271224.o9RCOWkD031756@www.freebsd.org> Date: Wed, 27 Oct 2010 12:24:32 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151778: [PATCH] add maintainer to more ports. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:30:08 -0000 >Number: 151778 >Category: ports >Synopsis: [PATCH] add maintainer to more ports. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 12:30:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 8.1-STABLE >Organization: none >Environment: FreeBSD 8.1-STABLE >Description: Add maintainer to more ports. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: doom/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/games/doom/Makefile,v retrieving revision 1.43 diff -u -r1.43 Makefile --- doom/Makefile 15 Jun 2010 01:01:12 -0000 1.43 +++ doom/Makefile 27 Oct 2010 12:17:19 -0000 @@ -12,7 +12,7 @@ MASTER_SITES= ${MASTER_SITE_IDSOFTWARE:S|$|source/|} DISTNAME= doomsrc -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= DOOM: the game and the sound server NO_CDROM= requested by IDsoftware Index: etuxracer/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/games/etuxracer/Makefile,v retrieving revision 1.40 diff -u -r1.40 Makefile --- etuxracer/Makefile 15 Jun 2010 01:01:13 -0000 1.40 +++ etuxracer/Makefile 27 Oct 2010 12:18:02 -0000 @@ -12,7 +12,7 @@ MASTER_SITES= SF/extremetuxracer/extreme-tuxracer/${PORTVERSION}/ DISTNAME= extremetuxracer-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A 3d penguin racing game using OpenGL LIB_DEPENDS= tcl85:${PORTSDIR}/lang/tcl85 \ Index: prboom/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/games/prboom/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- prboom/Makefile 30 Jan 2010 09:43:14 -0000 1.27 +++ prboom/Makefile 27 Oct 2010 12:17:43 -0000 @@ -11,7 +11,7 @@ CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable/${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A multiplayer-capable and modified version of ID's classic DOOM game LIB_DEPENDS= smpeg.1:${PORTSDIR}/multimedia/smpeg Index: tuxracer/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/games/tuxracer/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- tuxracer/Makefile 16 Oct 2010 11:52:07 -0000 1.41 +++ tuxracer/Makefile 27 Oct 2010 12:18:23 -0000 @@ -13,7 +13,7 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz \ ${PORTNAME}-data-${PORTVERSION}.tar.gz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A 3d penguin racing game using OpenGL LIB_DEPENDS= tcl85:${PORTSDIR}/lang/tcl85 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:30:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE43510656A8 for ; Wed, 27 Oct 2010 12:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 905708FC21 for ; Wed, 27 Oct 2010 12:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCU8n3033324 for ; Wed, 27 Oct 2010 12:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCU85m033321; Wed, 27 Oct 2010 12:30:08 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 12:30:08 GMT Resent-Message-Id: <201010271230.o9RCU85m033321@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F785106564A for ; Wed, 27 Oct 2010 12:26:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id F29B88FC13 for ; Wed, 27 Oct 2010 12:26:50 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9RCQoLm039407 for ; Wed, 27 Oct 2010 12:26:50 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9RCQorr039406; Wed, 27 Oct 2010 12:26:50 GMT (envelope-from nobody) Message-Id: <201010271226.o9RCQorr039406@www.freebsd.org> Date: Wed, 27 Oct 2010 12:26:50 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151779: [PATCH] request maintainer for ftp/bareftp once again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:30:08 -0000 >Number: 151779 >Category: ports >Synopsis: [PATCH] request maintainer for ftp/bareftp once again >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 12:30:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 8.1-STABLE >Organization: none >Environment: FreeBSD 8.1-STABLE >Description: I am now getting back into ports, and I would like to regain my old port if possible. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: bareftp/Makefile =================================================================== RCS file: /usr/local/freebsdcvs/ports/ftp/bareftp/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- bareftp/Makefile 17 Oct 2010 09:43:01 -0000 1.12 +++ bareftp/Makefile 27 Oct 2010 12:22:04 -0000 @@ -11,7 +11,7 @@ MASTER_SITES= http://www.bareftp.org/release/ \ http://www.predatorlabs.net/dl/ -MAINTAINER= rfarmer@predatorlabs.net +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Ftp client made in C sharp GNU_CONFIGURE= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:30:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1E281065695; Wed, 27 Oct 2010 12:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B812E8FC16; Wed, 27 Oct 2010 12:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCUHV9034145; Wed, 27 Oct 2010 12:30:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCUHAH034132; Wed, 27 Oct 2010 12:30:17 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 12:30:17 GMT Message-Id: <201010271230.o9RCUHAH034132@freefall.freebsd.org> To: c.petrik.sosa@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:30:18 -0000 Synopsis: [PATCH] request maintainer for ftp/bareftp once again State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Oct 27 12:30:16 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151779 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 12:40:06 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66383106566C for ; Wed, 27 Oct 2010 12:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4FEB78FC1B for ; Wed, 27 Oct 2010 12:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RCe6wL044381 for ; Wed, 27 Oct 2010 12:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RCe6mb044380; Wed, 27 Oct 2010 12:40:06 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 12:40:06 GMT Message-Id: <201010271240.o9RCe6mb044380@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 12:40:06 -0000 The following reply was made to PR ports/151779; it has been noted by GNATS. From: Edwin Groothuis To: rfarmer@predatorlabs.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again Date: Wed, 27 Oct 2010 12:30:13 UT Maintainer of ftp/bareftp, Please note that PR ports/151779 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151779 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 13:00:20 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D8141065697 for ; Wed, 27 Oct 2010 13:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 71BAC8FC0C for ; Wed, 27 Oct 2010 13:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RD0KrS063788 for ; Wed, 27 Oct 2010 13:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RD0KFI063764; Wed, 27 Oct 2010 13:00:20 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 13:00:20 GMT Message-Id: <201010271300.o9RD0KFI063764@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mark Linimon Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 13:00:20 -0000 The following reply was made to PR ports/151779; it has been noted by GNATS. From: Mark Linimon To: Chris Petrik Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again Date: Wed, 27 Oct 2010 12:39:03 +0000 Well, as you noticed in your patch, it currently has a maintainer, so my view would be to let the new person see how they do with it. (I do not see any maintainer-timeouts.) mcl From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 13:30:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66E721065674 for ; Wed, 27 Oct 2010 13:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2658E8FC17 for ; Wed, 27 Oct 2010 13:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RDU8e4095163 for ; Wed, 27 Oct 2010 13:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RDU8xe095161; Wed, 27 Oct 2010 13:30:08 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 13:30:08 GMT Resent-Message-Id: <201010271330.o9RDU8xe095161@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Joe Horn Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDF04106564A for ; Wed, 27 Oct 2010 13:22:13 +0000 (UTC) (envelope-from root@Leo.mi.chu.edu.tw) Received: from Leo.mi.chu.edu.tw (Leo.mi.chu.edu.tw [140.126.143.63]) by mx1.freebsd.org (Postfix) with ESMTP id 55F178FC2B for ; Wed, 27 Oct 2010 13:22:12 +0000 (UTC) Received: from Leo.mi.chu.edu.tw (localhost [127.0.0.1]) by Leo.mi.chu.edu.tw (Postfix) with ESMTP id 858814DFC2E for ; Wed, 27 Oct 2010 21:22:11 +0800 (CST) Received: from Leo.mi.chu.edu.tw ([127.0.0.1]) by Leo.mi.chu.edu.tw (Leo.mi.chu.edu.tw [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Cop7XE6Yiv9m for ; Wed, 27 Oct 2010 21:22:11 +0800 (CST) Received: by Leo.mi.chu.edu.tw (Postfix, from userid 0) id 5E7574DFC2C; Wed, 27 Oct 2010 21:22:11 +0800 (CST) Message-Id: <20101027132211.5E7574DFC2C@Leo.mi.chu.edu.tw> Date: Wed, 27 Oct 2010 21:22:11 +0800 (CST) From: Joe Horn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151780: [MAINTAINER] chinese/wordpress-zh_TW: update to 3.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 13:30:09 -0000 >Number: 151780 >Category: ports >Synopsis: [MAINTAINER] chinese/wordpress-zh_TW: update to 3.0.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 13:30:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Joe Horn >Release: FreeBSD 8.1-RELEASE amd64 >Organization: Taiwanese User >Environment: System: FreeBSD joehorn.idv.tw 8.1-RELEASE FreeBSD 8.1-RELEASE #2: Tue Jul 20 22:36:33 CST 2010 >Description: - Update to 3.0.1 - Add LICENSE Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- wordpress-zh_TW-3.0.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/chinese/wordpress-zh_TW/Makefile /home/admin/joehorn/wordpress-zh_TW/Makefile --- /usr/ports/chinese/wordpress-zh_TW/Makefile 2010-06-20 20:21:34.000000000 +0800 +++ /home/admin/joehorn/wordpress-zh_TW/Makefile 2010-10-27 21:15:25.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= wordpress -PORTVERSION= 3.0 +PORTVERSION= 3.0.1 CATEGORIES= chinese www MASTER_SITES= http://tw.wordpress.org/ PKGNAMESUFFIX= -zh_TW @@ -15,6 +15,8 @@ MAINTAINER= joehorn@gmail.com COMMENT= A state-of-the-art semantic personal publishing platform +LICENSE= GPLv3 + WRKSRC= ${WRKDIR}/${PORTNAME} USE_PHP= mysql pcre xml gd tokenizer diff -ruN --exclude=CVS /usr/ports/chinese/wordpress-zh_TW/distinfo /home/admin/joehorn/wordpress-zh_TW/distinfo --- /usr/ports/chinese/wordpress-zh_TW/distinfo 2010-06-20 20:21:34.000000000 +0800 +++ /home/admin/joehorn/wordpress-zh_TW/distinfo 2010-10-27 21:12:52.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (wordpress-3.0-zh_TW.tar.gz) = 2c2c5782398eac7e9d08d4974636b274 -SHA256 (wordpress-3.0-zh_TW.tar.gz) = 0dea0a6b7dfc7588326be94ac0b0218708ea318fb140950db39730047869af54 -SIZE (wordpress-3.0-zh_TW.tar.gz) = 2959429 +MD5 (wordpress-3.0.1-zh_TW.tar.gz) = ec2499faade9d22beb583625440db9b8 +SHA256 (wordpress-3.0.1-zh_TW.tar.gz) = 98f3d3cce243c19d1465cb0e8103144da81ed11c6f76ed480391899e461a23ed +SIZE (wordpress-3.0.1-zh_TW.tar.gz) = 2949161 --- wordpress-zh_TW-3.0.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 13:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A9B21065679 for ; Wed, 27 Oct 2010 13:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 794E48FC14 for ; Wed, 27 Oct 2010 13:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RDeAKZ005814 for ; Wed, 27 Oct 2010 13:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RDeAHV005813; Wed, 27 Oct 2010 13:40:10 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 13:40:10 GMT Message-Id: <201010271340.o9RDeAHV005813@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Chris Petrik Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Chris Petrik List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 13:40:10 -0000 The following reply was made to PR ports/151779; it has been noted by GNATS. From: Chris Petrik To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again Date: Wed, 27 Oct 2010 08:12:51 -0500 -------- Original Message -------- Subject: Re: ftp/bareftp Date: Tue, 26 Oct 2010 17:12:54 -0700 From: Rob Farmer To: Chris Petrik On Tue, Oct 26, 2010 at 06:56, Chris Petrik wrote: > Hello, > > Can I have this port back ? :) > > Chris Sure - I've probably had more headaches with mono on -current than it is worth. The best way is to submit a PR and I will approve, I guess? -- Rob Farmer From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 15:00:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E58C410656A9 for ; Wed, 27 Oct 2010 15:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9140C8FC17 for ; Wed, 27 Oct 2010 15:00:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RF0EeF085914 for ; Wed, 27 Oct 2010 15:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RF0EIE085912; Wed, 27 Oct 2010 15:00:14 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 15:00:14 GMT Resent-Message-Id: <201010271500.o9RF0EIE085912@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sofian Brabez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA087106566B for ; Wed, 27 Oct 2010 14:59:50 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 3CD918FC08 for ; Wed, 27 Oct 2010 14:59:49 +0000 (UTC) Received: by fxm17 with SMTP id 17so817260fxm.13 for ; Wed, 27 Oct 2010 07:59:49 -0700 (PDT) Received: by 10.216.65.204 with SMTP id f54mr983409wed.3.1288191588673; Wed, 27 Oct 2010 07:59:48 -0700 (PDT) Received: from localhost (paris.office.wallix.com [82.238.42.70]) by mx.google.com with ESMTPS id e56sm5981377wer.46.2010.10.27.07.59.47 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 27 Oct 2010 07:59:48 -0700 (PDT) Message-Id: <4cc83e64.cef0d80a.3ae5.6931@mx.google.com> Date: Wed, 27 Oct 2010 07:59:48 -0700 (PDT) From: Sofian Brabez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151781: New port: devel/py-pep8 Python style guide checker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 15:00:15 -0000 >Number: 151781 >Category: ports >Synopsis: New port: devel/py-pep8 Python style guide checker >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 15:00:14 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 8.1-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.ifr.lan 8.1-STABLE FreeBSD 8.1-STABLE #2: Thu Sep 2 14:53:08 CEST >Description: pep8 is a tool to check your Python code against some of the style conventions in PEP 8. WWW: http://pypi.python.org/pypi/pep8 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- py26-pep8-0.6.1.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pep8 # pep8/Makefile # pep8/pkg-descr # pep8/pkg-plist # pep8/distinfo # echo c - pep8 mkdir -p pep8 > /dev/null 2>&1 echo x - pep8/Makefile sed 's/^X//' >pep8/Makefile << '2fba48fa11ba0a53c84edf38321c4948' X# New ports collection makefile for: pep8 X# Date created: 2010-10-27 X# Whom: Sofian Brabez X# X# $FreeBSD$ X# X XPORTNAME= pep8 XPORTVERSION= 0.6.1 XCATEGORIES= devel python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= sbrabez@gmail.com XCOMMENT= Python style guide checker X XUSE_PYTHON= yes XUSE_PYDISTUTILS= easy_install XPYDISTUTILS_PKGNAME= ${PORTNAME} XPYDISTUTILS_PKGVERSION= ${PORTVERSION} XPYDISTUTILS_NOEGGINFO= yes X X.include 2fba48fa11ba0a53c84edf38321c4948 echo x - pep8/pkg-descr sed 's/^X//' >pep8/pkg-descr << '638f41f9b54e4c3ecb021d64c617e6f0' Xpep8 is a tool to check your Python code against some of the style conventions Xin PEP 8. X XWWW: http://pypi.python.org/pypi/pep8 638f41f9b54e4c3ecb021d64c617e6f0 echo x - pep8/pkg-plist sed 's/^X//' >pep8/pkg-plist << '6c0084bf32eee19fd8851aa775f93074' X@comment $FreeBSD$ Xbin/pep8 X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/namespace_packages.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pep8.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pep8.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pep8.pyo X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% 6c0084bf32eee19fd8851aa775f93074 echo x - pep8/distinfo sed 's/^X//' >pep8/distinfo << 'b91b1f7004e5caa5c138100ac19a95bc' XMD5 (pep8-0.6.1.tar.gz) = 49380cdf6ba2e222e8630cb0afe29d66 XSHA256 (pep8-0.6.1.tar.gz) = c0654b683bd0c20987e3e767bb0241daf014d854cb89ec84fbed623e349faeec XSIZE (pep8-0.6.1.tar.gz) = 21499 b91b1f7004e5caa5c138100ac19a95bc exit --- py26-pep8-0.6.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 15:00:27 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC3861065695; Wed, 27 Oct 2010 15:00:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A2DCA8FC1A; Wed, 27 Oct 2010 15:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RF0Rrv089463; Wed, 27 Oct 2010 15:00:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RF0RIX089459; Wed, 27 Oct 2010 15:00:27 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 15:00:27 GMT Message-Id: <201010271500.o9RF0RIX089459@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jadawin@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151781: New port: devel/py-pep8 Python style guide checker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 15:00:27 -0000 Synopsis: New port: devel/py-pep8 Python style guide checker Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 27 15:00:26 UTC 2010 Responsible-Changed-Why: jadawin@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151781 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 15:30:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72901106564A for ; Wed, 27 Oct 2010 15:30:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 60F408FC0A for ; Wed, 27 Oct 2010 15:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RFUCGu018355 for ; Wed, 27 Oct 2010 15:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RFUCga018347; Wed, 27 Oct 2010 15:30:12 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 15:30:12 GMT Message-Id: <201010271530.o9RFUCga018347@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rob Farmer Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rob Farmer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 15:30:12 -0000 The following reply was made to PR ports/151779; it has been noted by GNATS. From: Rob Farmer To: bug-followup@freebsd.org Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again Date: Wed, 27 Oct 2010 08:20:59 -0700 On Wed, Oct 27, 2010 at 05:30, Edwin Groothuis wrote: > Maintainer of ftp/bareftp, > > Please note that PR ports/151779 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > =A0 =A0http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/151779 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > Ok with me. --=20 Rob Farmer From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 16:30:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBDB31065673 for ; Wed, 27 Oct 2010 16:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A609D8FC1B for ; Wed, 27 Oct 2010 16:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RGU93B079711 for ; Wed, 27 Oct 2010 16:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RGU9mh079710; Wed, 27 Oct 2010 16:30:09 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 16:30:09 GMT Resent-Message-Id: <201010271630.o9RGU9mh079710@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jean-Francois Dockes Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BAE31065672 for ; Wed, 27 Oct 2010 16:24:50 +0000 (UTC) (envelope-from dockes@wanadoo.fr) Received: from smtpfb1-g21.free.fr (smtpfb1-g21.free.fr [212.27.42.9]) by mx1.freebsd.org (Postfix) with ESMTP id E6C708FC0A for ; Wed, 27 Oct 2010 16:24:48 +0000 (UTC) Received: from smtp4-g21.free.fr (smtp4-g21.free.fr [212.27.42.4]) by smtpfb1-g21.free.fr (Postfix) with ESMTP id 191E62D378 for ; Wed, 27 Oct 2010 18:05:57 +0200 (CEST) Received: from y.dockes.com (unknown [82.227.105.245]) by smtp4-g21.free.fr (Postfix) with ESMTP id B40E04C8020 for ; Wed, 27 Oct 2010 18:05:50 +0200 (CEST) Received: from y.dockes.com (localhost [127.0.0.1]) by y.dockes.com (8.14.4/8.14.1) with ESMTP id o9RG5l5u021936 for ; Wed, 27 Oct 2010 18:05:47 +0200 (CEST) (envelope-from dockes@y.dockes.com) Received: (from root@localhost) by y.dockes.com (8.14.4/8.14.4/Submit) id o9RG5lM3021935; Wed, 27 Oct 2010 18:05:47 +0200 (CEST) (envelope-from dockes) Message-Id: <201010271605.o9RG5lM3021935@y.dockes.com> Date: Wed, 27 Oct 2010 18:05:47 +0200 (CEST) From: Jean-Francois Dockes To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151782: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jean-Francois Dockes List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 16:30:10 -0000 >Number: 151782 >Category: ports >Synopsis: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 16:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jean-Francois Dockes >Release: FreeBSD 7.3-STABLE amd64 >Organization: >Environment: System: FreeBSD y 7.3-STABLE FreeBSD 7.3-STABLE #4: Mon Sep 20 18:04:30 CEST 2010 dockes@y:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Following the revert of databases/xapian-core to the 1.0 series for assumedly valid reasons, inconsistent 1.0 releases were chosen for xapian-core, xapian-bindings and p5-Search-Xapian. The releases for xapian-bindings (1.0.18) and p5-Search-Xapian (1.0.20) need at least xapian-core 1.0.18 because of a missing member function in older releases (Document::add_boolean_term()) xapian-core is currently 1.0.17 so the other two won't build. >How-To-Repeat: cd /usr/ports/databases/xapian-core10;make cd /usr/ports/databases/xapian-bindings10;make >Fix: Just move xapian-core over to release 1.0.18, which exists in CVS (commit from Sat Apr 17 19:31:27 2010 UTC) Additionally, it does not seem very helpful that xapian-core, xapian-bindings, and p5-Search-Xapian are identical copies from xapian-core10, xapian-bindings10 and p5-Search-Xapian10 (except that xapian-core and xapian-bindings are marked broken. They are, but not more than the copies). Wouldn't it be nice to let the xx10 versions track the 1.0 releases and have the normal ports move to the current production series (for quite some time now): 1.2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 16:30:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 802D2106566C; Wed, 27 Oct 2010 16:30:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 55C118FC20; Wed, 27 Oct 2010 16:30:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RGUJX1080586; Wed, 27 Oct 2010 16:30:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RGUJnV080568; Wed, 27 Oct 2010 16:30:19 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 16:30:19 GMT Message-Id: <201010271630.o9RGUJnV080568@freefall.freebsd.org> To: jf@dockes.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151782: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 16:30:19 -0000 Synopsis: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Oct 27 16:30:18 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151782 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 16:40:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7033C1065673 for ; Wed, 27 Oct 2010 16:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5EAA88FC1B for ; Wed, 27 Oct 2010 16:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RGe8Si091241 for ; Wed, 27 Oct 2010 16:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RGe8D2091240; Wed, 27 Oct 2010 16:40:08 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 16:40:08 GMT Message-Id: <201010271640.o9RGe8D2091240@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151782: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 16:40:08 -0000 The following reply was made to PR ports/151782; it has been noted by GNATS. From: Edwin Groothuis To: jean-francois.dockes@wanadoo.fr Cc: bug-followup@FreeBSD.org Subject: Re: ports/151782: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build Date: Wed, 27 Oct 2010 16:30:14 UT Maintainer of databases/xapian-core, Please note that PR ports/151782 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151782 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 16:50:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B1E41065679 for ; Wed, 27 Oct 2010 16:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 593148FC21 for ; Wed, 27 Oct 2010 16:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RGo9c6000673 for ; Wed, 27 Oct 2010 16:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RGo933000672; Wed, 27 Oct 2010 16:50:09 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 16:50:09 GMT Message-Id: <201010271650.o9RGo933000672@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jean-Francois Dockes Cc: Subject: Re: ports/151782: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jean-Francois Dockes List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 16:50:10 -0000 The following reply was made to PR ports/151782; it has been noted by GNATS. From: Jean-Francois Dockes To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151782: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build Date: Wed, 27 Oct 2010 18:45:34 +0200 Edwin Groothuis writes: > > Maintainer of databases/xapian-core, > > Please note that PR ports/151782 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151782 I submitted the PR, which concerns changes to the port which were made out of my control. Just suggesting a solution to fix the fix. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 17:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 990A710656AA for ; Wed, 27 Oct 2010 17:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC7C8FC21 for ; Wed, 27 Oct 2010 17:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RHeAuw052618 for ; Wed, 27 Oct 2010 17:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RHeAZY052617; Wed, 27 Oct 2010 17:40:10 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 17:40:10 GMT Resent-Message-Id: <201010271740.o9RHeAZY052617@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Victor Balada Diaz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FC50106566B for ; Wed, 27 Oct 2010 17:38:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 32E128FC14 for ; Wed, 27 Oct 2010 17:38:53 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9RHcqpn058696 for ; Wed, 27 Oct 2010 17:38:52 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9RHcqCX058693; Wed, 27 Oct 2010 17:38:52 GMT (envelope-from nobody) Message-Id: <201010271738.o9RHcqCX058693@www.freebsd.org> Date: Wed, 27 Oct 2010 17:38:52 GMT From: Victor Balada Diaz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151783: mail/fetchmail: rc.d script broken in case of MDA use X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 17:40:10 -0000 >Number: 151783 >Category: ports >Synopsis: mail/fetchmail: rc.d script broken in case of MDA use >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 17:40:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Victor Balada Diaz >Release: 7.1-RELEASE-p13 >Organization: CoolBleiben >Environment: FreeBSD localhost.localdomain 7.1-RELEASE-p13 FreeBSD 7.1-RELEASE-p13 #7 r210046M: Wed Jul 14 10:40:48 CEST 2010 victor@localhost.localdomain:/usr/obj/usr/src-7.1/sys/DEBUG amd64 >Description: If you're using --mda parameter this is the documented behaviour of fetchmail: (from man page) If fetchmail is running as root, it sets its user id while delivering mail through an MDA as follows: First, the FETCH- MAILUSER, LOGNAME, and USER environment variables are checked in this order. The value of the first variable from his list that is defined (even if it is empty!) is looked up in the system user database. If none of the variables is defined, fetchmail will use the real user id it was started with. If one of the variables was defined, but the user stated there isn't found, fetchmail continues running as root, without checking remaining variables on the list. Practically, this means that if you run fetchmail as root (not recommended), it is most useful to define the FETCHMAILUSER environment variable to set the user that the MDA should run as. Some MDAs (such as maildrop) are designed to be setuid root and setuid to the recipient's user id, so you don't lose functionality this way even when running fetchmail as unprivileged user. Check the MDA's manual for details. So if you login by ssh, become root, and start the fetchmail with a global config that needs an MDA, it will try to use the MDA of your LOGNAME or USER and will give an error: Oct 27 19:15:38 oro fetchmail[89429]: Cannot switch effective user id to 1001: Operation not permitted >How-To-Repeat: 1) create a standard configuration that use other program as MDA and make sure that MDA program doesn't have setuid or setgid perms. 2) login as your current user 3) do su to become root 4) start the fetchmail daemon /usr/local/etc/rc.d/fetchmail start 5) look at the logs, you'll see it's unable to deliver anything. >Fix: define in the shell script FETCHMAILUSER as = $fetchmail_user (by default, fetchmail) before starting fetchmail in daemon mode. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 17:40:26 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F95D10656A3; Wed, 27 Oct 2010 17:40:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 661168FC08; Wed, 27 Oct 2010 17:40:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RHeQHr054417; Wed, 27 Oct 2010 17:40:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RHeQuX054408; Wed, 27 Oct 2010 17:40:26 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 17:40:26 GMT Message-Id: <201010271740.o9RHeQuX054408@freefall.freebsd.org> To: victor@bsdes.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151783: mail/fetchmail: rc.d script broken in case of MDA use X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 17:40:26 -0000 Synopsis: mail/fetchmail: rc.d script broken in case of MDA use State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Oct 27 17:40:25 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151783 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 17:50:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F89C1065674 for ; Wed, 27 Oct 2010 17:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5E7AD8FC15 for ; Wed, 27 Oct 2010 17:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RHo7cl062080 for ; Wed, 27 Oct 2010 17:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RHo7gT062079; Wed, 27 Oct 2010 17:50:07 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 17:50:07 GMT Message-Id: <201010271750.o9RHo7gT062079@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151783: mail/fetchmail: rc.d script broken in case of MDA use X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 17:50:07 -0000 The following reply was made to PR ports/151783; it has been noted by GNATS. From: Edwin Groothuis To: chalpin@cs.wisc.edu Cc: bug-followup@FreeBSD.org Subject: Re: ports/151783: mail/fetchmail: rc.d script broken in case of MDA use Date: Wed, 27 Oct 2010 17:40:23 UT Maintainer of mail/fetchmail, Please note that PR ports/151783 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151783 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 18:10:06 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9ED2C106566C for ; Wed, 27 Oct 2010 18:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 564078FC0C for ; Wed, 27 Oct 2010 18:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RIA6FR083727 for ; Wed, 27 Oct 2010 18:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RIA62E083726; Wed, 27 Oct 2010 18:10:06 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 18:10:06 GMT Resent-Message-Id: <201010271810.o9RIA62E083726@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, carsten@sitracker.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECCA9106566B for ; Wed, 27 Oct 2010 18:04:58 +0000 (UTC) (envelope-from tomse@ns1.flipmode.dk) Received: from mail.flipmode.dk (mail.datamann.dk [93.160.61.2]) by mx1.freebsd.org (Postfix) with SMTP id 70BCA8FC08 for ; Wed, 27 Oct 2010 18:04:56 +0000 (UTC) Received: (qmail 43193 invoked by uid 1010); 27 Oct 2010 18:04:44 -0000 Received: from 127.0.0.1 by ns1.flipmode.dk (envelope-from , uid 1009) with qmail-scanner-1.25-st-qms (spamassassin: 3.2.5. perlscan: 1.25-st-qms. Clear:RC:1(127.0.0.1):. Processed in 0.085106 secs); 27 Oct 2010 18:04:44 -0000 Received: from unknown (HELO ns1.flipmode.dk) (127.0.0.1) by mail.flipmode.dk with SMTP; 27 Oct 2010 18:04:44 -0000 Received: (from root@localhost) by ns1.flipmode.dk (8.14.3/8.14.3/Submit) id o9RI4dYI043185; Wed, 27 Oct 2010 20:04:39 +0200 (CEST) (envelope-from tomse) Message-Id: <201010271804.o9RI4dYI043185@ns1.flipmode.dk> Date: Wed, 27 Oct 2010 20:04:39 +0200 (CEST) From: carsten@sitracker.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151784: NEW PORT: (Replacing bug 151363) www/sit - Incident tracker / Help Desk based on Apache/MySQL/PHP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: carsten@sitracker.org List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 18:10:06 -0000 >Number: 151784 >Category: ports >Synopsis: NEW PORT: (Replacing bug 151363) www/sit - Incident tracker / Help Desk based on Apache/MySQL/PHP >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 18:10:05 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Carsten Jensen >Release: FreeBSD 8.1-RELEASE i386 >Organization: sitracker.org >Environment: System: FreeBSD freebsd.vmhost.local 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo >Description: >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # sit # sit/files # sit/files/pkg-message.in # sit/Makefile # sit/distinfo # sit/pkg-descr # sit/pkg-plist # echo c - sit mkdir -p sit > /dev/null 2>&1 echo c - sit/files mkdir -p sit/files > /dev/null 2>&1 echo x - sit/files/pkg-message.in sed 's/^X//' >sit/files/pkg-message.in << 'f2916cefb7f57fd306adb102e644e535' X***************************************************************** X XCreate a database for SiT X XLogin to mysql using: X#> mysql -u root -p X Xmysql> create database sit; Xmysql> create user 'sit'@'localhost' identified by 'yourpassword' Xmysql> grant all privileges on sit.* to 'sit'@'localhost' X X***************************************************************** XYou will also need to configure Apache. Consider adding the following Xto your httpd.conf: X X Alias /sit "%%WWWDIR%%" X X X AllowOverride all X Allow from all X X XThen restart Apache: 'apachectl graceful' X XPlease visit 'http:///sit/' in a Xweb-browser and follow the configuration instructions. X Xgo to http://sitracker/wiki for more help X***************************************************************** f2916cefb7f57fd306adb102e644e535 echo x - sit/Makefile sed 's/^X//' >sit/Makefile << 'd5cccb5aedc2803d7c9cf499bd3236f8' X# New ports collection makefile for: sit X# Date created: Wed Oct 7, 2010 X# Whom: Carsten Jensen X# $FreeBSD$ X# X XPORTNAME= sit XPORTVERSION= 3.62 XCATEGORIES= www XMASTER_SITES= SF/sitracker/stable/${PORTVERSION}/ XDISTNAME= sit_${PORTVERSION} X XMAINTAINER= carsten@sitracker.org XCOMMENT= A PHP incident tracking system / Helpdesk X XLICENSE= GPLv2 X XUSE_PHP= pcre mysql session zlib mbstring XWANT_PHP_WEB= yes X XNO_BUILD= yes XWRKSRC= ${WRKDIR}/sit-${PORTVERSION} X XSUB_FILES= pkg-message X XOPTIONS=\ X IMAP "If you want email to work" on \ X MBSTRING "If you want to use the inbound email feature)" on \ X LDAP "If you want to use LDAP auth" off X X.include X X.if defined(WITH_IMAP) XUSE_PHP += imap X.endif X X.if defined(WITH_MBSTRING) XUSE_PHP += mbstring X.endif X X.if defined(WITH_LDAP) XUSE_PHP += ldap X.endif X Xpost-install: X @if [ -f ${WWWDIR}/config.inc.php ]; then \ X ${CP} -p ${WWWDIR}/config.inc.php ${WWWDIR}/config.inc.php.bak ; \ X fi X Xdo-install: X ${MKDIR} ${WWWDIR} X cd ${WRKSRC}; ${FIND} . \ X | ${CPIO} -pdm -R ${WWWOWN}:${WWWGRP} ${WWWDIR} X ${CHMOD} -R ${BINMODE} ${WWWDIR} X ${FIND} ${WWWDIR} ! -type d | ${XARGS} ${CHMOD} ${NOBINMODE} X X.if !defined(BATCH) X @ ${CAT} ${PKGMESSAGE} X.endif X.include d5cccb5aedc2803d7c9cf499bd3236f8 echo x - sit/distinfo sed 's/^X//' >sit/distinfo << 'e753c6a3896efcf6e09f69adc7f0cac2' XMD5 (sit_3.62.tar.gz) = 4dd6401dbcb32b6766140461544896d1 XSHA256 (sit_3.62.tar.gz) = 299003a20c49c075571050e79aae70e6090484305b19c51a39f98485765f4991 XSIZE (sit_3.62.tar.gz) = 2877243 e753c6a3896efcf6e09f69adc7f0cac2 echo x - sit/pkg-descr sed 's/^X//' >sit/pkg-descr << '5105fb3b0ef4b53fd4fe2b996e28bba4' XSupport Incident Tracker (or SiT!) is a Free Software/Open Source (GPL) Xweb based application which uses PHP and MySQL for tracking technical support Xcalls/emails (also commonly known as a 'Help Desk' or 'Support Ticket System'). XManage contacts, sites, technical support contracts and support incidents in Xone place. Send emails directly from SiT!, attach files and record every Xcommunication in the incident log. SiT is aware of Service Level Agreements and Xincidents are flagged if they stray outside of them. X XWWW: http://sitracker.org 5105fb3b0ef4b53fd4fe2b996e28bba4 echo x - sit/pkg-plist sed 's/^X//' >sit/pkg-plist << '5d9dcdbdf1df221781e8bcacc5aec160' X%%WWWDIR%%/README X%%WWWDIR%%/about.php X%%WWWDIR%%/ajaxdata.php X%%WWWDIR%%/auto.php X%%WWWDIR%%/billable_incidents.php X%%WWWDIR%%/billing_edit_activity_duration.php X%%WWWDIR%%/billing_transaction_approve.php X%%WWWDIR%%/billing_update_incident_balance.php X%%WWWDIR%%/book_holidays.php X%%WWWDIR%%/bulk_modify.php X%%WWWDIR%%/calendar.php X%%WWWDIR%%/calendar/activity_development.inc.php X%%WWWDIR%%/calendar/activity_managerial.inc.php X%%WWWDIR%%/calendar/activity_presales.inc.php X%%WWWDIR%%/calendar/activity_research.inc.php X%%WWWDIR%%/calendar/activity_support.inc.php X%%WWWDIR%%/calendar/activity_training.inc.php X%%WWWDIR%%/calendar/activity_travelling.inc.php X%%WWWDIR%%/calendar/ajax.js X%%WWWDIR%%/calendar/calendar.inc.php X%%WWWDIR%%/calendar/day.inc.php X%%WWWDIR%%/calendar/list.inc.php X%%WWWDIR%%/calendar/month.inc.php X%%WWWDIR%%/calendar/planner.css.php X%%WWWDIR%%/calendar/planner_schedule_commit.php X%%WWWDIR%%/calendar/planner_schedule_delete.php X%%WWWDIR%%/calendar/planner_schedule_getItems.php X%%WWWDIR%%/calendar/planner_schedule_getprevious.php X%%WWWDIR%%/calendar/planner_schedule_save.php X%%WWWDIR%%/calendar/planner_schedule_submit.php X%%WWWDIR%%/calendar/timesheet.inc.php X%%WWWDIR%%/calendar/timesheet_approve.php X%%WWWDIR%%/calendar/week.inc.php X%%WWWDIR%%/calendar/week_planner.js.php X%%WWWDIR%%/calendar/year.inc.php X%%WWWDIR%%/chart.php X%%WWWDIR%%/config.inc-dist.php X%%WWWDIR%%/config.php X%%WWWDIR%%/contact_add.php X%%WWWDIR%%/contact_delete.php X%%WWWDIR%%/contact_details.php X%%WWWDIR%%/contact_edit.php X%%WWWDIR%%/contact_support.php X%%WWWDIR%%/contacts.php X%%WWWDIR%%/contacts_show_orphans.php X%%WWWDIR%%/contract_add.php X%%WWWDIR%%/contract_add_contact.php X%%WWWDIR%%/contract_add_service.php X%%WWWDIR%%/contract_delete_contact.php X%%WWWDIR%%/contract_details.php X%%WWWDIR%%/contract_edit.php X%%WWWDIR%%/contract_edit_service.php X%%WWWDIR%%/contracts.php X%%WWWDIR%%/control_panel.php X%%WWWDIR%%/core.php X%%WWWDIR%%/delete_product_software.php X%%WWWDIR%%/delete_update.php X%%WWWDIR%%/doc/AUTHORS X%%WWWDIR%%/doc/CREDITS X%%WWWDIR%%/doc/Changelog X%%WWWDIR%%/doc/HACKING X%%WWWDIR%%/doc/INSTALL X%%WWWDIR%%/doc/LICENSE X%%WWWDIR%%/doc/README X%%WWWDIR%%/doc/TODO X%%WWWDIR%%/doc/UPGRADE X%%WWWDIR%%/doc/inbound-email X%%WWWDIR%%/download.php X%%WWWDIR%%/edit_backup_users.php X%%WWWDIR%%/edit_escalation_path.php X%%WWWDIR%%/edit_global_signature.php X%%WWWDIR%%/edit_holidays.php X%%WWWDIR%%/edit_product.php X%%WWWDIR%%/edit_software.php X%%WWWDIR%%/edit_user_permissions.php X%%WWWDIR%%/edit_user_skills.php X%%WWWDIR%%/escalation_path_add.php X%%WWWDIR%%/escalation_paths.php X%%WWWDIR%%/feedback.php X%%WWWDIR%%/feedback_browse.php X%%WWWDIR%%/feedback_form_addquestion.php X%%WWWDIR%%/feedback_form_edit.php X%%WWWDIR%%/feedback_form_editquestion.php X%%WWWDIR%%/feedback_form_list.php X%%WWWDIR%%/forgotpwd.php X%%WWWDIR%%/ftp_delete.php X%%WWWDIR%%/ftp_edit_file.php X%%WWWDIR%%/ftp_file_details.php X%%WWWDIR%%/ftp_list_files.php X%%WWWDIR%%/ftp_publish.php X%%WWWDIR%%/ftp_upload_file.php X%%WWWDIR%%/help.php X%%WWWDIR%%/help/cy-GB/AddressDataProtection.txt X%%WWWDIR%%/help/cy-GB/AutoAssignIncidents.txt X%%WWWDIR%%/help/cy-GB/CTRLAddRemove.txt X%%WWWDIR%%/help/cy-GB/CustomerImpactEngineer.txt X%%WWWDIR%%/help/cy-GB/Dashboard.txt X%%WWWDIR%%/help/cy-GB/EmailDataProtection.txt X%%WWWDIR%%/help/cy-GB/EmailSignatureTip.txt X%%WWWDIR%%/help/cy-GB/InventoryID.txt X%%WWWDIR%%/help/cy-GB/InventoryPrivacy.txt X%%WWWDIR%%/help/cy-GB/KBDistribution.txt X%%WWWDIR%%/help/cy-GB/KBPrivate.txt X%%WWWDIR%%/help/cy-GB/KBRestricted.txt X%%WWWDIR%%/help/cy-GB/LDAPAttributeMap.txt X%%WWWDIR%%/help/cy-GB/MessageTip.txt X%%WWWDIR%%/help/cy-GB/NewSupportedContact.txt X%%WWWDIR%%/help/cy-GB/OtherIncidents.txt X%%WWWDIR%%/help/cy-GB/ProblemDescriptionEngineer.txt X%%WWWDIR%%/help/cy-GB/ProblemReproductionEngineer.txt X%%WWWDIR%%/help/cy-GB/QualificationsTip.txt X%%WWWDIR%%/help/cy-GB/RevokeNotice.txt X%%WWWDIR%%/help/cy-GB/Scheduler.txt X%%WWWDIR%%/help/cy-GB/SchedulerParameters.txt X%%WWWDIR%%/help/cy-GB/SchedulerStatus.txt X%%WWWDIR%%/help/cy-GB/SeparatedBySpaces.txt X%%WWWDIR%%/help/cy-GB/ServiceLevelCustomerPeriod.txt X%%WWWDIR%%/help/cy-GB/ServiceLevelEngineerPeriod.txt X%%WWWDIR%%/help/cy-GB/ServiceLevelLimit.txt X%%WWWDIR%%/help/cy-GB/ServiceLevelTimed.txt X%%WWWDIR%%/help/cy-GB/SetYourStatus.txt X%%WWWDIR%%/help/cy-GB/SiteIncidentVisibility.txt X%%WWWDIR%%/help/cy-GB/TaskPrivacy.txt X%%WWWDIR%%/help/cy-GB/TaskUser.txt X%%WWWDIR%%/help/cy-GB/TelephoneDataProtection.txt X%%WWWDIR%%/help/cy-GB/UserSource.txt X%%WWWDIR%%/help/cy-GB/UserStartdate.txt X%%WWWDIR%%/help/cy-GB/VisibleToCustomer.txt X%%WWWDIR%%/help/cy-GB/WorkAroundsAttemptedEngineer.txt X%%WWWDIR%%/help/cy-GB/tips.txt X%%WWWDIR%%/help/da-DK/AddressDataProtection.txt X%%WWWDIR%%/help/da-DK/AutoAssignIncidents.txt X%%WWWDIR%%/help/da-DK/CTRLAddRemove.txt X%%WWWDIR%%/help/da-DK/CustomerImpactEngineer.txt X%%WWWDIR%%/help/da-DK/Dashboard.txt X%%WWWDIR%%/help/da-DK/EmailDataProtection.txt X%%WWWDIR%%/help/da-DK/EmailSignatureTip.txt X%%WWWDIR%%/help/da-DK/InventoryID.txt X%%WWWDIR%%/help/da-DK/InventoryPrivacy.txt X%%WWWDIR%%/help/da-DK/KBDistribution.txt X%%WWWDIR%%/help/da-DK/KBPrivate.txt X%%WWWDIR%%/help/da-DK/KBRestricted.txt X%%WWWDIR%%/help/da-DK/LDAPAttributeMap.txt X%%WWWDIR%%/help/da-DK/MessageTip.txt X%%WWWDIR%%/help/da-DK/NewSupportedContact.txt X%%WWWDIR%%/help/da-DK/OtherIncidents.txt X%%WWWDIR%%/help/da-DK/ProblemDescriptionEngineer.txt X%%WWWDIR%%/help/da-DK/ProblemReproductionEngineer.txt X%%WWWDIR%%/help/da-DK/QualificationsTip.txt X%%WWWDIR%%/help/da-DK/RevokeNotice.txt X%%WWWDIR%%/help/da-DK/Scheduler.txt X%%WWWDIR%%/help/da-DK/SchedulerParameters.txt X%%WWWDIR%%/help/da-DK/SchedulerStatus.txt X%%WWWDIR%%/help/da-DK/SeparatedBySpaces.txt X%%WWWDIR%%/help/da-DK/ServiceLevelCustomerPeriod.txt X%%WWWDIR%%/help/da-DK/ServiceLevelEngineerPeriod.txt X%%WWWDIR%%/help/da-DK/ServiceLevelLimit.txt X%%WWWDIR%%/help/da-DK/ServiceLevelTimed.txt X%%WWWDIR%%/help/da-DK/SetYourStatus.txt X%%WWWDIR%%/help/da-DK/SiteIncidentVisibility.txt X%%WWWDIR%%/help/da-DK/TaskPrivacy.txt X%%WWWDIR%%/help/da-DK/TaskUser.txt X%%WWWDIR%%/help/da-DK/TelephoneDataProtection.txt X%%WWWDIR%%/help/da-DK/UserSource.txt X%%WWWDIR%%/help/da-DK/UserStartdate.txt X%%WWWDIR%%/help/da-DK/VisibleToCustomer.txt X%%WWWDIR%%/help/da-DK/WorkAroundsAttemptedEngineer.txt X%%WWWDIR%%/help/da-DK/help.html X%%WWWDIR%%/help/da-DK/portal_help.html X%%WWWDIR%%/help/da-DK/tips.txt X%%WWWDIR%%/help/en-GB/AddressDataProtection.txt X%%WWWDIR%%/help/en-GB/AutoAssignIncidents.txt X%%WWWDIR%%/help/en-GB/CTRLAddRemove.txt X%%WWWDIR%%/help/en-GB/CustomerImpactEngineer.txt X%%WWWDIR%%/help/en-GB/Dashboard.txt X%%WWWDIR%%/help/en-GB/EmailDataProtection.txt X%%WWWDIR%%/help/en-GB/EmailSignatureTip.txt X%%WWWDIR%%/help/en-GB/InventoryID.txt X%%WWWDIR%%/help/en-GB/InventoryPrivacy.txt X%%WWWDIR%%/help/en-GB/KBDistribution.txt X%%WWWDIR%%/help/en-GB/KBPrivate.txt X%%WWWDIR%%/help/en-GB/KBRestricted.txt X%%WWWDIR%%/help/en-GB/LDAPAttributeMap.txt X%%WWWDIR%%/help/en-GB/MessageTip.txt X%%WWWDIR%%/help/en-GB/NewSupportedContact.txt X%%WWWDIR%%/help/en-GB/OtherIncidents.txt X%%WWWDIR%%/help/en-GB/ProblemDescriptionEngineer.txt X%%WWWDIR%%/help/en-GB/ProblemReproductionEngineer.txt X%%WWWDIR%%/help/en-GB/QualificationsTip.txt X%%WWWDIR%%/help/en-GB/RevokeNotice.txt X%%WWWDIR%%/help/en-GB/Scheduler.txt X%%WWWDIR%%/help/en-GB/SchedulerParameters.txt X%%WWWDIR%%/help/en-GB/SchedulerStatus.txt X%%WWWDIR%%/help/en-GB/SeparatedBySpaces.txt X%%WWWDIR%%/help/en-GB/ServiceLevelCustomerPeriod.txt X%%WWWDIR%%/help/en-GB/ServiceLevelEngineerPeriod.txt X%%WWWDIR%%/help/en-GB/ServiceLevelLimit.txt X%%WWWDIR%%/help/en-GB/ServiceLevelTimed.txt X%%WWWDIR%%/help/en-GB/SetYourStatus.txt X%%WWWDIR%%/help/en-GB/SiteIncidentVisibility.txt X%%WWWDIR%%/help/en-GB/TaskPrivacy.txt X%%WWWDIR%%/help/en-GB/TaskUser.txt X%%WWWDIR%%/help/en-GB/TelephoneDataProtection.txt X%%WWWDIR%%/help/en-GB/UserSource.txt X%%WWWDIR%%/help/en-GB/UserStartdate.txt X%%WWWDIR%%/help/en-GB/VisibleToCustomer.txt X%%WWWDIR%%/help/en-GB/WorkAroundsAttemptedEngineer.txt X%%WWWDIR%%/help/en-GB/help.html X%%WWWDIR%%/help/en-GB/portal_help.html X%%WWWDIR%%/help/en-GB/tips.txt X%%WWWDIR%%/help/es-MX/AddressDataProtection.txt X%%WWWDIR%%/help/es-MX/AutoAssignIncidents.txt X%%WWWDIR%%/help/es-MX/CTRLAddRemove.txt X%%WWWDIR%%/help/es-MX/CustomerImpactEngineer.txt X%%WWWDIR%%/help/es-MX/Dashboard.txt X%%WWWDIR%%/help/es-MX/EmailDataProtection.txt X%%WWWDIR%%/help/es-MX/EmailSignatureTip.txt X%%WWWDIR%%/help/es-MX/InventoryID.txt X%%WWWDIR%%/help/es-MX/InventoryPrivacy.txt X%%WWWDIR%%/help/es-MX/KBDistribution.txt X%%WWWDIR%%/help/es-MX/KBPrivate.txt X%%WWWDIR%%/help/es-MX/KBRestricted.txt X%%WWWDIR%%/help/es-MX/LDAPAttributeMap.txt X%%WWWDIR%%/help/es-MX/MessageTip.txt X%%WWWDIR%%/help/es-MX/NewSupportedContact.txt X%%WWWDIR%%/help/es-MX/OtherIncidents.txt X%%WWWDIR%%/help/es-MX/ProblemDescriptionEngineer.txt X%%WWWDIR%%/help/es-MX/ProblemReproductionEngineer.txt X%%WWWDIR%%/help/es-MX/QualificationsTip.txt X%%WWWDIR%%/help/es-MX/RevokeNotice.txt X%%WWWDIR%%/help/es-MX/Scheduler.txt X%%WWWDIR%%/help/es-MX/SchedulerParameters.txt X%%WWWDIR%%/help/es-MX/SchedulerStatus.txt X%%WWWDIR%%/help/es-MX/SeparatedBySpaces.txt X%%WWWDIR%%/help/es-MX/ServiceLevelCustomerPeriod.txt X%%WWWDIR%%/help/es-MX/ServiceLevelEngineerPeriod.txt X%%WWWDIR%%/help/es-MX/ServiceLevelLimit.txt X%%WWWDIR%%/help/es-MX/ServiceLevelTimed.txt X%%WWWDIR%%/help/es-MX/SetYourStatus.txt X%%WWWDIR%%/help/es-MX/SiteIncidentVisibility.txt X%%WWWDIR%%/help/es-MX/TaskPrivacy.txt X%%WWWDIR%%/help/es-MX/TaskUser.txt X%%WWWDIR%%/help/es-MX/TelephoneDataProtection.txt X%%WWWDIR%%/help/es-MX/UserSource.txt X%%WWWDIR%%/help/es-MX/UserStartdate.txt X%%WWWDIR%%/help/es-MX/VisibleToCustomer.txt X%%WWWDIR%%/help/es-MX/WorkAroundsAttemptedEngineer.txt X%%WWWDIR%%/help/es-MX/help.html X%%WWWDIR%%/help/es-MX/tips.txt X%%WWWDIR%%/help/it-IT/AddressDataProtection.txt X%%WWWDIR%%/help/it-IT/CustomerImpactEngineer.txt X%%WWWDIR%%/help/it-IT/Dashboard.txt X%%WWWDIR%%/help/it-IT/EmailDataProtection.txt X%%WWWDIR%%/help/it-IT/EmailSignatureTip.txt X%%WWWDIR%%/help/it-IT/InventoryID.txt X%%WWWDIR%%/help/it-IT/InventoryPrivacy.txt X%%WWWDIR%%/help/it-IT/KBDistribution.txt X%%WWWDIR%%/help/it-IT/KBPrivate.txt X%%WWWDIR%%/help/it-IT/KBRestricted.txt X%%WWWDIR%%/help/it-IT/MessageTip.txt X%%WWWDIR%%/help/it-IT/NewSupportedContact.txt X%%WWWDIR%%/help/it-IT/OtherIncidents.txt X%%WWWDIR%%/help/it-IT/ProblemDescriptionEngineer.txt X%%WWWDIR%%/help/it-IT/ProblemReproductionEngineer.txt X%%WWWDIR%%/help/it-IT/QualificationsTip.txt X%%WWWDIR%%/help/it-IT/RevokeNotice.txt X%%WWWDIR%%/help/it-IT/Scheduler.txt X%%WWWDIR%%/help/it-IT/SchedulerParameters.txt X%%WWWDIR%%/help/it-IT/SchedulerStatus.txt X%%WWWDIR%%/help/it-IT/SeparatedBySpaces.txt X%%WWWDIR%%/help/it-IT/ServiceLevelTimed.txt X%%WWWDIR%%/help/it-IT/SetYourStatus.txt X%%WWWDIR%%/help/it-IT/SiteIncidentVisibility.txt X%%WWWDIR%%/help/it-IT/TaskPrivacy.txt X%%WWWDIR%%/help/it-IT/TaskUser.txt X%%WWWDIR%%/help/it-IT/TelephoneDataProtection.txt X%%WWWDIR%%/help/it-IT/VisibleToCustomer.txt X%%WWWDIR%%/help/it-IT/WorkAroundsAttemptedEngineer.txt X%%WWWDIR%%/help/it-IT/help.html X%%WWWDIR%%/help/it-IT/tips.txt X%%WWWDIR%%/help/ru-RU/AddressDataProtection.txt X%%WWWDIR%%/help/ru-RU/AutoAssignIncidents.txt X%%WWWDIR%%/help/ru-RU/CTRLAddRemove.txt X%%WWWDIR%%/help/ru-RU/CustomerImpactEngineer.txt X%%WWWDIR%%/help/ru-RU/EmailDataProtection.txt X%%WWWDIR%%/help/ru-RU/EmailSignatureTip.txt X%%WWWDIR%%/help/ru-RU/InventoryID.txt X%%WWWDIR%%/help/ru-RU/InventoryPrivacy.txt X%%WWWDIR%%/help/ru-RU/KBDistribution.txt X%%WWWDIR%%/help/ru-RU/KBPrivate.txt X%%WWWDIR%%/help/ru-RU/KBRestricted.txt X%%WWWDIR%%/help/ru-RU/LDAPAttributeMap.txt X%%WWWDIR%%/help/ru-RU/MessageTip.txt X%%WWWDIR%%/help/ru-RU/OtherIncidents.txt X%%WWWDIR%%/help/ru-RU/ProblemDescriptionEngineer.txt X%%WWWDIR%%/help/ru-RU/ProblemReproductionEngineer.txt X%%WWWDIR%%/help/ru-RU/QualificationsTip.txt X%%WWWDIR%%/help/ru-RU/RevokeNotice.txt X%%WWWDIR%%/help/ru-RU/Scheduler.txt X%%WWWDIR%%/help/ru-RU/SchedulerStatus.txt X%%WWWDIR%%/help/ru-RU/SeparatedBySpaces.txt X%%WWWDIR%%/help/ru-RU/SetYourStatus.txt X%%WWWDIR%%/help/ru-RU/TaskUser.txt X%%WWWDIR%%/help/ru-RU/TelephoneDataProtection.txt X%%WWWDIR%%/help/ru-RU/VisibleToCustomer.txt X%%WWWDIR%%/help/ru-RU/WorkAroundsAttemptedEngineer.txt X%%WWWDIR%%/holding_queue.php X%%WWWDIR%%/holiday_add.php X%%WWWDIR%%/holiday_approve.php X%%WWWDIR%%/holiday_request.php X%%WWWDIR%%/holidays.php X%%WWWDIR%%/i18n/bg-BG.inc.php X%%WWWDIR%%/i18n/ca-ES.inc.php X%%WWWDIR%%/i18n/cy-GB.inc.php X%%WWWDIR%%/i18n/da-DK.inc.php X%%WWWDIR%%/i18n/de-DE.inc.php X%%WWWDIR%%/i18n/en-GB.inc.php X%%WWWDIR%%/i18n/en-US.inc.php X%%WWWDIR%%/i18n/es-CO.inc.php X%%WWWDIR%%/i18n/es-ES.inc.php X%%WWWDIR%%/i18n/es-MX.inc.php X%%WWWDIR%%/i18n/fr-FR.inc.php X%%WWWDIR%%/i18n/it-IT.inc.php X%%WWWDIR%%/i18n/ja-JP.inc.php X%%WWWDIR%%/i18n/lt-LT.inc.php X%%WWWDIR%%/i18n/nb-NO.inc.php X%%WWWDIR%%/i18n/nl-NL.inc.php X%%WWWDIR%%/i18n/pt-BR.inc.php X%%WWWDIR%%/i18n/pt-PT.inc.php X%%WWWDIR%%/i18n/ro-RO.inc.php X%%WWWDIR%%/i18n/ru-RU.inc.php X%%WWWDIR%%/i18n/sl-SL.inc.php X%%WWWDIR%%/i18n/zh-CN.inc.php X%%WWWDIR%%/i18n/zh-TW.inc.php X%%WWWDIR%%/i18n/zz.inc.php X%%WWWDIR%%/images/ajax-loader.gif X%%WWWDIR%%/images/crit_priority.gif X%%WWWDIR%%/images/dashlet-ajax-loader.gif X%%WWWDIR%%/images/emoticons/angry.png X%%WWWDIR%%/images/emoticons/beer.png X%%WWWDIR%%/images/emoticons/embarassed.png X%%WWWDIR%%/images/emoticons/foot_in_mouth.png X%%WWWDIR%%/images/emoticons/omg.png X%%WWWDIR%%/images/emoticons/sad.png X%%WWWDIR%%/images/emoticons/smile.png X%%WWWDIR%%/images/emoticons/teeth.png X%%WWWDIR%%/images/emoticons/thumbs_down.png X%%WWWDIR%%/images/emoticons/thumbs_up.png X%%WWWDIR%%/images/emoticons/tongue.png X%%WWWDIR%%/images/emoticons/wink.png X%%WWWDIR%%/images/graph_scale.jpg X%%WWWDIR%%/images/halfday-am.gif X%%WWWDIR%%/images/halfday-pm.gif X%%WWWDIR%%/images/high_priority.gif X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/1day.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/1downarrow.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/1rightarrow.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/1uparrow.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/2rightarrow.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/abentry.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/back.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/comment.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/connect_established.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/edit.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/endturn.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/enum_list.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/eventdelete.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/fileclose.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/filenew.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/flag.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/forward.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/idea.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/info.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/ktip.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/mail_generic.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/mail_send.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/stop.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/actions/todo.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/apps/date.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/apps/kdeprint_computer.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/apps/kdmconfig.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/apps/ksmiletris.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/apps/licq.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/apps/password.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/apps/personal.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/mimetypes/document2.png X%%WWWDIR%%/images/icons/kdeclassic/16x16/mimetypes/empty.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/LICENSE X%%WWWDIR%%/images/icons/kdeclassic/32x32/README X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/README X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/applix.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/applix.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/binary.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/binary.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/binary2.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/binary2.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/cdtrack.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/cdtrack.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/colorscm.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/colorscm.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/core.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/core.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/deb.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/deb.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/document.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/document.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/document2.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/document2.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/dvi.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/dvi.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/folder.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/font_bitmap.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/font_bitmap.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/font_truetype.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/font_truetype.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/font_type1.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/font_type1.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/gettext.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/gettext.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/gf.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/gf.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/html.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/html.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/image.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/image.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/info.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/info.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/kmultiple.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/kmultiple.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/kugardata.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/kugardata.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/log.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/log.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/make.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/make.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/man.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/man.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/metafont.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/metafont.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/midi.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/midi.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/mime_empty.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/mime_empty.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/misc_doc.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/misc_doc.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/netscape_doc.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/netscape_doc.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/news.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/news.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/pdf.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/pdf.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/pk.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/pk.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/postscript.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/postscript.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/readme.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/readme.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/real_doc.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/real_doc.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/recycled.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/recycled.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/resource.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/resource.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/rpm.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/rpm.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/shellscript.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/shellscript.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/shellscript2.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/shellscript2.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/sound.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/sound.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_c.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_c.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_cpp.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_cpp.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_f.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_f.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_h.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_h.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_java.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_java.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_l.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_l.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_moc.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_moc.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_o.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_o.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_p.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_p.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_pl.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_pl.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_py.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_py.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_s.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_s.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_y.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/source_y.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/spreadsheet.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/spreadsheet.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/tar.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/tar.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/tex.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/tex.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/tgz.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/tgz.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/txt.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/txt.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/unknown.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/unknown.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/vcalendar.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/vcalendar.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/vcard.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/vcard.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/vectorgfx.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/vectorgfx.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/video.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/video.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/widget_doc.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/widget_doc.png X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/wordprocessing.gif X%%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes/wordprocessing.png X%%WWWDIR%%/images/icons/kdeclassic/LICENSE X%%WWWDIR%%/images/icons/oxygen/12x12/delete.png X%%WWWDIR%%/images/icons/oxygen/12x12/feed-icon.png X%%WWWDIR%%/images/icons/oxygen/16x16/actionplan.png X%%WWWDIR%%/images/icons/oxygen/16x16/activities.png X%%WWWDIR%%/images/icons/oxygen/16x16/add.png X%%WWWDIR%%/images/icons/oxygen/16x16/adduser.png X%%WWWDIR%%/images/icons/oxygen/16x16/aim.png X%%WWWDIR%%/images/icons/oxygen/16x16/attach.png X%%WWWDIR%%/images/icons/oxygen/16x16/auto.png X%%WWWDIR%%/images/icons/oxygen/16x16/billing.png X%%WWWDIR%%/images/icons/oxygen/16x16/blackflag.png X%%WWWDIR%%/images/icons/oxygen/16x16/blueflag.png X%%WWWDIR%%/images/icons/oxygen/16x16/callin.png X%%WWWDIR%%/images/icons/oxygen/16x16/callout.png X%%WWWDIR%%/images/icons/oxygen/16x16/close.png X%%WWWDIR%%/images/icons/oxygen/16x16/configure.png X%%WWWDIR%%/images/icons/oxygen/16x16/contact.png X%%WWWDIR%%/images/icons/oxygen/16x16/contact_new.png X%%WWWDIR%%/images/icons/oxygen/16x16/contract.png X%%WWWDIR%%/images/icons/oxygen/16x16/cyanflag.png X%%WWWDIR%%/images/icons/oxygen/16x16/dashboard.png X%%WWWDIR%%/images/icons/oxygen/16x16/dashboardadd.png X%%WWWDIR%%/images/icons/oxygen/16x16/delete.png X%%WWWDIR%%/images/icons/oxygen/16x16/draft.png X%%WWWDIR%%/images/icons/oxygen/16x16/edit.png X%%WWWDIR%%/images/icons/oxygen/16x16/edituser.png X%%WWWDIR%%/images/icons/oxygen/16x16/email.png X%%WWWDIR%%/images/icons/oxygen/16x16/emailin.png X%%WWWDIR%%/images/icons/oxygen/16x16/emailout.png X%%WWWDIR%%/images/icons/oxygen/16x16/error.png X%%WWWDIR%%/images/icons/oxygen/16x16/externalinfo.png X%%WWWDIR%%/images/icons/oxygen/16x16/feed-icon.png X%%WWWDIR%%/images/icons/oxygen/16x16/filter.png X%%WWWDIR%%/images/icons/oxygen/16x16/folder.png X%%WWWDIR%%/images/icons/oxygen/16x16/greenflag.png X%%WWWDIR%%/images/icons/oxygen/16x16/holiday.png X%%WWWDIR%%/images/icons/oxygen/16x16/icq.png X%%WWWDIR%%/images/icons/oxygen/16x16/info.png X%%WWWDIR%%/images/icons/oxygen/16x16/initialresponse.png X%%WWWDIR%%/images/icons/oxygen/16x16/inventory.png X%%WWWDIR%%/images/icons/oxygen/16x16/kb.png X%%WWWDIR%%/images/icons/oxygen/16x16/language.png X%%WWWDIR%%/images/icons/oxygen/16x16/leftarrow.png X%%WWWDIR%%/images/icons/oxygen/16x16/locked.png X%%WWWDIR%%/images/icons/oxygen/16x16/messageflag.png X%%WWWDIR%%/images/icons/oxygen/16x16/msn.png X%%WWWDIR%%/images/icons/oxygen/16x16/navdown.png X%%WWWDIR%%/images/icons/oxygen/16x16/navright.png X%%WWWDIR%%/images/icons/oxygen/16x16/navup.png X%%WWWDIR%%/images/icons/oxygen/16x16/note.png X%%WWWDIR%%/images/icons/oxygen/16x16/offline.png X%%WWWDIR%%/images/icons/oxygen/16x16/online.png X%%WWWDIR%%/images/icons/oxygen/16x16/open.png X%%WWWDIR%%/images/icons/oxygen/16x16/pickdate.png X%%WWWDIR%%/images/icons/oxygen/16x16/private.png X%%WWWDIR%%/images/icons/oxygen/16x16/probdef.png X%%WWWDIR%%/images/icons/oxygen/16x16/product.png X%%WWWDIR%%/images/icons/oxygen/16x16/reassign.png X%%WWWDIR%%/images/icons/oxygen/16x16/redflag.png X%%WWWDIR%%/images/icons/oxygen/16x16/reload.png X%%WWWDIR%%/images/icons/oxygen/16x16/reopen.png X%%WWWDIR%%/images/icons/oxygen/16x16/reports.png X%%WWWDIR%%/images/icons/oxygen/16x16/research.png X%%WWWDIR%%/images/icons/oxygen/16x16/review.png X%%WWWDIR%%/images/icons/oxygen/16x16/rightarrow.png X%%WWWDIR%%/images/icons/oxygen/16x16/save.png X%%WWWDIR%%/images/icons/oxygen/16x16/search.png X%%WWWDIR%%/images/icons/oxygen/16x16/site.png X%%WWWDIR%%/images/icons/oxygen/16x16/skill.png X%%WWWDIR%%/images/icons/oxygen/16x16/sla.png X%%WWWDIR%%/images/icons/oxygen/16x16/slamet.png X%%WWWDIR%%/images/icons/oxygen/16x16/solution.png X%%WWWDIR%%/images/icons/oxygen/16x16/statistics.png X%%WWWDIR%%/images/icons/oxygen/16x16/support.png X%%WWWDIR%%/images/icons/oxygen/16x16/tag.png X%%WWWDIR%%/images/icons/oxygen/16x16/task.png X%%WWWDIR%%/images/icons/oxygen/16x16/tempassign.png X%%WWWDIR%%/images/icons/oxygen/16x16/tick.png X%%WWWDIR%%/images/icons/oxygen/16x16/timer.png X%%WWWDIR%%/images/icons/oxygen/16x16/tip.png X%%WWWDIR%%/images/icons/oxygen/16x16/trigger.png X%%WWWDIR%%/images/icons/oxygen/16x16/triggeraction.png X%%WWWDIR%%/images/icons/oxygen/16x16/unsaved.png X%%WWWDIR%%/images/icons/oxygen/16x16/user.png X%%WWWDIR%%/images/icons/oxygen/16x16/vcard.png X%%WWWDIR%%/images/icons/oxygen/16x16/warning.png X%%WWWDIR%%/images/icons/oxygen/16x16/webupdate.png X%%WWWDIR%%/images/icons/oxygen/16x16/yellowflag.png X%%WWWDIR%%/images/icons/oxygen/32x32/activities.png X%%WWWDIR%%/images/icons/oxygen/32x32/add.png X%%WWWDIR%%/images/icons/oxygen/32x32/addproduct.png X%%WWWDIR%%/images/icons/oxygen/32x32/adduser.png X%%WWWDIR%%/images/icons/oxygen/32x32/attach.png X%%WWWDIR%%/images/icons/oxygen/32x32/billing.png X%%WWWDIR%%/images/icons/oxygen/32x32/blackflag.png X%%WWWDIR%%/images/icons/oxygen/32x32/blueflag.png X%%WWWDIR%%/images/icons/oxygen/32x32/close.png X%%WWWDIR%%/images/icons/oxygen/32x32/configure.png X%%WWWDIR%%/images/icons/oxygen/32x32/contact.png X%%WWWDIR%%/images/icons/oxygen/32x32/contract.png X%%WWWDIR%%/images/icons/oxygen/32x32/cyanflag.png X%%WWWDIR%%/images/icons/oxygen/32x32/dashboard.png X%%WWWDIR%%/images/icons/oxygen/32x32/edit.png X%%WWWDIR%%/images/icons/oxygen/32x32/edituser.png X%%WWWDIR%%/images/icons/oxygen/32x32/email.png X%%WWWDIR%%/images/icons/oxygen/32x32/error.png X%%WWWDIR%%/images/icons/oxygen/32x32/escalation.png X%%WWWDIR%%/images/icons/oxygen/32x32/feed-icon.png X%%WWWDIR%%/images/icons/oxygen/32x32/folder.png X%%WWWDIR%%/images/icons/oxygen/32x32/greenflag.png X%%WWWDIR%%/images/icons/oxygen/32x32/help.png X%%WWWDIR%%/images/icons/oxygen/32x32/holiday.png X%%WWWDIR%%/images/icons/oxygen/32x32/info.png X%%WWWDIR%%/images/icons/oxygen/32x32/inventory.png X%%WWWDIR%%/images/icons/oxygen/32x32/kb.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/binary.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/document.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/font.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/html.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/image.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/info.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/java_src.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/log.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/man.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/message.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/pdf.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/shellscript.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/sound.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/source.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/source_cpp.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/source_py.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/spreadsheet.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/tar.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/tgz.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/txt.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/unknown.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/vcard.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/video.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/wordprocessing.png X%%WWWDIR%%/images/icons/oxygen/32x32/mimetypes/xml.png X%%WWWDIR%%/images/icons/oxygen/32x32/note.png X%%WWWDIR%%/images/icons/oxygen/32x32/permissiondenied.png X%%WWWDIR%%/images/icons/oxygen/32x32/product.png X%%WWWDIR%%/images/icons/oxygen/32x32/reassign.png X%%WWWDIR%%/images/icons/oxygen/32x32/redflag.png X%%WWWDIR%%/images/icons/oxygen/32x32/reports.png X%%WWWDIR%%/images/icons/oxygen/32x32/search.png X%%WWWDIR%%/images/icons/oxygen/32x32/settings.png X%%WWWDIR%%/images/icons/oxygen/32x32/site.png X%%WWWDIR%%/images/icons/oxygen/32x32/skill.png X%%WWWDIR%%/images/icons/oxygen/32x32/sla.png X%%WWWDIR%%/images/icons/oxygen/32x32/statistics.png X%%WWWDIR%%/images/icons/oxygen/32x32/support.png X%%WWWDIR%%/images/icons/oxygen/32x32/tag.png X%%WWWDIR%%/images/icons/oxygen/32x32/task.png X%%WWWDIR%%/images/icons/oxygen/32x32/templates.png X%%WWWDIR%%/images/icons/oxygen/32x32/trigger.png X%%WWWDIR%%/images/icons/oxygen/32x32/triggeraction.png X%%WWWDIR%%/images/icons/oxygen/32x32/user.png X%%WWWDIR%%/images/icons/oxygen/32x32/whiteflag.png X%%WWWDIR%%/images/icons/oxygen/32x32/yellowflag.png X%%WWWDIR%%/images/icons/oxygen/LICENCE X%%WWWDIR%%/images/icons/sit/12x12/delete.png X%%WWWDIR%%/images/icons/sit/12x12/feed-icon.png X%%WWWDIR%%/images/icons/sit/16x16/actionplan.png X%%WWWDIR%%/images/icons/sit/16x16/add.png X%%WWWDIR%%/images/icons/sit/16x16/adduser.png X%%WWWDIR%%/images/icons/sit/16x16/aim.png X%%WWWDIR%%/images/icons/sit/16x16/attach.png X%%WWWDIR%%/images/icons/sit/16x16/auto.png X%%WWWDIR%%/images/icons/sit/16x16/billing.png X%%WWWDIR%%/images/icons/sit/16x16/blackflag.png X%%WWWDIR%%/images/icons/sit/16x16/blank.png X%%WWWDIR%%/images/icons/sit/16x16/blueflag.png X%%WWWDIR%%/images/icons/sit/16x16/callin.png X%%WWWDIR%%/images/icons/sit/16x16/callout.png X%%WWWDIR%%/images/icons/sit/16x16/chase.png X%%WWWDIR%%/images/icons/sit/16x16/chased.png X%%WWWDIR%%/images/icons/sit/16x16/close.png X%%WWWDIR%%/images/icons/sit/16x16/configure.png X%%WWWDIR%%/images/icons/sit/16x16/contact.png X%%WWWDIR%%/images/icons/sit/16x16/contract.png X%%WWWDIR%%/images/icons/sit/16x16/cyanflag.png X%%WWWDIR%%/images/icons/sit/16x16/dashboard.png X%%WWWDIR%%/images/icons/sit/16x16/dashboardadd.png X%%WWWDIR%%/images/icons/sit/16x16/delete.png X%%WWWDIR%%/images/icons/sit/16x16/draft.png X%%WWWDIR%%/images/icons/sit/16x16/edit.png X%%WWWDIR%%/images/icons/sit/16x16/email.png X%%WWWDIR%%/images/icons/sit/16x16/emailin.png X%%WWWDIR%%/images/icons/sit/16x16/emailout.png X%%WWWDIR%%/images/icons/sit/16x16/error.png X%%WWWDIR%%/images/icons/sit/16x16/externalinfo.png X%%WWWDIR%%/images/icons/sit/16x16/feed-icon.png X%%WWWDIR%%/images/icons/sit/16x16/filter.png X%%WWWDIR%%/images/icons/sit/16x16/folder.png X%%WWWDIR%%/images/icons/sit/16x16/greenflag.png X%%WWWDIR%%/images/icons/sit/16x16/holiday.png X%%WWWDIR%%/images/icons/sit/16x16/icq.png X%%WWWDIR%%/images/icons/sit/16x16/info.png X%%WWWDIR%%/images/icons/sit/16x16/initialresponse.png X%%WWWDIR%%/images/icons/sit/16x16/inventory.png X%%WWWDIR%%/images/icons/sit/16x16/kb.png X%%WWWDIR%%/images/icons/sit/16x16/language.png X%%WWWDIR%%/images/icons/sit/16x16/leftarrow.png X%%WWWDIR%%/images/icons/sit/16x16/locked.png X%%WWWDIR%%/images/icons/sit/16x16/messageflag.png X%%WWWDIR%%/images/icons/sit/16x16/msn.png X%%WWWDIR%%/images/icons/sit/16x16/navdown.png X%%WWWDIR%%/images/icons/sit/16x16/navright.png X%%WWWDIR%%/images/icons/sit/16x16/navup.png X%%WWWDIR%%/images/icons/sit/16x16/note.png X%%WWWDIR%%/images/icons/sit/16x16/offline.png X%%WWWDIR%%/images/icons/sit/16x16/online.png X%%WWWDIR%%/images/icons/sit/16x16/open.png X%%WWWDIR%%/images/icons/sit/16x16/pickdate.png X%%WWWDIR%%/images/icons/sit/16x16/private.png X%%WWWDIR%%/images/icons/sit/16x16/probdef.png X%%WWWDIR%%/images/icons/sit/16x16/product.png X%%WWWDIR%%/images/icons/sit/16x16/reassign.png X%%WWWDIR%%/images/icons/sit/16x16/redflag.png X%%WWWDIR%%/images/icons/sit/16x16/reload.png X%%WWWDIR%%/images/icons/sit/16x16/reopen.png X%%WWWDIR%%/images/icons/sit/16x16/reports.png X%%WWWDIR%%/images/icons/sit/16x16/research.png X%%WWWDIR%%/images/icons/sit/16x16/review.png X%%WWWDIR%%/images/icons/sit/16x16/rightarrow.png X%%WWWDIR%%/images/icons/sit/16x16/save.png X%%WWWDIR%%/images/icons/sit/16x16/search.png X%%WWWDIR%%/images/icons/sit/16x16/site.png X%%WWWDIR%%/images/icons/sit/16x16/skill.png X%%WWWDIR%%/images/icons/sit/16x16/sla.png X%%WWWDIR%%/images/icons/sit/16x16/slamet.png X%%WWWDIR%%/images/icons/sit/16x16/solution.png X%%WWWDIR%%/images/icons/sit/16x16/statistics.png X%%WWWDIR%%/images/icons/sit/16x16/support.png X%%WWWDIR%%/images/icons/sit/16x16/tag.png X%%WWWDIR%%/images/icons/sit/16x16/task.png X%%WWWDIR%%/images/icons/sit/16x16/tempassign.png X%%WWWDIR%%/images/icons/sit/16x16/tick.png X%%WWWDIR%%/images/icons/sit/16x16/timer.png X%%WWWDIR%%/images/icons/sit/16x16/tip.png X%%WWWDIR%%/images/icons/sit/16x16/trigger.png X%%WWWDIR%%/images/icons/sit/16x16/triggeraction.png X%%WWWDIR%%/images/icons/sit/16x16/unlocked.png X%%WWWDIR%%/images/icons/sit/16x16/user.png X%%WWWDIR%%/images/icons/sit/16x16/vcard.png X%%WWWDIR%%/images/icons/sit/16x16/warning.png X%%WWWDIR%%/images/icons/sit/16x16/webupdate.png X%%WWWDIR%%/images/icons/sit/16x16/whiteflag.png X%%WWWDIR%%/images/icons/sit/16x16/yellowflag.png X%%WWWDIR%%/images/icons/sit/32x32/activities.png X%%WWWDIR%%/images/icons/sit/32x32/add.png X%%WWWDIR%%/images/icons/sit/32x32/addproduct.png X%%WWWDIR%%/images/icons/sit/32x32/attach.png X%%WWWDIR%%/images/icons/sit/32x32/billing.png X%%WWWDIR%%/images/icons/sit/32x32/blackflag.png X%%WWWDIR%%/images/icons/sit/32x32/blueflag.png X%%WWWDIR%%/images/icons/sit/32x32/close.png X%%WWWDIR%%/images/icons/sit/32x32/configure.png X%%WWWDIR%%/images/icons/sit/32x32/contact.png X%%WWWDIR%%/images/icons/sit/32x32/contract.png X%%WWWDIR%%/images/icons/sit/32x32/cyanflag.png X%%WWWDIR%%/images/icons/sit/32x32/dashboard.png X%%WWWDIR%%/images/icons/sit/32x32/edit.png X%%WWWDIR%%/images/icons/sit/32x32/edituser.png X%%WWWDIR%%/images/icons/sit/32x32/email.png X%%WWWDIR%%/images/icons/sit/32x32/error.png X%%WWWDIR%%/images/icons/sit/32x32/escalation.png X%%WWWDIR%%/images/icons/sit/32x32/feed-icon.png X%%WWWDIR%%/images/icons/sit/32x32/folder.png X%%WWWDIR%%/images/icons/sit/32x32/greenflag.png X%%WWWDIR%%/images/icons/sit/32x32/help.png X%%WWWDIR%%/images/icons/sit/32x32/holiday.png X%%WWWDIR%%/images/icons/sit/32x32/info.png X%%WWWDIR%%/images/icons/sit/32x32/inventory.png X%%WWWDIR%%/images/icons/sit/32x32/kb.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/applix.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/binary.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/cdimage.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/cdtrack.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/colorscm.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/core.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/deb.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/document.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/document2.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/dvi.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/font_bitmap.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/font_truetype.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/font_type1.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/gettext.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/gf.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/html.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/image.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/info.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/java_src.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/kmultiple.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/kugardata.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/log.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/make.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/man.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/message.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/metafont.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/midi.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/mime_empty.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/misc_doc.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/netscape_doc.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/news.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/pdf.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/pk.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/postscript.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/readme.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/real_doc.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/recycled.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/resource.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/rpm.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/shellscript.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/sound.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_c.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_cpp.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_f.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_h.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_java.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_l.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_moc.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_o.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_p.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_pl.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_py.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_s.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/source_y.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/spreadsheet.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/tar.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/tex.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/tgz.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/txt.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/unknown.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/vcalendar.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/vcard.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/vectorgfx.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/video.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/widget_doc.png X%%WWWDIR%%/images/icons/sit/32x32/mimetypes/wordprocessing.png X%%WWWDIR%%/images/icons/sit/32x32/note.png X%%WWWDIR%%/images/icons/sit/32x32/permissiondenied.png X%%WWWDIR%%/images/icons/sit/32x32/product.png X%%WWWDIR%%/images/icons/sit/32x32/reassign.png X%%WWWDIR%%/images/icons/sit/32x32/redflag.png X%%WWWDIR%%/images/icons/sit/32x32/reports.png X%%WWWDIR%%/images/icons/sit/32x32/search.png X%%WWWDIR%%/images/icons/sit/32x32/settings.png X%%WWWDIR%%/images/icons/sit/32x32/site.png X%%WWWDIR%%/images/icons/sit/32x32/skill.png X%%WWWDIR%%/images/icons/sit/32x32/sla.png X%%WWWDIR%%/images/icons/sit/32x32/statistics.png X%%WWWDIR%%/images/icons/sit/32x32/support.png X%%WWWDIR%%/images/icons/sit/32x32/tag.png X%%WWWDIR%%/images/icons/sit/32x32/task.png X%%WWWDIR%%/images/icons/sit/32x32/templates.png X%%WWWDIR%%/images/icons/sit/32x32/timer.png X%%WWWDIR%%/images/icons/sit/32x32/trigger.png X%%WWWDIR%%/images/icons/sit/32x32/triggeraction.png X%%WWWDIR%%/images/icons/sit/32x32/user.png X%%WWWDIR%%/images/icons/sit/32x32/whiteflag.png X%%WWWDIR%%/images/icons/sit/32x32/yellowflag.png X%%WWWDIR%%/images/icons/sit/LICENSE X%%WWWDIR%%/images/low_priority.gif X%%WWWDIR%%/images/med_priority.gif X%%WWWDIR%%/images/menuarrow.gif X%%WWWDIR%%/images/searchbg.png X%%WWWDIR%%/images/sit_favicon.png X%%WWWDIR%%/images/sit_swirl1.png X%%WWWDIR%%/images/sit_swirl1.svg X%%WWWDIR%%/images/sit_swirl2.png X%%WWWDIR%%/images/sit_swirl2.svg X%%WWWDIR%%/images/sitlogo.svg X%%WWWDIR%%/images/sitlogo_270x100.png X%%WWWDIR%%/images/sitting_man_logo.svg X%%WWWDIR%%/images/sitting_man_logo16x16.png X%%WWWDIR%%/images/sitting_man_logo_3d.svg X%%WWWDIR%%/images/sort_a.png X%%WWWDIR%%/images/sort_a_off.png X%%WWWDIR%%/images/sort_d.png X%%WWWDIR%%/images/sort_d_off.png X%%WWWDIR%%/images/top.png X%%WWWDIR%%/images/top2.png X%%WWWDIR%%/images/top_red.png X%%WWWDIR%%/images/top_yellow.png X%%WWWDIR%%/images/vertgraph.gif X%%WWWDIR%%/inboundemail.php X%%WWWDIR%%/inbox.php X%%WWWDIR%%/inc/billing_summary.inc.php X%%WWWDIR%%/inc/htmlfooter.inc.php X%%WWWDIR%%/inc/htmlheader.inc.php X%%WWWDIR%%/inc/incident_html_bottom.inc.php X%%WWWDIR%%/inc/incident_html_top.inc.php X%%WWWDIR%%/inc/incident_incoming.inc.php X%%WWWDIR%%/inc/incident_update.inc.php X%%WWWDIR%%/inc/incidents_table.inc.php X%%WWWDIR%%/inc/index.php X%%WWWDIR%%/inc/portalheader.inc.php X%%WWWDIR%%/inc/report_feedback_contact.inc.php X%%WWWDIR%%/inc/report_feedback_engineer.inc.php X%%WWWDIR%%/inc/report_feedback_form.inc.php X%%WWWDIR%%/inc/report_feedback_product.inc.php X%%WWWDIR%%/inc/report_feedback_site.inc.php X%%WWWDIR%%/inc/statistics_breakdown.inc.php X%%WWWDIR%%/inc/statistics_daybreakdown.inc.php X%%WWWDIR%%/inc/task_view.inc.php X%%WWWDIR%%/incident_add.php X%%WWWDIR%%/incident_attachments.php X%%WWWDIR%%/incident_close.php X%%WWWDIR%%/incident_details.php X%%WWWDIR%%/incident_edit.php X%%WWWDIR%%/incident_email.php X%%WWWDIR%%/incident_monitor.php X%%WWWDIR%%/incident_reassign.php X%%WWWDIR%%/incident_relationships.php X%%WWWDIR%%/incident_reopen.php X%%WWWDIR%%/incident_service_levels.php X%%WWWDIR%%/incident_showhide_update.php X%%WWWDIR%%/incident_update.php X%%WWWDIR%%/incidents.php X%%WWWDIR%%/incidents_rss.php X%%WWWDIR%%/index.php X%%WWWDIR%%/inventory.php X%%WWWDIR%%/inventory_add.php X%%WWWDIR%%/inventory_edit.php X%%WWWDIR%%/inventory_site.php X%%WWWDIR%%/inventory_view.php X%%WWWDIR%%/journal.php X%%WWWDIR%%/kb.php X%%WWWDIR%%/kb_article.php X%%WWWDIR%%/kb_rss.php X%%WWWDIR%%/kb_view_article.php X%%WWWDIR%%/lib/auth.inc.php X%%WWWDIR%%/lib/base.inc.php X%%WWWDIR%%/lib/billing.inc.php X%%WWWDIR%%/lib/classes.inc.php X%%WWWDIR%%/lib/configvars.inc.php X%%WWWDIR%%/lib/contact.class.php X%%WWWDIR%%/lib/contract.inc.php X%%WWWDIR%%/lib/defaults.inc.php X%%WWWDIR%%/lib/export.inc.php X%%WWWDIR%%/lib/fetchSitMail.class.php X%%WWWDIR%%/lib/ftp.inc.php X%%WWWDIR%%/lib/functions.inc.php X%%WWWDIR%%/lib/html.inc.php X%%WWWDIR%%/lib/incident.inc.php X%%WWWDIR%%/lib/ldap.inc.php X%%WWWDIR%%/lib/magpierss/AUTHORS X%%WWWDIR%%/lib/magpierss/CHANGES X%%WWWDIR%%/lib/magpierss/ChangeLog X%%WWWDIR%%/lib/magpierss/INSTALL X%%WWWDIR%%/lib/magpierss/NEWS X%%WWWDIR%%/lib/magpierss/README X%%WWWDIR%%/lib/magpierss/TROUBLESHOOTING X%%WWWDIR%%/lib/magpierss/cookbook X%%WWWDIR%%/lib/magpierss/extlib/Snoopy.class.inc X%%WWWDIR%%/lib/magpierss/htdocs/cookbook.html X%%WWWDIR%%/lib/magpierss/htdocs/index.html X%%WWWDIR%%/lib/magpierss/rss_cache.inc X%%WWWDIR%%/lib/magpierss/rss_fetch.inc X%%WWWDIR%%/lib/magpierss/rss_parse.inc X%%WWWDIR%%/lib/magpierss/rss_utils.inc X%%WWWDIR%%/lib/magpierss/scripts/README X%%WWWDIR%%/lib/magpierss/scripts/magpie_debug.php X%%WWWDIR%%/lib/magpierss/scripts/magpie_simple.php X%%WWWDIR%%/lib/magpierss/scripts/magpie_slashbox.php X%%WWWDIR%%/lib/magpierss/scripts/simple_smarty.php X%%WWWDIR%%/lib/magpierss/scripts/smarty_plugin/modifier.rss_date_parse.php X%%WWWDIR%%/lib/magpierss/scripts/templates/simple.smarty X%%WWWDIR%%/lib/mime.inc.php X%%WWWDIR%%/lib/mime_parser.inc.php X%%WWWDIR%%/lib/nusoap/changelog X%%WWWDIR%%/lib/nusoap/class.nusoap_base.php X%%WWWDIR%%/lib/nusoap/class.soap_fault.php X%%WWWDIR%%/lib/nusoap/class.soap_parser.php X%%WWWDIR%%/lib/nusoap/class.soap_server.php X%%WWWDIR%%/lib/nusoap/class.soap_transport_http.php X%%WWWDIR%%/lib/nusoap/class.soap_val.php X%%WWWDIR%%/lib/nusoap/class.soapclient.php X%%WWWDIR%%/lib/nusoap/class.wsdl.php X%%WWWDIR%%/lib/nusoap/class.wsdlcache.php X%%WWWDIR%%/lib/nusoap/class.xmlschema.php X%%WWWDIR%%/lib/nusoap/nusoap.php X%%WWWDIR%%/lib/nusoap/nusoapmime.php X%%WWWDIR%%/lib/nusoap/version X%%WWWDIR%%/lib/portalauth.inc.php X%%WWWDIR%%/lib/rfc822_addresses.inc.php X%%WWWDIR%%/lib/sitform.inc.php X%%WWWDIR%%/lib/sla.inc.php X%%WWWDIR%%/lib/soap_core.inc.php X%%WWWDIR%%/lib/soap_error_definitions.inc.php X%%WWWDIR%%/lib/soap_incidents.inc.php X%%WWWDIR%%/lib/soap_types.inc.php X%%WWWDIR%%/lib/string.inc.php X%%WWWDIR%%/lib/strings.inc.php X%%WWWDIR%%/lib/tablenames.inc.php X%%WWWDIR%%/lib/tags.inc.php X%%WWWDIR%%/lib/tasks.inc.php X%%WWWDIR%%/lib/timezones.txt X%%WWWDIR%%/lib/triggers.inc.php X%%WWWDIR%%/lib/triggertypes.inc.php X%%WWWDIR%%/lib/user.inc.php X%%WWWDIR%%/link_add.php X%%WWWDIR%%/login.php X%%WWWDIR%%/logout.php X%%WWWDIR%%/main.php X%%WWWDIR%%/manage_dashboard.php X%%WWWDIR%%/manage_user_dashboard.php X%%WWWDIR%%/manage_users.php X%%WWWDIR%%/move_update.php X%%WWWDIR%%/noaccess.php X%%WWWDIR%%/note_add.php X%%WWWDIR%%/note_delete.php X%%WWWDIR%%/notices.php X%%WWWDIR%%/open_incident_monitor.php X%%WWWDIR%%/opensearch.php X%%WWWDIR%%/plugins/dashboard_holidays.php X%%WWWDIR%%/plugins/dashboard_incoming.php X%%WWWDIR%%/plugins/dashboard_random_tip.php X%%WWWDIR%%/plugins/dashboard_rss.php X%%WWWDIR%%/plugins/dashboard_statistics.php X%%WWWDIR%%/plugins/dashboard_tags.php X%%WWWDIR%%/plugins/dashboard_tasks.php X%%WWWDIR%%/plugins/dashboard_user_incidents.php X%%WWWDIR%%/plugins/dashboard_watch_incidents.php X%%WWWDIR%%/portal/add.php X%%WWWDIR%%/portal/addcontact.php X%%WWWDIR%%/portal/admin.php X%%WWWDIR%%/portal/close.php X%%WWWDIR%%/portal/contactdetails.php X%%WWWDIR%%/portal/contracts.php X%%WWWDIR%%/portal/download.php X%%WWWDIR%%/portal/entitlement.php X%%WWWDIR%%/portal/help.php X%%WWWDIR%%/portal/incident.php X%%WWWDIR%%/portal/index.php X%%WWWDIR%%/portal/kb.php X%%WWWDIR%%/portal/kbarticle.php X%%WWWDIR%%/portal/portal.php X%%WWWDIR%%/portal/sitedetails.php X%%WWWDIR%%/portal/update.php X%%WWWDIR%%/product_add.php X%%WWWDIR%%/product_delete.php X%%WWWDIR%%/product_info_add.php X%%WWWDIR%%/product_software_add.php X%%WWWDIR%%/products.php X%%WWWDIR%%/releasenotes.php X%%WWWDIR%%/report_billable_engineer_utilisation.php X%%WWWDIR%%/report_contracts_by_product.php X%%WWWDIR%%/report_customer_contracts.php X%%WWWDIR%%/report_customer_products.php X%%WWWDIR%%/report_customer_products_matrix.php X%%WWWDIR%%/report_customers.php X%%WWWDIR%%/report_feedback.php X%%WWWDIR%%/report_holidays.php X%%WWWDIR%%/report_incidents_average_duration.php X%%WWWDIR%%/report_incidents_billable.php X%%WWWDIR%%/report_incidents_by_customer.php X%%WWWDIR%%/report_incidents_by_engineer.php X%%WWWDIR%%/report_incidents_by_site.php X%%WWWDIR%%/report_incidents_by_skill.php X%%WWWDIR%%/report_incidents_by_vendor.php X%%WWWDIR%%/report_incidents_daily_summary.php X%%WWWDIR%%/report_incidents_escalated.php X%%WWWDIR%%/report_incidents_graph.php X%%WWWDIR%%/report_incidents_recent.php X%%WWWDIR%%/report_marketing.php X%%WWWDIR%%/report_qbe.php X%%WWWDIR%%/reseller_add.php X%%WWWDIR%%/role.php X%%WWWDIR%%/role_add.php X%%WWWDIR%%/role_edit.php X%%WWWDIR%%/scheduler.php X%%WWWDIR%%/scripts/AutoComplete.js X%%WWWDIR%%/scripts/FormProtector.js X%%WWWDIR%%/scripts/activity.js X%%WWWDIR%%/scripts/calendar.js X%%WWWDIR%%/scripts/dojo/LICENSE X%%WWWDIR%%/scripts/dojo/dojo.js X%%WWWDIR%%/scripts/dojo/dojo_version X%%WWWDIR%%/scripts/dojo/src/AdapterRegistry.js X%%WWWDIR%%/scripts/dojo/src/Deferred.js X%%WWWDIR%%/scripts/dojo/src/DeferredList.js X%%WWWDIR%%/scripts/dojo/src/a11y.js X%%WWWDIR%%/scripts/dojo/src/animation.js X%%WWWDIR%%/scripts/dojo/src/animation/Animation.js X%%WWWDIR%%/scripts/dojo/src/animation/AnimationEvent.js X%%WWWDIR%%/scripts/dojo/src/animation/AnimationSequence.js X%%WWWDIR%%/scripts/dojo/src/animation/Timer.js X%%WWWDIR%%/scripts/dojo/src/animation/__package__.js X%%WWWDIR%%/scripts/dojo/src/behavior.js X%%WWWDIR%%/scripts/dojo/src/bootstrap1.js X%%WWWDIR%%/scripts/dojo/src/browser_debug.js X%%WWWDIR%%/scripts/dojo/src/browser_debug_xd.js X%%WWWDIR%%/scripts/dojo/src/cal/iCalendar.js X%%WWWDIR%%/scripts/dojo/src/cal/textDirectory.js X%%WWWDIR%%/scripts/dojo/src/charting/Axis.js X%%WWWDIR%%/scripts/dojo/src/charting/Chart.js X%%WWWDIR%%/scripts/dojo/src/charting/Plot.js X%%WWWDIR%%/scripts/dojo/src/charting/PlotArea.js X%%WWWDIR%%/scripts/dojo/src/charting/Plotters.js X%%WWWDIR%%/scripts/dojo/src/charting/README.txt X%%WWWDIR%%/scripts/dojo/src/charting/Series.js X%%WWWDIR%%/scripts/dojo/src/charting/__package__.js X%%WWWDIR%%/scripts/dojo/src/charting/svg/Axis.js X%%WWWDIR%%/scripts/dojo/src/charting/svg/PlotArea.js X%%WWWDIR%%/scripts/dojo/src/charting/svg/Plotters.js X%%WWWDIR%%/scripts/dojo/src/charting/vml/Axis.js X%%WWWDIR%%/scripts/dojo/src/charting/vml/PlotArea.js X%%WWWDIR%%/scripts/dojo/src/charting/vml/Plotters.js X%%WWWDIR%%/scripts/dojo/src/collections/ArrayList.js X%%WWWDIR%%/scripts/dojo/src/collections/BinaryTree.js X%%WWWDIR%%/scripts/dojo/src/collections/Collections.js X%%WWWDIR%%/scripts/dojo/src/collections/Dictionary.js X%%WWWDIR%%/scripts/dojo/src/collections/Graph.js X%%WWWDIR%%/scripts/dojo/src/collections/Queue.js X%%WWWDIR%%/scripts/dojo/src/collections/Set.js X%%WWWDIR%%/scripts/dojo/src/collections/SkipList.js X%%WWWDIR%%/scripts/dojo/src/collections/SortedList.js X%%WWWDIR%%/scripts/dojo/src/collections/Stack.js X%%WWWDIR%%/scripts/dojo/src/collections/Store.js X%%WWWDIR%%/scripts/dojo/src/collections/__package__.js X%%WWWDIR%%/scripts/dojo/src/crypto.js X%%WWWDIR%%/scripts/dojo/src/crypto/Blowfish.js X%%WWWDIR%%/scripts/dojo/src/crypto/LICENSE X%%WWWDIR%%/scripts/dojo/src/crypto/MD5.js X%%WWWDIR%%/scripts/dojo/src/crypto/Rijndael.js X%%WWWDIR%%/scripts/dojo/src/crypto/SHA1.js X%%WWWDIR%%/scripts/dojo/src/crypto/SHA256.js X%%WWWDIR%%/scripts/dojo/src/crypto/__package__.js X%%WWWDIR%%/scripts/dojo/src/data.js X%%WWWDIR%%/scripts/dojo/src/data/CsvStore.js X%%WWWDIR%%/scripts/dojo/src/data/OpmlStore.js X%%WWWDIR%%/scripts/dojo/src/data/RdfStore.js X%%WWWDIR%%/scripts/dojo/src/data/YahooStore.js X%%WWWDIR%%/scripts/dojo/src/data/core/Read.js X%%WWWDIR%%/scripts/dojo/src/data/core/RemoteStore.js X%%WWWDIR%%/scripts/dojo/src/data/core/Result.js X%%WWWDIR%%/scripts/dojo/src/data/core/Write.js X%%WWWDIR%%/scripts/dojo/src/data/old/Attribute.js X%%WWWDIR%%/scripts/dojo/src/data/old/Item.js X%%WWWDIR%%/scripts/dojo/src/data/old/Kind.js X%%WWWDIR%%/scripts/dojo/src/data/old/Observable.js X%%WWWDIR%%/scripts/dojo/src/data/old/ResultSet.js X%%WWWDIR%%/scripts/dojo/src/data/old/Type.js X%%WWWDIR%%/scripts/dojo/src/data/old/Value.js X%%WWWDIR%%/scripts/dojo/src/data/old/__package__.js X%%WWWDIR%%/scripts/dojo/src/data/old/format/Csv.js X%%WWWDIR%%/scripts/dojo/src/data/old/format/Json.js X%%WWWDIR%%/scripts/dojo/src/data/old/provider/Base.js X%%WWWDIR%%/scripts/dojo/src/data/old/provider/Delicious.js X%%WWWDIR%%/scripts/dojo/src/data/old/provider/FlatFile.js X%%WWWDIR%%/scripts/dojo/src/data/old/provider/JotSpot.js X%%WWWDIR%%/scripts/dojo/src/data/old/provider/MySql.js X%%WWWDIR%%/scripts/dojo/src/data/old/to_do.txt X%%WWWDIR%%/scripts/dojo/src/date.js X%%WWWDIR%%/scripts/dojo/src/date/common.js X%%WWWDIR%%/scripts/dojo/src/date/format.js X%%WWWDIR%%/scripts/dojo/src/date/serialize.js X%%WWWDIR%%/scripts/dojo/src/date/supplemental.js X%%WWWDIR%%/scripts/dojo/src/debug.js X%%WWWDIR%%/scripts/dojo/src/debug/Firebug.js X%%WWWDIR%%/scripts/dojo/src/debug/arrow_hide.gif X%%WWWDIR%%/scripts/dojo/src/debug/arrow_show.gif X%%WWWDIR%%/scripts/dojo/src/debug/console.js X%%WWWDIR%%/scripts/dojo/src/debug/deep.html X%%WWWDIR%%/scripts/dojo/src/debug/spacer.gif X%%WWWDIR%%/scripts/dojo/src/dnd/DragAndDrop.js X%%WWWDIR%%/scripts/dojo/src/dnd/HtmlDragAndDrop.js X%%WWWDIR%%/scripts/dojo/src/dnd/HtmlDragCopy.js X%%WWWDIR%%/scripts/dojo/src/dnd/HtmlDragManager.js X%%WWWDIR%%/scripts/dojo/src/dnd/HtmlDragMove.js X%%WWWDIR%%/scripts/dojo/src/dnd/Sortable.js X%%WWWDIR%%/scripts/dojo/src/dnd/TreeDragAndDrop.js X%%WWWDIR%%/scripts/dojo/src/dnd/TreeDragAndDropV3.js X%%WWWDIR%%/scripts/dojo/src/dnd/__package__.js X%%WWWDIR%%/scripts/dojo/src/docs.js X%%WWWDIR%%/scripts/dojo/src/dom.js X%%WWWDIR%%/scripts/dojo/src/event.js X%%WWWDIR%%/scripts/dojo/src/event/__package__.js X%%WWWDIR%%/scripts/dojo/src/event/browser.js X%%WWWDIR%%/scripts/dojo/src/event/common.js X%%WWWDIR%%/scripts/dojo/src/event/topic.js X%%WWWDIR%%/scripts/dojo/src/experimental.js X%%WWWDIR%%/scripts/dojo/src/flash.js X%%WWWDIR%%/scripts/dojo/src/flash/flash6/DojoExternalInterface.as X%%WWWDIR%%/scripts/dojo/src/flash/flash6/flash6_gateway.fla X%%WWWDIR%%/scripts/dojo/src/flash/flash8/DojoExternalInterface.as X%%WWWDIR%%/scripts/dojo/src/flash/flash8/ExpressInstall.as X%%WWWDIR%%/scripts/dojo/src/gfx/Colorspace.js X%%WWWDIR%%/scripts/dojo/src/gfx/__package__.js X%%WWWDIR%%/scripts/dojo/src/gfx/color.js X%%WWWDIR%%/scripts/dojo/src/gfx/color/hsl.js X%%WWWDIR%%/scripts/dojo/src/gfx/color/hsv.js X%%WWWDIR%%/scripts/dojo/src/gfx/common.js X%%WWWDIR%%/scripts/dojo/src/gfx/matrix.js X%%WWWDIR%%/scripts/dojo/src/gfx/path.js X%%WWWDIR%%/scripts/dojo/src/gfx/shape.js X%%WWWDIR%%/scripts/dojo/src/gfx/svg.js X%%WWWDIR%%/scripts/dojo/src/gfx/vml.js X%%WWWDIR%%/scripts/dojo/src/graphics/Colorspace.js X%%WWWDIR%%/scripts/dojo/src/graphics/__package__.js X%%WWWDIR%%/scripts/dojo/src/graphics/color.js X%%WWWDIR%%/scripts/dojo/src/graphics/color/hsl.js X%%WWWDIR%%/scripts/dojo/src/graphics/color/hsv.js X%%WWWDIR%%/scripts/dojo/src/hostenv_adobesvg.js X%%WWWDIR%%/scripts/dojo/src/hostenv_browser.js X%%WWWDIR%%/scripts/dojo/src/hostenv_dashboard.js X%%WWWDIR%%/scripts/dojo/src/hostenv_jsc.js X%%WWWDIR%%/scripts/dojo/src/hostenv_rhino.js X%%WWWDIR%%/scripts/dojo/src/hostenv_spidermonkey.js X%%WWWDIR%%/scripts/dojo/src/hostenv_svg.js X%%WWWDIR%%/scripts/dojo/src/hostenv_wsh.js X%%WWWDIR%%/scripts/dojo/src/html.js X%%WWWDIR%%/scripts/dojo/src/html/__package__.js X%%WWWDIR%%/scripts/dojo/src/html/color.js X%%WWWDIR%%/scripts/dojo/src/html/common.js X%%WWWDIR%%/scripts/dojo/src/html/display.js X%%WWWDIR%%/scripts/dojo/src/html/iframe.js X%%WWWDIR%%/scripts/dojo/src/html/images/shadowB.png X%%WWWDIR%%/scripts/dojo/src/html/images/shadowBL.png X%%WWWDIR%%/scripts/dojo/src/html/images/shadowBR.png X%%WWWDIR%%/scripts/dojo/src/html/images/shadowL.png X%%WWWDIR%%/scripts/dojo/src/html/images/shadowR.png X%%WWWDIR%%/scripts/dojo/src/html/images/shadowT.png X%%WWWDIR%%/scripts/dojo/src/html/images/shadowTL.png X%%WWWDIR%%/scripts/dojo/src/html/images/shadowTR.png X%%WWWDIR%%/scripts/dojo/src/html/layout.js X%%WWWDIR%%/scripts/dojo/src/html/metrics.js X%%WWWDIR%%/scripts/dojo/src/html/selection.js X%%WWWDIR%%/scripts/dojo/src/html/shadow.js X%%WWWDIR%%/scripts/dojo/src/html/style.js X%%WWWDIR%%/scripts/dojo/src/html/util.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/README X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/de/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/en/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/es/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/fi/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/fr/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/gregorianExtras.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/hu/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/it/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/ja/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/ja/gregorianExtras.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/ko/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/nl/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/pt-br/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/pt/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/sv/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh-cn/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh-hk/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh-tw/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh/gregorian.js X%%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh/gregorianExtras.js X%%WWWDIR%%/scripts/dojo/src/i18n/common.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/common.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/EUR.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/GBP.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/INR.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/ITL.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/JPY.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/README X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/USD.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en-us/USD.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en/EUR.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en/GBP.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en/INR.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en/ITL.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en/JPY.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en/USD.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/hi/EUR.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/hi/GBP.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/hi/INR.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/hi/ITL.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/hi/JPY.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/hi/USD.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/ja/EUR.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/ja/GBP.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/ja/INR.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/ja/ITL.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/ja/JPY.js X%%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/ja/USD.js X%%WWWDIR%%/scripts/dojo/src/i18n/number.js X%%WWWDIR%%/scripts/dojo/src/iCalendar.js X%%WWWDIR%%/scripts/dojo/src/io.js X%%WWWDIR%%/scripts/dojo/src/io/BrowserIO.js X%%WWWDIR%%/scripts/dojo/src/io/IframeIO.js X%%WWWDIR%%/scripts/dojo/src/io/RepubsubIO.js X%%WWWDIR%%/scripts/dojo/src/io/RhinoIO.js X%%WWWDIR%%/scripts/dojo/src/io/ScriptSrcIO.js X%%WWWDIR%%/scripts/dojo/src/io/XhrIframeProxy.js X%%WWWDIR%%/scripts/dojo/src/io/__package__.js X%%WWWDIR%%/scripts/dojo/src/io/cometd.js X%%WWWDIR%%/scripts/dojo/src/io/common.js X%%WWWDIR%%/scripts/dojo/src/io/cookie.js X%%WWWDIR%%/scripts/dojo/src/io/xip_client.html X%%WWWDIR%%/scripts/dojo/src/io/xip_server.html X%%WWWDIR%%/scripts/dojo/src/json.js X%%WWWDIR%%/scripts/dojo/src/lang.js X%%WWWDIR%%/scripts/dojo/src/lang/__package__.js X%%WWWDIR%%/scripts/dojo/src/lang/array.js X%%WWWDIR%%/scripts/dojo/src/lang/assert.js X%%WWWDIR%%/scripts/dojo/src/lang/common.js X%%WWWDIR%%/scripts/dojo/src/lang/declare.js X%%WWWDIR%%/scripts/dojo/src/lang/extras.js X%%WWWDIR%%/scripts/dojo/src/lang/func.js X%%WWWDIR%%/scripts/dojo/src/lang/repr.js X%%WWWDIR%%/scripts/dojo/src/lang/timing/Streamer.js X%%WWWDIR%%/scripts/dojo/src/lang/timing/Timer.js X%%WWWDIR%%/scripts/dojo/src/lang/timing/__package__.js X%%WWWDIR%%/scripts/dojo/src/lang/type.js X%%WWWDIR%%/scripts/dojo/src/lfx/Animation.js X%%WWWDIR%%/scripts/dojo/src/lfx/__package__.js X%%WWWDIR%%/scripts/dojo/src/lfx/extras.js X%%WWWDIR%%/scripts/dojo/src/lfx/html.js X%%WWWDIR%%/scripts/dojo/src/lfx/rounded.js X%%WWWDIR%%/scripts/dojo/src/lfx/shadow.js X%%WWWDIR%%/scripts/dojo/src/lfx/toggle.js X%%WWWDIR%%/scripts/dojo/src/loader.js X%%WWWDIR%%/scripts/dojo/src/loader_xd.js X%%WWWDIR%%/scripts/dojo/src/logging/ConsoleLogger.js X%%WWWDIR%%/scripts/dojo/src/logging/Logger.js X%%WWWDIR%%/scripts/dojo/src/logging/__package__.js X%%WWWDIR%%/scripts/dojo/src/math.js X%%WWWDIR%%/scripts/dojo/src/math/__package__.js X%%WWWDIR%%/scripts/dojo/src/math/curves.js X%%WWWDIR%%/scripts/dojo/src/math/matrix.js X%%WWWDIR%%/scripts/dojo/src/math/points.js X%%WWWDIR%%/scripts/dojo/src/namespaces/dojo.js X%%WWWDIR%%/scripts/dojo/src/ns.js X%%WWWDIR%%/scripts/dojo/src/profile.js X%%WWWDIR%%/scripts/dojo/src/regexp.js X%%WWWDIR%%/scripts/dojo/src/rpc/Deferred.js X%%WWWDIR%%/scripts/dojo/src/rpc/JotService.js X%%WWWDIR%%/scripts/dojo/src/rpc/JsonService.js X%%WWWDIR%%/scripts/dojo/src/rpc/RpcService.js X%%WWWDIR%%/scripts/dojo/src/rpc/YahooService.js X%%WWWDIR%%/scripts/dojo/src/rpc/__package__.js X%%WWWDIR%%/scripts/dojo/src/rpc/yahoo.smd X%%WWWDIR%%/scripts/dojo/src/selection/Selection.js X%%WWWDIR%%/scripts/dojo/src/storage.js X%%WWWDIR%%/scripts/dojo/src/storage/Storage.as X%%WWWDIR%%/scripts/dojo/src/storage/__package__.js X%%WWWDIR%%/scripts/dojo/src/storage/browser.js X%%WWWDIR%%/scripts/dojo/src/storage/java/DojoFileStorageProvider.class X%%WWWDIR%%/scripts/dojo/src/storage/java/DojoFileStorageProvider.java X%%WWWDIR%%/scripts/dojo/src/storage/storage_dialog.fla X%%WWWDIR%%/scripts/dojo/src/string.js X%%WWWDIR%%/scripts/dojo/src/string/Builder.js X%%WWWDIR%%/scripts/dojo/src/string/__package__.js X%%WWWDIR%%/scripts/dojo/src/string/common.js X%%WWWDIR%%/scripts/dojo/src/string/extras.js X%%WWWDIR%%/scripts/dojo/src/style.js X%%WWWDIR%%/scripts/dojo/src/svg.js X%%WWWDIR%%/scripts/dojo/src/text/__package__.js X%%WWWDIR%%/scripts/dojo/src/text/textDirectory.js X%%WWWDIR%%/scripts/dojo/src/undo/Manager.js X%%WWWDIR%%/scripts/dojo/src/undo/__package__.js X%%WWWDIR%%/scripts/dojo/src/undo/browser.js X%%WWWDIR%%/scripts/dojo/src/uri/Uri.js X%%WWWDIR%%/scripts/dojo/src/uri/__package__.js X%%WWWDIR%%/scripts/dojo/src/uri/cache.js X%%WWWDIR%%/scripts/dojo/src/uuid/LightweightGenerator.js X%%WWWDIR%%/scripts/dojo/src/uuid/NameBasedGenerator.js X%%WWWDIR%%/scripts/dojo/src/uuid/NilGenerator.js X%%WWWDIR%%/scripts/dojo/src/uuid/RandomGenerator.js X%%WWWDIR%%/scripts/dojo/src/uuid/TimeBasedGenerator.js X%%WWWDIR%%/scripts/dojo/src/uuid/Uuid.js X%%WWWDIR%%/scripts/dojo/src/uuid/__package__.js X%%WWWDIR%%/scripts/dojo/src/validate.js X%%WWWDIR%%/scripts/dojo/src/validate/__package__.js X%%WWWDIR%%/scripts/dojo/src/validate/check.js X%%WWWDIR%%/scripts/dojo/src/validate/common.js X%%WWWDIR%%/scripts/dojo/src/validate/creditCard.js X%%WWWDIR%%/scripts/dojo/src/validate/datetime.js X%%WWWDIR%%/scripts/dojo/src/validate/de.js X%%WWWDIR%%/scripts/dojo/src/validate/jp.js X%%WWWDIR%%/scripts/dojo/src/validate/us.js X%%WWWDIR%%/scripts/dojo/src/validate/web.js X%%WWWDIR%%/scripts/dojo/src/widget/AccordionContainer.js X%%WWWDIR%%/scripts/dojo/src/widget/AnimatedPng.js X%%WWWDIR%%/scripts/dojo/src/widget/Button.js X%%WWWDIR%%/scripts/dojo/src/widget/Chart.js X%%WWWDIR%%/scripts/dojo/src/widget/Checkbox.js X%%WWWDIR%%/scripts/dojo/src/widget/Clock.js X%%WWWDIR%%/scripts/dojo/src/widget/ColorPalette.js X%%WWWDIR%%/scripts/dojo/src/widget/ComboBox.js X%%WWWDIR%%/scripts/dojo/src/widget/ContentPane.js X%%WWWDIR%%/scripts/dojo/src/widget/CurrencyTextbox.js X%%WWWDIR%%/scripts/dojo/src/widget/DatePicker.js X%%WWWDIR%%/scripts/dojo/src/widget/DateTextbox.js X%%WWWDIR%%/scripts/dojo/src/widget/DebugConsole.js X%%WWWDIR%%/scripts/dojo/src/widget/Dialog.js X%%WWWDIR%%/scripts/dojo/src/widget/DocPane.js X%%WWWDIR%%/scripts/dojo/src/widget/DomWidget.js X%%WWWDIR%%/scripts/dojo/src/widget/DropdownContainer.js X%%WWWDIR%%/scripts/dojo/src/widget/DropdownDatePicker.js X%%WWWDIR%%/scripts/dojo/src/widget/DropdownTimePicker.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/AlwaysShowToolbar.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/ContextMenu.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/CreateLinkDialog.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/FindReplace.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/FindReplaceDialog.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/InsertImageDialog.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/InsertTableDialog.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/SimpleSignalCommands.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/TableOperation.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/ToolbarDndSupport.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin/__package__.js X%%WWWDIR%%/scripts/dojo/src/widget/Editor2Toolbar.js X%%WWWDIR%%/scripts/dojo/src/widget/FilteringTable.js X%%WWWDIR%%/scripts/dojo/src/widget/FisheyeList.js X%%WWWDIR%%/scripts/dojo/src/widget/FloatingPane.js X%%WWWDIR%%/scripts/dojo/src/widget/Form.js X%%WWWDIR%%/scripts/dojo/src/widget/GoogleMap.js X%%WWWDIR%%/scripts/dojo/src/widget/HtmlWidget.js X%%WWWDIR%%/scripts/dojo/src/widget/InlineEditBox.js X%%WWWDIR%%/scripts/dojo/src/widget/IntegerTextbox.js X%%WWWDIR%%/scripts/dojo/src/widget/InternetTextbox.js X%%WWWDIR%%/scripts/dojo/src/widget/LayoutContainer.js X%%WWWDIR%%/scripts/dojo/src/widget/LinkPane.js X%%WWWDIR%%/scripts/dojo/src/widget/Manager.js X%%WWWDIR%%/scripts/dojo/src/widget/Menu2.js X%%WWWDIR%%/scripts/dojo/src/widget/MonthlyCalendar.js X%%WWWDIR%%/scripts/dojo/src/widget/PageContainer.js X%%WWWDIR%%/scripts/dojo/src/widget/Parse.js X%%WWWDIR%%/scripts/dojo/src/widget/PopupContainer.js X%%WWWDIR%%/scripts/dojo/src/widget/ProgressBar.js X%%WWWDIR%%/scripts/dojo/src/widget/RadioGroup.js X%%WWWDIR%%/scripts/dojo/src/widget/RealNumberTextbox.js X%%WWWDIR%%/scripts/dojo/src/widget/RegexpTextbox.js X%%WWWDIR%%/scripts/dojo/src/widget/RemoteTabController.js X%%WWWDIR%%/scripts/dojo/src/widget/Repeater.js X%%WWWDIR%%/scripts/dojo/src/widget/ResizableTextarea.js X%%WWWDIR%%/scripts/dojo/src/widget/ResizeHandle.js X%%WWWDIR%%/scripts/dojo/src/widget/RichText.js X%%WWWDIR%%/scripts/dojo/src/widget/Rounded.js X%%WWWDIR%%/scripts/dojo/src/widget/Select.js X%%WWWDIR%%/scripts/dojo/src/widget/Show.js X%%WWWDIR%%/scripts/dojo/src/widget/ShowAction.js X%%WWWDIR%%/scripts/dojo/src/widget/ShowSlide.js X%%WWWDIR%%/scripts/dojo/src/widget/SlideShow.js X%%WWWDIR%%/scripts/dojo/src/widget/Slider.js X%%WWWDIR%%/scripts/dojo/src/widget/SortableTable.js X%%WWWDIR%%/scripts/dojo/src/widget/Spinner.js X%%WWWDIR%%/scripts/dojo/src/widget/SplitContainer.js X%%WWWDIR%%/scripts/dojo/src/widget/SvgButton.js X%%WWWDIR%%/scripts/dojo/src/widget/SvgWidget.js X%%WWWDIR%%/scripts/dojo/src/widget/SwtWidget.js X%%WWWDIR%%/scripts/dojo/src/widget/TabContainer.js X%%WWWDIR%%/scripts/dojo/src/widget/TaskBar.js X%%WWWDIR%%/scripts/dojo/src/widget/Textbox.js X%%WWWDIR%%/scripts/dojo/src/widget/TimePicker.js X%%WWWDIR%%/scripts/dojo/src/widget/TitlePane.js X%%WWWDIR%%/scripts/dojo/src/widget/Toaster.js X%%WWWDIR%%/scripts/dojo/src/widget/Toggler.js X%%WWWDIR%%/scripts/dojo/src/widget/Toolbar.js X%%WWWDIR%%/scripts/dojo/src/widget/Tooltip.js X%%WWWDIR%%/scripts/dojo/src/widget/Tree.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeBasicController.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeBasicControllerV3.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeCommon.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeContextMenu.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeContextMenuV3.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeControllerExtension.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeDemo.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeDeselectOnDblselect.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeDisableWrapExtension.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeDndControllerV3.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeDocIconExtension.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeEditor.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeEmphasizeOnSelect.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeExpandToNodeOnSelect.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeExtension.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeLinkExtension.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeLoadingController.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeLoadingControllerV3.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeNode.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeNodeV3.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeRPCController.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeRpcControllerV3.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeSelector.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeSelectorV3.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeTimeoutIterator.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeToggleOnSelect.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeV3.js X%%WWWDIR%%/scripts/dojo/src/widget/TreeWithNode.js X%%WWWDIR%%/scripts/dojo/src/widget/UsTextbox.js X%%WWWDIR%%/scripts/dojo/src/widget/ValidationTextbox.js X%%WWWDIR%%/scripts/dojo/src/widget/Widget.js X%%WWWDIR%%/scripts/dojo/src/widget/Wizard.js X%%WWWDIR%%/scripts/dojo/src/widget/YahooMap.js X%%WWWDIR%%/scripts/dojo/src/widget/__package__.js X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/DemoContainer.js X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/DemoItem.js X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/DemoNavigator.js X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/DemoPane.js X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/SourcePane.js X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/__package__.js X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/DemoContainer.css X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/DemoContainer.html X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/DemoItem.css X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/DemoItem.html X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/DemoNavigator.css X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/DemoNavigator.html X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/DemoPane.css X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/DemoPane.html X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/SourcePane.css X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/SourcePane.html X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/general.css X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/images/test_thumb.gif X%%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/images/viewDemo.png X%%WWWDIR%%/scripts/dojo/src/widget/html/layout.js X%%WWWDIR%%/scripts/dojo/src/widget/html/loader.js X%%WWWDIR%%/scripts/dojo/src/widget/html/stabile.js X%%WWWDIR%%/scripts/dojo/src/widget/nls/DropdownDatePicker.js X%%WWWDIR%%/scripts/dojo/src/widget/nls/DropdownTimePicker.js X%%WWWDIR%%/scripts/dojo/src/widget/nls/TimePicker.js X%%WWWDIR%%/scripts/dojo/src/widget/nls/fr/validate.js X%%WWWDIR%%/scripts/dojo/src/widget/nls/ja/validate.js X%%WWWDIR%%/scripts/dojo/src/widget/nls/validate.js X%%WWWDIR%%/scripts/dojo/src/widget/nls/zh-cn/validate.js X%%WWWDIR%%/scripts/dojo/src/widget/svg/Chart.js X%%WWWDIR%%/scripts/dojo/src/widget/templates/AccordionPane.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/AccordionPane.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/ButtonTemplate.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/ButtonTemplate.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Checkbox.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Checkbox.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/CheckboxA11y.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/CiviCrmDatePicker.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/ComboBox.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/ComboBox.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/ComboButtonTemplate.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/DatePicker.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/DatePicker.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/DemoEngine.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Dialog.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/DocPane.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/DocPane.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/DropDownButtonTemplate.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/Dialog/createlink.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/Dialog/find.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/Dialog/insertimage.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/Dialog/inserttable.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/Dialog/replace.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/EditorDialog.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/EditorToolbar_FontName.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/EditorToolbar_FontSize.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/EditorToolbar_FormatBlock.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/showtableborder_gecko.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/showtableborder_ie.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/EditorToolbar.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/EditorToolbar.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/EditorToolbarOneline.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/FisheyeList.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/FloatingPane.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/FloatingPane.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/InlineEditBox.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/InlineEditBox.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Menu.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Menu2.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/MonthlyCalendar.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/MonthlyCalendar.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/PopUpButton.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/ProgressBar.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/ProgressBar.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/RemoteTabControl.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/ResizableTextarea.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/ResizableTextarea.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/ResizeHandle.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Show.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Show.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/ShowSlide.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/ShowSlide.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/SlideShow.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/SlideShow.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Slider.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Slider.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/SliderHorizontal.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/SliderVertical.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Spinner.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Spinner.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/SplitContainer.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TabContainer.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TabContainer.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/TabContainerA11y.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TaskBar.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TaskBarItemTemplate.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Textbox.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/TimePicker.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TimePicker.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/TitlePane.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Toaster.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Toolbar.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TooltipTemplate.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Tree.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TreeDisableWrap.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TreeDocIcon.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TreeEditor.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/TreeV3.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Validate.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/ValidationTextbox.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/Wizard.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/Wizard.html X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/aggregate.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/backcolor.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/bg-fade.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/bold.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/cancel.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/copy.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/createlink.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/cut.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/delete.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/forecolor.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/hilitecolor.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/indent.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/inserthorizontalrule.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/insertimage.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/insertorderedlist.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/inserttable.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/insertunorderedlist.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/italic.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/justifycenter.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/justifyfull.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/justifyleft.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/justifyright.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/left_to_right.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/list_bullet_indent.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/list_bullet_outdent.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/list_num_indent.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/list_num_outdent.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/outdent.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/paste.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/redo.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/removeformat.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/right_to_left.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/save.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/sep.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/space.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/strikethrough.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/subscript.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/superscript.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/underline.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/undo.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/buttons/wikiword.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/check.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/decrementMonth.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/decrementWeek.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/grabCorner.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/Tree.css X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/blank.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/closed.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/document.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/minus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/plus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/transparent.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_blank.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_child.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_expand_minus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_expand_plus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_grid_c.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_grid_l.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_grid_p.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_grid_t.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_grid_v.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_grid_x.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_grid_y.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_grid_z.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_loading.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree/treenode_loading.jpg X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/closed.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/document.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/expand_leaf.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/expand_loading.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/expand_minus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/expand_plus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/i.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/i_bhalf.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/i_half.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/i_long.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/l.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/minus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/open.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/plus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/t.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3/x.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/bar.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/bdYearBg.1.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/bdYearBg.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/blank.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/clock.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/combo_box_arrow.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dateIcon.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/decrementMonth.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/decrementMonth.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpBg.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpCurveBL.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpCurveBR.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpCurveTL.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpCurveTR.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpHorizLine.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpHorizLineFoot.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpMonthBg.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpMonthBg.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpMonthBg2.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpVertLine.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpYearBg.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dpYearBg.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dropdownButtonsArrow-disabled.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/dropdownButtonsArrow.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/floatingPaneClose.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/floatingPaneMaximize.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/floatingPaneMinimize.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/floatingPaneRestore.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/h-bar.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/incrementMonth.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/incrementMonth.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/no.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/no.svg X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/scBackground.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider-bg-progress-vert.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider-bg-vert.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider-bg.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider-button-horz.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider-button-vert.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider-button.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider_down_arrow.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider_left_arrow.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider_right_arrow.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/slider_up_arrow.png X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaAccordionOff.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaAccordionSelected.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaActive-c.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaActive-l.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaActive-r.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaBarBg.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaButton-c.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaButton-l.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaButton-r.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaDisabled-c.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaDisabled-l.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaDisabled-r.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaMenuBg.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaPressed-c.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaPressed-l.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/soriaPressed-r.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/spinnerDecrement.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/spinnerIncrement.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/submenu_disabled.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/submenu_off.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/submenu_on.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_bot_left.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_bot_left_curr.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_bot_right.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_bot_right_curr.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_close.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_close_h.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_left.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_left_r.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_left_r_curr.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_right.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_right_r.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_right_r_curr.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_top_left.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/tab_top_right.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/timeIcon.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/toolbar-bg.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/transparent.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_blank.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_child.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_expand_minus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_expand_plus.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_grid_c.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_grid_l.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_grid_p.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_grid_t.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_grid_v.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_grid_x.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_grid_y.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_grid_z.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/treenode_node.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/verticalbar.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/images/whiteDownArrow.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/incrementMonth.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/incrementWeek.gif X%%WWWDIR%%/scripts/dojo/src/widget/templates/richtextframe.html X%%WWWDIR%%/scripts/dojo/src/widget/validate.js X%%WWWDIR%%/scripts/dojo/src/widget/vml/Chart.js X%%WWWDIR%%/scripts/dojo/src/xml/Parse.js X%%WWWDIR%%/scripts/dojo/src/xml/XslTransform.js X%%WWWDIR%%/scripts/dojo/src/xml/__package__.js X%%WWWDIR%%/scripts/prototype/LICENSE X%%WWWDIR%%/scripts/prototype/prototype.js X%%WWWDIR%%/scripts/scriptaculous/CHANGELOG X%%WWWDIR%%/scripts/scriptaculous/MIT-LICENSE X%%WWWDIR%%/scripts/scriptaculous/README X%%WWWDIR%%/scripts/scriptaculous/builder.js X%%WWWDIR%%/scripts/scriptaculous/controls.js X%%WWWDIR%%/scripts/scriptaculous/dragdrop.js X%%WWWDIR%%/scripts/scriptaculous/effects.js X%%WWWDIR%%/scripts/scriptaculous/scriptaculous.js X%%WWWDIR%%/scripts/scriptaculous/slider.js X%%WWWDIR%%/scripts/scriptaculous/sound.js X%%WWWDIR%%/scripts/scriptaculous/unittest.js X%%WWWDIR%%/scripts/sit.js.php X%%WWWDIR%%/scripts/webtrack.js X%%WWWDIR%%/search.php X%%WWWDIR%%/search_expired.php X%%WWWDIR%%/search_incidents_advanced.php X%%WWWDIR%%/search_renewals.php X%%WWWDIR%%/service_level_add.php X%%WWWDIR%%/service_level_edit.php X%%WWWDIR%%/service_levels.php X%%WWWDIR%%/set_user_status.php X%%WWWDIR%%/setup-schema.php X%%WWWDIR%%/setup.php X%%WWWDIR%%/sit.kdevelop X%%WWWDIR%%/site_add.php X%%WWWDIR%%/site_delete.php X%%WWWDIR%%/site_details.php X%%WWWDIR%%/site_edit.php X%%WWWDIR%%/site_types.php X%%WWWDIR%%/sites.php X%%WWWDIR%%/skills_matrix.php X%%WWWDIR%%/soap.php X%%WWWDIR%%/software_add.php X%%WWWDIR%%/statistics.php X%%WWWDIR%%/styles/csshover.htc X%%WWWDIR%%/styles/fullscreen.css X%%WWWDIR%%/styles/images/bg.gif X%%WWWDIR%%/styles/images/bg1.gif X%%WWWDIR%%/styles/images/bg2.gif X%%WWWDIR%%/styles/images/bg_orange.gif X%%WWWDIR%%/styles/images/coolblue.jpg X%%WWWDIR%%/styles/images/shadow.gif X%%WWWDIR%%/styles/sit1.css X%%WWWDIR%%/styles/sit10.css X%%WWWDIR%%/styles/sit11.css X%%WWWDIR%%/styles/sit12.css X%%WWWDIR%%/styles/sit14/header.html X%%WWWDIR%%/styles/sit14/index.html X%%WWWDIR%%/styles/sit14/sit14.css X%%WWWDIR%%/styles/sit14/webtrack.swf X%%WWWDIR%%/styles/sit15.css X%%WWWDIR%%/styles/sit2.css X%%WWWDIR%%/styles/sit3.css X%%WWWDIR%%/styles/sit4.css X%%WWWDIR%%/styles/sit5.css X%%WWWDIR%%/styles/sit7.css X%%WWWDIR%%/styles/sit7/menu.gif X%%WWWDIR%%/styles/sit7/title.gif X%%WWWDIR%%/styles/sit8.css X%%WWWDIR%%/styles/sit9.css X%%WWWDIR%%/styles/sit9/bluestripe.gif X%%WWWDIR%%/styles/sit9/bluestripe.jpg X%%WWWDIR%%/styles/sit9/bluestripe1.gif X%%WWWDIR%%/styles/sit_cake.css X%%WWWDIR%%/styles/sit_ph.css X%%WWWDIR%%/styles/sit_ph2.css X%%WWWDIR%%/styles/sitbase.css X%%WWWDIR%%/styles/spell X%%WWWDIR%%/task_add.php X%%WWWDIR%%/task_edit.php X%%WWWDIR%%/tasks.php X%%WWWDIR%%/template_add.php X%%WWWDIR%%/templates.php X%%WWWDIR%%/transactions.php X%%WWWDIR%%/translate.php X%%WWWDIR%%/triggers.php X%%WWWDIR%%/unlock_update.php X%%WWWDIR%%/user_add.php X%%WWWDIR%%/user_delete.php X%%WWWDIR%%/user_profile_edit.php X%%WWWDIR%%/user_skills.php X%%WWWDIR%%/usergroups.php X%%WWWDIR%%/users.php X%%WWWDIR%%/vendor_add.php X%%WWWDIR%%/vendor_edit.php X%%WWWDIR%%/view_tags.php X%%WWWDIR%%/view_task.php X@dirrm %%WWWDIR%%/styles/sit9 X@dirrm %%WWWDIR%%/styles/sit7 X@dirrm %%WWWDIR%%/styles/sit14 X@dirrm %%WWWDIR%%/styles/images X@dirrm %%WWWDIR%%/styles X@dirrm %%WWWDIR%%/scripts/scriptaculous X@dirrm %%WWWDIR%%/scripts/prototype X@dirrm %%WWWDIR%%/scripts/dojo/src/xml X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/vml X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/templates/images/TreeV3 X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/templates/images/Tree X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/templates/images X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/templates/buttons X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2/Dialog X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/templates/Editor2 X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/templates X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/svg X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/nls/zh-cn X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/nls/ja X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/nls/fr X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/nls X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/html X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates/images X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/demoEngine/templates X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/demoEngine X@dirrm %%WWWDIR%%/scripts/dojo/src/widget/Editor2Plugin X@dirrm %%WWWDIR%%/scripts/dojo/src/widget X@dirrm %%WWWDIR%%/scripts/dojo/src/validate X@dirrm %%WWWDIR%%/scripts/dojo/src/uuid X@dirrm %%WWWDIR%%/scripts/dojo/src/uri X@dirrm %%WWWDIR%%/scripts/dojo/src/undo X@dirrm %%WWWDIR%%/scripts/dojo/src/text X@dirrm %%WWWDIR%%/scripts/dojo/src/string X@dirrm %%WWWDIR%%/scripts/dojo/src/storage/java X@dirrm %%WWWDIR%%/scripts/dojo/src/storage X@dirrm %%WWWDIR%%/scripts/dojo/src/selection X@dirrm %%WWWDIR%%/scripts/dojo/src/rpc X@dirrm %%WWWDIR%%/scripts/dojo/src/namespaces X@dirrm %%WWWDIR%%/scripts/dojo/src/math X@dirrm %%WWWDIR%%/scripts/dojo/src/logging X@dirrm %%WWWDIR%%/scripts/dojo/src/lfx X@dirrm %%WWWDIR%%/scripts/dojo/src/lang/timing X@dirrm %%WWWDIR%%/scripts/dojo/src/lang X@dirrm %%WWWDIR%%/scripts/dojo/src/io X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/ja X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/hi X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en-us X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/currency/nls/en X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/currency/nls X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/currency X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh-tw X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh-hk X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh-cn X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/zh X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/sv X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/pt-br X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/pt X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/nl X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/ko X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/ja X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/it X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/hu X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/fr X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/fi X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/es X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/en X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls/de X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar/nls X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n/calendar X@dirrm %%WWWDIR%%/scripts/dojo/src/i18n X@dirrm %%WWWDIR%%/scripts/dojo/src/html/images X@dirrm %%WWWDIR%%/scripts/dojo/src/html X@dirrm %%WWWDIR%%/scripts/dojo/src/graphics/color X@dirrm %%WWWDIR%%/scripts/dojo/src/graphics X@dirrm %%WWWDIR%%/scripts/dojo/src/gfx/color X@dirrm %%WWWDIR%%/scripts/dojo/src/gfx X@dirrm %%WWWDIR%%/scripts/dojo/src/flash/flash8 X@dirrm %%WWWDIR%%/scripts/dojo/src/flash/flash6 X@dirrm %%WWWDIR%%/scripts/dojo/src/flash X@dirrm %%WWWDIR%%/scripts/dojo/src/event X@dirrm %%WWWDIR%%/scripts/dojo/src/dnd X@dirrm %%WWWDIR%%/scripts/dojo/src/debug X@dirrm %%WWWDIR%%/scripts/dojo/src/date X@dirrm %%WWWDIR%%/scripts/dojo/src/data/old/provider X@dirrm %%WWWDIR%%/scripts/dojo/src/data/old/format X@dirrm %%WWWDIR%%/scripts/dojo/src/data/old X@dirrm %%WWWDIR%%/scripts/dojo/src/data/core X@dirrm %%WWWDIR%%/scripts/dojo/src/data X@dirrm %%WWWDIR%%/scripts/dojo/src/crypto X@dirrm %%WWWDIR%%/scripts/dojo/src/collections X@dirrm %%WWWDIR%%/scripts/dojo/src/charting/vml X@dirrm %%WWWDIR%%/scripts/dojo/src/charting/svg X@dirrm %%WWWDIR%%/scripts/dojo/src/charting X@dirrm %%WWWDIR%%/scripts/dojo/src/cal X@dirrm %%WWWDIR%%/scripts/dojo/src/animation X@dirrm %%WWWDIR%%/scripts/dojo/src X@dirrm %%WWWDIR%%/scripts/dojo X@dirrm %%WWWDIR%%/scripts X@dirrm %%WWWDIR%%/portal X@dirrm %%WWWDIR%%/plugins X@dirrm %%WWWDIR%%/lib/nusoap X@dirrm %%WWWDIR%%/lib/magpierss/scripts/templates X@dirrm %%WWWDIR%%/lib/magpierss/scripts/smarty_plugin X@dirrm %%WWWDIR%%/lib/magpierss/scripts X@dirrm %%WWWDIR%%/lib/magpierss/htdocs X@dirrm %%WWWDIR%%/lib/magpierss/extlib X@dirrm %%WWWDIR%%/lib/magpierss X@dirrm %%WWWDIR%%/lib X@dirrm %%WWWDIR%%/inc X@dirrm %%WWWDIR%%/images/icons/sit/32x32/mimetypes X@dirrm %%WWWDIR%%/images/icons/sit/32x32 X@dirrm %%WWWDIR%%/images/icons/sit/16x16 X@dirrm %%WWWDIR%%/images/icons/sit/12x12 X@dirrm %%WWWDIR%%/images/icons/sit X@dirrm %%WWWDIR%%/images/icons/oxygen/32x32/mimetypes X@dirrm %%WWWDIR%%/images/icons/oxygen/32x32 X@dirrm %%WWWDIR%%/images/icons/oxygen/16x16 X@dirrm %%WWWDIR%%/images/icons/oxygen/12x12 X@dirrm %%WWWDIR%%/images/icons/oxygen X@dirrm %%WWWDIR%%/images/icons/kdeclassic/32x32/mimetypes X@dirrm %%WWWDIR%%/images/icons/kdeclassic/32x32 X@dirrm %%WWWDIR%%/images/icons/kdeclassic/16x16/mimetypes X@dirrm %%WWWDIR%%/images/icons/kdeclassic/16x16/apps X@dirrm %%WWWDIR%%/images/icons/kdeclassic/16x16/actions X@dirrm %%WWWDIR%%/images/icons/kdeclassic/16x16 X@dirrm %%WWWDIR%%/images/icons/kdeclassic X@dirrm %%WWWDIR%%/images/icons X@dirrm %%WWWDIR%%/images/emoticons X@dirrm %%WWWDIR%%/images X@dirrm %%WWWDIR%%/i18n X@dirrm %%WWWDIR%%/help/ru-RU X@dirrm %%WWWDIR%%/help/it-IT X@dirrm %%WWWDIR%%/help/es-MX X@dirrm %%WWWDIR%%/help/en-GB X@dirrm %%WWWDIR%%/help/da-DK X@dirrm %%WWWDIR%%/help/cy-GB X@dirrm %%WWWDIR%%/help X@dirrm %%WWWDIR%%/doc X@dirrm %%WWWDIR%%/calendar 5d9dcdbdf1df221781e8bcacc5aec160 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 19:00:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34FF51065679 for ; Wed, 27 Oct 2010 19:00:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 08CFA8FC0A for ; Wed, 27 Oct 2010 19:00:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RJ0FRp032823 for ; Wed, 27 Oct 2010 19:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RJ0F7u032817; Wed, 27 Oct 2010 19:00:15 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 19:00:15 GMT Resent-Message-Id: <201010271900.o9RJ0F7u032817@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Andree Received: from apollo.emma.line.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id 5D6FE1065670; Wed, 27 Oct 2010 18:58:26 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mandree by apollo.emma.line.org with local (Exim 4.72 (FreeBSD)) (envelope-from ) id 1PBB9m-000Mjx-H5; Wed, 27 Oct 2010 20:55:30 +0200 Message-Id: Date: Wed, 27 Oct 2010 20:55:30 +0200 From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: daniel+unison@pelleg.org Subject: ports/151785: unison-devel not suitable for parallel build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Andree List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 19:00:16 -0000 >Number: 151785 >Category: ports >Synopsis: unison-devel not suitable for parallel build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 19:00:15 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: System: FreeBSD apollo.emma.line.org 8.1-STABLE FreeBSD 8.1-STABLE #33: Sat Oct 9 13:59:55 CEST 2010 toor@apollo.emma.line.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: unison-devel fails to build if MAKE_JOBS_NUMBER is >= 1, for instance, on multicore computers. I have set it to MAKE_JOBS_UNSAFE for the nonce, however, I'd propose that this be fixed. This is usually a sign that there is a lack of dependency information in the build machinery. I know too little of OCaML to make more precise statements. Find below the tail of the log how it fails on my Quadcore computer: Linking unison-text ocamlopt -verbose -I lwt -I ubase -o unison-text unix.cmxa str.cmxa bigarray.cmxa -cclib -lutil ubase/projectInfo.cmx ubase/myMap.cmx ubase/safelist.cmx ubase/uprintf.cmx ubase/util.cmx ubase/rx.cmx ubase/uarg.cmx ubase/prefs.cmx ubase/trace.cmx lwt/pqueue.cmx lwt/lwt.cmx lwt/lwt_util.cmx lwt/lwt_unix.cmx bytearray.cmx case.cmx pred.cmx uutil.cmx fileutil.cmx name.cmx path.cmx fspath.cmx fingerprint.cmx abort.cmx osx.cmx external.cmx props.cmx fileinfo.cmx os.cmx lock.cmx clroot.cmx common.cmx tree.cmx checksum.cmx terminal.cmx transfer.cmx xferhint.cmx remote.cmx globals.cmx copy.cmx stasher.cmx update.cmx files.cmx sortri.cmx recon.cmx transport.cmx strings.cmx uicommon.cmx uitext.cmx test.cmx main.cmx linktext.cmx osxsupport.o pty.o bytearray_stubs.o + as -o '/tmp/camlstartup483aff.o' '/tmp/camlstartupca1da4.s' + cc -o 'unison-text' '-Llwt' '-Lubase' '-L/usr/local/lib/ocaml' '/tmp/camlstartup483aff.o' '/usr/local/lib/ocaml/std_exit.o' 'linktext.o' 'main.o' 'test.o' 'uitext.o' 'uicommon.o' 'strings.o' 'transport.o' 'recon.o' 'sortri.o' 'files.o' 'update.o' 'stasher.o' 'copy.o' 'globals.o' 'remote.o' 'xferhint.o' 'transfer.o' 'terminal.o' 'checksum.o' 'tree.o' 'common.o' 'clroot.o' 'lock.o' 'os.o' 'fileinfo.o' 'props.o' 'external.o' 'osx.o' 'abort.o' 'fingerprint.o' 'fspath.o' 'path.o' 'name.o' 'fileutil.o' 'uutil.o' 'pred.o' 'case.o' 'bytearray.o' 'lwt/lwt_unix.o' 'lwt/lwt_util.o' 'lwt/lwt.o' 'lwt/pqueue.o' 'ubase/trace.o' 'ubase/prefs.o' 'ubase/uarg.o' 'ubase/rx.o' 'ubase/util.o' 'ubase/uprintf.o' 'ubase/safelist.o' 'ubase/myMap.o' 'ubase/projectInfo.o' '/usr/local/lib/ocaml/bigarray.a' '/usr/local/lib/ocaml/str.a' '/usr/local/lib/ocaml/unix.a' '/usr/local/lib/ocaml/stdlib.a' '-lbigarray' '-lstr' '-lunix' '-lutil' 'osxsupport.o' 'pty.o' 'bytearray_stubs.o' '/usr/local/lib/ocaml/li basmrun.a' -lm (if [ -f unison-text ]; then ./unison-text -doc install > INSTALLATION; fi) gmake: Leaving directory `/usr/ports/net/unison-devel/work/unison-2.32.52' ===>>> Starting check for runtime dependencies ===>>> Gathering dependency list for net/unison-devel from ports ===>>> Dependency check complete for net/unison-devel ===> Installing for unison-devel-2.32.52_2 ===> Generating temporary packing list ===> Checking if net/unison-devel already installed install -s -o root -g wheel -m 555 /usr/ports/net/unison-devel/work/unison-2.32.52/unison /usr/local/bin install: /usr/ports/net/unison-devel/work/unison-2.32.52/unison: No such file or directory *** Error code 71 Stop in /usr/ports/net/unison-devel. ===>>> Installation of unison-devel-2.32.52_2 (net/unison-devel) failed ===>>> Aborting update ===>>> The following actions were performed: Installation of lang/ocaml (ocaml-3.11.2) Installation of graphics/ocaml-lablgl (ocaml-lablgl-1.04) Installation of x11-toolkits/gtkglarea2 (gtkglarea-2.0.1_2) Installation of x11-toolkits/ocaml-lablgtk2 (ocaml-lablgtk2-2.14.0_2) >How-To-Repeat: Add FORCE_MAKE_JOBS=yes and MAKE_JOBS_NUMBER=4 to /etc/make.conf cd /usr/ports/net/unison-devel make install clean >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 21:10:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B79A61065679 for ; Wed, 27 Oct 2010 21:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8A9E58FC18 for ; Wed, 27 Oct 2010 21:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RLA9Jr068598 for ; Wed, 27 Oct 2010 21:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RLA9Li068597; Wed, 27 Oct 2010 21:10:09 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 21:10:09 GMT Resent-Message-Id: <201010272110.o9RLA9Li068597@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, berend@pobox.com Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6FA11065670 for ; Wed, 27 Oct 2010 21:07:43 +0000 (UTC) (envelope-from root@nederware.nl) Received: from sasl.smtp.pobox.com (b-pb-sasl-quonix.pobox.com [208.72.237.35]) by mx1.freebsd.org (Postfix) with ESMTP id 805708FC0C for ; Wed, 27 Oct 2010 21:07:43 +0000 (UTC) Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by b-sasl-quonix.pobox.com (Postfix) with ESMTP id 425D416E1 for ; Wed, 27 Oct 2010 16:48:50 -0400 (EDT) Received: from b-pb-sasl-quonix. (unknown [127.0.0.1]) by b-sasl-quonix.pobox.com (Postfix) with ESMTP id 3F24816E0 for ; Wed, 27 Oct 2010 16:48:50 -0400 (EDT) Received: from bmach.nederware.nl (unknown [124.198.139.38]) by b-sasl-quonix.pobox.com (Postfix) with ESMTPA id 9895C16DF for ; Wed, 27 Oct 2010 16:48:49 -0400 (EDT) Received: by bmach.nederware.nl (Postfix, from userid 0) id 00DF05D5F; Thu, 28 Oct 2010 09:48:47 +1300 (NZDT) Message-Id: <20101027204848.00DF05D5F@bmach.nederware.nl> Date: Thu, 28 Oct 2010 09:48:47 +1300 (NZDT) From: berend@pobox.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151786: Patch to upgrade bitlbee to 3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: berend@pobox.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 21:10:09 -0000 >Number: 151786 >Category: ports >Synopsis: Patch to upgrade bitlbee to 3.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 21:10:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Berend de Boer >Release: FreeBSD 8.1-STABLE i386 >Organization: >Environment: System: FreeBSD bmach.nederware.nl 8.1-STABLE FreeBSD 8.1-STABLE #3: Sat Aug 21 09:26:07 NZST 2010 root@bmach.nederware.nl:/usr/obj/usr/src/sys/BMACH i386 >Description: Patch to upgrade bitlbee to the latest release. >How-To-Repeat: >Fix: diff -ru --context=3 bitlbee.orig/Makefile bitlbee/Makefile *** bitlbee.orig/Makefile Tue Jul 27 00:26:58 2010 --- bitlbee/Makefile Wed Oct 27 18:54:12 2010 *************** *** 6,12 **** # PORTNAME= bitlbee ! PORTVERSION= 1.2.8 PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= http://get.bitlbee.org/src/ \ --- 6,12 ---- # PORTNAME= bitlbee ! PORTVERSION= 3.0 PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= http://get.bitlbee.org/src/ \ diff -ru --context=3 bitlbee.orig/distinfo bitlbee/distinfo *** bitlbee.orig/distinfo Tue Jul 6 07:34:38 2010 --- bitlbee/distinfo Wed Oct 27 18:54:26 2010 *************** *** 1,3 **** ! MD5 (bitlbee-1.2.8.tar.gz) = e1fbbd9d96ec7c2377b1b286689c1b83 ! SHA256 (bitlbee-1.2.8.tar.gz) = 3a061b88776699001b774bc323e0a0ffdcd5cde6dec2dda965bc1aa2f2ee8e86 ! SIZE (bitlbee-1.2.8.tar.gz) = 513768 --- 1,3 ---- ! MD5 (bitlbee-3.0.tar.gz) = 455fc8070d758c2bb3442ef4c709ad69 ! SHA256 (bitlbee-3.0.tar.gz) = 146d6ec238454c1e735bdb35e8a5f15f913f5eb14d240e8ccd87f205a3376698 ! SIZE (bitlbee-3.0.tar.gz) = 662460 Only in bitlbee.orig/files: patch-protocols-twitter-twitter_lib.c >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 21:20:06 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 611EA106566C for ; Wed, 27 Oct 2010 21:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 322618FC13 for ; Wed, 27 Oct 2010 21:20:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RLK5R8079150 for ; Wed, 27 Oct 2010 21:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RLK5hw079148; Wed, 27 Oct 2010 21:20:05 GMT (envelope-from gnats) Date: Wed, 27 Oct 2010 21:20:05 GMT Message-Id: <201010272120.o9RLK5hw079148@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Svishchev Cc: Subject: Re: ports/150235 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergey Svishchev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 21:20:06 -0000 The following reply was made to PR ports/150235; it has been noted by GNATS. From: Sergey Svishchev To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/150235 Date: Thu, 28 Oct 2010 00:47:21 +0400 There is a kern/109813 "[ciss] ciss(4) driver API header is not installed", prompted by exactly this issue. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 21:50:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51E1510656D6 for ; Wed, 27 Oct 2010 21:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD6BB8FC1A for ; Wed, 27 Oct 2010 21:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RLo8TV008416 for ; Wed, 27 Oct 2010 21:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RLo850008415; Wed, 27 Oct 2010 21:50:08 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 21:50:08 GMT Resent-Message-Id: <201010272150.o9RLo850008415@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris St Denis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EF5F106564A for ; Wed, 27 Oct 2010 21:45:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 4D9688FC12 for ; Wed, 27 Oct 2010 21:45:55 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9RLjt4R043795 for ; Wed, 27 Oct 2010 21:45:55 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9RLjsoK043794; Wed, 27 Oct 2010 21:45:54 GMT (envelope-from nobody) Message-Id: <201010272145.o9RLjsoK043794@www.freebsd.org> Date: Wed, 27 Oct 2010 21:45:54 GMT From: Chris St Denis To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151787: Update port: dns/pear-File_DNS update to 0.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 21:50:09 -0000 >Number: 151787 >Category: ports >Synopsis: Update port: dns/pear-File_DNS update to 0.1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 21:50:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Chris St Denis >Release: >Organization: >Environment: >Description: Update of dns/pear-File_DNS from 0.0.8 to 0.1.0 I am the maintainer of the port. >How-To-Repeat: >Fix: Makefile diff: ======================== --- Makefile.old 2010-10-27 14:36:16.000000000 -0700 +++ Makefile 2010-10-27 14:38:08.000000000 -0700 @@ -6,7 +6,7 @@ # PORTNAME= File_DNS -PORTVERSION= 0.0.8 +PORTVERSION= 0.1.0 CATEGORIES= dns devel pear MAINTAINER= chris@ctgameinfo.com @@ -15,9 +15,9 @@ BUILD_DEPENDS= ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File RUN_DEPENDS= ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File -CATEGORY= File -FILES= DNS.php +FILES= File/DNS.php EXAMPLES= example.php example.net +TESTS= isip.phpt .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" distinfo diff: ======================== --- distinfo.old 2010-10-27 14:44:19.000000000 -0700 +++ distinfo 2010-10-27 14:38:48.000000000 -0700 @@ -1,3 +1,3 @@ -MD5 (PEAR/File_DNS-0.0.8.tgz) = 3479d0aee8cc42cd2a811fd3fbc9ef8a -SHA256 (PEAR/File_DNS-0.0.8.tgz) = d2900bbc529c2e779cb4144b521ca9d9d086f90568060354fd903a5134e3d74f -SIZE (PEAR/File_DNS-0.0.8.tgz) = 9364 +MD5 (PEAR/File_DNS-0.1.0.tgz) = 65d7a55c5ea30cb2fb11ed99f41abf98 +SHA256 (PEAR/File_DNS-0.1.0.tgz) = 8b13a6b6c3d72a4df30a6fd024f2e2d526beec0c119037403a4aecdfe5de51cb +SIZE (PEAR/File_DNS-0.1.0.tgz) = 10024 pkg-descr diff: ================= --- pkg-descr.old 2010-10-27 14:44:46.000000000 -0700 +++ pkg-descr 2010-10-27 14:45:05.000000000 -0700 @@ -1,2 +1,4 @@ The File_DNS class provides a way to read, edit and write RFC1033 style DNS Zones. + +WWW: http://pear.php.net/package/File_DNS >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 21:50:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B959E1065693; Wed, 27 Oct 2010 21:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8F7718FC17; Wed, 27 Oct 2010 21:50:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RLoH8P009155; Wed, 27 Oct 2010 21:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RLoHSE009146; Wed, 27 Oct 2010 21:50:17 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 21:50:17 GMT Message-Id: <201010272150.o9RLoHSE009146@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151787: Update port: dns/pear-File_DNS update to 0.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 21:50:17 -0000 Synopsis: Update port: dns/pear-File_DNS update to 0.1.0 Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Wed Oct 27 21:50:17 UTC 2010 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151787 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 22:04:51 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8057D106566B; Wed, 27 Oct 2010 22:04:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 55C758FC18; Wed, 27 Oct 2010 22:04:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RM4p3q030106; Wed, 27 Oct 2010 22:04:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RM4p0s030102; Wed, 27 Oct 2010 22:04:51 GMT (envelope-from linimon) Date: Wed, 27 Oct 2010 22:04:51 GMT Message-Id: <201010272204.o9RM4p0s030102@freefall.freebsd.org> To: rfarmer@predatorlabs.net, c.petrik.sosa@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 22:04:51 -0000 Synopsis: [PATCH] request maintainer for ftp/bareftp once again State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Wed Oct 27 22:04:25 UTC 2010 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=151779 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 22:30:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96390106566C for ; Wed, 27 Oct 2010 22:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4FE178FC0C for ; Wed, 27 Oct 2010 22:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RMU9dR050131 for ; Wed, 27 Oct 2010 22:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RMU9LO050125; Wed, 27 Oct 2010 22:30:09 GMT (envelope-from gnats) Resent-Date: Wed, 27 Oct 2010 22:30:09 GMT Resent-Message-Id: <201010272230.o9RMU9LO050125@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marshall Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB968106564A for ; Wed, 27 Oct 2010 22:24:36 +0000 (UTC) (envelope-from john.marshall@riverwillow.com.au) Received: from mail1.riverwillow.net.au (mail1.riverwillow.net.au [203.58.93.36]) by mx1.freebsd.org (Postfix) with ESMTP id 4D1E68FC08 for ; Wed, 27 Oct 2010 22:24:35 +0000 (UTC) Received: from rwpc12.mby.riverwillow.net.au (rwpc12.mby.riverwillow.net.au [172.25.24.193]) (authenticated bits=0) by mail1.riverwillow.net.au (8.14.4/8.14.4) with ESMTP id o9RM9SoL006751 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 28 Oct 2010 09:09:29 +1100 (AEDT) Received: from rwpc12.mby.riverwillow.net.au (localhost [127.0.0.1]) by rwpc12.mby.riverwillow.net.au (8.14.4/8.14.4) with ESMTP id o9RM9Suu054765; Thu, 28 Oct 2010 09:09:28 +1100 (AEDT) (envelope-from john.marshall@riverwillow.com.au) Received: (from john@localhost) by rwpc12.mby.riverwillow.net.au (8.14.4/8.14.4/Submit) id o9RM9Shi054764; Thu, 28 Oct 2010 09:09:28 +1100 (AEDT) (envelope-from john) Message-Id: <201010272209.o9RM9Shi054764@rwpc12.mby.riverwillow.net.au> Date: Thu, 28 Oct 2010 09:09:28 +1100 (AEDT) From: John Marshall To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: John Marshall Subject: ports/151788: [PATCH] x11/xscreensaver 5.12 gltext gobbles memory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Marshall List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 22:30:09 -0000 >Number: 151788 >Category: ports >Synopsis: [PATCH] x11/xscreensaver 5.12 gltext gobbles memory >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 27 22:30:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: John Marshall >Release: FreeBSD 8.1-RELEASE-p1 i386 >Organization: Riverwillow Pty Ltd >Environment: System: FreeBSD rwpc12 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #2: Tue Oct 12 11:30:43 AEDT 2010 root@rwpc12:/usr/obj/usr/src/sys/RWPC12 i386 >Description: Following upgrade of this port from 5.11 to 5.12 the gltext screensaver would exhaust memory resources and then... rwpc12 kernel: pid 34420 (gltext), ..., was killed: out of swap space I contacted the author, Jamie Zawinski, who promptly provided the patch to hacks/glx/tube.c below. >How-To-Repeat: Installing x11/xscreensaver 5.12 on a Pentium III with 512MB RAM triggered this problem. I didn't try on a larger system. >Fix: The following patch upgrades the port to include the author's patch. Files touched: - Makefile --> Bump PORTREVISION - files/patch-hacks_glx_tube.c --> Added --- xscreensaver-5.12.diff begins here --- diff -urN xscreensaver.orig/Makefile xscreensaver/Makefile --- xscreensaver.orig/Makefile 2010-10-18 16:53:41.000000000 +1100 +++ xscreensaver/Makefile 2010-10-28 08:56:46.000000000 +1100 @@ -7,6 +7,7 @@ PORTNAME= xscreensaver PORTVERSION= 5.12 +PORTREVISION= 1 CATEGORIES?= x11 MASTER_SITES= http://www.jwz.org/xscreensaver/ \ http://dougbarton.us/Downloads/ diff -urN xscreensaver.orig/files/patch-hacks_glx_tube.c xscreensaver/files/patch-hacks_glx_tube.c --- xscreensaver.orig/files/patch-hacks_glx_tube.c 1970-01-01 10:00:00.000000000 +1000 +++ xscreensaver/files/patch-hacks_glx_tube.c 2010-10-27 15:24:18.000000000 +1100 @@ -0,0 +1,11 @@ +--- hacks/glx/tube.c.orig 2010-08-23 13:39:51.000000000 +1000 ++++ hacks/glx/tube.c 2010-10-27 15:22:07.000000000 +1100 +@@ -181,6 +181,8 @@ + glDrawArrays ((wire_p ? GL_LINE_LOOP : GL_TRIANGLE_FAN), 0, out); + } + ++ free(array); ++ + return polys; + } + --- xscreensaver-5.12.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 22:30:18 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB4A3106564A; Wed, 27 Oct 2010 22:30:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B168D8FC18; Wed, 27 Oct 2010 22:30:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RMUIhi050969; Wed, 27 Oct 2010 22:30:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RMUIL8050960; Wed, 27 Oct 2010 22:30:18 GMT (envelope-from edwin) Date: Wed, 27 Oct 2010 22:30:18 GMT Message-Id: <201010272230.o9RMUIL8050960@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dougb@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151788: [PATCH] x11/xscreensaver 5.12 gltext gobbles memory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 22:30:18 -0000 Synopsis: [PATCH] x11/xscreensaver 5.12 gltext gobbles memory Responsible-Changed-From-To: freebsd-ports-bugs->dougb Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 27 22:30:17 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151788 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 23:41:02 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45CD7106564A; Wed, 27 Oct 2010 23:41:02 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C7968FC14; Wed, 27 Oct 2010 23:41:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RNf1nD030112; Wed, 27 Oct 2010 23:41:02 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RNf1H5030099; Wed, 27 Oct 2010 23:41:01 GMT (envelope-from wen) Date: Wed, 27 Oct 2010 23:41:01 GMT Message-Id: <201010272341.o9RNf1H5030099@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151786: Patch to upgrade bitlbee to 3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 23:41:02 -0000 Synopsis: Patch to upgrade bitlbee to 3.0 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Wed Oct 27 23:41:01 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151786 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 23:41:41 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFD5F106564A; Wed, 27 Oct 2010 23:41:41 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A88388FC0A; Wed, 27 Oct 2010 23:41:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RNffMt031357; Wed, 27 Oct 2010 23:41:41 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RNfffN031353; Wed, 27 Oct 2010 23:41:41 GMT (envelope-from wen) Date: Wed, 27 Oct 2010 23:41:41 GMT Message-Id: <201010272341.o9RNfffN031353@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151787: Update port: dns/pear-File_DNS update to 0.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 23:41:41 -0000 Synopsis: Update port: dns/pear-File_DNS update to 0.1.0 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Wed Oct 27 23:41:41 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151787 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 27 23:45:40 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A63B106566C; Wed, 27 Oct 2010 23:45:40 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 601768FC15; Wed, 27 Oct 2010 23:45:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9RNjeiC031584; Wed, 27 Oct 2010 23:45:40 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9RNjdLX031578; Wed, 27 Oct 2010 23:45:39 GMT (envelope-from wen) Date: Wed, 27 Oct 2010 23:45:39 GMT Message-Id: <201010272345.o9RNjdLX031578@freefall.freebsd.org> To: carsten@sitracker.org, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151363: [NEW PORT]: www/sit - Incident tracker / Help Desk based on Apache/MySQL/PHP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 23:45:40 -0000 Synopsis: [NEW PORT]: www/sit - Incident tracker / Help Desk based on Apache/MySQL/PHP State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Wed Oct 27 23:45:39 UTC 2010 State-Changed-Why: Superceded by 151784 http://www.freebsd.org/cgi/query-pr.cgi?pr=151363 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 01:20:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EEC81065675 for ; Thu, 28 Oct 2010 01:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B0C98FC0C for ; Thu, 28 Oct 2010 01:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S1K9d7026681 for ; Thu, 28 Oct 2010 01:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S1K9Wo026680; Thu, 28 Oct 2010 01:20:09 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 01:20:09 GMT Resent-Message-Id: <201010280120.o9S1K9Wo026680@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AACF106564A for ; Thu, 28 Oct 2010 01:19:40 +0000 (UTC) (envelope-from cyberbotx@kirby.cyberbotx.com) Received: from qmta06.emeryville.ca.mail.comcast.net (qmta06.emeryville.ca.mail.comcast.net [76.96.30.56]) by mx1.freebsd.org (Postfix) with ESMTP id 002C28FC0C for ; Thu, 28 Oct 2010 01:19:38 +0000 (UTC) Received: from omta14.emeryville.ca.mail.comcast.net ([76.96.30.60]) by qmta06.emeryville.ca.mail.comcast.net with comcast id Q0m11f0021HpZEsA61Ke61; Thu, 28 Oct 2010 01:19:38 +0000 Received: from kirby.cyberbotx.com ([71.238.30.182]) by omta14.emeryville.ca.mail.comcast.net with comcast id Q1Kb1f00P3vlkZB8a1KcCL; Thu, 28 Oct 2010 01:19:38 +0000 Received: from kirby.cyberbotx.com (localhost [127.0.0.1]) by kirby.cyberbotx.com (Postfix) with ESMTP id EE46328441 for ; Wed, 27 Oct 2010 21:19:33 -0400 (EDT) Received: (from root@localhost) by kirby.cyberbotx.com (8.14.3/8.14.3/Submit) id o9S1JXkb051701; Wed, 27 Oct 2010 21:19:33 -0400 (EDT) (envelope-from cyberbotx) Message-Id: <201010280119.o9S1JXkb051701@kirby.cyberbotx.com> Date: Wed, 27 Oct 2010 21:19:33 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151789: [MAINTAINER] x11-toolkits/scintilla: update to 2.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 01:20:09 -0000 >Number: 151789 >Category: ports >Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 2.22 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 01:20:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.1-RELEASE FreeBSD 8.1-RELEASE #2: Thu Aug 19 19:09:40 EDT 2010 >Description: - Update to 2.22 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- scintilla-2.22.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/Makefile /kirby/shared/ports/scintilla/Makefile --- /usr/ports/x11-toolkits/scintilla/Makefile 2010-09-11 12:04:32.000000000 -0400 +++ /kirby/shared/ports/scintilla/Makefile 2010-10-27 21:18:27.000000000 -0400 @@ -6,7 +6,7 @@ # $MCom: ports/x11-toolkits/scintilla/Makefile,v 1.3 2006/09/17 21:58:56 marcus Exp $ PORTNAME= scintilla -PORTVERSION= 2.21 +PORTVERSION= 2.22 CATEGORIES= x11-toolkits MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= scite${PORTVERSION:S/.//g} @@ -23,6 +23,7 @@ USE_LDCONFIG= yes USE_GNOME= gtk20 USE_GCC= 4.2+ +MAKE_JOBS_SAFE= yes .include diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/distinfo /kirby/shared/ports/scintilla/distinfo --- /usr/ports/x11-toolkits/scintilla/distinfo 2010-09-11 12:04:32.000000000 -0400 +++ /kirby/shared/ports/scintilla/distinfo 2010-10-27 21:12:21.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (scite221.tgz) = 6b291afa70bdffd93f78cdf6021b9e48 -SHA256 (scite221.tgz) = ba86521be3eab1cb55572d5b717e4717a3eec56ef8d9d62c0dcdded239e9cfa7 -SIZE (scite221.tgz) = 1920326 +MD5 (scite222.tgz) = f8cc520fe2d9fff85989076e2b8b739c +SHA256 (scite222.tgz) = 95b904318414c5910a1e1c8c0c631b761563db83cc75cd5a9244da156b592a8e +SIZE (scite222.tgz) = 1816710 --- scintilla-2.22.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 01:30:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 610C51065673 for ; Thu, 28 Oct 2010 01:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D6438FC15 for ; Thu, 28 Oct 2010 01:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S1U88d035953 for ; Thu, 28 Oct 2010 01:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S1U85u035952; Thu, 28 Oct 2010 01:30:08 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 01:30:08 GMT Resent-Message-Id: <201010280130.o9S1U85u035952@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 070B7106564A for ; Thu, 28 Oct 2010 01:28:07 +0000 (UTC) (envelope-from cyberbotx@kirby.cyberbotx.com) Received: from qmta05.emeryville.ca.mail.comcast.net (qmta05.emeryville.ca.mail.comcast.net [76.96.30.48]) by mx1.freebsd.org (Postfix) with ESMTP id C86848FC16 for ; Thu, 28 Oct 2010 01:28:06 +0000 (UTC) Received: from omta02.emeryville.ca.mail.comcast.net ([76.96.30.19]) by qmta05.emeryville.ca.mail.comcast.net with comcast id Pymq1f0020QkzPwA51U5NL; Thu, 28 Oct 2010 01:28:05 +0000 Received: from kirby.cyberbotx.com ([71.238.30.182]) by omta02.emeryville.ca.mail.comcast.net with comcast id Q1U41f0023vlkZB8N1U4ob; Thu, 28 Oct 2010 01:28:05 +0000 Received: from kirby.cyberbotx.com (localhost [127.0.0.1]) by kirby.cyberbotx.com (Postfix) with ESMTP id A037128441 for ; Wed, 27 Oct 2010 21:28:03 -0400 (EDT) Received: (from root@localhost) by kirby.cyberbotx.com (8.14.3/8.14.3/Submit) id o9S1S3Nh054602; Wed, 27 Oct 2010 21:28:03 -0400 (EDT) (envelope-from cyberbotx) Message-Id: <201010280128.o9S1S3Nh054602@kirby.cyberbotx.com> Date: Wed, 27 Oct 2010 21:28:03 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151790: [MAINTAINER] editors/scite: update to 2.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 01:30:09 -0000 >Number: 151790 >Category: ports >Synopsis: [MAINTAINER] editors/scite: update to 2.22 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 01:30:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.1-RELEASE FreeBSD 8.1-RELEASE #2: Thu Aug 19 19:09:40 EDT 2010 >Description: - Update to 2.22 Note: This PR relies on PR ports/151789 to be committed first. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- scite-2.22.patch begins here --- diff -ruN --exclude=CVS /usr/ports/editors/scite/Makefile /kirby/shared/ports/scite/Makefile --- /usr/ports/editors/scite/Makefile 2010-09-11 12:03:53.000000000 -0400 +++ /kirby/shared/ports/scite/Makefile 2010-10-27 21:16:17.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= scite -PORTVERSION= 2.21 +PORTVERSION= 2.22 CATEGORIES= editors gnome MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} @@ -23,6 +23,7 @@ USE_GMAKE= yes USE_GNOME= gtk20 MAKEFILE= makefile +MAKE_JOBS_SAFE= yes MAN1= scite.1 diff -ruN --exclude=CVS /usr/ports/editors/scite/distinfo /kirby/shared/ports/scite/distinfo --- /usr/ports/editors/scite/distinfo 2010-09-11 12:03:53.000000000 -0400 +++ /kirby/shared/ports/scite/distinfo 2010-10-27 21:19:45.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (scite221.tgz) = 6b291afa70bdffd93f78cdf6021b9e48 -SHA256 (scite221.tgz) = ba86521be3eab1cb55572d5b717e4717a3eec56ef8d9d62c0dcdded239e9cfa7 -SIZE (scite221.tgz) = 1920326 +MD5 (scite222.tgz) = f8cc520fe2d9fff85989076e2b8b739c +SHA256 (scite222.tgz) = 95b904318414c5910a1e1c8c0c631b761563db83cc75cd5a9244da156b592a8e +SIZE (scite222.tgz) = 1816710 --- scite-2.22.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 03:10:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E46311065670 for ; Thu, 28 Oct 2010 03:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B88208FC13 for ; Thu, 28 Oct 2010 03:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S3ADEt039003 for ; Thu, 28 Oct 2010 03:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S3AD42039002; Thu, 28 Oct 2010 03:10:13 GMT (envelope-from gnats) Date: Thu, 28 Oct 2010 03:10:13 GMT Message-Id: <201010280310.o9S3AD42039002@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Henry Hu Cc: Subject: Re: ports/149616: [PATCH] textproc/ibus: update to 1.3.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Henry Hu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 03:10:14 -0000 The following reply was made to PR ports/149616; it has been noted by GNATS. From: Henry Hu To: bug-followup@freebsd.org, linpct@gmail.com Cc: Subject: Re: ports/149616: [PATCH] textproc/ibus: update to 1.3.7 Date: Thu, 28 Oct 2010 11:05:41 +0800 --e0cb4e43ae212c82140493a49f14 Content-Type: text/plain; charset=ISO-8859-1 OK, now I have a patch for ibus 1.3.8 Sorry for the earlier mail. Something went wrong, and the patch is erroneous. This time, I'm trying to use ports-mgmt/porttools to generate the patch... -- Cheers, Henry --e0cb4e43ae212c82140493a49f14 Content-Type: text/x-patch; charset=US-ASCII; name="ibus-1.3.8.patch" Content-Disposition: attachment; filename="ibus-1.3.8.patch" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gft1vq6v0 ZGlmZiAtcnVOIC0tZXhjbHVkZT1DVlMgL3RtcC9jdnN0bXAvcG9ydHMvdGV4dHByb2MvaWJ1cy9N YWtlZmlsZSAvdXNyL3BvcnRzL3RleHRwcm9jL2lidXMvTWFrZWZpbGUKLS0tIC90bXAvY3ZzdG1w L3BvcnRzL3RleHRwcm9jL2lidXMvTWFrZWZpbGUJMjAxMC0xMC0yNyAyMDoxMzozMy4wMDAwMDAw MDAgKzA4MDAKKysrIC91c3IvcG9ydHMvdGV4dHByb2MvaWJ1cy9NYWtlZmlsZQkyMDEwLTEwLTI3 IDIwOjE1OjM0LjAwMDAwMDAwMCArMDgwMApAQCAtNiwxNyArNiwxOSBAQAogIwogCiBQT1JUTkFN RT0JaWJ1cwotUE9SVFZFUlNJT049CTEuMy41CitQT1JUVkVSU0lPTj0JMS4zLjgKIENBVEVHT1JJ RVM9CXRleHRwcm9jCiBNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfR09PR0xFX0NPREV9CiAK IE1BSU5UQUlORVI9CWhlbnJ5Lmh1LnNoQGdtYWlsLmNvbQogQ09NTUVOVD0JSW50ZWxsaWdlbnQg SW5wdXQgQnVzIGZvciBMaW51eCAvIFVuaXggT1MKIAotQlVJTERfREVQRU5EUz0JJHtQWVRIT05f UEtHTkFNRVBSRUZJWH1kYnVzPj0wLjgzLjA6JHtQT1JUU0RJUn0vZGV2ZWwvcHktZGJ1cworQlVJ TERfREVQRU5EUz0JJHtQWVRIT05fUEtHTkFNRVBSRUZJWH1kYnVzPj0wLjgzLjA6JHtQT1JUU0RJ Un0vZGV2ZWwvcHktZGJ1cyBcCisJCWxpYnJzdmcyPj0yLjA6JHtQT1JUU0RJUn0vZ3JhcGhpY3Mv bGlicnN2ZzIKIFJVTl9ERVBFTkRTPQkke1BZVEhPTl9QS0dOQU1FUFJFRklYfWRidXM+PTAuODMu MDoke1BPUlRTRElSfS9kZXZlbC9weS1kYnVzIFwKIAkJJHtQWVRIT05fU0lURUxJQkRJUn0vZ3Rr LTIuMC9weW5vdGlmeS9fX2luaXRfXy5weToke1BPUlRTRElSfS9kZXZlbC9weS1ub3RpZnkgXAot CQkke1BZVEhPTl9TSVRFTElCRElSfS94ZGcvX19pbml0X18ucHk6JHtQT1JUU0RJUn0vZGV2ZWwv cHkteGRnCisJCSR7UFlUSE9OX1NJVEVMSUJESVJ9L3hkZy9fX2luaXRfXy5weToke1BPUlRTRElS fS9kZXZlbC9weS14ZGcgXAorCQlsaWJyc3ZnMj49Mi4wOiR7UE9SVFNESVJ9L2dyYXBoaWNzL2xp YnJzdmcyCiAKIFVTRV9QWVRIT049CXllcwogVVNFX0dOT01FPQlweWd0azIgZ2NvbmYyCkBAIC0y OSw3ICszMSw4IEBACiBHQ09ORl9TQ0hFTUFTPQlpYnVzLnNjaGVtYXMKIAogT1BUSU9OUz0JSVNP Q09ERVMgIlVzZSBpc29jb2RlY3MiIG9uIFwKLQkJVkFMQSAiSW5zdGFsbCB2YWxhIGJpbmRpbmci IG9uCisJCVZBTEEgIkluc3RhbGwgdmFsYSBiaW5kaW5nIiBvbiBcCisJCUdJTlRSTyAiSW5zdGFs bCBHT2JqZWN0IEludHJvc3BlY3Rpb24gZGF0YSIgb24KIAogLmluY2x1ZGUgPGJzZC5wb3J0LnBy ZS5taz4KIApAQCAtNTcsNiArNjAsMTYgQEAKIFBMSVNUX1NVQis9CVZBTEE9IkBjb21tZW50ICIK IC5lbmRpZgogCisuaWYgZGVmaW5lZChXSVRIX0dJTlRSTykKK0JVSUxEX0RFUEVORFMrPQlnb2Jq ZWN0LWludHJvc3BlY3Rpb24+PTAuNi44OiR7UE9SVFNESVJ9L2RldmVsL2dvYmplY3QtaW50cm9z cGVjdGlvbgorUlVOX0RFUEVORFMrPQlnb2JqZWN0LWludHJvc3BlY3Rpb24+PTAuNi44OiR7UE9S VFNESVJ9L2RldmVsL2dvYmplY3QtaW50cm9zcGVjdGlvbgorQ09ORklHVVJFX0FSR1MrPQktLWVu YWJsZS1pbnRyb3NwZWN0aW9uPXllcworUExJU1RfU1VCKz0gR0lOVFJPPSIiCisuZWxzZQorQ09O RklHVVJFX0FSR1MrPQktLWVuYWJsZS1pbnRyb3NwZWN0aW9uPW5vCitQTElTVF9TVUIrPSBHSU5U Uk89IkBjb21tZW50ICIKKy5lbmRpZgorCiBwb3N0LXBhdGNoOgogCUAke1JFSU5QTEFDRV9DTUR9 IC1lICdzfChsaWJkaXIpL3BrZ2NvbmZpZ3wocHJlZml4KS9saWJkYXRhL3BrZ2NvbmZpZ3wnICR7 V1JLU1JDfS9NYWtlZmlsZS5pbgogCUAke1JFSU5QTEFDRV9DTUR9IC1lICdzfC91c3Ivc2hhcmUv eG1sL2lzby1jb2Rlcy98JHtMT0NBTEJBU0V9L3NoYXJlL3htbC9pc28tY29kZXMvfGcnICR7V1JL U1JDfS9pYnVzL2xhbmcucHkKZGlmZiAtcnVOIC0tZXhjbHVkZT1DVlMgL3RtcC9jdnN0bXAvcG9y dHMvdGV4dHByb2MvaWJ1cy9kaXN0aW5mbyAvdXNyL3BvcnRzL3RleHRwcm9jL2lidXMvZGlzdGlu Zm8KLS0tIC90bXAvY3ZzdG1wL3BvcnRzL3RleHRwcm9jL2lidXMvZGlzdGluZm8JMjAxMC0xMC0y NyAyMDoxMzozNC4wMDAwMDAwMDAgKzA4MDAKKysrIC91c3IvcG9ydHMvdGV4dHByb2MvaWJ1cy9k aXN0aW5mbwkyMDEwLTEwLTI3IDIwOjE1OjQ5LjAwMDAwMDAwMCArMDgwMApAQCAtMSwzICsxLDMg QEAKLU1ENSAoaWJ1cy0xLjMuNS50YXIuZ3opID0gOWY5MmI4ZTQ3ZDJjMGJlZTY3Y2YzZTI1Zjdi OGM1MmQKLVNIQTI1NiAoaWJ1cy0xLjMuNS50YXIuZ3opID0gM2FkNDRmMmExNmJhOTY2YTEzMzg0 ZGY4NTgyOGQyZjIxNjkyNDczMjBiOTk5MGNlNjAxZTljNDNhNWFkOTQ0NgotU0laRSAoaWJ1cy0x LjMuNS50YXIuZ3opID0gMTMyMzIxNAorTUQ1IChpYnVzLTEuMy44LnRhci5neikgPSA2ZDM0NTI2 OGUzNDk2ZjJlNmJlM2E2ZjNhM2JhMTllYQorU0hBMjU2IChpYnVzLTEuMy44LnRhci5neikgPSBk ODUwNzUxN2Y1ZTViYTQ1NGIyNjYzNTgxYjExMzNkZjIxZmRiYTc0YTA3NzkwMjI1OWUxODg0NWNk ZDI0NjhkCitTSVpFIChpYnVzLTEuMy44LnRhci5neikgPSAxMzc5MDM4CmRpZmYgLXJ1TiAtLWV4 Y2x1ZGU9Q1ZTIC90bXAvY3ZzdG1wL3BvcnRzL3RleHRwcm9jL2lidXMvcGtnLXBsaXN0IC91c3Iv cG9ydHMvdGV4dHByb2MvaWJ1cy9wa2ctcGxpc3QKLS0tIC90bXAvY3ZzdG1wL3BvcnRzL3RleHRw cm9jL2lidXMvcGtnLXBsaXN0CTIwMTAtMTAtMjcgMjA6MTM6MzQuMDAwMDAwMDAwICswODAwCisr KyAvdXNyL3BvcnRzL3RleHRwcm9jL2lidXMvcGtnLXBsaXN0CTIwMTAtMDktMTcgMTc6NTM6MTYu MDAwMDAwMDAwICswODAwCkBAIC03Nyw2ICs3Nyw3IEBACiAlJU5MUyUlc2hhcmUvbG9jYWxlL29y L0xDX01FU1NBR0VTL2lidXMubW8KICUlTkxTJSVzaGFyZS9sb2NhbGUvcGEvTENfTUVTU0FHRVMv aWJ1cy5tbwogJSVOTFMlJXNoYXJlL2xvY2FsZS9wbC9MQ19NRVNTQUdFUy9pYnVzLm1vCislJU5M UyUlc2hhcmUvbG9jYWxlL3B0X0JSL0xDX01FU1NBR0VTL2lidXMubW8KICUlTkxTJSVzaGFyZS9s b2NhbGUvcnUvTENfTUVTU0FHRVMvaWJ1cy5tbwogJSVOTFMlJXNoYXJlL2xvY2FsZS9zci9MQ19N RVNTQUdFUy9pYnVzLm1vCiAlJU5MUyUlc2hhcmUvbG9jYWxlL3NyQGxhdGluL0xDX01FU1NBR0VT L2lidXMubW8KQEAgLTIzNywxNSArMjM4LDE2IEBACiBsaWIvbGliaWJ1cy5sYQogbGliL2xpYmli dXMuc28KIGxpYi9saWJpYnVzLnNvLjIKLWxpYi9naXJlcG9zaXRvcnktMS4wL0lCdXMtMS4wLnR5 cGVsaWIKKyUlR0lOVFJPJSVsaWIvZ2lyZXBvc2l0b3J5LTEuMC9JQnVzLTEuMC50eXBlbGliCisl JUdJTlRSTyUlc2hhcmUvZ2lyLTEuMC9JQnVzLTEuMC5naXIKIGxpYmRhdGEvcGtnY29uZmlnL2li dXMtMS4wLnBjCiBsaWJleGVjL2lidXMtZ2NvbmYKIGxpYmV4ZWMvaWJ1cy11aS1ndGsKIGxpYmV4 ZWMvaWJ1cy14MTEKIHNoYXJlL2FwcGxpY2F0aW9ucy9pYnVzLXNldHVwLmRlc2t0b3AKIHNoYXJl L2FwcGxpY2F0aW9ucy9pYnVzLmRlc2t0b3AKLXNoYXJlL2dpci0xLjAvSUJ1cy0xLjAuZ2lyCiBz aGFyZS9ndGstZG9jL2h0bWwvaWJ1cy9JQnVzQXR0ckxpc3QuaHRtbAorc2hhcmUvZ3RrLWRvYy9o dG1sL2lidXMvSUJ1c0F0dHJpYnV0ZS5odG1sCiBzaGFyZS9ndGstZG9jL2h0bWwvaWJ1cy9JQnVz QnVzLmh0bWwKIHNoYXJlL2d0ay1kb2MvaHRtbC9pYnVzL0lCdXNDb21wb25lbnQuaHRtbAogc2hh cmUvZ3RrLWRvYy9odG1sL2lidXMvSUJ1c0NvbmZpZy5odG1sCkBAIC0yNjQsNiArMjY2LDkgQEAK IHNoYXJlL2d0ay1kb2MvaHRtbC9pYnVzL0lCdXNQcm9wTGlzdC5odG1sCiBzaGFyZS9ndGstZG9j L2h0bWwvaWJ1cy9JQnVzUHJvcGVydHkuaHRtbAogc2hhcmUvZ3RrLWRvYy9odG1sL2lidXMvSUJ1 c1Byb3h5Lmh0bWwKK3NoYXJlL2d0ay1kb2MvaHRtbC9pYnVzL0lCdXNTZXJpYWxpemFibGUuaHRt bAorc2hhcmUvZ3RrLWRvYy9odG1sL2lidXMvSUJ1c1NlcnZlci5odG1sCitzaGFyZS9ndGstZG9j L2h0bWwvaWJ1cy9JQnVzU2VydmljZS5odG1sCiBzaGFyZS9ndGstZG9jL2h0bWwvaWJ1cy9JQnVz VGV4dC5odG1sCiBzaGFyZS9ndGstZG9jL2h0bWwvaWJ1cy9jaDAxLmh0bWwKIHNoYXJlL2d0ay1k b2MvaHRtbC9pYnVzL2NoMDIuaHRtbApAQCAtMjc1LDEzICsyODAsOSBAQAogc2hhcmUvZ3RrLWRv Yy9odG1sL2lidXMvaWJ1cy1JQnVzS2V5c3ltcy5odG1sCiBzaGFyZS9ndGstZG9jL2h0bWwvaWJ1 cy9pYnVzLUlCdXNNZXNzYWdlLmh0bWwKIHNoYXJlL2d0ay1kb2MvaHRtbC9pYnVzL2lidXMtSUJ1 c1BlbmRpbmdDYWxsLmh0bWwKLXNoYXJlL2d0ay1kb2MvaHRtbC9pYnVzL2lidXMtaWJ1c2F0dHJp YnV0ZS5odG1sCiBzaGFyZS9ndGstZG9jL2h0bWwvaWJ1cy9pYnVzLWlidXNkZWJ1Zy5odG1sCiBz aGFyZS9ndGstZG9jL2h0bWwvaWJ1cy9pYnVzLWlidXNlcnJvci5odG1sCiBzaGFyZS9ndGstZG9j L2h0bWwvaWJ1cy9pYnVzLWlidXNtYWlubG9vcC5odG1sCi1zaGFyZS9ndGstZG9jL2h0bWwvaWJ1 cy9pYnVzLWlidXNzZXJpYWxpemFibGUuaHRtbAotc2hhcmUvZ3RrLWRvYy9odG1sL2lidXMvaWJ1 cy1pYnVzc2VydmVyLmh0bWwKLXNoYXJlL2d0ay1kb2MvaHRtbC9pYnVzL2lidXMtaWJ1c3NlcnZp Y2UuaHRtbAogc2hhcmUvZ3RrLWRvYy9odG1sL2lidXMvaWJ1cy1pYnVzc2hhcmUuaHRtbAogc2hh cmUvZ3RrLWRvYy9odG1sL2lidXMvaWJ1cy1pYnVzdHlwZXMuaHRtbAogc2hhcmUvZ3RrLWRvYy9o dG1sL2lidXMvaWJ1cy1pYnVzdmVyc2lvbi5odG1sCkBAIC0zMDQsNiArMzA1LDkgQEAKIHNoYXJl L2ljb25zL2hpY29sb3Ivc2NhbGFibGUvYXBwcy9pYnVzLXNldHVwLnN2Zwogc2hhcmUvaWNvbnMv aGljb2xvci9zY2FsYWJsZS9hcHBzL2lidXMuc3ZnCiAlJVZBTEElJXNoYXJlL3ZhbGEvdmFwaS9p YnVzLTEuMC52YXBpCitAZGlycm10cnkgc2hhcmUvdmFsYS92YXBpCitAZGlycm10cnkgc2hhcmUv dmFsYQorQGRpcnJtdHJ5IHNoYXJlL2dpci0xLjAKIEBkaXJybSAlJURBVEFESVIlJS91aS9ndGsK IEBkaXJybSAlJURBVEFESVIlJS91aQogQGRpcnJtdHJ5ICUlREFUQURJUiUlL2ljb25zCg== --e0cb4e43ae212c82140493a49f14-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 04:20:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 805C21065672 for ; Thu, 28 Oct 2010 04:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5C8DA8FC13 for ; Thu, 28 Oct 2010 04:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S4K7Mg011069 for ; Thu, 28 Oct 2010 04:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S4K7uH011068; Thu, 28 Oct 2010 04:20:07 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 04:20:07 GMT Resent-Message-Id: <201010280420.o9S4K7uH011068@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Zooko O'Whielacronx" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB5E2106566B for ; Thu, 28 Oct 2010 04:17:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id B9E3C8FC0A for ; Thu, 28 Oct 2010 04:17:47 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9S4Hlac017119 for ; Thu, 28 Oct 2010 04:17:47 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9S4HlRa017118; Thu, 28 Oct 2010 04:17:47 GMT (envelope-from nobody) Message-Id: <201010280417.o9S4HlRa017118@www.freebsd.org> Date: Thu, 28 Oct 2010 04:17:47 GMT From: "Zooko O'Whielacronx" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151791: please update security/python-pycrypto to v2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 04:20:07 -0000 >Number: 151791 >Category: ports >Synopsis: please update security/python-pycrypto to v2.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 04:20:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Zooko O'Whielacronx >Release: 8.1 >Organization: zooko.com >Environment: N/A >Description: I'm the maintainer of a secure storage service (sort of like Amazon S3 but secure, or sort of like Tarsnap but open source and decentralized), named Tahoe-LAFS. Tahoe-LAFS is incompatible with PyCrypto 2.2 due to bugs in PyCrypto 2.2: http://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/src/allmydata/_auto_deps.py?rev=4749 The current release of PyCrypto is 2.3 which merely fixes a couple of bugs from PyCrypto 2.2: http://gitweb.pycrypto.org/?p=crypto/pycrypto-2.x.git;a=blob;f=ChangeLog;h=8075b68031e025d741e2b07be119b2fc5becaec6;hb=9e9641d0a9b88f09683b5f26d3b99c4a2e148da5 Please upgrade the port of security/python-pycrypto from 2.2 to 2.3. Thank you! Regards, Zooko O'Whielacronx >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 05:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C0C91065694 for ; Thu, 28 Oct 2010 05:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 43AC58FC14 for ; Thu, 28 Oct 2010 05:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S5A7eg067824 for ; Thu, 28 Oct 2010 05:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S5A76p067823; Thu, 28 Oct 2010 05:10:07 GMT (envelope-from gnats) Date: Thu, 28 Oct 2010 05:10:07 GMT Message-Id: <201010280510.o9S5A76p067823@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Armin Pirkovitsch Cc: Subject: Re: ports/151791: please update security/python-pycrypto to v2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Armin Pirkovitsch List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 05:10:08 -0000 The following reply was made to PR ports/151791; it has been noted by GNATS. From: Armin Pirkovitsch To: Zooko O'Whielacronx , bug-followup@FreeBSD.org Cc: Subject: Re: ports/151791: please update security/python-pycrypto to v2.3 Date: Thu, 28 Oct 2010 07:01:09 +0200 If you look at http://www.freshports.org/security/py-pycrypto you will notice that py-pycrypto is already at version 2.3. You probably need to update your ports tree. See http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html for more information. On 10/28/10 06:17, Zooko O'Whielacronx wrote: > I'm the maintainer of a secure storage service (sort of like Amazon S3 but secure, or sort of like Tarsnap but open source and decentralized), named Tahoe-LAFS. Tahoe-LAFS is incompatible with PyCrypto 2.2 due to bugs in PyCrypto 2.2: > > http://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/src/allmydata/_auto_deps.py?rev=4749 > > The current release of PyCrypto is 2.3 which merely fixes a couple of bugs from PyCrypto 2.2: > > http://gitweb.pycrypto.org/?p=crypto/pycrypto-2.x.git;a=blob;f=ChangeLog;h=8075b68031e025d741e2b07be119b2fc5becaec6;hb=9e9641d0a9b88f09683b5f26d3b99c4a2e148da5 > > Please upgrade the port of security/python-pycrypto from 2.2 to 2.3. Thank you! > > Regards, > > Zooko O'Whielacronx From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 05:45:32 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 213331065783; Thu, 28 Oct 2010 05:45:32 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EB9428FC20; Thu, 28 Oct 2010 05:45:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S5jVKF007496; Thu, 28 Oct 2010 05:45:31 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S5jV1q007492; Thu, 28 Oct 2010 05:45:31 GMT (envelope-from wen) Date: Thu, 28 Oct 2010 05:45:31 GMT Message-Id: <201010280545.o9S5jV1q007492@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151790: [MAINTAINER] editors/scite: update to 2.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 05:45:32 -0000 Synopsis: [MAINTAINER] editors/scite: update to 2.22 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Thu Oct 28 05:45:31 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151790 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 05:45:47 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A2731065675; Thu, 28 Oct 2010 05:45:47 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DA25C8FC22; Thu, 28 Oct 2010 05:45:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S5jkwK007607; Thu, 28 Oct 2010 05:45:46 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S5jkRm007603; Thu, 28 Oct 2010 05:45:46 GMT (envelope-from wen) Date: Thu, 28 Oct 2010 05:45:46 GMT Message-Id: <201010280545.o9S5jkRm007603@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151789: [MAINTAINER] x11-toolkits/scintilla: update to 2.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 05:45:47 -0000 Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 2.22 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Thu Oct 28 05:45:46 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151789 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 05:46:03 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E9EB1065697; Thu, 28 Oct 2010 05:46:03 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9EF7E8FC15; Thu, 28 Oct 2010 05:46:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S5k26Z007695; Thu, 28 Oct 2010 05:46:02 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S5k20q007691; Thu, 28 Oct 2010 05:46:02 GMT (envelope-from wen) Date: Thu, 28 Oct 2010 05:46:02 GMT Message-Id: <201010280546.o9S5k20q007691@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151778: [PATCH] add maintainer to more ports. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 05:46:03 -0000 Synopsis: [PATCH] add maintainer to more ports. Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Thu Oct 28 05:46:02 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151778 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 06:10:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30939106566B for ; Thu, 28 Oct 2010 06:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 044FB8FC15 for ; Thu, 28 Oct 2010 06:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S6A9NY029563 for ; Thu, 28 Oct 2010 06:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S6A9Y8029562; Thu, 28 Oct 2010 06:10:09 GMT (envelope-from gnats) Date: Thu, 28 Oct 2010 06:10:09 GMT Message-Id: <201010280610.o9S6A9Y8029562@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Zooko O'Whielacronx" Cc: Subject: Re: ports/151791: please update security/python-pycrypto to v2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zooko O'Whielacronx List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 06:10:10 -0000 The following reply was made to PR ports/151791; it has been noted by GNATS. From: "Zooko O'Whielacronx" To: Armin Pirkovitsch Cc: bug-followup@freebsd.org, Randy Bush Subject: Re: ports/151791: please update security/python-pycrypto to v2.3 Date: Wed, 27 Oct 2010 23:45:40 -0600 On Wed, Oct 27, 2010 at 11:01 PM, Armin Pirkovitsch wrote: > If you look at http://www.freshports.org/security/py-pycrypto you will > notice that py-pycrypto is already at version 2.3. Oh, thank you very much. Sorry for the redundant issue report. Regards, Zooko From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 06:30:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 770351065696 for ; Thu, 28 Oct 2010 06:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 381D38FC2E for ; Thu, 28 Oct 2010 06:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S6UAkB049442 for ; Thu, 28 Oct 2010 06:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S6UAMC049439; Thu, 28 Oct 2010 06:30:10 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 06:30:10 GMT Resent-Message-Id: <201010280630.o9S6UAMC049439@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrei Lavreniyuk Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 604B11065675 for ; Thu, 28 Oct 2010 06:25:21 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 43CB88FC17 for ; Thu, 28 Oct 2010 06:25:21 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9S6PK5L020962 for ; Thu, 28 Oct 2010 06:25:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9S6PKrF020944; Thu, 28 Oct 2010 06:25:20 GMT (envelope-from nobody) Message-Id: <201010280625.o9S6PKrF020944@www.freebsd.org> Date: Thu, 28 Oct 2010 06:25:20 GMT From: Andrei Lavreniyuk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151792: [ERROR] cannot portupgrade gcc-4.4.6.20101012 to version 4.4.6.20101026 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 06:30:10 -0000 >Number: 151792 >Category: ports >Synopsis: [ERROR] cannot portupgrade gcc-4.4.6.20101012 to version 4.4.6.20101026 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 06:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Andrei Lavreniyuk >Release: FreeBSD 8.1-STABLE >Organization: Technica-03, Inc. >Environment: FreeBSD datacenter.technica-03.local 8.1-STABLE FreeBSD 8.1-STABLE #0: Wed Oct 27 12:16:14 EEST 2010 root@datacenter.technica-03.local:/usr/obj/usr/src/sys/SMP64 amd64 >Description: then mv -f ".deps/in_unpack_generic.Tpo" ".deps/in_unpack_generic.Plo"; else rm -f ".deps/in_unpack_generic.Tpo"; exit 1; fi libtool: compile: /usr/ports/lang/gcc44/work/build/./gcc/xgcc -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.4-20101026/libgfortran -I. -iquote../.././../gcc-4.4-20101026/libgfortran/io -I../.././../gcc-4.4-20101026/libgfortran/../gcc -I../.././../gcc-4.4-20101026/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings -fcx-fortran-rules -g -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -pipe -march=native -mtune=native -fno-delete-null-pointer-checks -fstack-protector -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -MT in_unpack_generic.lo -MD -MP -MF .deps/in_unpack_generic.Tpo -c ../.././../gcc-4.4-20101026/libgfortran/runtime/in_ unpack_generic.c -fPIC -DPIC -o .libs/in_unpack_generic.o libtool: compile: /usr/ports/lang/gcc44/work/build/./gcc/xgcc -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.4-20101026/libgfortran -I. -iquote../.././../gcc-4.4-20101026/libgfortran/io -I../.././../gcc-4.4-20101026/libgfortran/../gcc -I../.././../gcc-4.4-20101026/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings -fcx-fortran-rules -g -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -pipe -march=native -mtune=native -fno-delete-null-pointer-checks -fstack-protector -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -MT unlink.lo -MD -MP -MF .deps/unlink.Tpo -c ../.././../gcc-4.4-20101026/libgfortran/intrinsics/unlink.c -o unlink.o > /dev/null 2>&1 libtool: compile: /usr/ports/lang/gcc44/work/build/./gcc/xgcc -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.4-20101026/libgfortran -I. -iquote../.././../gcc-4.4-20101026/libgfortran/io -I../.././../gcc-4.4-20101026/libgfortran/../gcc -I../.././../gcc-4.4-20101026/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings -fcx-fortran-rules -g -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -pipe -march=native -mtune=native -fno-delete-null-pointer-checks -fstack-protector -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -MT in_pack_generic.lo -MD -MP -MF .deps/in_pack_generic.Tpo -c ../.././../gcc-4.4-20101026/libgfortran/runtime/in_pack _generic.c -o in_pack_generic.o >/dev/null 2>&1 /bin/sh ./libtool --tag=FC --mode=compile /usr/ports/lang/gcc44/work/build/./gcc/gfortran -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.4-20101026/libgfortran -I. -iquote../.././../gcc-4.4-20101026/libgfortran/io -I../.././../gcc-4.4-20101026/libgfortran/../gcc -I../.././../gcc-4.4-20101026/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -I . -Wall -Werror -fimplicit-none -fno-repack-arrays -fno-underscoring -fallow-leading-underscore -g -c -o _abs_c4.lo `test -f '../.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90' || echo '../.././../gcc-4.4-20101026/libgfortran/'`../.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90 libtool: compile: /usr/ports/lang/gcc44/work/build/./gcc/xgcc -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.4-20101026/libgfortran -I. -iquote../.././../gcc-4.4-20101026/libgfortran/io -I../.././../gcc-4.4-20101026/libgfortran/../gcc -I../.././../gcc-4.4-20101026/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings -fcx-fortran-rules -g -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -pipe -march=native -mtune=native -fno-delete-null-pointer-checks -fstack-protector -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -MT unpack_generic.lo -MD -MP -MF .deps/unpack_generic.Tpo -c ../.././../gcc-4.4-20101026/libgfortran/intrinsics/unpack _generic.c -o unpack_generic.o >/dev/null 2>&1 libtool: compile: /usr/ports/lang/gcc44/work/build/./gcc/gfortran -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.4-20101026/libgfortran -I. -iquote../.././../gcc-4.4-20101026/libgfortran/io -I../.././../gcc-4.4-20101026/libgfortran/../gcc -I../.././../gcc-4.4-20101026/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -I . -Wall -Werror -fimplicit-none -fno-repack-arrays -fno-underscoring -fallow-leading-underscore -g -c ../.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90 -o .libs/_abs_c4.o libtool: compile: /usr/ports/lang/gcc44/work/build/./gcc/xgcc -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include -DHAVE_CONFIG_H -I. -I../.././../gcc-4.4-20101026/libgfortran -I. -iquote../.././../gcc-4.4-20101026/libgfortran/io -I../.././../gcc-4.4-20101026/libgfortran/../gcc -I../.././../gcc-4.4-20101026/libgfortran/../gcc/config -I../.././gcc -D_GNU_SOURCE -std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings -fcx-fortran-rules -g -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -pipe -march=native -mtune=native -fno-delete-null-pointer-checks -fstack-protector -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -MT in_unpack_generic.lo -MD -MP -MF .deps/in_unpack_generic.Tpo -c ../.././../gcc-4.4-20101026/libgfortran/runtime/in_ unpack_generic.c -o in_unpack_generic.o >/dev/null 2>&1 ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) ./.././../gcc-4.4-20101026/libgfortran/generated/_abs_c4.F90:1.1: \xD4\x8A\x01\x08\x04\x1E\xD7\xD9\x8A\x01\x08\x05\xA7\xEE\x7F\xF2 1 Error: Invalid character in name at (1) Fatal Error: Error count reached limit of 25. gmake[3]: *** [_abs_c4.lo] Ошибка 1 gmake[3]: *** Ожидание завершения заданий... gmake[3]: Leaving directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libgfortran' gmake[2]: *** [all] Ошибка 2 gmake[2]: Leaving directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libgfortran' gmake[1]: *** [all-target-libgfortran] Ошибка 2 gmake[1]: Leaving directory `/usr/ports/lang/gcc44/work/build' gmake: *** [bootstrap-lean] Ошибка 2 *** Error code 1 Stop in /usr/ports/lang/gcc44. ** Command failed [exit code 1]: /usr/bin/script -qa /var/tmp/portupgrade20101028-26769-7ke52m-0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=gcc-4.4.6.20101012 UPGRADE_PORT_VER=4.4.6.20101012 make ** Fix the problem and try again. ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! lang/gcc44 (gcc-4.4.6.20101012) (unknown build error) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 07:50:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D53BC106564A for ; Thu, 28 Oct 2010 07:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A7AE28FC1E for ; Thu, 28 Oct 2010 07:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S7o8YO057448 for ; Thu, 28 Oct 2010 07:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S7o8eo057447; Thu, 28 Oct 2010 07:50:08 GMT (envelope-from gnats) Date: Thu, 28 Oct 2010 07:50:08 GMT Message-Id: <201010280750.o9S7o8eo057447@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Andrei Lavreniyuk Cc: Subject: Re: ports/151792: [ERROR] cannot portupgrade gcc-4.4.6.20101012 to version 4.4.6.20101026 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrei Lavreniyuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 07:50:08 -0000 The following reply was made to PR ports/151792; it has been noted by GNATS. From: Andrei Lavreniyuk To: bug-followup@FreeBSD.org, andy@gmail.com Cc: Subject: Re: ports/151792: [ERROR] cannot portupgrade gcc-4.4.6.20101012 to version 4.4.6.20101026 Date: Thu, 28 Oct 2010 10:26:55 +0300 Error of assembling on other host: FreeBSD hp.technica-03.local 8.1-STABLE FreeBSD 8.1-STABLE #0: Wed Oct 27 13:21:12 EEST 2010 root@hp.technica-03.local:/usr/obj/usr/src/sys/HP amd64 -------------------- gmake[4]: Leaving directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libstdc++-v3/te= stsuite' gmake[4]: Entering directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libstdc++-v3' gmake "AR_FLAGS=3Drc" "CC_FOR_BUILD=3Dcc" "CC_FOR_TARGET=3D/usr/ports/lang/gcc44/work/build/./gcc/xgcc -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include" "CFLAGS=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include " "CXXFLAGS=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -fconserve-space " "CFLAGS_FOR_BUILD=3D-O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include" "CFLAGS_FOR_TARGET=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include" "INSTALL=3D/usr/bin/install -c -o root -g wheel" "INSTALL_DATA=3Dinstall -o root -g wheel -m 444" "INSTALL_PROGRAM=3Dinstall -s -o root -g wheel -m 555" "INSTALL_SCRIPT=3Dinstall -o root -g wheel -m 555" "LDFLAGS=3D" "LIBCFLAGS=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include " "LIBCFLAGS_FOR_TARGET=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include" "MAKE=3Dgmake" "MAKEINFO=3Dmakeinfo --no-split --split-size=3D5000000 --split-size=3D5000000 --split-size=3D5000000 --split-size=3D5000000" "PICFLAG=3D" "PICFLAG_FOR_TARGET=3D" "SHELL=3D/bin/sh" "RUNTESTFLAGS=3D" "exec_prefix=3D/usr/local" "infodir=3D/usr/local/info/gcc44" "libdir=3D/usr/local/lib/gcc44" "includedir=3D/usr/local/include" "prefix=3D/usr/local" "tooldir=3D/usr/local/x86_64-portbld-freebsd8.1" "gxx_include_dir=3D/usr/local/lib/gcc44/include/c++/" "AR=3D/usr/local/x86_64-portbld-freebsd8.1/bin/ar" "AS=3D/usr/ports/lang/gcc44/work/build/./gcc/as" "LD=3D/usr/ports/lang/gcc44/work/build/./gcc/collect-ld" "RANLIB=3D/usr/local/x86_64-portbld-freebsd8.1/bin/ranlib" "NM=3D/usr/ports/lang/gcc44/work/build/./gcc/nm" "NM_FOR_BUILD=3D" "NM_FOR_TARGET=3D/usr/local/x86_64-portbld-freebsd8.1/bin/nm" "DESTDIR=3D" "WERROR=3D" DO=3Dall multi-do # gmake gmake[5]: Entering directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libstdc++-v3' if [ -z "" ]; then \ true; \ else \ rootpre=3D`${PWDCMD-pwd}`/; export rootpre; \ srcrootpre=3D`cd ../.././../gcc-4.4-20101026/libstdc++-v3; ${PWDCMD-pwd}`/; export srcrootpre; \ lib=3D`echo "${rootpre}" | sed -e 's,^.*/\([^/][^/]*\)/$,\1,'`; \ compiler=3D"/usr/ports/lang/gcc44/work/build/./gcc/xgcc -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include"; \ for i in `${compiler} --print-multi-lib 2>/dev/null`; do \ dir=3D`echo $i | sed -e 's/;.*$//'`; \ if [ "${dir}" =3D "." ]; then \ true; \ else \ if [ -d ../${dir}/${lib} ]; then \ flags=3D`echo $i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \ if (cd ../${dir}/${lib}; gmake "AR_FLAGS=3Drc" "CC_FOR_BUILD=3Dcc" "CC_FOR_TARGET=3D/usr/ports/lang/gcc44/work/build/./gcc/xgcc -B/usr/ports/lang/gcc44/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd8.1/bin/ -B/usr/local/x86_64-portbld-freebsd8.1/lib/ -isystem /usr/local/x86_64-portbld-freebsd8.1/include -isystem /usr/local/x86_64-portbld-freebsd8.1/sys-include" "CFLAGS=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include " "CXXFLAGS=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -fconserve-space " "CFLAGS_FOR_BUILD=3D-O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include" "CFLAGS_FOR_TARGET=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include" "INSTALL=3D/usr/bin/install -c -o root -g wheel" "INSTALL_DATA=3Dinstall -o root -g wheel -m 444" "INSTALL_PROGRAM=3Dinstall -s -o root -g wheel -m 555" "INSTALL_SCRIPT=3Dinstall -o root -g wheel -m 555" "LDFLAGS=3D" "LIBCFLAGS=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include " "LIBCFLAGS_FOR_TARGET=3D-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include" "MAKE=3Dgmake" "MAKEINFO=3Dmakeinfo --no-split --split-size=3D5000000 --split-size=3D5000000 --split-size=3D5000000 --split-size=3D5000000 --split-size=3D5000000" "PICFLAG=3D" "PICFLAG_FOR_TARGET=3D" "SHELL=3D/bin/= sh" "RUNTESTFLAGS=3D" "exec_prefix=3D/usr/local" "infodir=3D/usr/local/info/gcc44" "libdir=3D/usr/local/lib/gcc44" "includedir=3D/usr/local/include" "prefix=3D/usr/local" "tooldir=3D/usr/local/x86_64-portbld-freebsd8.1" "gxx_include_dir=3D/usr/local/lib/gcc44/include/c++/" "AR=3D/usr/local/x86_64-portbld-freebsd8.1/bin/ar" "AS=3D/usr/ports/lang/gcc44/work/build/./gcc/as" "LD=3D/usr/ports/lang/gcc44/work/build/./gcc/collect-ld" "RANLIB=3D/usr/local/x86_64-portbld-freebsd8.1/bin/ranlib" "NM=3D/usr/ports/lang/gcc44/work/build/./gcc/nm" "NM_FOR_BUILD=3D" "NM_FOR_TARGET=3D/usr/local/x86_64-portbld-freebsd8.1/bin/nm" "DESTDIR=3D" "WERROR=3D" \ CFLAGS=3D"-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include ${flags}" \ CCASFLAGS=3D" ${flags}" \ FCFLAGS=3D" ${flags}" \ FFLAGS=3D" ${flags}" \ ADAFLAGS=3D" ${flags}" \ prefix=3D"/usr/local" \ exec_prefix=3D"/usr/local" \ GCJFLAGS=3D" ${flags}" \ CXXFLAGS=3D"-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -fconserve-space ${flags}" \ LIBCFLAGS=3D"-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include ${flags}" \ LIBCXXFLAGS=3D"-g -O2 -pipe -O2 -D_FORTIFY_SOURCE=3D2 -pipe -march=3Dnative -mtune=3Dnative -fstack-protector -fno-delete-null-pointer-checks -fno-strict-aliasing -Wformat -Wformat-security -s -I/usr/local/include -fconserve-space -fno-implicit-templates ${flags}" \ LDFLAGS=3D" ${flags}" \ MULTIFLAGS=3D"${flags}" \ DESTDIR=3D"" \ INSTALL=3D"/usr/bin/install -c -o root -g w= heel" \ INSTALL_DATA=3D"install -o root -g wheel -m 444" \ INSTALL_PROGRAM=3D"install -s -o root -g wheel -m 555" \ INSTALL_SCRIPT=3D"install -o root -g wheel -m 555" \ all); then \ true; \ else \ exit 1; \ fi; \ else true; \ fi; \ fi; \ done; \ fi gmake[5]: Leaving directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libstdc++-v3' gmake[4]: Leaving directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libstdc++-v3' gmake[3]: Leaving directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libstdc++-v3' gmake[2]: Leaving directory `/usr/ports/lang/gcc44/work/build/x86_64-portbld-freebsd8.1/libstdc++-v3' gmake[1]: Leaving directory `/usr/ports/lang/gcc44/work/build' gmake: *** [bootstrap-lean] =EF=DB=C9=C2=CB=C1 2 *** Error code 1 Stop in /usr/ports/lang/gcc44. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 08:00:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD7501065675 for ; Thu, 28 Oct 2010 08:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8B5BB8FC14 for ; Thu, 28 Oct 2010 08:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S80IC2067502 for ; Thu, 28 Oct 2010 08:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S80IME067492; Thu, 28 Oct 2010 08:00:18 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 08:00:18 GMT Resent-Message-Id: <201010280800.o9S80IME067492@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, rellik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C46151065697 for ; Thu, 28 Oct 2010 07:58:29 +0000 (UTC) (envelope-from rellik@aqua.pixnet.tw) Received: from aqua.pixnet.tw (srvnat.pixnet.tw [60.199.247.250]) by mx1.freebsd.org (Postfix) with ESMTP id 446118FC12 for ; Thu, 28 Oct 2010 07:58:28 +0000 (UTC) Received: by aqua.pixnet.tw (Postfix, from userid 10024) id 55F812E030; Thu, 28 Oct 2010 15:40:01 +0800 (CST) Message-Id: <20101028074001.55F812E030@aqua.pixnet.tw> Date: Thu, 28 Oct 2010 15:40:01 +0800 (CST) From: rellik To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jnlin@csie.nctu.edu.tw Subject: ports/151793: [PATCH] www/trafficserver: update to 2.1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 08:00:19 -0000 >Number: 151793 >Category: ports >Synopsis: [PATCH] www/trafficserver: update to 2.1.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 08:00:17 UTC 2010 >Closed-Date: >Last-Modified: >Originator: rellik >Release: FreeBSD 7.3-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD aqua 7.3-RELEASE-p2 FreeBSD 7.3-RELEASE-p2 #0: Mon Jul 12 19:23:19 UTC 2010 >Description: - Update to 2.1.3 Port maintainer (jnlin@csie.nctu.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- trafficserver-2.1.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/trafficserver/Makefile /.amd_mnt/10.1.1.100/vol/home/admin/rellik/work/trafficserver/Makefile --- /usr/ports/www/trafficserver/Makefile 2010-10-16 19:52:44.000000000 +0800 +++ /.amd_mnt/10.1.1.100/vol/home/admin/rellik/work/trafficserver/Makefile 2010-10-27 17:39:17.711662000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= trafficserver -PORTVERSION= 2.1.1 -PORTREVISION= 2 +PORTVERSION= 2.1.3 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_APACHE} MASTER_SITE_SUBDIR= trafficserver diff -ruN --exclude=CVS /usr/ports/www/trafficserver/distinfo /.amd_mnt/10.1.1.100/vol/home/admin/rellik/work/trafficserver/distinfo --- /usr/ports/www/trafficserver/distinfo 2010-08-16 23:43:57.000000000 +0800 +++ /.amd_mnt/10.1.1.100/vol/home/admin/rellik/work/trafficserver/distinfo 2010-10-27 17:39:53.750816000 +0800 @@ -1,3 +1,3 @@ -MD5 (trafficserver-2.1.1-unstable.tar.bz2) = e3118fa21e2a47c17b728503fa1d0e74 -SHA256 (trafficserver-2.1.1-unstable.tar.bz2) = 8415815ecce85cc422c2f0c18e8e6ea7149cd1c83db96f17c4783a6a4d275954 -SIZE (trafficserver-2.1.1-unstable.tar.bz2) = 2855575 +MD5 (trafficserver-2.1.3-unstable.tar.bz2) = 8cf5a9a69279e4877c2dbfb0097ca1ac +SHA256 (trafficserver-2.1.3-unstable.tar.bz2) = 181934a9c425bae8cbd3333ab9e7fde14c8d55c22fefd098827aa890ce6bab32 +SIZE (trafficserver-2.1.3-unstable.tar.bz2) = 2806463 diff -ruN --exclude=CVS /usr/ports/www/trafficserver/pkg-plist /.amd_mnt/10.1.1.100/vol/home/admin/rellik/work/trafficserver/pkg-plist --- /usr/ports/www/trafficserver/pkg-plist 2010-08-16 23:43:57.000000000 +0800 +++ /.amd_mnt/10.1.1.100/vol/home/admin/rellik/work/trafficserver/pkg-plist 2010-10-28 11:03:04.320940000 +0800 @@ -1,20 +1,17 @@ @comment $FreeBSD: ports/www/trafficserver/pkg-plist,v 1.1 2010/08/16 15:43:57 lwhsu Exp $ -bin/traffic_cop bin/traffic_line +bin/traffic_cop +bin/traffic_shell +bin/traffic_manager +bin/traffic_server bin/traffic_logcat bin/traffic_logstats -bin/traffic_manager bin/traffic_sac -bin/traffic_server -bin/traffic_shell -etc/trafficserver/admin_access.config -etc/trafficserver/ae_ua.config -etc/trafficserver/body_factory/default/.body_factory_info -etc/trafficserver/body_factory/default/README etc/trafficserver/body_factory/default/access#denied etc/trafficserver/body_factory/default/access#proxy_auth_required etc/trafficserver/body_factory/default/access#redirect_url etc/trafficserver/body_factory/default/access#ssl_forbidden +etc/trafficserver/body_factory/default/.body_factory_info etc/trafficserver/body_factory/default/cache#not_in_cache etc/trafficserver/body_factory/default/cache#read_error etc/trafficserver/body_factory/default/congestion#retryAfter @@ -23,6 +20,7 @@ etc/trafficserver/body_factory/default/connect#hangup etc/trafficserver/body_factory/default/default etc/trafficserver/body_factory/default/interception#no_host +etc/trafficserver/body_factory/default/README etc/trafficserver/body_factory/default/redirect#moved_temporarily etc/trafficserver/body_factory/default/request#cycle_detected etc/trafficserver/body_factory/default/request#no_content_length @@ -35,10 +33,11 @@ etc/trafficserver/body_factory/default/timeout#inactivity etc/trafficserver/body_factory/default/transcoding#unsupported etc/trafficserver/body_factory/default/urlrouting#no_mapping +etc/trafficserver/admin_access.config +etc/trafficserver/ae_ua.config etc/trafficserver/cache.config etc/trafficserver/cluster.config etc/trafficserver/congestion.config -etc/trafficserver/english.dict etc/trafficserver/filter.config etc/trafficserver/hosting.config etc/trafficserver/icp.config @@ -52,221 +51,30 @@ etc/trafficserver/partition.config etc/trafficserver/plugin.config etc/trafficserver/plugin.db -etc/trafficserver/records.config etc/trafficserver/remap.config -etc/trafficserver/snmpd.cnf etc/trafficserver/socks.config etc/trafficserver/splitdns.config etc/trafficserver/ssl_multicert.config etc/trafficserver/stats.config.xml -etc/trafficserver/storage.config -etc/trafficserver/trafficserver-release -etc/trafficserver/trafficserver-root etc/trafficserver/update.config etc/trafficserver/vaddrs.config -%%DATADIR%%/agent-installer/installer.cgi -%%DATADIR%%/agent-installer/installer.html -%%DATADIR%%/charting/Bandwidth_Savings.html -%%DATADIR%%/charting/Cache_Percent_Free.html -%%DATADIR%%/charting/Cache_Transfers_In_Progress.html -%%DATADIR%%/charting/Client_Throughput.html -%%DATADIR%%/charting/DNS_Lookups_Per_Second.html -%%DATADIR%%/charting/Document_Hit_Rate.html -%%DATADIR%%/charting/Host_Database_Hit_Rate.html -%%DATADIR%%/charting/Multiple_Graph_View.html -%%DATADIR%%/charting/Open_Client_Connections.html -%%DATADIR%%/charting/Open_Server_Connections.html -%%DATADIR%%/charting/Transactions_Per_Second.html -%%DATADIR%%/checkCookies.ink -%%DATADIR%%/configure/c_autoconf_pac.ink -%%DATADIR%%/configure/c_autoconf_wpad.ink -%%DATADIR%%/configure/c_basic.ink -%%DATADIR%%/configure/c_basic.ink.win -%%DATADIR%%/configure/c_buttons.ink -%%DATADIR%%/configure/c_buttons_hide.ink -%%DATADIR%%/configure/c_cache_general.ink -%%DATADIR%%/configure/c_cache_hosting.ink -%%DATADIR%%/configure/c_cache_partition.ink -%%DATADIR%%/configure/c_clustering.ink -%%DATADIR%%/configure/c_config_display.ink -%%DATADIR%%/configure/c_congestion.ink -%%DATADIR%%/configure/c_dns_host_database.ink -%%DATADIR%%/configure/c_dns_proxy.ink -%%DATADIR%%/configure/c_dns_resolver.ink -%%DATADIR%%/configure/c_dns_split.ink -%%DATADIR%%/configure/c_footer.ink -%%DATADIR%%/configure/c_header.ink -%%DATADIR%%/configure/c_http_cachability.ink -%%DATADIR%%/configure/c_http_dyn_cache.ink -%%DATADIR%%/configure/c_http_filtering.ink -%%DATADIR%%/configure/c_http_general.ink -%%DATADIR%%/configure/c_http_parent_proxy.ink -%%DATADIR%%/configure/c_http_privacy.ink -%%DATADIR%%/configure/c_http_response_custom.ink -%%DATADIR%%/configure/c_http_response_general.ink -%%DATADIR%%/configure/c_http_timeout.ink -%%DATADIR%%/configure/c_http_update_general.ink -%%DATADIR%%/configure/c_http_update_urls.ink -%%DATADIR%%/configure/c_icp.ink -%%DATADIR%%/configure/c_inspector.ink -%%DATADIR%%/configure/c_inspector_display.ink -%%DATADIR%%/configure/c_ldap_general.ink -%%DATADIR%%/configure/c_logging_collation.ink -%%DATADIR%%/configure/c_logging_custom.ink -%%DATADIR%%/configure/c_logging_format.ink -%%DATADIR%%/configure/c_logging_general.ink -%%DATADIR%%/configure/c_logging_search.ink -%%DATADIR%%/configure/c_logging_splitting.ink -%%DATADIR%%/configure/c_mapping.ink -%%DATADIR%%/configure/c_media_common.ink -%%DATADIR%%/configure/c_media_push.ink -%%DATADIR%%/configure/c_mgmt_access.ink -%%DATADIR%%/configure/c_mgmt_general.ink -%%DATADIR%%/configure/c_mgmt_login.ink -%%DATADIR%%/configure/c_net_config.ink -%%DATADIR%%/configure/c_net_devdri.ink -%%DATADIR%%/configure/c_net_device.ink -%%DATADIR%%/configure/c_net_driver.ink -%%DATADIR%%/configure/c_net_nic.ink -%%DATADIR%%/configure/c_ntlm_general.ink -%%DATADIR%%/configure/c_phonehome.ink -%%DATADIR%%/configure/c_proxy_access.ink -%%DATADIR%%/configure/c_quicktime_general.ink -%%DATADIR%%/configure/c_quicktime_mbridge.ink -%%DATADIR%%/configure/c_radius_general.ink -%%DATADIR%%/configure/c_real_networks_general.ink -%%DATADIR%%/configure/c_reverse_proxy.ink -%%DATADIR%%/configure/c_snapshot.ink -%%DATADIR%%/configure/c_snapshot_filesystem.ink -%%DATADIR%%/configure/c_snapshot_floppy.ink -%%DATADIR%%/configure/c_socks_general.ink -%%DATADIR%%/configure/c_socks_proxy.ink -%%DATADIR%%/configure/c_socks_server.ink -%%DATADIR%%/configure/c_ssl_accelerator.ink -%%DATADIR%%/configure/c_ssl_client_proxy.ink -%%DATADIR%%/configure/c_ssl_general.ink -%%DATADIR%%/configure/c_ssl_proxy_server.ink -%%DATADIR%%/configure/c_tab.ink -%%DATADIR%%/configure/c_throttling.ink -%%DATADIR%%/configure/c_view_access_logs.ink -%%DATADIR%%/configure/c_view_debug_logs.ink -%%DATADIR%%/configure/c_view_system_logs.ink -%%DATADIR%%/configure/c_virtual_ip.ink -%%DATADIR%%/configure/c_windows_media_general.ink -%%DATADIR%%/configure/c_windows_media_mbridge.ink -%%DATADIR%%/configure/c_windows_media_mcast.ink -%%DATADIR%%/configure/f_bypass_config.ink -%%DATADIR%%/configure/f_cache_config.ink -%%DATADIR%%/configure/f_configs.ink -%%DATADIR%%/configure/f_filter_config.ink -%%DATADIR%%/configure/f_hosting_config.ink -%%DATADIR%%/configure/f_icp_config.ink -%%DATADIR%%/configure/f_ip_allow_config.ink -%%DATADIR%%/configure/f_ipnat_config.ink -%%DATADIR%%/configure/f_mgmt_allow_config.ink -%%DATADIR%%/configure/f_parent_config.ink -%%DATADIR%%/configure/f_partition_config.ink -%%DATADIR%%/configure/f_remap_config.ink -%%DATADIR%%/configure/f_socks_config.ink -%%DATADIR%%/configure/f_split_dns_config.ink -%%DATADIR%%/configure/f_update_config.ink -%%DATADIR%%/configure/f_vaddrs_config.ink -%%DATADIR%%/configure/helper/INKMgmtAPICheckTcl.sh -%%DATADIR%%/configure/helper/log.sh -%%DATADIR%%/configure/helper/otwu.tcl -%%DATADIR%%/configure/helper/traffic_shell.cgi -%%DATADIR%%/enableCookies.ink -%%DATADIR%%/images/arrow_add.gif -%%DATADIR%%/images/arrow_cross.gif -%%DATADIR%%/images/arrow_down.gif -%%DATADIR%%/images/arrow_set.gif -%%DATADIR%%/images/arrow_up.gif -%%DATADIR%%/images/blankIcon.gif -%%DATADIR%%/images/configure_off.gif -%%DATADIR%%/images/configure_on.gif -%%DATADIR%%/images/dot_clear.gif -%%DATADIR%%/images/header_bg.gif -%%DATADIR%%/images/header_bg_pe.gif -%%DATADIR%%/images/menu_begin_off.gif -%%DATADIR%%/images/menu_begin_on.gif -%%DATADIR%%/images/menu_bg_off.gif -%%DATADIR%%/images/menu_bg_on.gif -%%DATADIR%%/images/menu_end_off.gif -%%DATADIR%%/images/menu_end_on.gif -%%DATADIR%%/images/menu_separator_off_off.gif -%%DATADIR%%/images/menu_separator_off_on.gif -%%DATADIR%%/images/menu_separator_on_off.gif -%%DATADIR%%/images/minusIcon.gif -%%DATADIR%%/images/monitor_off.gif -%%DATADIR%%/images/monitor_on.gif -%%DATADIR%%/images/plusIcon.gif -%%DATADIR%%/include/body_footer.ink -%%DATADIR%%/include/body_header.ink -%%DATADIR%%/include/footer.ink -%%DATADIR%%/include/form_footer.ink -%%DATADIR%%/include/form_header.ink -%%DATADIR%%/include/header.ink -%%DATADIR%%/include/html_footer.ink -%%DATADIR%%/include/html_header.ink -%%DATADIR%%/include/tree_footer.ink -%%DATADIR%%/include/tree_header.ink -%%DATADIR%%/index.ink -%%DATADIR%%/inktomi.css -%%DATADIR%%/inktomiLarge.css -%%DATADIR%%/monitor/m_alarm.ink -%%DATADIR%%/monitor/m_blue_bar.ink -%%DATADIR%%/monitor/m_cache.ink -%%DATADIR%%/monitor/m_cluster.ink -%%DATADIR%%/monitor/m_dns.ink -%%DATADIR%%/monitor/m_dns_proxy.ink -%%DATADIR%%/monitor/m_footer.ink -%%DATADIR%%/monitor/m_graphs.ink -%%DATADIR%%/monitor/m_header.ink -%%DATADIR%%/monitor/m_http.ink -%%DATADIR%%/monitor/m_http_trans.ink -%%DATADIR%%/monitor/m_icp.ink -%%DATADIR%%/monitor/m_ldap.ink -%%DATADIR%%/monitor/m_logging.ink -%%DATADIR%%/monitor/m_mpeg4.ink -%%DATADIR%%/monitor/m_net.ink -%%DATADIR%%/monitor/m_net_device.ink -%%DATADIR%%/monitor/m_node.ink -%%DATADIR%%/monitor/m_ntlm.ink -%%DATADIR%%/monitor/m_overview.ink -%%DATADIR%%/monitor/m_overview_details_less.ink -%%DATADIR%%/monitor/m_overview_details_more.ink -%%DATADIR%%/monitor/m_quicktime.ink -%%DATADIR%%/monitor/m_real_networks.ink -%%DATADIR%%/monitor/m_socks.ink -%%DATADIR%%/monitor/m_tab.ink -%%DATADIR%%/monitor/m_virtual_ip.ink -%%DATADIR%%/monitor/m_windows_media.ink -%%DATADIR%%/mrtg/detailed.ink -%%DATADIR%%/mrtg/overview.ink -%%DATADIR%%/navigation_tree.xml -%%DATADIR%%/plugin.ink -%%DATADIR%%/rename.ink -%%DATADIR%%/resize.js -%%DATADIR%%/restart.ink -%%DATADIR%%/ssl_redirect.ink -%%DATADIR%%/tune/navigation_tree.xmlcpp +etc/trafficserver/records.config +etc/trafficserver/storage.config +etc/trafficserver/trafficserver-release +include/ts/ts.h include/ts/remap.h +include/ts/experimental.h include/ts/ts_private.h -include/ts/ts.h include/ts/ts_private_frozen.h @dirrmtry libexec/trafficserver @dirrmtry include/ts -@dirrmtry %%DATADIR%%/agent-installer -@dirrmtry %%DATADIR%%/charting -@dirrmtry %%DATADIR%%/configure/helper -@dirrmtry %%DATADIR%%/configure -@dirrmtry %%DATADIR%%/images -@dirrmtry %%DATADIR%%/include -@dirrmtry %%DATADIR%%/monitor -@dirrmtry %%DATADIR%%/mrtg -@dirrmtry %%DATADIR%%/tune -@dirrmtry %%DATADIR%% @dirrmtry etc/trafficserver/body_factory/default @dirrmtry etc/trafficserver/body_factory +@dirrmtry etc/trafficserver +@dirrmtry var/trafficserver +@dirrmtry var/log/trafficserver +@dirrmtry var/log +@dirrmtry var +@dirrmtry share/trafficserver @dirrmtry etc/trafficserver/internal @dirrmtry etc/trafficserver --- trafficserver-2.1.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 08:00:32 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D6BB10656B9; Thu, 28 Oct 2010 08:00:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32D4A8FC13; Thu, 28 Oct 2010 08:00:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S80W7L070007; Thu, 28 Oct 2010 08:00:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S80WDX069982; Thu, 28 Oct 2010 08:00:32 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 08:00:32 GMT Message-Id: <201010280800.o9S80WDX069982@freefall.freebsd.org> To: rellik@pixnet.tw, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151793: [PATCH] www/trafficserver: update to 2.1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 08:00:32 -0000 Synopsis: [PATCH] www/trafficserver: update to 2.1.3 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Oct 28 08:00:30 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151793 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 08:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2468106566B for ; Thu, 28 Oct 2010 08:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E02DD8FC0C for ; Thu, 28 Oct 2010 08:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S8A80t081329 for ; Thu, 28 Oct 2010 08:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S8A87B081328; Thu, 28 Oct 2010 08:10:08 GMT (envelope-from gnats) Date: Thu, 28 Oct 2010 08:10:08 GMT Message-Id: <201010280810.o9S8A87B081328@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151793: [PATCH] www/trafficserver: update to 2.1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 08:10:09 -0000 The following reply was made to PR ports/151793; it has been noted by GNATS. From: Edwin Groothuis To: jnlin@csie.nctu.edu.tw Cc: bug-followup@FreeBSD.org Subject: Re: ports/151793: [PATCH] www/trafficserver: update to 2.1.3 Date: Thu, 28 Oct 2010 08:00:26 UT Maintainer of www/trafficserver, Please note that PR ports/151793 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151793 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 09:38:28 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C8951065674; Thu, 28 Oct 2010 09:38:28 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E66288FC15; Thu, 28 Oct 2010 09:38:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S9cRsk077234; Thu, 28 Oct 2010 09:38:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S9cRkF077230; Thu, 28 Oct 2010 09:38:27 GMT (envelope-from linimon) Date: Thu, 28 Oct 2010 09:38:27 GMT Message-Id: <201010280938.o9S9cRkF077230@freefall.freebsd.org> To: zooko@zooko.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151791: please update security/python-pycrypto to v2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 09:38:28 -0000 Synopsis: please update security/python-pycrypto to v2.3 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Oct 28 09:38:04 UTC 2010 State-Changed-Why: port appears to have been already upgraded. http://www.freebsd.org/cgi/query-pr.cgi?pr=151791 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 09:50:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1522B1065673 for ; Thu, 28 Oct 2010 09:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C0DBA8FC12 for ; Thu, 28 Oct 2010 09:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S9o66j086608 for ; Thu, 28 Oct 2010 09:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S9o6Dc086607; Thu, 28 Oct 2010 09:50:06 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 09:50:06 GMT Resent-Message-Id: <201010280950.o9S9o6Dc086607@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mirko Zinn Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FFCF106566B for ; Thu, 28 Oct 2010 09:48:17 +0000 (UTC) (envelope-from zinn@kaspar.aliensatemymum.com) Received: from oops.0xC0DE.de (oops.0xC0DE.de [78.46.70.3]) by mx1.freebsd.org (Postfix) with ESMTP id 305858FC0C for ; Thu, 28 Oct 2010 09:48:16 +0000 (UTC) Received: from oops.0xC0DE.de (localhost.0xC0DE.de [127.0.0.1]) by oops.0xC0DE.de (Postfix) with ESMTP id 3C00F3980F2 for ; Thu, 28 Oct 2010 11:48:15 +0200 (CEST) Received: from oops.0xC0DE.de ([127.0.0.1]) by oops.0xC0DE.de (oops.0xC0DE.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3VUfvHKeFIbo for ; Thu, 28 Oct 2010 11:48:09 +0200 (CEST) Received: from kaspar.aliensatemymum.com (i59F57EBA.versanet.de [89.245.126.186]) (Authenticated sender: info@derzinn.de) by oops.0xC0DE.de (Postfix) with ESMTPA id 0596D3980EE for ; Thu, 28 Oct 2010 11:48:09 +0200 (CEST) Received: by kaspar.aliensatemymum.com (Postfix, from userid 1001) id 54B45361BC24; Thu, 28 Oct 2010 11:48:08 +0200 (CEST) Message-Id: <20101028094808.54B45361BC24@kaspar.aliensatemymum.com> Date: Thu, 28 Oct 2010 11:48:08 +0200 (CEST) From: Mirko Zinn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151794: [MAINTAINER] devel/py26-mongoengine: update to 0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 09:50:08 -0000 >Number: 151794 >Category: ports >Synopsis: [MAINTAINER] devel/py26-mongoengine: update to 0.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 09:50:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Mirko Zinn >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD kaspar 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 >Description: - Update to 0.4 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- py26-mongoengine-0.4.patch begins here --- diff -ruN --exclude=CVS /usr/home/zinn/ports/py-mongoengine.orig/Makefile /usr/home/zinn/ports/py-mongoengine/Makefile --- /usr/home/zinn/ports/py-mongoengine.orig/Makefile 2010-06-06 10:37:10.000000000 +0200 +++ /usr/home/zinn/ports/py-mongoengine/Makefile 2010-10-28 10:36:30.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= mongoengine -PORTVERSION= 0.3 +PORTVERSION= 0.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ MAINTAINER= mail@derzinn.de COMMENT= A Python Object-Document-Mapper for working with MongoDB -RUN_DEPENDS= pymongo>=1.6:${PORTSDIR}/databases/pymongo +RUN_DEPENDS= pymongo>=1.9:${PORTSDIR}/databases/pymongo PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% diff -ruN --exclude=CVS /usr/home/zinn/ports/py-mongoengine.orig/distinfo /usr/home/zinn/ports/py-mongoengine/distinfo --- /usr/home/zinn/ports/py-mongoengine.orig/distinfo 2010-06-06 10:37:10.000000000 +0200 +++ /usr/home/zinn/ports/py-mongoengine/distinfo 2010-10-28 10:36:37.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (mongoengine-0.3.tar.gz) = c31b42b2170347ec153098d538216ee1 -SHA256 (mongoengine-0.3.tar.gz) = 0a4b4c1fabeb996302ef3fd971783250e9a14fd85f556cdc80c727c391ef2bc4 -SIZE (mongoengine-0.3.tar.gz) = 59146 +MD5 (mongoengine-0.4.tar.gz) = f5f4d931b2e816ce17733b45eadbfb6e +SHA256 (mongoengine-0.4.tar.gz) = f95a273b5469052978bca4b3ae05535519cee3a30d7b1f586384ccaa691a8396 +SIZE (mongoengine-0.4.tar.gz) = 74072 --- py26-mongoengine-0.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 09:58:59 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A321106564A; Thu, 28 Oct 2010 09:58:59 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D3BE68FC08; Thu, 28 Oct 2010 09:58:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9S9wwnG095880; Thu, 28 Oct 2010 09:58:58 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9S9ww2H095876; Thu, 28 Oct 2010 09:58:58 GMT (envelope-from linimon) Date: Thu, 28 Oct 2010 09:58:58 GMT Message-Id: <201010280958.o9S9ww2H095876@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gerald@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151792: lang/gcc44: cannot portupgrade gcc-4.4.6.20101012 to version 4.4.6.20101026 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 09:58:59 -0000 Old Synopsis: [ERROR] cannot portupgrade gcc-4.4.6.20101012 to version 4.4.6.20101026 New Synopsis: lang/gcc44: cannot portupgrade gcc-4.4.6.20101012 to version 4.4.6.20101026 Responsible-Changed-From-To: freebsd-ports-bugs->gerald Responsible-Changed-By: linimon Responsible-Changed-When: Thu Oct 28 09:56:56 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=151792 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 10:30:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC8DA106564A for ; Thu, 28 Oct 2010 10:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B06998FC14 for ; Thu, 28 Oct 2010 10:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SAUBpE029598 for ; Thu, 28 Oct 2010 10:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SAUBcF029593; Thu, 28 Oct 2010 10:30:11 GMT (envelope-from gnats) Date: Thu, 28 Oct 2010 10:30:11 GMT Message-Id: <201010281030.o9SAUBcF029593@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mirko Zinn Cc: Subject: Re: ports/151335: [MAINTAINER] devel/py26-mongoengine: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mirko Zinn List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 10:30:11 -0000 The following reply was made to PR ports/151335; it has been noted by GNATS. From: Mirko Zinn To: bug-followup@FreeBSD.org, mail@derzinn.de Cc: Subject: Re: ports/151335: [MAINTAINER] devel/py26-mongoengine: [SUMMARIZE CHANGES] Date: Thu, 28 Oct 2010 12:05:35 +0200 This report can be closed. The fixes are included in the current release = (PR: 151794). Mirko= From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 11:16:39 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FDD0106566C; Thu, 28 Oct 2010 11:16:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 45EF68FC08; Thu, 28 Oct 2010 11:16:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SBGdWd081792; Thu, 28 Oct 2010 11:16:39 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SBGc7F081788; Thu, 28 Oct 2010 11:16:38 GMT (envelope-from sunpoet) Date: Thu, 28 Oct 2010 11:16:38 GMT Message-Id: <201010281116.o9SBGc7F081788@freefall.freebsd.org> To: mail@derzinn.de, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151335: [MAINTAINER] devel/py26-mongoengine: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 11:16:39 -0000 Synopsis: [MAINTAINER] devel/py26-mongoengine: [SUMMARIZE CHANGES] State-Changed-From-To: open->closed State-Changed-By: sunpoet State-Changed-When: Thu Oct 28 11:16:38 UTC 2010 State-Changed-Why: Close at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=151335 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 11:30:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04043106564A for ; Thu, 28 Oct 2010 11:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E67548FC0A for ; Thu, 28 Oct 2010 11:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SBUEsJ091370 for ; Thu, 28 Oct 2010 11:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SBUEqL091365; Thu, 28 Oct 2010 11:30:14 GMT (envelope-from gnats) Date: Thu, 28 Oct 2010 11:30:14 GMT Message-Id: <201010281130.o9SBUEqL091365@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jui-Nan Lin Cc: Subject: Re: ports/151793: [PATCH] www/trafficserver: update to 2.1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jui-Nan Lin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 11:30:15 -0000 The following reply was made to PR ports/151793; it has been noted by GNATS. From: Jui-Nan Lin To: bug-followup@freebsd.org Cc: Subject: Re: ports/151793: [PATCH] www/trafficserver: update to 2.1.3 Date: Thu, 28 Oct 2010 19:26:01 +0800 Hi, Please commit it, thanks! On Thu, Oct 28, 2010 at 4:00 PM, Edwin Groothuis wrote: > Maintainer of www/trafficserver, > > Please note that PR ports/151793 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > =C2=A0 =C2=A0http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/151793 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 12:20:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8885B1065674 for ; Thu, 28 Oct 2010 12:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4BAD78FC18 for ; Thu, 28 Oct 2010 12:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SCK7je045804 for ; Thu, 28 Oct 2010 12:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SCK7qm045803; Thu, 28 Oct 2010 12:20:07 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 12:20:07 GMT Resent-Message-Id: <201010281220.o9SCK7qm045803@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pietro Cerutti Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED411106564A for ; Thu, 28 Oct 2010 12:14:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id DCB618FC1D for ; Thu, 28 Oct 2010 12:14:01 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9SCE1Xp087702 for ; Thu, 28 Oct 2010 12:14:01 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9SCE1sp087700; Thu, 28 Oct 2010 12:14:01 GMT (envelope-from nobody) Message-Id: <201010281214.o9SCE1sp087700@www.freebsd.org> Date: Thu, 28 Oct 2010 12:14:01 GMT From: Pietro Cerutti To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151795: [patch] lang/pike78 -- builds on sparc64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 12:20:07 -0000 >Number: 151795 >Category: ports >Synopsis: [patch] lang/pike78 -- builds on sparc64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 12:20:06 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Pietro Cerutti >Release: >Organization: The FreeBSD Project >Environment: FreeBSD tucana.bfh.ch 9.0-CURRENT FreeBSD 9.0-CURRENT #2: Wed Aug 18 21:16:18 UTC 2010 root@tucana.bfh.ch:/usr/obj/usr/src/sys/TUCANA sparc64 >Description: lang/pike78 works fine on sparc64. The testsuite has 111 tests failing, against the 108 failing on amd64. I'd say we can include sparc64 in the list of supported platforms. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/lang/pike78/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 31 May 2010 01:59:34 -0000 1.13 +++ Makefile 27 Oct 2010 21:47:13 -0000 @@ -91,7 +91,7 @@ .include -ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS= i386 amd64 sparc64 .ifdef(WITHOUT_RELOCATABLE_DUMPED_MODULES) CONFIGURE_ARGS+= --without-relocatable-dumped-modules >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 12:20:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8302106566B; Thu, 28 Oct 2010 12:20:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8EE148FC1C; Thu, 28 Oct 2010 12:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SCKCA4046078; Thu, 28 Oct 2010 12:20:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SCKCYE046070; Thu, 28 Oct 2010 12:20:12 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 12:20:12 GMT Message-Id: <201010281220.o9SCKCYE046070@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, johans@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151795: [patch] lang/pike78 -- builds on sparc64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 12:20:12 -0000 Synopsis: [patch] lang/pike78 -- builds on sparc64 Responsible-Changed-From-To: freebsd-ports-bugs->johans Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 28 12:20:12 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151795 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 13:07:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9843E1065670; Thu, 28 Oct 2010 13:07:17 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6E6A68FC17; Thu, 28 Oct 2010 13:07:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SD7HLk098281; Thu, 28 Oct 2010 13:07:17 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SD7GBd098277; Thu, 28 Oct 2010 13:07:16 GMT (envelope-from wen) Date: Thu, 28 Oct 2010 13:07:16 GMT Message-Id: <201010281307.o9SD7GBd098277@freefall.freebsd.org> To: mail@derzinn.de, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/151794: [MAINTAINER] devel/py26-mongoengine: update to 0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 13:07:17 -0000 Synopsis: [MAINTAINER] devel/py26-mongoengine: update to 0.4 State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Thu Oct 28 13:07:16 UTC 2010 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151794 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 13:10:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD44C1065673 for ; Thu, 28 Oct 2010 13:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A24E78FC08 for ; Thu, 28 Oct 2010 13:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SDAAY2098388 for ; Thu, 28 Oct 2010 13:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SDAAIQ098387; Thu, 28 Oct 2010 13:10:10 GMT (envelope-from gnats) Date: Thu, 28 Oct 2010 13:10:10 GMT Message-Id: <201010281310.o9SDAAIQ098387@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151794: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 13:10:10 -0000 The following reply was made to PR ports/151794; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151794: commit references a PR Date: Thu, 28 Oct 2010 13:06:14 +0000 (UTC) wen 2010-10-28 13:06:09 UTC FreeBSD ports repository Modified files: devel/py-mongoengine Makefile distinfo Log: - Update to 0.4 PR: ports/151794 Submitted by: Mirko Zinn (maintainer) Revision Changes Path 1.2 +2 -2 ports/devel/py-mongoengine/Makefile 1.2 +3 -3 ports/devel/py-mongoengine/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 13:40:05 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2C541065673 for ; Thu, 28 Oct 2010 13:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B12178FC0C for ; Thu, 28 Oct 2010 13:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SDe40m029125 for ; Thu, 28 Oct 2010 13:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SDe4B9029124; Thu, 28 Oct 2010 13:40:04 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 13:40:04 GMT Resent-Message-Id: <201010281340.o9SDe4B9029124@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vick Khera Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97F561065674 for ; Thu, 28 Oct 2010 13:39:32 +0000 (UTC) (envelope-from khera@kcilink.com) Received: from yertle.kcilink.com (yertle-comcast.kcilink.com [74.92.149.58]) by mx1.freebsd.org (Postfix) with ESMTP id 74E3C8FC16 for ; Thu, 28 Oct 2010 13:39:32 +0000 (UTC) Received: by yertle.kcilink.com (Postfix, from userid 1002) id D16368A251; Thu, 28 Oct 2010 09:39:31 -0400 (EDT) Message-Id: <20101028133931.D16368A251@yertle.kcilink.com> Date: Thu, 28 Oct 2010 09:39:31 -0400 (EDT) From: Vick Khera To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151796: update www/p5-HTML-Query to latest X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Vick Khera List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 13:40:05 -0000 >Number: 151796 >Category: ports >Synopsis: update www/p5-HTML-Query to latest >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 13:40:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vick Khera >Release: FreeBSD 8.0-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD yertle.int.kcilink.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #5: Thu Mar 11 14:47:54 EST 2010 steve@yertle.int.kcilink.com:/u/yertle1/obj/u/yertle1/sources/usr8/src/sys/KCI64SMP amd64 >Description: update www/p5-HTML-Query port to latest version. >How-To-Repeat: >Fix: diff -Nru p5-HTML-Query/Makefile p5-HTML-Query.new/Makefile --- p5-HTML-Query/Makefile 2009-11-28 04:26:12.000000000 -0500 +++ p5-HTML-Query.new/Makefile 2010-10-28 09:33:50.748654488 -0400 @@ -6,10 +6,10 @@ # PORTNAME= HTML-Query -PORTVERSION= 0.02 +PORTVERSION= 0.06 CATEGORIES= www perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= ../by-authors/id/A/AB/ABW +MASTER_SITE_SUBDIR= ../by-authors/id/K/KA/KAMELKEV PKGNAMEPREFIX= p5- MAINTAINER= vivek@khera.org diff -Nru p5-HTML-Query/distinfo p5-HTML-Query.new/distinfo --- p5-HTML-Query/distinfo 2009-11-28 03:52:14.000000000 -0500 +++ p5-HTML-Query.new/distinfo 2010-10-28 09:34:01.316558754 -0400 @@ -1,3 +1,3 @@ -MD5 (HTML-Query-0.02.tar.gz) = 97c72e38de74dce3c748037a42bb00e3 -SHA256 (HTML-Query-0.02.tar.gz) = 4b33a9728bf5b09b8d99878a3b4d66f21176c92a1123a490bbdd52561a4887ff -SIZE (HTML-Query-0.02.tar.gz) = 11973 +MD5 (HTML-Query-0.06.tar.gz) = c4e896ba47a0db1646ba35a739eba9ce +SHA256 (HTML-Query-0.06.tar.gz) = a05a8011f15dc2ea2977a2928e8a26894b4fea6869e8e97513b5eeb959574328 +SIZE (HTML-Query-0.06.tar.gz) = 27069 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 13:40:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54B9710656A6; Thu, 28 Oct 2010 13:40:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2BA818FC1D; Thu, 28 Oct 2010 13:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SDeCN0029690; Thu, 28 Oct 2010 13:40:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SDeC7O029686; Thu, 28 Oct 2010 13:40:12 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 13:40:12 GMT Message-Id: <201010281340.o9SDeC7O029686@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151796: update www/p5-HTML-Query to latest X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 13:40:12 -0000 Synopsis: update www/p5-HTML-Query to latest Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 28 13:40:11 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151796 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 14:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD34A106564A for ; Thu, 28 Oct 2010 14:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 713A18FC13 for ; Thu, 28 Oct 2010 14:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SEA78R060881 for ; Thu, 28 Oct 2010 14:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SEA7Pf060880; Thu, 28 Oct 2010 14:10:07 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 14:10:07 GMT Resent-Message-Id: <201010281410.o9SEA7Pf060880@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0343D106564A for ; Thu, 28 Oct 2010 14:05:16 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id B7A5B8FC0C for ; Thu, 28 Oct 2010 14:05:15 +0000 (UTC) Received: by qyk2 with SMTP id 2so920916qyk.13 for ; Thu, 28 Oct 2010 07:05:15 -0700 (PDT) Received: by 10.229.84.147 with SMTP id j19mr5961796qcl.155.1288274714530; Thu, 28 Oct 2010 07:05:14 -0700 (PDT) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx.google.com with ESMTPS id m7sm1067191qck.13.2010.10.28.07.05.11 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 28 Oct 2010 07:05:13 -0700 (PDT) Received: by sunpoet.net (Postfix, from userid 1000) id E882D2AEC92E; Thu, 28 Oct 2010 22:05:01 +0800 (CST) Message-Id: <20101028140501.E882D2AEC92E@sunpoet.net> Date: Thu, 28 Oct 2010 22:05:01 +0800 (CST) From: Sunpoet Po-Chuan Hsieh Sender: Sunpoet Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ports.maintainer@evilphi.com Subject: ports/151797: [PATCH] mail/postgrey: respect PGY_DIR and PREFIX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 14:10:08 -0000 >Number: 151797 >Category: ports >Synopsis: [PATCH] mail/postgrey: respect PGY_DIR and PREFIX >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 14:10:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: System: FreeBSD bonjour.sunpoet.net 8.1-STABLE FreeBSD 8.1-STABLE #0: Sat Oct 23 16:01:16 CST 2010 >Description: - Respect PGY_DIR and PREFIX We should apply PGY_DIR / PREFIX substitution to more files. Ex: postgreyreport is unawared of ${PGY_DIR}/postgrey.db. - Bump PORTREVISION Port maintainer (ports.maintainer@evilphi.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: % cat /var/log/maillog | /usr/local/sbin/postgreyreport ERROR: can't find database /var/spool/postgrey/postgrey.db: No such file or directory % cat /var/log/maillog | /usr/local/sbin/postgreyreport --dbdir /var/db/postgrey xx.xx.xx.xx unknown xxx@xxx.xxx >Fix: --- postgrey-1.33_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/postgrey/Makefile,v retrieving revision 1.25 diff -u -u -r1.25 Makefile --- Makefile 23 Aug 2010 02:46:42 -0000 1.25 +++ Makefile 28 Oct 2010 13:44:21 -0000 @@ -7,6 +7,7 @@ PORTNAME= postgrey PORTVERSION= 1.33 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://postgrey.schweikert.ch/pub/ \ http://postgrey.schweikert.ch/pub/old/ @@ -21,7 +22,7 @@ ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS USE_PERL5_RUN= yes -USE_RC_SUBR= postgrey +USE_RC_SUBR= ${PORTNAME} NO_BUILD= yes POD2MAN?= pod2man PORTDOCS= README Changes README.exim @@ -38,9 +39,8 @@ MAN1= ${PORTNAME}.1 policy-test.1 postgreyreport.1 post-patch: - @${REINPLACE_CMD} -e "s#/etc/#${PREFIX}/etc/#" ${WRKSRC}/postgrey - @${REINPLACE_CMD} -e '/^my.*DEFAULT_DBDIR/s|/var/spool/postfix/postgrey|${PGY_DIR}|' \ - ${WRKSRC}/postgrey + @${REINPLACE_CMD} -e "s|/etc/|${PREFIX}&|" ${WRKSRC}/postgrey* + @${REINPLACE_CMD} -e "s|/var/spool/postfix/postgrey|${PGY_DIR}|" ${WRKSRC}/postgrey ${WRKSRC}/contrib/postgreyreport pre-install: @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL --- postgrey-1.33_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 14:10:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F12D106566C for ; Thu, 28 Oct 2010 14:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF8C68FC17 for ; Thu, 28 Oct 2010 14:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SEA8Ns060931 for ; Thu, 28 Oct 2010 14:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SEA821060926; Thu, 28 Oct 2010 14:10:08 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 14:10:08 GMT Resent-Message-Id: <201010281410.o9SEA821060926@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vick Khera Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6AD3106566C for ; Thu, 28 Oct 2010 14:07:05 +0000 (UTC) (envelope-from khera@kcilink.com) Received: from yertle.kcilink.com (yertle-comcast.kcilink.com [74.92.149.58]) by mx1.freebsd.org (Postfix) with ESMTP id A30138FC17 for ; Thu, 28 Oct 2010 14:07:05 +0000 (UTC) Received: by yertle.kcilink.com (Postfix, from userid 1002) id E784C8A251; Thu, 28 Oct 2010 10:07:04 -0400 (EDT) Message-Id: <20101028140704.E784C8A251@yertle.kcilink.com> Date: Thu, 28 Oct 2010 10:07:04 -0400 (EDT) From: Vick Khera To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151798: new port textproc/p5-CSS-Simple X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Vick Khera List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 14:10:09 -0000 >Number: 151798 >Category: ports >Synopsis: new port textproc/p5-CSS-Simple >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 14:10:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vick Khera >Release: FreeBSD 8.0-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD yertle.int.kcilink.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #5: Thu Mar 11 14:47:54 EST 2010 steve@yertle.int.kcilink.com:/u/yertle1/obj/u/yertle1/sources/usr8/src/sys/KCI64SMP amd64 >Description: Create new port for perl CSS::Simple module. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # Makefile # distinfo # pkg-descr # echo x - Makefile sed 's/^X//' >Makefile << 'b67911656ef5d18c4ae36cb6741b7965' X# New ports collection makefile for: p5-CSS-Simple X# Date created: Thu Oct 28 09:56:23 EDT 2010 X# Whom: Vivek Khera X# X# $FreeBSD: $ X# X XPORTNAME= CSS-Simple XPORTVERSION= 2874 XCATEGORIES= textproc www perl5 XMASTER_SITES= CPAN XMASTER_SITE_SUBDIR= ../by-authors/id/K/KA/KAMELKEV XPKGNAMEPREFIX= p5- X XMAINTAINER= vivek@khera.org XCOMMENT= Interface through which to read/write/manipulate CSS files while respecting the cascade order X XPERL_CONFIGURE= yes X XMAN3= CSS::Simple.3 XPLIST_FILES= %%SITE_PERL%%/CSS/Simple.pm \ X %%SITE_PERL%%/%%PERL_ARCH%%/auto/CSS/Simple/.packlist XPLIST_DIRS= %%SITE_PERL%%/%%PERL_ARCH%%/auto/CSS/Simple X X.include b67911656ef5d18c4ae36cb6741b7965 echo x - distinfo sed 's/^X//' >distinfo << '57677d168a5ec21bdf22c9501f075a8f' XMD5 (CSS-Simple-2874.tar.gz) = 39b6c559c38e73b1805292546124cc59 XSHA256 (CSS-Simple-2874.tar.gz) = eaae6eec947a135da9beae527d406130cb02df32b446cb6e3611600c83111fcc XSIZE (CSS-Simple-2874.tar.gz) = 6376 57677d168a5ec21bdf22c9501f075a8f echo x - pkg-descr sed 's/^X//' >pkg-descr << '7f9555c3c1089940396b503dd37f3979' XInterface through which to read/write/manipulate CSS files while respecting Xthe cascade order. X XWWW: http://search.cpan.org/dist/CSS-Simple 7f9555c3c1089940396b503dd37f3979 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 14:10:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 772A11065672; Thu, 28 Oct 2010 14:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4E2858FC17; Thu, 28 Oct 2010 14:10:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SEAGxf061582; Thu, 28 Oct 2010 14:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SEAGVR061569; Thu, 28 Oct 2010 14:10:16 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 14:10:16 GMT Message-Id: <201010281410.o9SEAGVR061569@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151797: [PATCH] mail/postgrey: respect PGY_DIR and PREFIX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 14:10:16 -0000 Synopsis: [PATCH] mail/postgrey: respect PGY_DIR and PREFIX Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 28 14:10:15 UTC 2010 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151797 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 14:10:28 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2CE61065672; Thu, 28 Oct 2010 14:10:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 99AFA8FC1C; Thu, 28 Oct 2010 14:10:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SEASQe063095; Thu, 28 Oct 2010 14:10:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SEASiQ063087; Thu, 28 Oct 2010 14:10:28 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 14:10:28 GMT Message-Id: <201010281410.o9SEASiQ063087@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151798: new port textproc/p5-CSS-Simple X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 14:10:28 -0000 Synopsis: new port textproc/p5-CSS-Simple Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 28 14:10:28 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151798 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 15:00:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 946991065679 for ; Thu, 28 Oct 2010 15:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 51D7A8FC21 for ; Thu, 28 Oct 2010 15:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SF0Nlm013238 for ; Thu, 28 Oct 2010 15:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SF0NWK013218; Thu, 28 Oct 2010 15:00:23 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 15:00:23 GMT Resent-Message-Id: <201010281500.o9SF0NWK013218@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4ED6C106564A for ; Thu, 28 Oct 2010 14:55:12 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 085158FC15 for ; Thu, 28 Oct 2010 14:55:11 +0000 (UTC) Received: by qwg8 with SMTP id 8so7732qwg.13 for ; Thu, 28 Oct 2010 07:55:11 -0700 (PDT) Received: by 10.224.197.5 with SMTP id ei5mr4373261qab.283.1288277711140; Thu, 28 Oct 2010 07:55:11 -0700 (PDT) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx.google.com with ESMTPS id s28sm1106457qcp.45.2010.10.28.07.55.09 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 28 Oct 2010 07:55:10 -0700 (PDT) Received: by sunpoet.net (Postfix, from userid 1000) id ABDCA2AEC61F; Thu, 28 Oct 2010 22:54:56 +0800 (CST) Message-Id: <20101028145456.ABDCA2AEC61F@sunpoet.net> Date: Thu, 28 Oct 2010 22:54:56 +0800 (CST) From: Sunpoet Po-Chuan Hsieh Sender: Sunpoet Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151799: [PATCH] Mk/bsd.port.mk: fix PLIST_DIRSTRY X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sunpoet Po-Chuan Hsieh List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 15:00:23 -0000 >Number: 151799 >Category: ports >Synopsis: [PATCH] Mk/bsd.port.mk: fix PLIST_DIRSTRY >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 15:00:22 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 8.1-STABLE amd64 >Organization: SUNPOET.net >Environment: System: FreeBSD bonjour.sunpoet.net 8.1-STABLE FreeBSD 8.1-STABLE #0: Sat Oct 23 16:01:16 CST 2010 sunpoet@bonjour.sunpoet.net:/usr/obj/usr/src/sys/bonjour amd64 >Description: PLIST_DIRSTRY is broken now. After a brief analysis, I found that dirrmtry substitution (PLIST_REINPLACE_DIRRMTRY) was executed before PLIST_DIRSTRY substitution. Therefore, @dirrmtry entries are left in WRKDIR/.PLIST.mktmp. It breaks port installation. The solution is to reorder the execution of PLIST_REINPLACE_DIRRMTRY and PLIST_DIRSTRY substitution. >How-To-Repeat: Take ports/databases/pgsphere/Makefile,v 1.6 for example. % cd /usr/ports/databases/pgsphere % make install ... ===> Registering installation for pgsphere-1.1.1_1 pkg_create: read_plist: unknown command '@dirrmtry share/postgresql/contrib' (package tools out of date?) pkg_create: write_plist: unknown command type -1 (share/postgresql/contrib) *** Error code 2 Stop in /usr/ports/databases/pgsphere. % cat `make -V WRKDIR`/.PLIST.mktmp lib/postgresql/pg_sphere.so share/postgresql/contrib/pg_sphere.sql @dirrmtry share/postgresql/contrib @exec /sbin/ldconfig -m /usr/local/lib @unexec /sbin/ldconfig -R >Fix: --- bsd.port.mk.patch begins here --- Index: Mk/bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.651 diff -u -r1.651 bsd.port.mk --- Mk/bsd.port.mk 25 Oct 2010 18:36:56 -0000 1.651 +++ Mk/bsd.port.mk 28 Oct 2010 14:23:37 -0000 @@ -5708,11 +5708,6 @@ @if [ -f ${PLIST} ]; then \ ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${PLIST} >> ${TMPPLIST}; \ fi -.for reinplace in ${PLIST_REINPLACE} -.if defined(PLIST_REINPLACE_${reinplace:U}) - @${SED} -i "" -e '${PLIST_REINPLACE_${reinplace:U}}' ${TMPPLIST} -.endif -.endfor .for dir in ${PLIST_DIRS} @${ECHO_CMD} ${dir} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} -e 's,^,@dirrm ,' >> ${TMPPLIST} @@ -5720,6 +5715,13 @@ .for dir in ${PLIST_DIRSTRY} @${ECHO_CMD} ${dir} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} -e 's,^,@dirrmtry ,' >> ${TMPPLIST} .endfor + +.for reinplace in ${PLIST_REINPLACE} +.if defined(PLIST_REINPLACE_${reinplace:U}) + @${SED} -i "" -e '${PLIST_REINPLACE_${reinplace:U}}' ${TMPPLIST} +.endif +.endfor + .if defined(USE_LINUX_PREFIX) .if defined(USE_LDCONFIG) @${ECHO_CMD} "@exec ${LDCONFIG_CMD}" >> ${TMPPLIST} --- bsd.port.mk.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 15:00:32 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC9911065679; Thu, 28 Oct 2010 15:00:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 936FB8FC15; Thu, 28 Oct 2010 15:00:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SF0W1p015830; Thu, 28 Oct 2010 15:00:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SF0WGp015802; Thu, 28 Oct 2010 15:00:32 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 15:00:32 GMT Message-Id: <201010281500.o9SF0WGp015802@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151799: [PATCH] Mk/bsd.port.mk: fix PLIST_DIRSTRY X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 15:00:32 -0000 Synopsis: [PATCH] Mk/bsd.port.mk: fix PLIST_DIRSTRY Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 28 15:00:31 UTC 2010 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151799 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 17:00:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 431AD1065674 for ; Thu, 28 Oct 2010 17:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 06B798FC1A for ; Thu, 28 Oct 2010 17:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SH0MVk039275 for ; Thu, 28 Oct 2010 17:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SH0M8V039255; Thu, 28 Oct 2010 17:00:22 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 17:00:22 GMT Resent-Message-Id: <201010281700.o9SH0M8V039255@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DF681065675 for ; Thu, 28 Oct 2010 17:00:09 +0000 (UTC) (envelope-from gslin@colo-p.gslin.org) Received: from colo-p.gslin.org (97.135.ip.mwsrv.com [210.242.135.97]) by mx1.freebsd.org (Postfix) with ESMTP id D67778FC19 for ; Thu, 28 Oct 2010 17:00:08 +0000 (UTC) Received: by colo-p.gslin.org (Postfix, from userid 1000) id 5A5697E829; Fri, 29 Oct 2010 00:44:53 +0800 (CST) Message-Id: <20101028164453.5A5697E829@colo-p.gslin.org> Date: Fri, 29 Oct 2010 00:44:53 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org Subject: ports/151800: [NEW PORT] graphics/p5-Image-Imgur: Perl extension for uploading images to http://imgur.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 17:00:23 -0000 >Number: 151800 >Category: ports >Synopsis: [NEW PORT] graphics/p5-Image-Imgur: Perl extension for uploading images to http://imgur.com >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 17:00:22 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 7.3-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD colo-p.gslin.org 7.3-RELEASE-p2 FreeBSD 7.3-RELEASE-p2 #0: Mon Jul 12 19:04:04 UTC 2010 >Description: Image::Imgur intends to make programmatically possible to upload image files to the website http://imgur.com. WWW: http://search.cpan.org/dist/Image-Imgur/ Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Image-Imgur-0.01.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Image-Imgur # p5-Image-Imgur/pkg-descr # p5-Image-Imgur/Makefile # p5-Image-Imgur/pkg-plist # p5-Image-Imgur/distinfo # echo c - p5-Image-Imgur mkdir -p p5-Image-Imgur > /dev/null 2>&1 echo x - p5-Image-Imgur/pkg-descr sed 's/^X//' >p5-Image-Imgur/pkg-descr << '170ba155d8624e719cf27e2e5994206f' XImage::Imgur intends to make programmatically possible to upload image Xfiles to the website http://imgur.com. X XWWW: http://search.cpan.org/dist/Image-Imgur/ 170ba155d8624e719cf27e2e5994206f echo x - p5-Image-Imgur/Makefile sed 's/^X//' >p5-Image-Imgur/Makefile << '3e64a96904f7a201b8bb6877c852c387' X# New ports collection makefile for: p5-Image-Imgur X# Date created: 2010-10-27 X# Whom: Gea-Suan Lin X# X# $FreeBSD$ X# X XPORTNAME= Image-Imgur XPORTVERSION= 0.01 XCATEGORIES= graphics perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- XEXTRACT_SUFX= .tgz X XMAINTAINER= gslin@gslin.org XCOMMENT= Perl extension for uploading images to http://imgur.com X XRUN_DEPENDS= p5-Moose>=0:${PORTSDIR}/devel/p5-Moose \ X p5-libwww>=0:${PORTSDIR}/www/p5-libwww X XPERL_CONFIGURE= yes X XMAN3= Image::Imgur.3 X X.include 3e64a96904f7a201b8bb6877c852c387 echo x - p5-Image-Imgur/pkg-plist sed 's/^X//' >p5-Image-Imgur/pkg-plist << '6cc5a0665b2b1e5f7c7d612ff471780c' X@comment $FreeBSD$ X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/Imgur/.packlist X%%SITE_PERL%%/Image/Imgur.pm X@dirrmtry %%SITE_PERL%%/Image X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/Imgur X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Image 6cc5a0665b2b1e5f7c7d612ff471780c echo x - p5-Image-Imgur/distinfo sed 's/^X//' >p5-Image-Imgur/distinfo << 'a71cdc0af00885c309f852332d7d6e18' XMD5 (Image-Imgur-0.01.tgz) = 12639e5fe98a3349d75ca50d2e64dd4b XSHA256 (Image-Imgur-0.01.tgz) = 924a6dc3ddcaa0ad70576b4808367ae948dfa8d7b5f766db123d4fabb7461fae XSIZE (Image-Imgur-0.01.tgz) = 2856 a71cdc0af00885c309f852332d7d6e18 exit --- p5-Image-Imgur-0.01.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 17:00:32 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2CD4106566B; Thu, 28 Oct 2010 17:00:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8915D8FC19; Thu, 28 Oct 2010 17:00:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SH0WhQ041785; Thu, 28 Oct 2010 17:00:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SH0WEs041761; Thu, 28 Oct 2010 17:00:32 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 17:00:32 GMT Message-Id: <201010281700.o9SH0WEs041761@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgollucci@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151800: [NEW PORT] graphics/p5-Image-Imgur: Perl extension for uploading images to http://imgur.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 17:00:32 -0000 Synopsis: [NEW PORT] graphics/p5-Image-Imgur: Perl extension for uploading images to http://imgur.com Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 28 17:00:31 UTC 2010 Responsible-Changed-Why: pgollucci@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151800 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 17:19:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2C441065672; Thu, 28 Oct 2010 17:19:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B849B8FC1F; Thu, 28 Oct 2010 17:19:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SHJEfW062004; Thu, 28 Oct 2010 17:19:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SHJEXj062000; Thu, 28 Oct 2010 17:19:14 GMT (envelope-from linimon) Date: Thu, 28 Oct 2010 17:19:14 GMT Message-Id: <201010281719.o9SHJEXj062000@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151764: security/vuxml update for security vulnerability: ports:samba X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 17:19:15 -0000 Old Synopsis: vuxml update for security vulnerability: ports:samba New Synopsis: security/vuxml update for security vulnerability: ports:samba Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: linimon Responsible-Changed-When: Thu Oct 28 17:17:34 UTC 2010 Responsible-Changed-Why: timur maintains the samba ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=151764 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 17:23:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8C2B1065696; Thu, 28 Oct 2010 17:23:15 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7DA088FC14; Thu, 28 Oct 2010 17:23:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SHNFh7071291; Thu, 28 Oct 2010 17:23:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SHNFiu071287; Thu, 28 Oct 2010 17:23:15 GMT (envelope-from linimon) Date: Thu, 28 Oct 2010 17:23:15 GMT Message-Id: <201010281723.o9SHNFiu071287@freefall.freebsd.org> To: chalpin@cs.wisc.edu, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151693: Re: [PATCH] mail/fetchmail: update to 6.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 17:23:15 -0000 Synopsis: Re: [PATCH] mail/fetchmail: update to 6.3.18 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Oct 28 17:21:54 UTC 2010 State-Changed-Why: Misfiled followup to ports/151686, already committed. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Oct 28 17:21:54 UTC 2010 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=151693 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 17:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7278110656A7 for ; Thu, 28 Oct 2010 17:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 309D68FC22 for ; Thu, 28 Oct 2010 17:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SHeAGx082407 for ; Thu, 28 Oct 2010 17:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SHeAVj082406; Thu, 28 Oct 2010 17:40:10 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 17:40:10 GMT Resent-Message-Id: <201010281740.o9SHeAVj082406@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Oleg A. Mamontov" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36F2C1065695 for ; Thu, 28 Oct 2010 17:34:07 +0000 (UTC) (envelope-from lonerr@dev2.rambler.ru) Received: from pmx1.rambler.ru (mail01.park.rambler.ru [81.19.66.124]) by mx1.freebsd.org (Postfix) with ESMTP id E48948FC21 for ; Thu, 28 Oct 2010 17:34:05 +0000 (UTC) Received: from dev2.rambler.ru ([10.12.2.2]) by pmx1.rambler.ru with esmtp (Exim 4.70 (FreeBSD)) (envelope-from ) id 1PBWMW-000HLJ-8g; Thu, 28 Oct 2010 21:34:04 +0400 Received: from dev2.rambler.ru (localhost [127.0.0.1]) by dev2.rambler.ru (8.14.2/8.14.2) with ESMTP id o9SHY4dY006538; Thu, 28 Oct 2010 21:34:04 +0400 (MSD) (envelope-from lonerr@dev2.rambler.ru) Received: (from root@localhost) by dev2.rambler.ru (8.14.2/8.14.2/Submit) id o9SHY3HD006537; Thu, 28 Oct 2010 21:34:03 +0400 (MSD) (envelope-from lonerr) Message-Id: <201010281734.o9SHY3HD006537@dev2.rambler.ru> Date: Thu, 28 Oct 2010 21:34:03 +0400 (MSD) From: "Oleg A. Mamontov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: oleg@mamontov.net Subject: ports/151801: [PATCH] devel/p5-Pid-File-Flock: update to 0.06 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 17:40:10 -0000 >Number: 151801 >Category: ports >Synopsis: [PATCH] devel/p5-Pid-File-Flock: update to 0.06 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 17:40:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Oleg A. Mamontov >Release: FreeBSD 7.0-20080303-SNAP amd64 >Organization: >Environment: System: FreeBSD dev2.rambler.ru 7.0-20080303-SNAP FreeBSD 7.0-20080303-SNAP #1: Tue Apr 8 13:54:52 MSD >Description: - Update to 0.06 Added file(s): - p5-Pid-File-Flock-0.06.tbz Port maintainer (oleg@mamontov.net) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Pid-File-Flock-0.06.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Pid-File-Flock.orig/Makefile /usr/ports/devel/p5-Pid-File-Flock/Makefile --- /usr/ports/devel/p5-Pid-File-Flock.orig/Makefile 2010-10-09 00:21:09.000000000 +0400 +++ /usr/ports/devel/p5-Pid-File-Flock/Makefile 2010-10-28 21:31:29.000000000 +0400 @@ -6,7 +6,7 @@ # PORTNAME= Pid-File-Flock -PORTVERSION= 0.05 +PORTVERSION= 0.06 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR=../by-authors/id/L/LO/LONERR diff -ruN --exclude=CVS /usr/ports/devel/p5-Pid-File-Flock.orig/distinfo /usr/ports/devel/p5-Pid-File-Flock/distinfo --- /usr/ports/devel/p5-Pid-File-Flock.orig/distinfo 2010-10-09 00:21:09.000000000 +0400 +++ /usr/ports/devel/p5-Pid-File-Flock/distinfo 2010-10-28 21:31:44.000000000 +0400 @@ -1,3 +1,3 @@ -MD5 (Pid-File-Flock-0.05.tar.gz) = 2aab161cc79b09372c92081b33b67086 -SHA256 (Pid-File-Flock-0.05.tar.gz) = f5606cb63928b85e333a47a2756386965c3084f7d8693e5a2c8f057ce35619c7 -SIZE (Pid-File-Flock-0.05.tar.gz) = 5246 +MD5 (Pid-File-Flock-0.06.tar.gz) = f14ce89016ec230f9aa691191e24ec95 +SHA256 (Pid-File-Flock-0.06.tar.gz) = 5042723b6de50a4e511268b8ff534a8d0b70e122629607baca162247313499f2 +SIZE (Pid-File-Flock-0.06.tar.gz) = 5431 Files /usr/ports/devel/p5-Pid-File-Flock.orig/p5-Pid-File-Flock-0.06.tbz and /usr/ports/devel/p5-Pid-File-Flock/p5-Pid-File-Flock-0.06.tbz differ --- p5-Pid-File-Flock-0.06.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 17:40:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D698106566B; Thu, 28 Oct 2010 17:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12E0C8FC1E; Thu, 28 Oct 2010 17:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SHeGVx082949; Thu, 28 Oct 2010 17:40:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SHeG1c082939; Thu, 28 Oct 2010 17:40:16 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 17:40:16 GMT Message-Id: <201010281740.o9SHeG1c082939@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151801: [PATCH] devel/p5-Pid-File-Flock: update to 0.06 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 17:40:17 -0000 Synopsis: [PATCH] devel/p5-Pid-File-Flock: update to 0.06 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Thu Oct 28 17:40:16 UTC 2010 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151801 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 17:40:21 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F46D106564A; Thu, 28 Oct 2010 17:40:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 44CC08FC0C; Thu, 28 Oct 2010 17:40:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SHeLm5083416; Thu, 28 Oct 2010 17:40:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SHeLhA083406; Thu, 28 Oct 2010 17:40:21 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 17:40:21 GMT Message-Id: <201010281740.o9SHeLhA083406@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151801: [PATCH] devel/p5-Pid-File-Flock: update to 0.06 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 17:40:21 -0000 Synopsis: [PATCH] devel/p5-Pid-File-Flock: update to 0.06 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 28 17:40:20 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151801 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 19:14:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E2151065675; Thu, 28 Oct 2010 19:14:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D841F8FC14; Thu, 28 Oct 2010 19:14:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SJE8gc085425; Thu, 28 Oct 2010 19:14:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SJE8SB085421; Thu, 28 Oct 2010 19:14:08 GMT (envelope-from linimon) Date: Thu, 28 Oct 2010 19:14:08 GMT Message-Id: <201010281914.o9SJE8SB085421@freefall.freebsd.org> To: linimon@FreeBSD.org, ports@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151747: request to enable emulators/wine on amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 19:14:09 -0000 Synopsis: request to enable emulators/wine on amd64 Responsible-Changed-From-To: ports->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Oct 28 19:13:54 UTC 2010 Responsible-Changed-Why: Canonicalize assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=151747 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 19:20:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCEC81065673 for ; Thu, 28 Oct 2010 19:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9EAAB8FC19 for ; Thu, 28 Oct 2010 19:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SJK9v4085833 for ; Thu, 28 Oct 2010 19:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SJK9sL085832; Thu, 28 Oct 2010 19:20:09 GMT (envelope-from gnats) Resent-Date: Thu, 28 Oct 2010 19:20:09 GMT Resent-Message-Id: <201010281920.o9SJK9sL085832@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yen-Ming Lee Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D53831065679 for ; Thu, 28 Oct 2010 19:13:55 +0000 (UTC) (envelope-from leeym@cn1.leeym.com) Received: from cn1.leeym.com (b06s56le.corenetworks.net [64.85.165.237]) by mx1.freebsd.org (Postfix) with ESMTP id 9F2B88FC19 for ; Thu, 28 Oct 2010 19:13:55 +0000 (UTC) Received: from cn1.leeym.com (localhost [127.0.0.1]) by cn1.leeym.com (8.14.4/8.14.4) with ESMTP id o9SJDslP031274; Thu, 28 Oct 2010 12:13:54 -0700 (PDT) (envelope-from leeym@cn1.leeym.com) Received: (from leeym@localhost) by cn1.leeym.com (8.14.4/8.14.4/Submit) id o9SJDsvJ031273; Thu, 28 Oct 2010 12:13:54 -0700 (PDT) (envelope-from leeym) Message-Id: <201010281913.o9SJDsvJ031273@cn1.leeym.com> Date: Thu, 28 Oct 2010 12:13:54 -0700 (PDT) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: tobez@FreeBSD.org Subject: ports/151802: [PATCH] devel/p5-IPC-Cmd: update to 0.64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 19:20:10 -0000 >Number: 151802 >Category: ports >Synopsis: [PATCH] devel/p5-IPC-Cmd: update to 0.64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Oct 28 19:20:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD cn1.leeym.com 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 >Description: - Update to 0.64 Port maintainer (tobez@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-IPC-Cmd-0.64.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/p5-IPC-Cmd/Makefile,v retrieving revision 1.13 diff -u -d -b -w -u -r1.13 Makefile --- Makefile 9 Jul 2010 08:03:04 -0000 1.13 +++ Makefile 28 Oct 2010 19:13:46 -0000 @@ -6,7 +6,7 @@ # PORTNAME= IPC-Cmd -PORTVERSION= 0.60 +PORTVERSION= 0.64 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Index: distinfo =================================================================== RCS file: /home/pcvs/ports/devel/p5-IPC-Cmd/distinfo,v retrieving revision 1.13 diff -u -d -b -w -u -r1.13 distinfo --- distinfo 9 Jul 2010 08:03:04 -0000 1.13 +++ distinfo 28 Oct 2010 19:13:46 -0000 @@ -1,3 +1,3 @@ -MD5 (IPC-Cmd-0.60.tar.gz) = dcb4282e413f89afa4b4fcba75ebf283 -SHA256 (IPC-Cmd-0.60.tar.gz) = 9aa31e8dd55d3e5abd296be861b50b7b2186255a174fb33841c7dc8bad8ca1b5 -SIZE (IPC-Cmd-0.60.tar.gz) = 25467 +MD5 (IPC-Cmd-0.64.tar.gz) = c94e8acff9c02c7b1ed0533fe01db2d2 +SHA256 (IPC-Cmd-0.64.tar.gz) = 76c0e599a97ce8a792f511fcb66b3fd7366a44191e86b8130e8fbd8521646b06 +SIZE (IPC-Cmd-0.64.tar.gz) = 25750 --- p5-IPC-Cmd-0.64.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 19:20:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36B49106564A; Thu, 28 Oct 2010 19:20:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0BFBC8FC21; Thu, 28 Oct 2010 19:20:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SJKF4a086289; Thu, 28 Oct 2010 19:20:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SJKF0s086279; Thu, 28 Oct 2010 19:20:15 GMT (envelope-from edwin) Date: Thu, 28 Oct 2010 19:20:15 GMT Message-Id: <201010281920.o9SJKF0s086279@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tobez@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151802: [PATCH] devel/p5-IPC-Cmd: update to 0.64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 19:20:16 -0000 Synopsis: [PATCH] devel/p5-IPC-Cmd: update to 0.64 Responsible-Changed-From-To: freebsd-ports-bugs->tobez Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 28 19:20:15 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151802 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 28 22:52:37 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6BCF106566B; Thu, 28 Oct 2010 22:52:37 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7D0548FC0A; Thu, 28 Oct 2010 22:52:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9SMqbaF010818; Thu, 28 Oct 2010 22:52:37 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9SMqbxH010814; Thu, 28 Oct 2010 22:52:37 GMT (envelope-from linimon) Date: Thu, 28 Oct 2010 22:52:37 GMT Message-Id: <201010282252.o9SMqbxH010814@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skreuzer@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151770: net-mgmt/cacti-spine: spine 0.8.7g hangs up after one host poll X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 22:52:37 -0000 Old Synopsis: spine 0.8.7g hangs up after one host poll New Synopsis: net-mgmt/cacti-spine: spine 0.8.7g hangs up after one host poll Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: linimon Responsible-Changed-When: Thu Oct 28 22:51:28 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=151770 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 00:10:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CEFA10656BD for ; Fri, 29 Oct 2010 00:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BA5D28FC20 for ; Fri, 29 Oct 2010 00:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T0AAaS084945 for ; Fri, 29 Oct 2010 00:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T0AAmR084944; Fri, 29 Oct 2010 00:10:10 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 00:10:10 GMT Resent-Message-Id: <201010290010.o9T0AAmR084944@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Prather Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05032106564A for ; Fri, 29 Oct 2010 00:02:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id E68978FC16 for ; Fri, 29 Oct 2010 00:02:22 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9T02Mia029510 for ; Fri, 29 Oct 2010 00:02:22 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9T02Mvu029509; Fri, 29 Oct 2010 00:02:22 GMT (envelope-from nobody) Message-Id: <201010290002.o9T02Mvu029509@www.freebsd.org> Date: Fri, 29 Oct 2010 00:02:22 GMT From: John Prather To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151803: New Port: mail/davmail - POP/IMAP/SMTP/Caldav/Carddav/LDAP Exchange Gateway X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 00:10:11 -0000 >Number: 151803 >Category: ports >Synopsis: New Port: mail/davmail - POP/IMAP/SMTP/Caldav/Carddav/LDAP Exchange Gateway >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 00:10:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: John Prather >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: FreeBSD bsdlaptop.localdomain 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Thu Sep 2 12:29:51 PDT 2010 root@bsdlaptop.localdomain:/usr/obj/usr/src/sys/GENERIC amd64 >Description: DavMail is a POP/IMAP/SMTP/Caldav/Carddav/LDAP exchange gateway allowing users to use any mail/calendar client (e.g. Thunderbird with Lightning or Apple iCal) with an Exchange server, even from the internet or behind a firewall through Outlook Web Access. WWW: http://davmail.sourceforge.net/ >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # davmail # davmail/files # davmail/files/davmail.sh.in # davmail/Makefile # davmail/distinfo # davmail/pkg-descr # davmail/pkg-plist # echo c - davmail mkdir -p davmail > /dev/null 2>&1 echo c - davmail/files mkdir -p davmail/files > /dev/null 2>&1 echo x - davmail/files/davmail.sh.in sed 's/^X//' >davmail/files/davmail.sh.in << '1aca6a059e74385ab77a66ef88bb0648' X#!/bin/sh XBASE="%BASE%" Xfor i in $BASE/lib/*; do export CLASSPATH=$CLASSPATH:$i; done Xjava -cp $BASE/davmail.jar:$CLASSPATH:%JAVASHAREDIR%/classes/swt.jar davmail.DavGateway $1 1aca6a059e74385ab77a66ef88bb0648 echo x - davmail/Makefile sed 's/^X//' >davmail/Makefile << 'da046346f09cb8a6326e8d7810e1b8b1' X# New ports collection makefile for: davmail X# Date created: 28 Oct 2010 X# Whom: John Prather X# X# $FreeBSD$ X# X XPORTNAME= davmail XPORTVERSION= 3.8.5 XCATEGORIES= mail XMASTER_SITES= SF/davmail/davmail/${PORTVERSION} XDISTNAME= ${PORTNAME}-src-${PORTVERSION}-1480 XEXTRACT_SUFX= .tgz X XMAINTAINER= john.c.prather@gmail.com XCOMMENT= POP/IMAP/SMTP/Caldav/Carddav/LDAP Exchange Gateway X XRUN_DEPENDS= swt>=3.5:${PORTSDIR}/x11-toolkits/swt X XUSE_TGZ= yes XUSE_ANT= yes XUSE_JAVA= yes XJAVA_VERSION= 1.6+ X XDATADIR= ${JAVASHAREDIR}/${PORTNAME} X#WRKSRC= ${WRKDIR}/${PORTNAME}-src-${PORTVERSION}-1480 X Xdo-install: X cd ${WRKSRC}/dist && ${FIND} . -type d \ X -exec ${MKDIR} ${DATADIR}/\{} \; X cd ${WRKSRC}/dist && ${FIND} . -type f \ X -not -name "*.deb" \ X -not -name "*.tgz" \ X -not -name "*.exe" \ X -not -name "swt-*.jar" \ X -not -name "*.zip" \ X -not -name "*.war" \ X -exec ${INSTALL_DATA} \{} ${DATADIR}/\{} \; X ${CP} ${FILESDIR}/davmail.sh.in ${WRKDIR}/davmail.sh X ${REINPLACE_CMD} -e "s|%BASE%|${DATADIR}|" \ X -e "s|%JAVASHAREDIR%|${JAVASHAREDIR}|" \ X ${WRKDIR}/davmail.sh X ${INSTALL_SCRIPT} ${WRKDIR}/davmail.sh ${PREFIX}/bin/davmail X X.include da046346f09cb8a6326e8d7810e1b8b1 echo x - davmail/distinfo sed 's/^X//' >davmail/distinfo << '134e5f21565b001fc03cf5001a7e8f05' XMD5 (davmail-src-3.8.5-1480.tgz) = 3b5157a357a2bd54f96ee5b71092c34a XSHA256 (davmail-src-3.8.5-1480.tgz) = 5661347947d2fcecc183584c8dd65d5336f9ec57cafa03f07cba496ff5eb3cf4 XSIZE (davmail-src-3.8.5-1480.tgz) = 15792785 134e5f21565b001fc03cf5001a7e8f05 echo x - davmail/pkg-descr sed 's/^X//' >davmail/pkg-descr << 'a5ce6b3b5bcd93def89f1f3292cdc23b' XDavMail POP/IMAP/SMTP/Caldav/Carddav/LDAP Exchange Gateway X XDavMail is a POP/IMAP/SMTP/Caldav/Carddav/LDAP exchange gateway Xallowing users to use any mail/calendar client (e.g. Thunderbird Xwith Lightning or Apple iCal) with an Exchange server, even from Xthe internet or behind a firewall through Outlook Web Access. X XWWW: http://davmail.sourceforge.net/ a5ce6b3b5bcd93def89f1f3292cdc23b echo x - davmail/pkg-plist sed 's/^X//' >davmail/pkg-plist << '814cfff6d5031cfa17b28339de39f776' X%%JAVASHAREDIR%%/davmail/lib/slf4j-log4j12-1.3.1.jar X%%JAVASHAREDIR%%/davmail/lib/log4j-1.2.15.jar X%%JAVASHAREDIR%%/davmail/lib/commons-collections-3.1.jar X%%JAVASHAREDIR%%/davmail/lib/junit-3.8.1.jar X%%JAVASHAREDIR%%/davmail/lib/jackrabbit-webdav-1.4.jar X%%JAVASHAREDIR%%/davmail/lib/commons-codec-1.3.jar X%%JAVASHAREDIR%%/davmail/lib/libgrowl-0.2.jar X%%JAVASHAREDIR%%/davmail/lib/mail-1.4.1.jar X%%JAVASHAREDIR%%/davmail/lib/commons-logging-1.0.4.jar X%%JAVASHAREDIR%%/davmail/lib/activation-1.1.jar X%%JAVASHAREDIR%%/davmail/lib/libgrowl.jnilib X%%JAVASHAREDIR%%/davmail/lib/jcifs-1.3.14.jar X%%JAVASHAREDIR%%/davmail/lib/jdom-1.0.jar X%%JAVASHAREDIR%%/davmail/lib/slf4j-api-1.3.1.jar X%%JAVASHAREDIR%%/davmail/lib/htmlcleaner-2.1.jar X%%JAVASHAREDIR%%/davmail/lib/wstx-asl-3.2.7.jar X%%JAVASHAREDIR%%/davmail/lib/xercesImpl-2.8.1.jar X%%JAVASHAREDIR%%/davmail/lib/stax-api-1.0.1.jar X%%JAVASHAREDIR%%/davmail/lib/commons-httpclient-3.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/classes/davmail.properties X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/davmail.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/libgrowl-0.2.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/mail-1.4.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/activation-1.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/junit-3.8.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/jdom-1.0.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/log4j-1.2.15.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/slf4j-api-1.3.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/wstx-asl-3.2.7.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/htmlcleaner-2.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/stax-api-1.0.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/slf4j-log4j12-1.3.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/xercesImpl-2.8.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/jackrabbit-webdav-1.4.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/commons-collections-3.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/commons-httpclient-3.1.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/jcifs-1.3.14.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/commons-codec-1.3.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/lib/commons-logging-1.0.4.jar X%%JAVASHAREDIR%%/davmail/web/WEB-INF/web.xml X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/MacOS/davmail X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/activation-1.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/commons-codec-1.3.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/commons-collections-3.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/commons-httpclient-3.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/commons-logging-1.0.4.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/htmlcleaner-2.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/jackrabbit-webdav-1.4.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/jcifs-1.3.14.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/jdom-1.0.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/junit-3.8.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/libgrowl-0.2.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/libgrowl.jnilib X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/log4j-1.2.15.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/mail-1.4.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/slf4j-api-1.3.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/slf4j-log4j12-1.3.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/stax-api-1.0.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/wstx-asl-3.2.7.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/xercesImpl-2.8.1.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java/davmail.jar X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/tray.icns X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Info.plist X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/PkgInfo X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Info-dock.plist X%%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Info-nodock.plist X%%JAVASHAREDIR%%/davmail/version.txt X%%JAVASHAREDIR%%/davmail/davmail.jar X%%JAVASHAREDIR%%/davmail/davmail.png X%%JAVASHAREDIR%%/davmail/davmail.sh X%%JAVASHAREDIR%%/davmail/davmail.desktop X@dirrm %%JAVASHAREDIR%%/davmail/DavMail.app/Contents/MacOS X@dirrm %%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources/Java X@dirrm %%JAVASHAREDIR%%/davmail/DavMail.app/Contents/Resources X@dirrm %%JAVASHAREDIR%%/davmail/DavMail.app/Contents X@dirrm %%JAVASHAREDIR%%/davmail/DavMail.app X@dirrm %%JAVASHAREDIR%%/davmail/lib X@dirrm %%JAVASHAREDIR%%/davmail/web/WEB-INF/classes X@dirrm %%JAVASHAREDIR%%/davmail/web/WEB-INF/lib X@dirrm %%JAVASHAREDIR%%/davmail/web/WEB-INF X@dirrm %%JAVASHAREDIR%%/davmail/web X@dirrm %%JAVASHAREDIR%%/davmail 814cfff6d5031cfa17b28339de39f776 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 05:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAD191065675 for ; Fri, 29 Oct 2010 05:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 42E9E8FC14 for ; Fri, 29 Oct 2010 05:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T5eAAj031373 for ; Fri, 29 Oct 2010 05:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T5eAKI031372; Fri, 29 Oct 2010 05:40:10 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 05:40:10 GMT Resent-Message-Id: <201010290540.o9T5eAKI031372@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Lars Engels Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 217A8106564A for ; Fri, 29 Oct 2010 05:34:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id E20848FC15 for ; Fri, 29 Oct 2010 05:34:33 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9T5YXBN029807 for ; Fri, 29 Oct 2010 05:34:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9T5YXrF029804; Fri, 29 Oct 2010 05:34:33 GMT (envelope-from nobody) Message-Id: <201010290534.o9T5YXrF029804@www.freebsd.org> Date: Fri, 29 Oct 2010 05:34:33 GMT From: Lars Engels To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151804: [PATCH] update graphics/feh to 1.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 05:40:10 -0000 >Number: 151804 >Category: ports >Synopsis: [PATCH] update graphics/feh to 1.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 05:40:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Lars Engels >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD milhouse.bsd-geek.de 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Thu Oct 28 22:58:11 CEST 2010 root@milhouse.bsd-geek.de:/usr/obj/usr/src/sys/MILHOUSE amd64 >Description: This patch updates graphics/feh to the latest version 1.10. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Nur feh.orig/Makefile feh/Makefile --- feh.orig/Makefile 2010-10-30 07:19:59.047867981 +0200 +++ feh/Makefile 2010-10-30 07:20:11.920860219 +0200 @@ -6,7 +6,7 @@ # PORTNAME= feh -PORTVERSION= 1.8 +PORTVERSION= 1.10 CATEGORIES= graphics MASTER_SITES= http://www.chaosdorf.de/~derf/feh/ \ http://people.freebsd.org/~uqs/distfiles/ diff -Nur feh.orig/distinfo feh/distinfo --- feh.orig/distinfo 2010-10-30 07:19:59.047867981 +0200 +++ feh/distinfo 2010-10-30 07:20:23.193863073 +0200 @@ -1,3 +1,3 @@ -MD5 (feh-1.8.tar.bz2) = fe81334805f4da9b5f1e35b45c444a1a -SHA256 (feh-1.8.tar.bz2) = 9ee3f0d9d1b9704ae0131a3b51c8220e701ebe3d0457ae21122733fae915b0ac -SIZE (feh-1.8.tar.bz2) = 358172 +MD5 (feh-1.10.tar.bz2) = a27d4bdd470099dcd3d59b7c39227162 +SHA256 (feh-1.10.tar.bz2) = 506e4f833a9c5c1eff55c20784b08aee36540c0643d822dbb76fcdbee729812c +SIZE (feh-1.10.tar.bz2) = 2502277 diff -Nur feh.orig/pkg-plist feh/pkg-plist --- feh.orig/pkg-plist 2010-10-30 07:19:59.047867981 +0200 +++ feh/pkg-plist 2010-10-30 07:30:34.449860972 +0200 @@ -1,4 +1,3 @@ -@comment $FreeBSD: ports/graphics/feh/pkg-plist,v 1.8 2010/05/21 15:24:45 uqs Exp $ bin/feh bin/feh-cam bin/gen-cam-menu @@ -14,11 +13,8 @@ %%DATADIR%%/images/menubg_aqua.png %%DATADIR%%/images/menubg_black.png %%DATADIR%%/images/menubg_brushed.png -%%DATADIR%%/images/menubg_chrome.png %%DATADIR%%/images/menubg_default.png -%%DATADIR%%/images/menubg_pastel.png %%DATADIR%%/images/menubg_sky.png -%%DATADIR%%/images/menubg_wood.png @dirrm %%DATADIR%%/images @dirrm %%DATADIR%%/fonts @dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 05:40:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CCCB1065679; Fri, 29 Oct 2010 05:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 51C418FC0C; Fri, 29 Oct 2010 05:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T5eHp5031890; Fri, 29 Oct 2010 05:40:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T5eHqX031881; Fri, 29 Oct 2010 05:40:17 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 05:40:17 GMT Message-Id: <201010290540.o9T5eHqX031881@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, uqs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151804: [PATCH] update graphics/feh to 1.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 05:40:17 -0000 Synopsis: [PATCH] update graphics/feh to 1.10 Responsible-Changed-From-To: freebsd-ports-bugs->uqs Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 05:40:16 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151804 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 07:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDE311065670 for ; Fri, 29 Oct 2010 07:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DBBF58FC15 for ; Fri, 29 Oct 2010 07:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T7eAZ6080784 for ; Fri, 29 Oct 2010 07:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T7eAZS080783; Fri, 29 Oct 2010 07:40:10 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 07:40:10 GMT Message-Id: <201010290740.o9T7eAZS080783@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Laurent LEVIER Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Laurent LEVIER List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 07:40:11 -0000 The following reply was made to PR ports/151699; it has been noted by GNATS. From: Laurent LEVIER To: bug-followup@FreeBSD.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 Date: Fri, 29 Oct 2010 09:32:54 +0200 Hi Edwin, Sorry for late reply, was far far away... That's ok for me. Please thank for me the person who proposed the port update. Brgrds At 21:20 24/10/2010, Edwin Groothuis wrote: >Maintainer of security/hydra, > >Please note that PR ports/151699 has just been submitted. > >If it contains a patch for an upgrade, an enhancement or a bug fix >you agree on, reply to this email stating that you approve the patch >and a committer will take care of it. > >The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/151699 > >-- >Edwin Groothuis via the GNATS Auto Assign Tool >edwin@FreeBSD.org > >-- >Ce message a =E9t=E9 v=E9rifi=E9 par MailScanner >pour des virus ou des polluriels et rien de >suspect n'a =E9t=E9 trouv=E9. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 07:50:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 027F31065672 for ; Fri, 29 Oct 2010 07:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B2D3F8FC18 for ; Fri, 29 Oct 2010 07:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T7o7a9090104 for ; Fri, 29 Oct 2010 07:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T7o7op090103; Fri, 29 Oct 2010 07:50:07 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 07:50:07 GMT Resent-Message-Id: <201010290750.o9T7o7op090103@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eitan Adler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7F0A106566B for ; Fri, 29 Oct 2010 07:49:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 9BCB68FC0A for ; Fri, 29 Oct 2010 07:49:53 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9T7nrIu056701 for ; Fri, 29 Oct 2010 07:49:53 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9T7nrXg056700; Fri, 29 Oct 2010 07:49:53 GMT (envelope-from nobody) Message-Id: <201010290749.o9T7nrXg056700@www.freebsd.org> Date: Fri, 29 Oct 2010 07:49:53 GMT From: Eitan Adler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151806: Remove Legacy 2004 Hack in bsd.port.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 07:50:08 -0000 >Number: 151806 >Category: ports >Synopsis: Remove Legacy 2004 Hack in bsd.port.mk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 07:50:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Eitan Adler >Release: >Organization: >Environment: >Description: I noticed some hacks that were in place in 2004 and I was curious if they were fixed by now, and if so if the hacks should be changed. The attached patch just follows the comments - although I don't know if the specific bug in question is fixed yet CVS blame says that marcus@ added these in r1.475 on 20-Jan-04 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.650 diff -u -r1.650 bsd.port.mk --- bsd.port.mk 13 Oct 2010 09:04:30 -0000 1.650 +++ bsd.port.mk 23 Oct 2010 01:16:05 -0000 @@ -3076,12 +3076,8 @@ @${FALSE} .endif _MLINKS= ${_MLINKS_PREPEND} -# XXX 20040119 This next line should read: -# .for lang in ${MANLANG:S%^%man/%:S%^man/""$%man%} -# but there is currently a bug in make(1) that prevents the double-quote -# substitution from working correctly. Once that problem is addressed, -# and has had a enough time to mature, this hack should be removed. -.for lang in ${MANLANG:S%^%man/%:S%^man/""$%man%:S%^man/"$%man%} + +.for lang in ${MANLANG:S%^%man/%:S%^man/""$%man%} .for ___pmlinks in ${__pmlinks} .for __lang in ${lang} _MLINKS+= ${___pmlinks:S// /g} @@ -3099,12 +3095,7 @@ .endif .endfor -# XXX 20040119 This next line should read: -# .for manlang in ${MANLANG:S%^%man/%:S%^man/""$%man%} -# but there is currently a bug in make(1) that prevents the double-quote -# substitution from working correctly. Once that problem is addressed, -# and has had a enough time to mature, this hack should be removed. -.for manlang in ${MANLANG:S%^%man/%:S%^man/""$%man%:S%^man/"$%man%} +.for manlang in ${MANLANG:S%^%man/%:S%^man/""$%man%} .for sect in 1 2 3 4 5 6 7 8 9 L N # MAN${sect} is for man pages installed for all languages in MANLANG for a given >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 07:50:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1BD5106564A; Fri, 29 Oct 2010 07:50:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B78238FC13; Fri, 29 Oct 2010 07:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T7oCuT090298; Fri, 29 Oct 2010 07:50:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T7oCv9090294; Fri, 29 Oct 2010 07:50:12 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 07:50:12 GMT Message-Id: <201010290750.o9T7oCv9090294@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151806: Remove Legacy 2004 Hack in bsd.port.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 07:50:13 -0000 Synopsis: Remove Legacy 2004 Hack in bsd.port.mk Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 07:50:12 UTC 2010 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151806 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 08:00:20 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E933A1065672 for ; Fri, 29 Oct 2010 08:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 98DE48FC21 for ; Fri, 29 Oct 2010 08:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T80JDe000325 for ; Fri, 29 Oct 2010 08:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T80Jcx000324; Fri, 29 Oct 2010 08:00:19 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 08:00:19 GMT Resent-Message-Id: <201010290800.o9T80Jcx000324@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eitan Adler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 824DE1065670 for ; Fri, 29 Oct 2010 07:52:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 56C728FC12 for ; Fri, 29 Oct 2010 07:52:39 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9T7qdYe057479 for ; Fri, 29 Oct 2010 07:52:39 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9T7qdTA057478; Fri, 29 Oct 2010 07:52:39 GMT (envelope-from nobody) Message-Id: <201010290752.o9T7qdTA057478@www.freebsd.org> Date: Fri, 29 Oct 2010 07:52:39 GMT From: Eitan Adler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151807: Remove Legacy USE_BISON X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 08:00:20 -0000 >Number: 151807 >Category: ports >Synopsis: Remove Legacy USE_BISON >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 08:00:19 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Eitan Adler >Release: >Organization: >Environment: >Description: bsd.port.mk has some code to change USE_BISON=yes to USE_BISON=build When I checked ports I only found two ports that were affected. Attached is a patch to change those two ports and remove the relevant lines from bsd.port.mk >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Mk/bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.650 diff -u -r1.650 bsd.port.mk --- Mk/bsd.port.mk 13 Oct 2010 09:04:30 -0000 1.650 +++ Mk/bsd.port.mk 23 Oct 2010 01:44:19 -0000 @@ -371,8 +371,7 @@ # should not be used in Makefile. ## # USE_BISON - Implies that the port uses bison in one way or another: -# 'yes' (backwards compatibility) - use bison for building -# new features: 'build', 'run', 'both', implying build, +# 'build', 'run', 'both', implying build, # runtime, and both build/run dependencies ## # USE_IMAKE - If set, this port uses imake. @@ -2040,13 +2039,6 @@ .if defined(USE_BISON) _BISON_DEPENDS= bison:${PORTSDIR}/devel/bison -# XXX: backwards compatibility -. if ${USE_BISON:L} == "yes" -USE_BISON= build -pre-everything:: - @${ECHO_MSG} "WARNING: USE_BISON=yes deprecated, use build/run/both" -. endif - . if ${USE_BISON:L} == "build" BUILD_DEPENDS+= ${_BISON_DEPENDS} . elif ${USE_BISON:L} == "run" Index: lang/q/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/q/Makefile,v retrieving revision 1.45 diff -u -r1.45 Makefile --- lang/q/Makefile 24 Jul 2010 19:49:57 -0000 1.45 +++ lang/q/Makefile 23 Oct 2010 01:44:19 -0000 @@ -24,7 +24,7 @@ xslt.2:${PORTSDIR}/textproc/libxslt \ ggi.2:${PORTSDIR}/graphics/libggi -USE_BISON= yes +USE_BISON= build USE_ICONV= yes USE_TK= 84 USE_LDCONFIG= yes Index: x11-wm/i3/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-wm/i3/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- x11-wm/i3/Makefile 29 Jun 2010 16:01:36 -0000 1.11 +++ x11-wm/i3/Makefile 23 Oct 2010 01:44:19 -0000 @@ -21,7 +21,7 @@ yajl.1:${PORTSDIR}/devel/yajl USE_XORG= x11 -USE_BISON= yes +USE_BISON= build USE_XLIB= yes USE_BZIP2= yes USE_GMAKE= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 09:00:21 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC7B810656A5 for ; Fri, 29 Oct 2010 09:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6994C8FC1C for ; Fri, 29 Oct 2010 09:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T90JE5043664 for ; Fri, 29 Oct 2010 09:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T90JeW043646; Fri, 29 Oct 2010 09:00:19 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 09:00:19 GMT Resent-Message-Id: <201010290900.o9T90JeW043646@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Drtina Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCAD81065672 for ; Fri, 29 Oct 2010 08:56:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id A08E48FC0A for ; Fri, 29 Oct 2010 08:56:11 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9T8uAu6025389 for ; Fri, 29 Oct 2010 08:56:10 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9T8uAnQ025383; Fri, 29 Oct 2010 08:56:10 GMT (envelope-from nobody) Message-Id: <201010290856.o9T8uAnQ025383@www.freebsd.org> Date: Fri, 29 Oct 2010 08:56:10 GMT From: Martin Drtina To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151808: courier-authdaemond doesn't respond with error: Cross-device link X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 09:00:21 -0000 >Number: 151808 >Category: ports >Synopsis: courier-authdaemond doesn't respond with error: Cross-device link >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 09:00:18 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Martin Drtina >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD freebsd.lan 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Mon Oct 11 13:17:21 CEST 2010 root@freebsd.lan:/usr/obj/usr/src/sys/FREEBSD amd64 >Description: After I migrate from FBSD 6.4 to 9.0, and rebuild all ports, authdaemond doesn't work correctly. During startup it returns error msg /var/run/authdaemond/socket: Cross-device link and then doesn't respond on auth requests Oct 29 10:45:01 freebsd authdaemond: modules="authmysql authpam", daemons=5 Oct 29 10:45:01 freebsd authdaemond: Installing libauthmysql Oct 29 10:45:01 freebsd authdaemond: Installation complete: authmysql Oct 29 10:45:01 freebsd authdaemond: Installing libauthpam Oct 29 10:45:01 freebsd authdaemond: Installation complete: authpam Oct 29 10:45:01 freebsd authdaemond: /var/run/authdaemond/socket: Cross-device link Oct 29 10:45:01 freebsd authdaemond: /var/run/authdaemond/socket: Cross-device link Oct 29 10:48:20 freebsd imapd: authdaemon: s_connect() failed: No such file or directory Oct 29 10:48:20 freebsd imapd: LOGIN FAILED, user=razzi@doma.narovinu.cz, ip=[::ffff:127.0.0.1] Oct 29 10:48:20 freebsd imapd: authentication error: No such file or directory # ls /var/run/authdaemond pid pid.lock socket.tmp # ls /usr/local/etc/authlib authdaemonrc authdaemonrc.dist authmysqlrc # cat ./authdaemonrc authmodulelist="authmysql authpam" version="authdaemond.mysql" DEBUG_LOGIN=2 daemons=5 # cat ./authmysqlrc MYSQL_SERVER localhost MYSQL_USERNAME postfix MYSQL_PASSWORD ***password*** MYSQL_SOCKET /tmp/mysql.sock MYSQL_DATABASE postfix MYSQL_USER_TABLE users MYSQL_CRYPT_PWFIELD crypt MYSQL_CLEAR_PWFIELD clear MYSQL_UID_FIELD '4000' MYSQL_GID_FIELD '4000' MYSQL_LOGIN_FIELD id MYSQL_HOME_FIELD '/web/mail/' MYSQL_NAME_FIELD name MYSQL_MAILDIR_FIELD maildir MYSQL_WHERE_CLAUSE imapok=1 AND bool1=1 AND bool2=1 What's wrong? Thanks for your advices Martin >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 09:15:31 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A57E1065672; Fri, 29 Oct 2010 09:15:31 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 605018FC1D; Fri, 29 Oct 2010 09:15:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T9FVJV063332; Fri, 29 Oct 2010 09:15:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T9FVom063328; Fri, 29 Oct 2010 09:15:31 GMT (envelope-from linimon) Date: Fri, 29 Oct 2010 09:15:31 GMT Message-Id: <201010290915.o9T9FVom063328@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151807: Remove Legacy USE_BISON in bsd.port.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 09:15:31 -0000 Old Synopsis: Remove Legacy USE_BISON New Synopsis: Remove Legacy USE_BISON in bsd.port.mk Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: linimon Responsible-Changed-When: Fri Oct 29 09:15:07 UTC 2010 Responsible-Changed-Why: will require -exp run. http://www.freebsd.org/cgi/query-pr.cgi?pr=151807 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 09:16:06 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19C661065679; Fri, 29 Oct 2010 09:16:06 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E32C08FC15; Fri, 29 Oct 2010 09:16:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9T9G5ao063421; Fri, 29 Oct 2010 09:16:05 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9T9G5v1063417; Fri, 29 Oct 2010 09:16:05 GMT (envelope-from linimon) Date: Fri, 29 Oct 2010 09:16:05 GMT Message-Id: <201010290916.o9T9G5v1063417@freefall.freebsd.org> To: llevier@argosnet.com, cvs-src@yandex.ru, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151699: [PATCH] security/hydra: update to 5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 09:16:06 -0000 Synopsis: [PATCH] security/hydra: update to 5.8 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Fri Oct 29 09:15:46 UTC 2010 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=151699 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 10:20:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35DC210656A9 for ; Fri, 29 Oct 2010 10:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D30D8FC16 for ; Fri, 29 Oct 2010 10:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TAKA9N029564 for ; Fri, 29 Oct 2010 10:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TAKAw0029563; Fri, 29 Oct 2010 10:20:10 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 10:20:10 GMT Resent-Message-Id: <201010291020.o9TAKAw0029563@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matt Dawson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC5CC106564A for ; Fri, 29 Oct 2010 10:16:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id AAD1B8FC12 for ; Fri, 29 Oct 2010 10:16:13 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TAGDtp009957 for ; Fri, 29 Oct 2010 10:16:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TAGDD6009956; Fri, 29 Oct 2010 10:16:13 GMT (envelope-from nobody) Message-Id: <201010291016.o9TAGDD6009956@www.freebsd.org> Date: Fri, 29 Oct 2010 10:16:13 GMT From: Matt Dawson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151809: [maintainer-update] comms/xlog to 2.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 10:20:11 -0000 >Number: 151809 >Category: ports >Synopsis: [maintainer-update] comms/xlog to 2.0.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 10:20:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Matt Dawson >Release: 8.1-RELEASE >Organization: n/a >Environment: FreeBSD tinderbox 8.1-RELEASE FreeBSD 8.1-RELEASE #1 r210314M: Sat Aug 28 13:41:31 BST 2010 root@tinderbox:/usr/obj/usr/src/sys/TINDERBOX amd64 >Description: [maintainer-update] comms/xlog is out of date. >How-To-Repeat: n/a >Fix: Diff attached Patch attached with submission follows: diff -ruN ./xlog/Makefile ./xlog-devel/Makefile --- ./xlog/Makefile 2010-06-03 09:44:23.000000000 +0100 +++ ./xlog-devel/Makefile 2010-10-28 21:01:27.000000000 +0100 @@ -6,8 +6,7 @@ # PORTNAME= xlog -PORTVERSION= 2.0.3 -PORTREVISION= 3 +PORTVERSION= 2.0.4 CATEGORIES= comms hamradio MASTER_SITES= ${MASTER_SITE_SAVANNAH} \ http://pg4i.chronos.org.uk/download/ \ diff -ruN ./xlog/distinfo ./xlog-devel/distinfo --- ./xlog/distinfo 2009-07-21 23:52:42.000000000 +0100 +++ ./xlog-devel/distinfo 2010-10-28 21:04:48.000000000 +0100 @@ -1,3 +1,3 @@ -MD5 (xlog-2.0.3.tar.gz) = c583ac96e3f1c3873f1030d44333e747 -SHA256 (xlog-2.0.3.tar.gz) = ca12a468d2b10b11adbff365d0731853bfc54d915a342b2e3b712629d092f245 -SIZE (xlog-2.0.3.tar.gz) = 11141993 +MD5 (xlog-2.0.4.tar.gz) = 088d3eae13f0de76e5d59ec072621095 +SHA256 (xlog-2.0.4.tar.gz) = 5136244ce00f5f043535ac9d0acf4df12c04a09cb2bc71f74847e666fc250ef3 +SIZE (xlog-2.0.4.tar.gz) = 11146213 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:03:06 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C37B31065693; Fri, 29 Oct 2010 12:03:06 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 998CC8FC1F; Fri, 29 Oct 2010 12:03:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TC36id044370; Fri, 29 Oct 2010 12:03:06 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TC36bc044366; Fri, 29 Oct 2010 12:03:06 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 12:03:06 GMT Message-Id: <201010291203.o9TC36bc044366@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/151143: math/gcalctool: Simplified Chinese localization error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:03:06 -0000 Synopsis: math/gcalctool: Simplified Chinese localization error Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: pav Responsible-Changed-When: Fri Oct 29 12:02:29 UTC 2010 Responsible-Changed-Why: Assign to maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=151143 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:06:37 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD4DB1065708; Fri, 29 Oct 2010 12:06:37 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A34768FC0A; Fri, 29 Oct 2010 12:06:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TC6bg2044521; Fri, 29 Oct 2010 12:06:37 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TC6bgb044517; Fri, 29 Oct 2010 12:06:37 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 12:06:37 GMT Message-Id: <201010291206.o9TC6bgb044517@freefall.freebsd.org> To: sterling@camdensoftware.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/150608: Mk/bsd.license.mk Add OWL license X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:06:37 -0000 Synopsis: Mk/bsd.license.mk Add OWL license State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Fri Oct 29 12:03:44 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=150608 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:08:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30A42106566C; Fri, 29 Oct 2010 12:08:08 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 075FF8FC1B; Fri, 29 Oct 2010 12:08:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TC87Tq044630; Fri, 29 Oct 2010 12:08:07 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TC87Xk044624; Fri, 29 Oct 2010 12:08:07 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 12:08:07 GMT Message-Id: <201010291208.o9TC87Xk044624@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151733: [PATCH] unbreak biology/tinker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:08:08 -0000 Synopsis: [PATCH] unbreak biology/tinker Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 12:07:55 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151733 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:08:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D806D106566B; Fri, 29 Oct 2010 12:08:23 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AE5EB8FC15; Fri, 29 Oct 2010 12:08:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TC8N6T044681; Fri, 29 Oct 2010 12:08:23 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TC8N8F044677; Fri, 29 Oct 2010 12:08:23 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 12:08:23 GMT Message-Id: <201010291208.o9TC8N8F044677@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151734: [PATCH] unbreak net-mgmt/nipper X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:08:23 -0000 Synopsis: [PATCH] unbreak net-mgmt/nipper Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 12:08:11 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151734 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:08:47 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFAA5106566B; Fri, 29 Oct 2010 12:08:47 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B61728FC19; Fri, 29 Oct 2010 12:08:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TC8lrZ044732; Fri, 29 Oct 2010 12:08:47 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TC8lKh044728; Fri, 29 Oct 2010 12:08:47 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 12:08:47 GMT Message-Id: <201010291208.o9TC8lKh044728@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151735: [PATCH] unbreak news/ija X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:08:48 -0000 Synopsis: [PATCH] unbreak news/ija Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 12:08:30 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151735 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:09:29 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66BD9106566C; Fri, 29 Oct 2010 12:09:29 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3CD858FC18; Fri, 29 Oct 2010 12:09:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TC9Tk8044783; Fri, 29 Oct 2010 12:09:29 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TC9TAs044779; Fri, 29 Oct 2010 12:09:29 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 12:09:29 GMT Message-Id: <201010291209.o9TC9TAs044779@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151484: [patch] update+unbreak chinese/pcmanx 0.3.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:09:29 -0000 Synopsis: [patch] update+unbreak chinese/pcmanx 0.3.9 Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 12:09:18 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151484 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:10:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A56B31065674 for ; Fri, 29 Oct 2010 12:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 667958FC19 for ; Fri, 29 Oct 2010 12:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCABPU044819 for ; Fri, 29 Oct 2010 12:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCABvl044818; Fri, 29 Oct 2010 12:10:11 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 12:10:11 GMT Resent-Message-Id: <201010291210.o9TCABvl044818@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aliaksandr Zahatski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A31CE1065698 for ; Fri, 29 Oct 2010 12:02:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 868C48FC2D for ; Fri, 29 Oct 2010 12:02:13 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TC2DMI006369 for ; Fri, 29 Oct 2010 12:02:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TC2D5D006368; Fri, 29 Oct 2010 12:02:13 GMT (envelope-from nobody) Message-Id: <201010291202.o9TC2D5D006368@www.freebsd.org> Date: Fri, 29 Oct 2010 12:02:13 GMT From: Aliaksandr Zahatski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151810: [PATCH] lang/rakudo update to October 2010 release of "Rakudo Star" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:10:11 -0000 >Number: 151810 >Category: ports >Synopsis: [PATCH] lang/rakudo update to October 2010 release of "Rakudo Star" >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 12:10:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Aliaksandr Zahatski >Release: >Organization: >Environment: >Description: Update to October 2010 release of "Rakudo Star" >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/lang/rakudo/Makefile rakudo/Makefile --- /usr/ports/lang/rakudo/Makefile 2010-10-10 13:40:12.000000000 +0400 +++ rakudo/Makefile 2010-10-29 16:01:24.000000000 +0400 @@ -2,11 +2,11 @@ # Date created: 15 March 2009 # Whom: Aliaksandr Zahatski # -# $FreeBSD: ports/lang/rakudo/Makefile,v 1.18 2010/10/10 09:40:12 pgollucci Exp $ +# $FreeBSD: ports/lang/rakudo/Makefile,v 1.15 2010/08/02 12:51:04 skv Exp $ # PORTNAME= rakudo -PORTVERSION= 2010.09 +PORTVERSION= 2010.10 PORTEPOCH= 1 CATEGORIES= lang MASTER_SITES= http://cloud.github.com/downloads/rakudo/star/ diff -urN /usr/ports/lang/rakudo/distinfo rakudo/distinfo --- /usr/ports/lang/rakudo/distinfo 2010-10-10 11:07:34.000000000 +0400 +++ rakudo/distinfo 2010-10-29 15:27:11.000000000 +0400 @@ -1,3 +1,3 @@ -MD5 (rakudo-star-2010.09.tar.gz) = 01ffd955e2c407cb77fa4c565d6aca98 -SHA256 (rakudo-star-2010.09.tar.gz) = 31377b6fe41b917ac9ea5196bac131af7ca5ede3373c68e34058653f097bfdcb -SIZE (rakudo-star-2010.09.tar.gz) = 5895268 +MD5 (rakudo-star-2010.10.tar.gz) = 02b426572fe2f42514940f485bcf1d91 +SHA256 (rakudo-star-2010.10.tar.gz) = bab726416d8267e879f6c19e90849d93ec170a6ea2a5f285abed7561a23c3f55 +SIZE (rakudo-star-2010.10.tar.gz) = 5929177 diff -urN /usr/ports/lang/rakudo/pkg-plist rakudo/pkg-plist --- /usr/ports/lang/rakudo/pkg-plist 2010-10-10 13:40:12.000000000 +0400 +++ rakudo/pkg-plist 2010-10-29 15:46:57.000000000 +0400 @@ -4,6 +4,10 @@ lib/parrot/%%PARROT_VERSION%%/dynext/perl6_ops.so lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Algorithm/Viterbi.pir lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Algorithm/Viterbi.pm +lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Config/INI.pir +lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Config/INI.pm +lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Config/INI/Writer.pir +lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Config/INI/Writer.pm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Digest/MD5.pir lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Digest/MD5.pm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/File/Copy.pir @@ -93,9 +97,11 @@ %%DOCSDIR%%/README %%DOCSDIR%%/ROADMAP %%DOCSDIR%%/S11-Modules-proposal.pod +%%DOCSDIR%%/UsingPerl6-draft.pdf %%DOCSDIR%%/announce/CREDITS %%DOCSDIR%%/announce/LICENSE %%DOCSDIR%%/announce/README +%%DOCSDIR%%/cheatsheet.txt @dirrm %%DOCSDIR%%/announce @dirrm %%DOCSDIR%% @dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/YAML @@ -115,6 +121,8 @@ @dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Form @dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/File @dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Digest +@dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Config/INI +@dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Config @dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib/Algorithm @dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6/lib @dirrm lib/parrot/%%PARROT_VERSION%%/languages/perl6 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:10:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11451106566B for ; Fri, 29 Oct 2010 12:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C69138FC1A for ; Fri, 29 Oct 2010 12:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCABS9044828 for ; Fri, 29 Oct 2010 12:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCABtF044827; Fri, 29 Oct 2010 12:10:11 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 12:10:11 GMT Resent-Message-Id: <201010291210.o9TCABtF044827@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aliaksandr Zahatski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEEFF106566B for ; Fri, 29 Oct 2010 12:02:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C15DA8FC27 for ; Fri, 29 Oct 2010 12:02:56 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TC2uA1006552 for ; Fri, 29 Oct 2010 12:02:56 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TC2uQA006549; Fri, 29 Oct 2010 12:02:56 GMT (envelope-from nobody) Message-Id: <201010291202.o9TC2uQA006549@www.freebsd.org> Date: Fri, 29 Oct 2010 12:02:56 GMT From: Aliaksandr Zahatski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151811: [PATCH] lang/parrot update port to 2.9.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:10:12 -0000 >Number: 151811 >Category: ports >Synopsis: [PATCH] lang/parrot update port to 2.9.1 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 12:10:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Aliaksandr Zahatski >Release: >Organization: >Environment: >Description: Update lang/parrot port to Parrot 2.9.1 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/lang/parrot/Makefile parrot/Makefile --- /usr/ports/lang/parrot/Makefile 2010-10-10 11:07:13.000000000 +0400 +++ parrot/Makefile 2010-10-29 14:34:10.000000000 +0400 @@ -2,14 +2,14 @@ # Date created: 15 April 2005 # Whom: Sergey Skvortsov # -# $FreeBSD: ports/lang/parrot/Makefile,v 1.50 2010/10/10 07:07:13 pgollucci Exp $ +# $FreeBSD: ports/lang/parrot/Makefile,v 1.45 2010/04/19 10:43:29 ale Exp $ # PORTNAME= parrot PORTVERSION= ${PARROT_VERSION} -PORTREVISION= 1 + CATEGORIES= lang -MASTER_SITES= ftp://ftp.parrot.org/pub/parrot/releases/devel/${PORTVERSION}/ +MASTER_SITES= ftp://ftp.parrot.org/pub/parrot/releases/stable/${PORTVERSION}/ MAINTAINER= perl@FreeBSD.org COMMENT= Parrot - virtual machine for dynamic languages diff -urN /usr/ports/lang/parrot/Makefile.common parrot/Makefile.common --- /usr/ports/lang/parrot/Makefile.common 2010-10-10 11:07:13.000000000 +0400 +++ parrot/Makefile.common 2010-10-29 14:06:07.000000000 +0400 @@ -1,4 +1,4 @@ -# $FreeBSD: ports/lang/parrot/Makefile.common,v 1.10 2010/10/10 07:07:13 pgollucci Exp $ +# $FreeBSD$ -PARROT_VERSION= 2.8.0 +PARROT_VERSION= 2.9.1 diff -urN /usr/ports/lang/parrot/distinfo parrot/distinfo --- /usr/ports/lang/parrot/distinfo 2010-10-10 11:07:13.000000000 +0400 +++ parrot/distinfo 2010-10-29 14:06:08.000000000 +0400 @@ -1,3 +1,3 @@ -MD5 (parrot-2.8.0.tar.bz2) = fdc171a024d6c17f05b1a406b86be859 -SHA256 (parrot-2.8.0.tar.bz2) = 56391edc0914d17a698004fe68d4ad1c4a44141b79834efa69957df7dbde9082 -SIZE (parrot-2.8.0.tar.bz2) = 3349020 +MD5 (parrot-2.9.1.tar.bz2) = 2b78b855270dc53c0001da64bd5c1ccf +SHA256 (parrot-2.9.1.tar.bz2) = 0617c2fa9e86c0a6cfea3db75f4549bbdc37b7d9d8874ea8eabcb53044beae06 +SIZE (parrot-2.9.1.tar.bz2) = 3360641 diff -urN /usr/ports/lang/parrot/pkg-plist parrot/pkg-plist --- /usr/ports/lang/parrot/pkg-plist 2010-10-10 11:07:13.000000000 +0400 +++ parrot/pkg-plist 2010-10-29 14:31:48.000000000 +0400 @@ -47,6 +47,7 @@ include/parrot/%%PARROT_VER%%/parrot/io_win32.h include/parrot/%%PARROT_VER%%/parrot/key.h include/parrot/%%PARROT_VER%%/parrot/library.h +include/parrot/%%PARROT_VER%%/parrot/list.h include/parrot/%%PARROT_VER%%/parrot/longopt.h include/parrot/%%PARROT_VER%%/parrot/memory.h include/parrot/%%PARROT_VER%%/parrot/misc.h @@ -144,8 +145,6 @@ include/parrot/%%PARROT_VER%%/pmc/pmc_packfileconstanttable.h include/parrot/%%PARROT_VER%%/pmc/pmc_packfiledebug.h include/parrot/%%PARROT_VER%%/pmc/pmc_packfiledirectory.h -include/parrot/%%PARROT_VER%%/pmc/pmc_packfilefixupentry.h -include/parrot/%%PARROT_VER%%/pmc/pmc_packfilefixuptable.h include/parrot/%%PARROT_VER%%/pmc/pmc_packfilerawsegment.h include/parrot/%%PARROT_VER%%/pmc/pmc_packfilesegment.h include/parrot/%%PARROT_VER%%/pmc/pmc_parrotinterpreter.h @@ -608,8 +607,6 @@ src/parrot/%%PARROT_VER%%/pmc/packfileconstanttable.dump src/parrot/%%PARROT_VER%%/pmc/packfiledebug.dump src/parrot/%%PARROT_VER%%/pmc/packfiledirectory.dump -src/parrot/%%PARROT_VER%%/pmc/packfilefixupentry.dump -src/parrot/%%PARROT_VER%%/pmc/packfilefixuptable.dump src/parrot/%%PARROT_VER%%/pmc/packfilerawsegment.dump src/parrot/%%PARROT_VER%%/pmc/packfilesegment.dump src/parrot/%%PARROT_VER%%/pmc/parrotinterpreter.dump >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:10:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F27B10656A9 for ; Fri, 29 Oct 2010 12:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7D8798FC1B for ; Fri, 29 Oct 2010 12:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCAEMI044898 for ; Fri, 29 Oct 2010 12:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCAElf044897; Fri, 29 Oct 2010 12:10:14 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 12:10:14 GMT Message-Id: <201010291210.o9TCAElf044897@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/150608: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:10:14 -0000 The following reply was made to PR ports/150608; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/150608: commit references a PR Date: Fri, 29 Oct 2010 12:06:20 +0000 (UTC) pav 2010-10-29 12:06:14 UTC FreeBSD ports repository Modified files: Mk bsd.licenses.db.mk Log: - Add the Open Works License (OWL, http://sob.apotheon.org) to the list of known licenses with auto-acceptance. The OWL is a copyfree license similar to the BSD and MIT licenses. PR: ports/150608 Submitted by: Sterling Camden Revision Changes Path 1.7 +5 -2 ports/Mk/bsd.licenses.db.mk _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:10:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3E0310656FF; Fri, 29 Oct 2010 12:10:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B93FF8FC08; Fri, 29 Oct 2010 12:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCAHrB045191; Fri, 29 Oct 2010 12:10:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCAHTc045180; Fri, 29 Oct 2010 12:10:17 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 12:10:17 GMT Message-Id: <201010291210.o9TCAHTc045180@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151810: [PATCH] lang/rakudo update to October 2010 release of "Rakudo Star" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:10:18 -0000 Synopsis: [PATCH] lang/rakudo update to October 2010 release of "Rakudo Star" Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 12:10:17 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151810 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:10:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F4D41065672; Fri, 29 Oct 2010 12:10:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CBDBE8FC28; Fri, 29 Oct 2010 12:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCAMS7045715; Fri, 29 Oct 2010 12:10:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCAMpi045708; Fri, 29 Oct 2010 12:10:22 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 12:10:22 GMT Message-Id: <201010291210.o9TCAMpi045708@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151811: [PATCH] lang/parrot update port to 2.9.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:10:23 -0000 Synopsis: [PATCH] lang/parrot update port to 2.9.1 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 12:10:22 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151811 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:10:53 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE3421065742; Fri, 29 Oct 2010 12:10:53 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 929718FC0C; Fri, 29 Oct 2010 12:10:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCAr1t049856; Fri, 29 Oct 2010 12:10:53 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCArDE049847; Fri, 29 Oct 2010 12:10:53 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 12:10:53 GMT Message-Id: <201010291210.o9TCArDE049847@freefall.freebsd.org> To: sterling@camdensoftware.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/151087: sysutils/pcpustat: Update Makefile to be compatible with PR ports/150608 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:10:53 -0000 Synopsis: sysutils/pcpustat: Update Makefile to be compatible with PR ports/150608 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Fri Oct 29 12:08:07 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151087 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:16:51 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 471C81065674; Fri, 29 Oct 2010 12:16:51 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B5C38FC12; Fri, 29 Oct 2010 12:16:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCGoCh055618; Fri, 29 Oct 2010 12:16:50 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCGomP055614; Fri, 29 Oct 2010 12:16:50 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 12:16:50 GMT Message-Id: <201010291216.o9TCGomP055614@freefall.freebsd.org> To: echotty3@gmail.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/150895: astro/stellarium and games/viruskiller [Segmentation fault] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:16:51 -0000 Synopsis: astro/stellarium and games/viruskiller [Segmentation fault] State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Fri Oct 29 12:15:26 UTC 2010 State-Changed-Why: PRs are not support tickets http://www.freebsd.org/cgi/query-pr.cgi?pr=150895 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:20:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C92E106566C for ; Fri, 29 Oct 2010 12:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 305908FC0C for ; Fri, 29 Oct 2010 12:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCKBdg055914 for ; Fri, 29 Oct 2010 12:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCKBRF055913; Fri, 29 Oct 2010 12:20:11 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 12:20:11 GMT Message-Id: <201010291220.o9TCKBRF055913@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151087: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:20:11 -0000 The following reply was made to PR ports/151087; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151087: commit references a PR Date: Fri, 29 Oct 2010 12:10:41 +0000 (UTC) pav 2010-10-29 12:10:35 UTC FreeBSD ports repository Modified files: sysutils/pcpustat Makefile Removed files: sysutils/pcpustat/files license.txt Log: - OWL is now a Mk-defined license PR: ports/151087 Submitted by: Sterling Camden (maintainer) Revision Changes Path 1.4 +0 -4 ports/sysutils/pcpustat/Makefile 1.2 +0 -25 ports/sysutils/pcpustat/files/license.txt (dead) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:25:35 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFBBF106566C; Fri, 29 Oct 2010 12:25:35 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 84C998FC1C; Fri, 29 Oct 2010 12:25:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCPZS7065105; Fri, 29 Oct 2010 12:25:35 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCPY0R065101; Fri, 29 Oct 2010 12:25:34 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 12:25:34 GMT Message-Id: <201010291225.o9TCPY0R065101@freefall.freebsd.org> To: leo@mediatomb.cc, rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/149305: Small security fix and transcoding profile fix to net/mediatomb port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:25:35 -0000 Synopsis: Small security fix and transcoding profile fix to net/mediatomb port Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 12:24:55 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=149305 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:27:24 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECDE41065694; Fri, 29 Oct 2010 12:27:24 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C26188FC0A; Fri, 29 Oct 2010 12:27:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCRO7P065216; Fri, 29 Oct 2010 12:27:24 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCROqd065212; Fri, 29 Oct 2010 12:27:24 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 12:27:24 GMT Message-Id: <201010291227.o9TCROqd065212@freefall.freebsd.org> To: melifaro@ipfw.ru, rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/150146: [PATCH] net/igmpproxy: fix rc script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:27:25 -0000 Synopsis: [PATCH] net/igmpproxy: fix rc script Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 12:27:10 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=150146 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:30:54 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B4C41065673; Fri, 29 Oct 2010 12:30:54 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2ABC88FC0C; Fri, 29 Oct 2010 12:30:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCUrr0069867; Fri, 29 Oct 2010 12:30:53 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCUrfP069788; Fri, 29 Oct 2010 12:30:53 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 12:30:53 GMT Message-Id: <201010291230.o9TCUrfP069788@freefall.freebsd.org> To: moiseev@mezonplus.ru, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/150881: [patch] sysutils/backuppc: remove %%RC_SUBR%%, etc. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:30:54 -0000 Synopsis: [patch] sysutils/backuppc: remove %%RC_SUBR%%, etc. State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Fri Oct 29 12:17:14 UTC 2010 State-Changed-Why: Hi, I have committed the changes expect for the pkg-plist change. I cannot agree to that change (it would leave files behind on deinstall). Also the configure.pl script is not invoked at all when adding from package. Maybe you could rework the port to not invoke configure.pl script at all and leave it to the administrator as a manual post-install step? Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Fri Oct 29 12:17:14 UTC 2010 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=150881 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:32:54 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3303D1065672; Fri, 29 Oct 2010 12:32:54 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0910B8FC19; Fri, 29 Oct 2010 12:32:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCWrsl075925; Fri, 29 Oct 2010 12:32:53 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCWrEU075921; Fri, 29 Oct 2010 12:32:53 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 12:32:53 GMT Message-Id: <201010291232.o9TCWrEU075921@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151473: [maintainer-update] www/squidguard: fix ldap support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:32:54 -0000 Synopsis: [maintainer-update] www/squidguard: fix ldap support Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 12:32:31 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151473 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 12:36:51 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF01C10656D1; Fri, 29 Oct 2010 12:36:51 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B49408FC20; Fri, 29 Oct 2010 12:36:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TCap87077323; Fri, 29 Oct 2010 12:36:51 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TCapta077319; Fri, 29 Oct 2010 12:36:51 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 12:36:51 GMT Message-Id: <201010291236.o9TCapta077319@freefall.freebsd.org> To: rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/151574: [PATCH] audio/darkice: AACPLUS Fixed failed to produce a single option is specified X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 12:36:52 -0000 Synopsis: [PATCH] audio/darkice: AACPLUS Fixed failed to produce a single option is specified Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 12:36:38 UTC 2010 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=151574 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:06:52 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 112B210656C6; Fri, 29 Oct 2010 13:06:52 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD2738FC17; Fri, 29 Oct 2010 13:06:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TD6plC008502; Fri, 29 Oct 2010 13:06:51 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TD6pWa008498; Fri, 29 Oct 2010 13:06:51 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 13:06:51 GMT Message-Id: <201010291306.o9TD6pWa008498@freefall.freebsd.org> To: matt@chronos.org.uk, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/151809: [maintainer-update] comms/xlog to 2.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:06:52 -0000 Synopsis: [maintainer-update] comms/xlog to 2.0.4 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Fri Oct 29 12:31:29 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151809 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:08:33 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11D841065673; Fri, 29 Oct 2010 13:08:33 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DB7CA8FC12; Fri, 29 Oct 2010 13:08:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TD8Wsd008583; Fri, 29 Oct 2010 13:08:32 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TD8WZk008579; Fri, 29 Oct 2010 13:08:32 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 13:08:32 GMT Message-Id: <201010291308.o9TD8WZk008579@freefall.freebsd.org> To: matt@chronos.org.uk, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/151667: [maintainer-update] comms/gpredict to v1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:08:33 -0000 Synopsis: [maintainer-update] comms/gpredict to v1.2 State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Fri Oct 29 13:06:59 UTC 2010 State-Changed-Why: Is the lib/locale path for gettext files correct? Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Fri Oct 29 13:06:59 UTC 2010 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=151667 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:10:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7BF0106566C for ; Fri, 29 Oct 2010 13:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A5E8F8FC13 for ; Fri, 29 Oct 2010 13:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TDACD7008685 for ; Fri, 29 Oct 2010 13:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TDACmT008683; Fri, 29 Oct 2010 13:10:12 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 13:10:12 GMT Message-Id: <201010291310.o9TDACmT008683@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151809: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:10:12 -0000 The following reply was made to PR ports/151809; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151809: commit references a PR Date: Fri, 29 Oct 2010 13:06:47 +0000 (UTC) pav 2010-10-29 13:06:41 UTC FreeBSD ports repository Modified files: comms/xlog Makefile distinfo Log: - Update to 2.0.4 PR: ports/151809 Submitted by: Matt Dawson (maintainer) Revision Changes Path 1.49 +1 -2 ports/comms/xlog/Makefile 1.21 +3 -3 ports/comms/xlog/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:10:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5B82106564A for ; Fri, 29 Oct 2010 13:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8707A8FC15 for ; Fri, 29 Oct 2010 13:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TDAECg008698 for ; Fri, 29 Oct 2010 13:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TDAEBI008697; Fri, 29 Oct 2010 13:10:14 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 13:10:14 GMT Message-Id: <201010291310.o9TDAEBI008697@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: wen heping Cc: Subject: Re: ports/151464: Update of net-mgmt/collectd due to new release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: wen heping List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:10:14 -0000 The following reply was made to PR ports/151464; it has been noted by GNATS. From: wen heping To: bug-followup@FreeBSD.org, ports@bsdserwis.com Cc: Subject: Re: ports/151464: Update of net-mgmt/collectd due to new release Date: Fri, 29 Oct 2010 21:08:57 +0800 Hi, The build failed on my box, below is the build log, would you fix it ? Regards, wen building collectd-4.9.3 in directory /usr/local/tinderbox/9.0-FreeBSD build started at Fri Oct 29 09:25:20 UTC 2010 port directory: /usr/ports/net-mgmt/collectd building for: 9.0-CURRENT i386 maintained by: ports@bsdserwis.com Makefile ident: $FreeBSD: ports/net-mgmt/collectd/Makefile,v 1.16 2010/07/22 14:41:03 wxs Exp $ prefixes: LOCALBASE=usr/local PREFIX=/usr/local Begin Configuration: ---Begin Environment--- ARCH=i386 PACKAGE_BUILDING=1 USER=root CCACHE_DIR= BRANCH=CURRENT CCACHE_NOLINK=1 HOST_WORKDIR= BATCH=1 OLDPWD=/ HOME=/root PKGZIPCMD=bzip2 HAVE_MOTIF=1 FTP_TIMEOUT=900 HTTP_TIMEOUT=900 defaultUpdateHost=cvsup.FreeBSDChina.org pb=/usr/local/tinderbox DISTFILE_CACHE=/usr/ports/distfiles OSREL=9.0 defaultUpdateType=CSUP TINDERD_LOGFILE=/dev/null PORTOBJFORMAT=elf WRKDIRPREFIX=/work DISTDIR=/tmp/distfiles DISTCACHE=/distcache CCACHE_LOGFILE= PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin PACKAGES=/tmp/packages TIMEOUT=7200 PKGSUFFIX=.tbz OSVERSION=900021 OPTIONS_ENABLED=0 __DSVERSION__=3.2 TINDERD_SLEEPTIME=120 UNAME_n=tinderbox.host __MKLVL__=1 CCACHE_JAIL=0 LOCALBASE=/usr/local CCACHE_MAX_SIZE=1G DISTFILE_URI= X_WINDOW_SYSTEM=xorg MASTER_SITE_OVERRIDE=file:///distcache/${DIST_SUBDIR}/ OPTIONS_DIR= UNAME_r=9.0-CURRENT USA_RESIDENT=YES UNAME_s=FreeBSD PARALLEL_PACKAGE_BUILD=1 PWD=/usr/ports/net-mgmt/collectd UNAME_v=FreeBSD 9.0-CURRENT #0: Fri Oct 29 17:06:59 CST 2010 root@tinderbox.host:/usr/src/sys/magic/kernel/path FTP_PASSIVE_MODE=yes CCACHE_ENABLED=0 INDEXFILE=INDEX-9 ---End Environment--- ---Begin OPTIONS List--- ===> The following configuration options are available for collectd-4.9.3: CGI=Off (default) "Install collection.cgi (requires RRDTOOL)" BIND=On (default) "Enable BIND 9.5+ statistics" DEBUG=Off (default) "Enable debugging" APACHE=Off (default) "Input: Apache mod_status (libcurl)" APCUPS=Off (default) "Input: APC UPS (apcupsd)" CURL=Off (default) "Input: CURL generic web statistics" DBI=Off (default) "Input: database abstraction library" NUTUPS=Off (default) "Input: NUT UPS daemon" INTERFACE=On (default) "Input: Network interfaces (libstatgrab)" MBMON=Off (default) "Input: MBMon" MYSQL=Off (default) "Input: MySQL" NGINX=Off (default) "Input: Nginx" OPENVPN=Off (default) "Input: OpenVPN statistics" PDNS=Off (default) "Input: PowerDNS" PGSQL=Off (default) "Input: PostgreSQL" PING=On (default) "Input: Network latency (liboping)" SNMP=On (default) "Input: SNMP" XMMS=Off (default) "Input: XMMS" RRDTOOL=On (default) "Output: RRDTool" ===> Use 'make config' to modify these settings ---End OPTIONS List--- End Configuration. FETCH_DEPENDS= PATCH_DEPENDS= EXTRACT_DEPENDS= BUILD_DEPENDS=pkg-config-0.25_1.tbz gettext-0.18.1.1.tbz libiconv-1.13.1_1.tbz gmake-3.81_4.tbz libstatgrab-0.17.tbz liboping-0.3.5.tbz freetype2-2.4.2.tbz cairo-1.8.10_1,1.tbz png-1.4.3.tbz libxml2-2.7.7.tbz pango-1.28.1.tbz perl-5.10.1_2.tbz fontconfig-2.8.0,1.tbz pixman-0.16.6.tbz xcb-util-0.3.6_1.tbz libXrender-0.9.5.tbz glib-2.24.2.tbz xorg-fonts-truetype-7.5.tbz encodings-1.0.3,1.tbz gobject-introspection-0.6.14.tbz libXft-2.1.14.tbz gio-fam-backend-2.24.2.tbz expat-2.0.1_1.tbz libxcb-1.7.tbz libXau-1.0.5.tbz libXdmcp-1.0.3.tbz renderproto-0.11.tbz libX11-1.3.3_1,1.tbz xproto-7.0.16.tbz pcre-8.10.tbz python26-2.6.6.tbz font-bh-ttf-1.0.1.tbz font-misc-meltho-1.0.1.tbz font-misc-ethiopic-1.0.1.tbz bitstream-vera-1.10_4.tbz font-util-1.0.2.tbz libffi-3.0.9.tbz bison-2.4.3,1.tbz gamin-0.1.10_4.tbz libpthread-stubs-0.3_3.tbz kbproto-1.0.4.tbz mkfontdir-1.0.5.tbz mkfontscale-1.0.7.tbz m4-1.4.15,1.tbz libfontenc-1.0.5.tbz rrdtool-1.4.4.tbz net-snmp-5.5_4.tbz libltdl-2.2.10.tbz RUN_DEPENDS=pkg-config-0.25_1.tbz libstatgrab-0.17.tbz liboping-0.3.5.tbz freetype2-2.4.2.tbz cairo-1.8.10_1,1.tbz png-1.4.3.tbz libxml2-2.7.7.tbz pango-1.28.1.tbz perl-5.10.1_2.tbz fontconfig-2.8.0,1.tbz pixman-0.16.6.tbz xcb-util-0.3.6_1.tbz libXrender-0.9.5.tbz libiconv-1.13.1_1.tbz gettext-0.18.1.1.tbz glib-2.24.2.tbz xorg-fonts-truetype-7.5.tbz encodings-1.0.3,1.tbz gobject-introspection-0.6.14.tbz libXft-2.1.14.tbz gio-fam-backend-2.24.2.tbz expat-2.0.1_1.tbz libxcb-1.7.tbz libXau-1.0.5.tbz libXdmcp-1.0.3.tbz renderproto-0.11.tbz libX11-1.3.3_1,1.tbz xproto-7.0.16.tbz pcre-8.10.tbz python26-2.6.6.tbz font-bh-ttf-1.0.1.tbz font-misc-meltho-1.0.1.tbz font-misc-ethiopic-1.0.1.tbz bitstream-vera-1.10_4.tbz font-util-1.0.2.tbz libffi-3.0.9.tbz bison-2.4.3,1.tbz gamin-0.1.10_4.tbz libpthread-stubs-0.3_3.tbz kbproto-1.0.4.tbz mkfontdir-1.0.5.tbz mkfontscale-1.0.7.tbz m4-1.4.15,1.tbz libfontenc-1.0.5.tbz rrdtool-1.4.4.tbz net-snmp-5.5_4.tbz libltdl-2.2.10.tbz add_pkg ================================================================ ======================================== ===> License check disabled, port has not defined LICENSE => collectd-4.9.3.tar.gz doesn't seem to exist in /tmp/distfiles/. => Attempting to fetch from file:///distcache//. collectd-4.9.3.tar.gz 1653 kB 13 MBps => MD5 Checksum OK for collectd-4.9.3.tar.gz. => SHA256 Checksum OK for collectd-4.9.3.tar.gz. ================================================================ ======================================== add_pkg ===> License check disabled, port has not defined LICENSE ===> Extracting for collectd-4.9.3 => MD5 Checksum OK for collectd-4.9.3.tar.gz. => SHA256 Checksum OK for collectd-4.9.3.tar.gz. ================================================================ ======================================== add_pkg ===> Patching for collectd-4.9.3 ===> Applying FreeBSD patches for collectd-4.9.3 ================================================================ ======================================== add_pkg pkg-config-0.25_1.tbz gettext-0.18.1.1.tbz libiconv-1.13.1_1.tbz gmake-3.81_4.tbz libstatgrab-0.17.tbz liboping-0.3.5.tbz freetype2-2.4.2.tbz cairo-1.8.10_1,1.tbz png-1.4.3.tbz libxml2-2.7.7.tbz pango-1.28.1.tbz perl-5.10.1_2.tbz fontconfig-2.8.0,1.tbz pixman-0.16.6.tbz xcb-util-0.3.6_1.tbz libXrender-0.9.5.tbz glib-2.24.2.tbz xorg-fonts-truetype-7.5.tbz encodings-1.0.3,1.tbz gobject-introspection-0.6.14.tbz libXft-2.1.14.tbz gio-fam-backend-2.24.2.tbz expat-2.0.1_1.tbz libxcb-1.7.tbz libXau-1.0.5.tbz libXdmcp-1.0.3.tbz renderproto-0.11.tbz libX11-1.3.3_1,1.tbz xproto-7.0.16.tbz pcre-8.10.tbz python26-2.6.6.tbz font-bh-ttf-1.0.1.tbz font-misc-meltho-1.0.1.tbz font-misc-ethiopic-1.0.1.tbz bitstream-vera-1.10_4.tbz font-util-1.0.2.tbz libffi-3.0.9.tbz bison-2.4.3,1.tbz gamin-0.1.10_4.tbz libpthread-stubs-0.3_3.tbz kbproto-1.0.4.tbz mkfontdir-1.0.5.tbz mkfontscale-1.0.7.tbz m4-1.4.15,1.tbz libfontenc-1.0.5.tbz rrdtool-1.4.4.tbz net-snmp-5.5_4.tbz libltdl-2.2.10.tbz adding dependencies pkg_add pkg-config-0.25_1.tbz pkg_add gettext-0.18.1.1.tbz pkg_add libiconv-1.13.1_1.tbz skipping libiconv-1.13.1_1, already added pkg_add gmake-3.81_4.tbz pkg_add libstatgrab-0.17.tbz pkg_add liboping-0.3.5.tbz pkg_add freetype2-2.4.2.tbz pkg_add cairo-1.8.10_1,1.tbz Running fc-cache to build fontconfig cache... /usr/local/lib/X11/fonts: caching, new cache contents: 0 fonts, 1 dirs /usr/local/lib/X11/fonts/local: caching, new cache contents: 0 fonts, 0 dirs /root/.fonts: skipping, no such directory /var/db/fontconfig: cleaning cache directory /root/.fontconfig: not cleaning non-existent cache directory fc-cache: succeeded ***************************************************************** Although libxcb can yield dramatic improvements in speed, memory footprint, and responsiveness, and will probably become the default Xlib for X.org/freedesktop.org, it is still experimental software. Some broken callers will abort() on locking assertion failures. As a temporary workaround, set LIBXCB_ALLOW_SLOPPY_LOCK in your environment to skip the abort(). This may result in noisy stacktrace printing. ***************************************************************** pkg_add png-1.4.3.tbz skipping png-1.4.3, already added pkg_add libxml2-2.7.7.tbz pkg_add pango-1.28.1.tbz ==== Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. ==== Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.10.1 to /usr/bin/perl Symlinking /usr/local/bin/perl5.10.1 to /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Spamming /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Spamming /etc/manpath.config... Done. /var/tmp/instmp.xFAWUL/lib/X11/fonts/bitstream-vera: caching, new cache contents: 10 fonts, 0 dirs /var/db/fontconfig: cleaning cache directory /var/db/fontconfig: invalid cache file: deea84fa067eec67b69dab1b2344175b-le32d4.cache-3 /root/.fontconfig: not cleaning non-existent cache directory /usr/local/bin/fc-cache: succeeded IMPORTANT - READ CAREFULLY: Please read the COPYRIGHT included with these fonts before using. The copyright can be found at /usr/local/lib/X11/fonts/bitstream-vera/COPYRIGHT.TXT. To use these fonts, follow the instructions below. Make sure that the freetype module is loaded. If it is not, add the following line to the "Modules" section of your X Windows configuration file: Load "freetype" Add the following line to the "Files" section of X Windows configuration file: FontPath "/usr/local/lib/X11/fonts/bitstream-vera/" Note: your X Windows configuration file is typically /etc/X11/xorg.conf /usr/local/lib/X11/fonts/TTF: caching, new cache contents: 1 fonts, 0 dirs /var/db/fontconfig: cleaning cache directory /var/db/fontconfig: invalid cache file: c0763ca7edddee9bce8eafd7d5c17ce3-le32d4.cache-3 /root/.fontconfig: not cleaning non-existent cache directory fc-cache: succeeded /usr/local/lib/X11/fonts/OTF: caching, new cache contents: 1 fonts, 0 dirs /var/db/fontconfig: cleaning cache directory /root/.fontconfig: not cleaning non-existent cache directory fc-cache: succeeded /usr/local/lib/X11/fonts/OTF: caching, new cache contents: 23 fonts, 0 dirs /var/db/fontconfig: cleaning cache directory /var/db/fontconfig: invalid cache file: d6a82a7420f683b92800b5c72e29748a-le32d4.cache-3 /root/.fontconfig: not cleaning non-existent cache directory fc-cache: succeeded /usr/local/lib/X11/fonts/TTF: caching, new cache contents: 13 fonts, 0 dirs /var/db/fontconfig: cleaning cache directory /root/.fontconfig: not cleaning non-existent cache directory fc-cache: succeeded =============================================================================== Gamin will only provide realtime notification of changes for at most n files, where n is the minimum value between (kern.maxfiles * 0.7) and (kern.maxfilesperproc - 200). Beyond that limit, files will be polled. If you often open several large folders with Nautilus, you might want to increase the kern.maxfiles tunable (you do not need to set kern.maxfilesperproc, since it is computed at boot time from kern.maxfiles). For a typical desktop, add the following line to /boot/loader.conf, then reboot the system: kern.maxfiles="25000" The behavior of gamin can be controlled via the various gaminrc files. See http://www.gnome.org/~veillard/gamin/config.html on how to create these files. In particular, if you find gam_server is taking up too much CPU time polling for changes, something like the following may help in one of the gaminrc files: # reduce polling frequency to once per 10 seconds # for UFS file systems in order to lower CPU load fsset ufs poll 10 =============================================================================== pkg_add perl-5.10.1_2.tbz skipping perl-5.10.1_2, already added pkg_add fontconfig-2.8.0,1.tbz skipping fontconfig-2.8.0,1, already added pkg_add pixman-0.16.6.tbz skipping pixman-0.16.6, already added pkg_add xcb-util-0.3.6_1.tbz skipping xcb-util-0.3.6_1, already added pkg_add libXrender-0.9.5.tbz skipping libXrender-0.9.5, already added pkg_add glib-2.24.2.tbz skipping glib-2.24.2, already added pkg_add xorg-fonts-truetype-7.5.tbz skipping xorg-fonts-truetype-7.5, already added pkg_add encodings-1.0.3,1.tbz skipping encodings-1.0.3,1, already added pkg_add gobject-introspection-0.6.14.tbz skipping gobject-introspection-0.6.14, already added pkg_add libXft-2.1.14.tbz skipping libXft-2.1.14, already added pkg_add gio-fam-backend-2.24.2.tbz skipping gio-fam-backend-2.24.2, already added pkg_add expat-2.0.1_1.tbz skipping expat-2.0.1_1, already added pkg_add libxcb-1.7.tbz skipping libxcb-1.7, already added pkg_add libXau-1.0.5.tbz skipping libXau-1.0.5, already added pkg_add libXdmcp-1.0.3.tbz skipping libXdmcp-1.0.3, already added pkg_add renderproto-0.11.tbz skipping renderproto-0.11, already added pkg_add libX11-1.3.3_1,1.tbz skipping libX11-1.3.3_1,1, already added pkg_add xproto-7.0.16.tbz skipping xproto-7.0.16, already added pkg_add pcre-8.10.tbz skipping pcre-8.10, already added pkg_add python26-2.6.6.tbz skipping python26-2.6.6, already added pkg_add font-bh-ttf-1.0.1.tbz skipping font-bh-ttf-1.0.1, already added pkg_add font-misc-meltho-1.0.1.tbz skipping font-misc-meltho-1.0.1, already added pkg_add font-misc-ethiopic-1.0.1.tbz skipping font-misc-ethiopic-1.0.1, already added pkg_add bitstream-vera-1.10_4.tbz skipping bitstream-vera-1.10_4, already added pkg_add font-util-1.0.2.tbz skipping font-util-1.0.2, already added pkg_add libffi-3.0.9.tbz skipping libffi-3.0.9, already added pkg_add bison-2.4.3,1.tbz skipping bison-2.4.3,1, already added pkg_add gamin-0.1.10_4.tbz skipping gamin-0.1.10_4, already added pkg_add libpthread-stubs-0.3_3.tbz skipping libpthread-stubs-0.3_3, already added pkg_add kbproto-1.0.4.tbz skipping kbproto-1.0.4, already added pkg_add mkfontdir-1.0.5.tbz skipping mkfontdir-1.0.5, already added pkg_add mkfontscale-1.0.7.tbz skipping mkfontscale-1.0.7, already added pkg_add m4-1.4.15,1.tbz skipping m4-1.4.15,1, already added pkg_add libfontenc-1.0.5.tbz skipping libfontenc-1.0.5, already added pkg_add rrdtool-1.4.4.tbz pkg_add net-snmp-5.5_4.tbz **** This port installs snmp daemon, header files and libraries but don't invokes snmpd by default. If you want to invoke snmpd and/or snmptrapd at startup, put these lines into /etc/rc.conf. snmpd_enable="YES" snmpd_flags="-a" snmpd_conffile="/usr/local/share/snmp/snmpd.conf /etc/snmpd.conf" snmptrapd_enable="YES" snmptrapd_flags="-a -p /var/run/snmptrapd.pid" **** You may specify the following make variables: NET_SNMP_SYS_CONTACT="sylvio@FreeBSD.org" NET_SNMP_SYS_LOCATION="Brasilia, BRA" DEFAULT_SNMP_VERSION=3 NET_SNMP_MIB_MODULES="host smux mibII/mta_sendmail ucd-snmp/diskio" NET_SNMP_LOGFILE=/var/log/snmpd.log NET_SNMP_PERSISTENTDIR=/var/net-snmp to define default values (or overwriting defaults). At least setting first two variables, you will not be prompted during configuration process. You may also set BATCH="yes" to avoid interactive configuration. pkg_add libltdl-2.2.10.tbz ===> collectd-4.9.3 depends on executable: pkg-config - found ===> collectd-4.9.3 depends on executable: gmake - found ===> collectd-4.9.3 depends on shared library: statgrab.8 - found ===> collectd-4.9.3 depends on shared library: oping - found ===> collectd-4.9.3 depends on shared library: rrd - found ===> collectd-4.9.3 depends on shared library: netsnmp.20 - found ===> collectd-4.9.3 depends on shared library: ltdl.7 - found ===> Configuring for collectd-4.9.3 checking build system type... i386-portbld-freebsd9.0 checking host system type... i386-portbld-freebsd9.0 checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking how to run the C preprocessor... cc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.0 ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking which extension is used for runtime loadable modules... .so checking which variable specifies run-time module search path... LD_LIBRARY_PATH checking for the default library search path... /lib /usr/lib checking for library containing dlopen... none required checking for dlerror... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dld_link in -ldld... no checking for _ prefix in compiled symbols... no checking whether deplibs are loaded by dlopen... yes checking for argz.h... no checking for error_t... no checking for argz_add... no checking for argz_append... no checking for argz_count... no checking for argz_create_sep... no checking for argz_insert... no checking for argz_next... no checking for argz_stringify... no checking whether libtool supports -dlopen/-dlpreopen... yes checking for ltdl.h... yes checking whether lt_dlinterface_register is declared... yes checking for lt_dladvise_preload in -lltdl... yes checking where to find libltdl headers... checking where to find libltdl library... -lltdl checking for unistd.h... (cached) yes checking for dl.h... no checking for sys/dl.h... no checking for dld.h... no checking for mach-o/dyld.h... no checking for dirent.h... yes checking for closedir... yes checking for opendir... yes checking for readdir... yes checking for strlcat... yes checking for strlcpy... yes checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ISO C89... (cached) none needed checking how to run the C preprocessor... cc -E checking whether ln -s works... yes checking whether gmake sets $(MAKE)... (cached) yes checking whether cc understands -c and -o together... yes checking for flex... flex checking lex output file root... lex.yy checking lex library... -lfl checking whether yytext is a pointer... yes checking for bison... bison -y checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for kernel type (freebsd9.0)... unknown checking for ANSI C header files... (cached) yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking stdio.h usability... yes checking stdio.h presence... yes checking for stdio.h... yes checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking stdarg.h usability... yes checking stdarg.h presence... yes checking for stdarg.h... yes checking syslog.h usability... yes checking syslog.h presence... yes checking for syslog.h... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking signal.h usability... yes checking signal.h presence... yes checking for signal.h... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking for sys/types.h... (cached) yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking poll.h usability... yes checking poll.h presence... yes checking for poll.h... yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking kstat.h usability... no checking kstat.h presence... no checking for kstat.h... no checking regex.h usability... yes checking regex.h presence... yes checking for regex.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking endian.h usability... no checking endian.h presence... no checking for endian.h... no checking sys/isa_defs.h usability... no checking sys/isa_defs.h presence... no checking for sys/isa_defs.h... no checking for netinet/in_systm.h... yes checking for netinet/in.h... yes checking for netinet/ip.h... yes checking for netinet/ip_icmp.h... yes checking for netinet/ip_var.h... yes checking for netinet/ip6.h... yes checking for netinet/icmp6.h... yes checking for netinet/tcp.h... yes checking for netinet/udp.h... yes checking sys/dkstat.h usability... yes checking sys/dkstat.h presence... yes checking for sys/dkstat.h... yes checking for sys/sysctl.h... yes checking for sysctl kern.cp_times... kern.cp_times: 272726 0 882175 64904 3213904 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 yes checking linux/major.h usability... no checking linux/major.h presence... no checking for linux/major.h... no checking libgen.h usability... yes checking libgen.h presence... yes checking for libgen.h... yes checking for IOKit/ps/IOPowerSources.h... no checking for sys/swap.h... no checking for vm/anon.h... no checking sys/loadavg.h usability... no checking sys/loadavg.h presence... no checking for sys/loadavg.h... no checking linux/config.h usability... no checking linux/config.h presence... no checking for linux/config.h... no checking utmp.h usability... no checking utmp.h presence... no checking for utmp.h... no checking utmpx.h usability... yes checking utmpx.h presence... yes checking for utmpx.h... yes checking ifaddrs.h usability... yes checking ifaddrs.h presence... yes checking for ifaddrs.h... yes checking for net/if.h... yes checking for linux/if.h... no checking for linux/netdevice.h... no checking for sys/ucred.h... yes checking for sys/mount.h... yes checking for linux/un.h... no checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking grp.h usability... yes checking grp.h presence... yes checking for grp.h... yes checking sys/un.h usability... yes checking sys/un.h presence... yes checking for sys/un.h... yes checking ctype.h usability... yes checking ctype.h presence... yes checking for ctype.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking xfs/xqm.h usability... no checking xfs/xqm.h presence... no checking for xfs/xqm.h... no checking fs_info.h usability... no checking fs_info.h presence... no checking for fs_info.h... no checking fshelp.h usability... no checking fshelp.h presence... no checking for fshelp.h... no checking paths.h usability... yes checking paths.h presence... yes checking for paths.h... yes checking mntent.h usability... no checking mntent.h presence... no checking for mntent.h... no checking mnttab.h usability... no checking mnttab.h presence... no checking for mnttab.h... no checking sys/fstyp.h usability... no checking sys/fstyp.h presence... no checking for sys/fstyp.h... no checking sys/fs_types.h usability... no checking sys/fs_types.h presence... no checking for sys/fs_types.h... no checking sys/mntent.h usability... no checking sys/mntent.h presence... no checking for sys/mntent.h... no checking sys/mnttab.h usability... no checking sys/mnttab.h presence... no checking for sys/mnttab.h... no checking sys/statfs.h usability... no checking sys/statfs.h presence... no checking for sys/statfs.h... no checking sys/statvfs.h usability... yes checking sys/statvfs.h presence... yes checking for sys/statvfs.h... yes checking sys/vfs.h usability... no checking sys/vfs.h presence... no checking for sys/vfs.h... no checking sys/vfstab.h usability... no checking sys/vfstab.h presence... no checking for sys/vfstab.h... no checking kvm.h usability... yes checking kvm.h presence... yes checking for kvm.h... yes checking wordexp.h usability... yes checking wordexp.h presence... yes checking for wordexp.h... yes checking arpa/nameser.h usability... yes checking arpa/nameser.h presence... yes checking for arpa/nameser.h... yes checking for arpa/nameser_compat.h... yes checking for net/if_arp.h... no checking net/ppp_defs.h usability... yes checking net/ppp_defs.h presence... yes checking for net/ppp_defs.h... yes checking for net/if_ppp.h... no checking for netinet/if_ether.h... yes checking termios.h usability... yes checking termios.h presence... yes checking for termios.h... yes checking for an ANSI C-conforming const... yes checking for pid_t... yes checking for size_t... yes checking for uid_t in sys/types.h... yes checking whether time.h and sys/time.h may both be included... yes checking whether cc needs -traditional... no checking for gettimeofday... yes checking for select... yes checking for strdup... yes checking for strtol... yes checking for getaddrinfo... yes checking for getnameinfo... yes checking for strchr... yes checking for memcpy... yes checking for strstr... yes checking for strcmp... yes checking for strncmp... yes checking for strncpy... yes checking for strlen... yes checking for strncasecmp... yes checking for strcasecmp... yes checking for openlog... yes checking for closelog... yes checking for sysconf... yes checking for setenv... yes checking whether strerror_r is declared... yes checking for strerror_r... yes checking whether strerror_r returns char *... no checking for strtok_r... yes checking for getpwnam_r... yes checking for getgrnam_r... yes checking for setgroups... yes checking for regcomp... yes checking for regerror... yes checking for regexec... yes checking for regfree... yes checking for socket... yes checking for nanosleep... yes checking for sysctl... yes checking for sysctlbyname... yes checking for host_statistics... no checking for processor_info... no checking for thread_info... no checking for statfs... yes checking for statvfs... yes checking for getifaddrs... yes checking for syslog... yes checking for getutent... no checking for getutxent... yes checking for swapctl... no checking for getloadavg... yes checking whether NAN is defined by default... yes checking if doubles are stored in x86 representation... yes checking for getfsstat... yes checking for getvfsstat... no checking for listmntent... no checking for getmntent... no checking for getmntent in -lsun... no checking for getmntent in -lseq... no checking for getmntent in -lgen... no checking if have htonll defined... no checking for struct if_data.ifi_ibytes... yes checking for struct if_data.ifi_opackets... yes checking for struct if_data.ifi_ierrors... yes checking for struct net_device_stats.rx_bytes... no checking for struct net_device_stats.tx_packets... no checking for struct net_device_stats.rx_errors... no checking for struct kinfo_proc.ki_pid... yes checking for struct kinfo_proc.ki_rssize... yes checking for struct kinfo_proc.ki_rusage... yes checking for struct kinfo_proc.kp_proc... no checking for struct kinfo_proc.kp_eproc... no checking for struct udphdr.uh_dport... yes checking for struct udphdr.uh_sport... yes checking for struct udphdr.dest... no checking for struct udphdr.source... no checking for kstat_io_t.nwritten... no checking for kstat_io_t.writes... no checking for kstat_io_t.nwrites... no checking for kstat_io_t.wtime... no checking for res_search in -lresolv... no checking for libhal_device_property_exists in -lhal... no checking for IOServiceGetMatchingServices in -lIOKit... no checking for kvm_getprocs in -lkvm... yes checking for kvm_getswapinfo in -lkvm... yes checking for kvm_nlist in -lkvm... yes checking for kvm_openfiles in -lkvm... yes checking dbi/dbi.h usability... no checking dbi/dbi.h presence... no checking for dbi/dbi.h... no checking for smtp_create_session in -lesmtp... no checking gm_protocol.h usability... no checking gm_protocol.h presence... no checking for gm_protocol.h... no checking gcrypt.h usability... no checking gcrypt.h presence... no checking for gcrypt.h... no checking for javac... no checking for jar... no checking libmemcached/memcached.h usability... no checking libmemcached/memcached.h presence... no checking for libmemcached/memcached.h... no checking netapp_api.h usability... no checking netapp_api.h presence... no checking for netapp_api.h... no checking net-snmp/net-snmp-config.h usability... yes checking net-snmp/net-snmp-config.h presence... yes checking for net-snmp/net-snmp-config.h... yes checking for init_snmp in -lnetsnmp... yes checking for oconfig_parse_fh in -loconfig... no checking oping.h usability... yes checking oping.h presence... yes checking for oping.h... yes checking for ping_construct in -loping... yes checking owcapi.h usability... no checking owcapi.h presence... no checking for owcapi.h... no checking for pcap_open_live in -lpcap... yes checking pcap.h usability... yes checking pcap.h presence... yes checking for pcap.h... yes checking for perl... yes (/usr/bin/perl) checking for libperl... yes checking if perl supports ithreads... no checking for broken Perl_load_module()... no checking for struct mgvtbl.svt_local... yes configure: WARNING: pg_config returned with status 127 checking libpq-fe.h usability... no checking libpq-fe.h presence... no checking for libpq-fe.h... no checking for pthread_create in -lpthread... yes checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking for python... /usr/local/bin/python checking for Python CPPFLAGS... /usr/local/include/python2.6 checking Python.h usability... yes checking Python.h presence... yes checking for Python.h... yes checking for Python LDFLAGS... /usr/local/lib checking for Python LIBS... libpython2.6.a checking for PyObject_CallFunction... no checking routeros_api.h usability... no checking routeros_api.h presence... no checking for routeros_api.h... no checking rrd.h usability... yes checking rrd.h presence... yes checking for rrd.h... yes checking for rrd_update_r in -lrrd_th... yes checking for rrdc_update in -lrrd_th... yes checking pkg-config for libstatgrab... found checking for libstatgrab CFLAGS... -I/usr/local/include checking for libstatgrab LDFLAGS... -L/usr/local/lib -lstatgrab -ldevstat checking statgrab.h usability... yes checking statgrab.h presence... yes checking for statgrab.h... yes checking for sg_init in -lstatgrab... yes checking tcrdb.h usability... no checking tcrdb.h presence... no checking for tcrdb.h... no configure: Checking for libupsclient using /usr/local/bin/pkg-config checking yajl/yajl_parse.h usability... no checking yajl/yajl_parse.h presence... no checking for yajl/yajl_parse.h... no checking libxml/parser.h usability... yes checking libxml/parser.h presence... yes checking for libxml/parser.h... yes checking for xmlXPathEval in -lxml2... yes checking for pkg-config... /usr/local/bin/pkg-config checking for libOpenIPMIpthread... no (/usr/local/bin/pkg-config doesn't know OpenIPMIpthread) checking for LIBNOTIFY... no checking which default log plugin to load... syslog checking which default write plugin to load... rrdtool configure: creating ./config.status config.status: creating src/libcollectdclient/lcc_features.h config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/collectd.conf config.status: creating src/owniptc/Makefile config.status: creating src/libcollectdclient/Makefile config.status: creating src/libcollectdclient/libcollectdclient.pc config.status: creating src/liboconfig/Makefile config.status: creating bindings/Makefile config.status: creating bindings/java/Makefile config.status: creating src/config.h config.status: executing libtool commands config.status: executing depfiles commands === configuring in libltdl (/work/a/ports/net-mgmt/collectd/work/collectd-4.9.3/libltdl) configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--localstatedir=/var' '--disable-getifaddrs' '--disable-apple_sensors' '--disable-ascent' '--disable-battery' '--disable-conntrack' '--disable-contextswitch' '--disable-cpufreq' '--disable-curl_json' '--disable-disk' '--disable-entropy' '--disable-fscache' '--disable-gmond' '--disable-hddtemp' '--disable-ipmi' '--disable-iptables' '--disable-ipvs' '--disable-irq' '--disable-java' '--disable-libvirt' '--disable-madwifi' '--disable-match_empty_counter' '--disable-match_hashed' '--disable-match_regex' '--disable-match_timediff' '--disable-match_value' '--disable-memcachec' '--disable-multimeter' '--disable-netapp' '--disable-netlink' '--disable-nfs' '--disable-notify_desktop' '--disable-notify_email' '--disable-olsrd' '--disable-onewire' '--disable-oracle' '--disable-perl' '--disable-python' '--disable-protocols' '--disable-routeros' '--disable-rrdcached' '--disable-sensors' '--disable-serial' '--disable-table' '--disable-tape' '--disable-target_notification' '--disable-target_replace' '--disable-target_scale' '--disable-target_set' '--disable-teamspeak2' '--disable-ted' '--disable-thermal' '--disable-tokyotyrant' '--disable-users' '--disable-vmem' '--disable-vserver' '--disable-wireless' '--disable-write_http' '--disable-zfs_arc' '--without-perl-bindings' '--enable-bind' '--disable-apache' '--disable-apcups' '--disable-curl' '--disable-dbi' '--disable-nut' '--enable-interface' '--disable-mbmon' '--disable-mysql' '--disable-nginx' '--disable-openvpn' '--disable-powerdns' '--disable-postgresql' '--enable-ping' '--enable-rrdtool' '--enable-snmp' '--disable-xmms' '--mandir=/usr/local/man' '--infodir=/usr/local/info/' '--build=i386-portbld-freebsd9.0' 'build_alias=i386-portbld-freebsd9.0' 'CC=cc' 'CFLAGS=-O2 -pipe -fno-strict-aliasing' 'LDFLAGS=-L/usr/local/lib' 'LIBS=-L/usr/local/lib -lstatgrab -ldevstat ' 'CPPFLAGS=-I/usr/local/include' --cache-file=/dev/null --srcdir=. checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... config/install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking build system type... i386-portbld-freebsd9.0 checking host system type... i386-portbld-freebsd9.0 checking for style of include used by gmake... GNU checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking dependency style of cc... gcc3 checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking how to run the C preprocessor... cc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.0 ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking which extension is used for runtime loadable modules... .so checking which variable specifies run-time module search path... LD_LIBRARY_PATH checking for the default library search path... /lib /usr/lib checking for library containing dlopen... none required checking for dlerror... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dld_link in -ldld... no checking for _ prefix in compiled symbols... no checking whether deplibs are loaded by dlopen... yes checking for argz.h... no checking for error_t... no checking for argz_add... no checking for argz_append... no checking for argz_count... no checking for argz_create_sep... no checking for argz_insert... no checking for argz_next... no checking for argz_stringify... no checking whether libtool supports -dlopen/-dlpreopen... yes checking for unistd.h... (cached) yes checking for dl.h... no checking for sys/dl.h... no checking for dld.h... no checking for mach-o/dyld.h... no checking for dirent.h... yes checking for closedir... yes checking for opendir... yes checking for readdir... yes checking for strlcat... yes checking for strlcpy... yes configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands Configuration: Libraries: libcurl . . . . . . . no (curl-config failed) libdbi . . . . . . . no (dbi/dbi.h not found) libesmtp . . . . . . no (libesmtp not found) libganglia . . . . . no (gm_protocol.h not found) libgcrypt . . . . . . no (gcrypt.h not found) libiokit . . . . . . no libiptc . . . . . . . no (Linux only) libjvm . . . . . . . no (jar not found) libkstat . . . . . . no (Solaris only) libkvm . . . . . . . yes libmemcached . . . . no (libmemcached/memcached.h not found) libmysql . . . . . . no (mysql_config failed) libnetapp . . . . . . no (netapp_api.h not found) libnetlink . . . . . no (Linux only library) libnetsnmp . . . . . yes libnotify . . . . . . no (No package 'libnotify' found) liboconfig . . . . . yes (shipped version) libopenipmi . . . . . no (/usr/local/bin/pkg-config doesn't know OpenIPMIpthread) liboping . . . . . . yes libpcap . . . . . . . yes libperfstat . . . . . no (AIX only) libperl . . . . . . . yes (version 5.10.1) libpq . . . . . . . . no (libpq-fe.h not found) libpthread . . . . . yes librouteros . . . . . no ('routeros_api.h' not found) librrd . . . . . . . yes libsensors . . . . . no (Linux only library) libstatgrab . . . . . yes libtokyotyrant . . . no (tcrdb.h not found) libupsclient . . . . no (pkg-config doesn't know library) libvirt . . . . . . . no (pkg-config doesn't know library) libxml2 . . . . . . . yes libxmms . . . . . . . no libyajl . . . . . . . no (yajl/yajl_parse.h not found) oracle . . . . . . . no (ORACLE_HOME is not set) python . . . . . . . no (Symbol 'PyObject_CallFunction' not found) Features: daemon mode . . . . . yes debug . . . . . . . . no Bindings: perl . . . . . . . . no Modules: apache . . . . . . . no apcups . . . . . . . no apple_sensors . . . . no ascent . . . . . . . no battery . . . . . . . no bind . . . . . . . . no (dependency error) conntrack . . . . . . no contextswitch . . . . no cpu . . . . . . . . . yes cpufreq . . . . . . . no csv . . . . . . . . . yes curl . . . . . . . . no curl_json . . . . . . no dbi . . . . . . . . . no df . . . . . . . . . yes disk . . . . . . . . no dns . . . . . . . . . yes email . . . . . . . . yes entropy . . . . . . . no exec . . . . . . . . yes filecount . . . . . . yes fscache . . . . . . . no gmond . . . . . . . . no hddtemp . . . . . . . no interface . . . . . . yes ipmi . . . . . . . . no iptables . . . . . . no ipvs . . . . . . . . no irq . . . . . . . . . no java . . . . . . . . no libvirt . . . . . . . no load . . . . . . . . yes logfile . . . . . . . yes madwifi . . . . . . . no match_empty_counter . no match_hashed . . . . no match_regex . . . . . no match_timediff . . . no match_value . . . . . no mbmon . . . . . . . . no memcachec . . . . . . no memcached . . . . . . yes memory . . . . . . . yes multimeter . . . . . no mysql . . . . . . . . no netapp . . . . . . . no netlink . . . . . . . no network . . . . . . . yes nfs . . . . . . . . . no nginx . . . . . . . . no notify_desktop . . . no notify_email . . . . no ntpd . . . . . . . . yes nut . . . . . . . . . no olsrd . . . . . . . . no onewire . . . . . . . no openvpn . . . . . . . no oracle . . . . . . . no perl . . . . . . . . no (libperl doesn't support ithreads) ping . . . . . . . . yes postgresql . . . . . no powerdns . . . . . . no processes . . . . . . yes protocols . . . . . . no python . . . . . . . no routeros . . . . . . no rrdcached . . . . . . no rrdtool . . . . . . . yes sensors . . . . . . . no serial . . . . . . . no snmp . . . . . . . . yes swap . . . . . . . . yes syslog . . . . . . . yes table . . . . . . . . no tail . . . . . . . . yes tape . . . . . . . . no target_notification . no target_replace . . . no target_scale . . . . no target_set . . . . . no tcpconns . . . . . . yes teamspeak2 . . . . . no ted . . . . . . . . . no thermal . . . . . . . no tokyotyrant . . . . . no unixsock . . . . . . yes uptime . . . . . . . yes users . . . . . . . . no uuid . . . . . . . . yes vmem . . . . . . . . no vserver . . . . . . . no wireless . . . . . . no write_http . . . . . no xmms . . . . . . . . no zfs_arc . . . . . . . no configure: error: "Some plugins are missing dependencies - see the summary above for details" ===> Script "configure" failed unexpectedly. Please report the problem to ports@bsdserwis.com [maintainer] and attach the "/work/a/ports/net-mgmt/collectd/work/collectd-4.9.3/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /a/ports/net-mgmt/collectd. ================================================================ build of /usr/ports/net-mgmt/collectd ended at Fri Oct 29 09:28:26 UTC 2010 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:22:24 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E206F106564A; Fri, 29 Oct 2010 13:22:24 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B6E128FC16; Fri, 29 Oct 2010 13:22:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TDMOR8028367; Fri, 29 Oct 2010 13:22:24 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TD29Ve008409; Fri, 29 Oct 2010 13:02:09 GMT (envelope-from rene) Date: Fri, 29 Oct 2010 13:02:09 GMT Message-Id: <201010291302.o9TD29Ve008409@freefall.freebsd.org> To: melifaro@ipfw.ru.melifaro@ipfw.ru, rene@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rene@FreeBSD.org From: rene@FreeBSD.org Cc: Subject: Re: ports/149547: [PATCH] net/igmpproxy: prevent deletion of configfile on deinstall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:22:25 -0000 Synopsis: [PATCH] net/igmpproxy: prevent deletion of configfile on deinstall Responsible-Changed-From-To: freebsd-ports-bugs->rene Responsible-Changed-By: rene Responsible-Changed-When: Fri Oct 29 13:01:30 UTC 2010 Responsible-Changed-Why: Grab, related to ports/150146 http://www.freebsd.org/cgi/query-pr.cgi?pr=149547 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:23:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A95A1065674; Fri, 29 Oct 2010 13:23:07 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 401548FC15; Fri, 29 Oct 2010 13:23:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TDN7Z1028399; Fri, 29 Oct 2010 13:23:07 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TDN6Ti028395; Fri, 29 Oct 2010 13:23:06 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 13:23:06 GMT Message-Id: <201010291323.o9TDN6Ti028395@freefall.freebsd.org> To: yamagi@yamagi.org, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/150653: OGG/Vorbis playback with multimedia/mplayer is broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:23:07 -0000 Synopsis: OGG/Vorbis playback with multimedia/mplayer is broken State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Fri Oct 29 13:12:01 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=150653 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:30:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9765E1065670 for ; Fri, 29 Oct 2010 13:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8599C8FC0A for ; Fri, 29 Oct 2010 13:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TDUDtF028827 for ; Fri, 29 Oct 2010 13:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TDUDEq028822; Fri, 29 Oct 2010 13:30:13 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 13:30:13 GMT Message-Id: <201010291330.o9TDUDEq028822@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/150653: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:30:13 -0000 The following reply was made to PR ports/150653; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/150653: commit references a PR Date: Fri, 29 Oct 2010 13:22:59 +0000 (UTC) pav 2010-10-29 13:22:54 UTC FreeBSD ports repository Modified files: multimedia/mplayer Makefile Added files: multimedia/mplayer/files patch-libavcodec-vorbis_dec.c Log: - Fix decoding of certain ogg/vorbis files PR: ports/150653 Submitted by: Yamagi Burmeister Approved by: Thomas Zander (maintainer) Revision Changes Path 1.199 +1 -1 ports/multimedia/mplayer/Makefile 1.1 +63 -0 ports/multimedia/mplayer/files/patch-libavcodec-vorbis_dec.c (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:32:00 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 741081065695; Fri, 29 Oct 2010 13:32:00 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4953F8FC08; Fri, 29 Oct 2010 13:32:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TDW00D039082; Fri, 29 Oct 2010 13:32:00 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TDW0Jj039078; Fri, 29 Oct 2010 13:32:00 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 13:32:00 GMT Message-Id: <201010291332.o9TDW0Jj039078@freefall.freebsd.org> To: fbsd-ports@opsec.eu, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/150683: New port: devel/dragon, Combined C++ scanner/parser generator for LR compliant grammars X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:32:00 -0000 Synopsis: New port: devel/dragon, Combined C++ scanner/parser generator for LR compliant grammars State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Fri Oct 29 13:26:30 UTC 2010 State-Changed-Why: New port added, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=150683 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:40:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3955B106566B for ; Fri, 29 Oct 2010 13:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0D3B48FC12 for ; Fri, 29 Oct 2010 13:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TDeAKF039446 for ; Fri, 29 Oct 2010 13:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TDeAef039445; Fri, 29 Oct 2010 13:40:10 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 13:40:10 GMT Message-Id: <201010291340.o9TDeAef039445@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/150683: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:40:11 -0000 The following reply was made to PR ports/150683; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/150683: commit references a PR Date: Fri, 29 Oct 2010 13:31:48 +0000 (UTC) pav 2010-10-29 13:31:41 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/dragon Makefile distinfo pkg-descr Log: Combined scanner/parser generator for LR compliant grammar definitions. The generated C++ parser class is used as a super class from which a parser implementation class must be derived. The implementation class implements the scanner feed methods but also all required semantic action method. dragon has been used for several large projects with complex grammar definitions (about 200 productions/ 80 tokens ). Since for those grammar defintions, the analyse phase to build up the parse table is quite CPU intensive, it is recommended to use state of the art hardware. dragon requires the base package to get compiled but also for the compilation of the generated C++ code. It can be used for databases/cego and probably other applications. Many more details are available at: WWW: http://www.lemke-it.com/ PR: ports/150683 Submitted by: Kurt Jaeger Revision Changes Path 1.4097 +1 -0 ports/devel/Makefile 1.1 +23 -0 ports/devel/dragon/Makefile (new) 1.1 +3 -0 ports/devel/dragon/distinfo (new) 1.1 +16 -0 ports/devel/dragon/pkg-descr (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 13:54:29 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6108F1065673; Fri, 29 Oct 2010 13:54:29 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 358F18FC1D; Fri, 29 Oct 2010 13:54:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TDsSYE058099; Fri, 29 Oct 2010 13:54:28 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TDsS5w058093; Fri, 29 Oct 2010 13:54:28 GMT (envelope-from pav) Date: Fri, 29 Oct 2010 13:54:28 GMT Message-Id: <201010291354.o9TDsS5w058093@freefall.freebsd.org> To: cquike@arcor.de, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/150592: AX_BOOST_FILESYSTEM macro from devel/autoconf-archive gives an error at configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 13:54:29 -0000 Synopsis: AX_BOOST_FILESYSTEM macro from devel/autoconf-archive gives an error at configure State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Fri Oct 29 13:52:11 UTC 2010 State-Changed-Why: Do you have a fix? Perhaps newer version of autoconf-archive would work better? Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Fri Oct 29 13:52:11 UTC 2010 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=150592 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 14:30:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27B271065672 for ; Fri, 29 Oct 2010 14:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D72AD8FC1A for ; Fri, 29 Oct 2010 14:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TEU9c3090488 for ; Fri, 29 Oct 2010 14:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TEU9MQ090485; Fri, 29 Oct 2010 14:30:09 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 14:30:09 GMT Resent-Message-Id: <201010291430.o9TEU9MQ090485@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ross West Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4696106564A for ; Fri, 29 Oct 2010 14:23:17 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id A1F128FC0A for ; Fri, 29 Oct 2010 14:23:17 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TENH6t094384 for ; Fri, 29 Oct 2010 14:23:17 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TENHOF094383; Fri, 29 Oct 2010 14:23:17 GMT (envelope-from nobody) Message-Id: <201010291423.o9TENHOF094383@www.freebsd.org> Date: Fri, 29 Oct 2010 14:23:17 GMT From: Ross West To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151814: [Patch][Maintainer Update] net/haproxy: v1.4.8 -> v1.4.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 14:30:10 -0000 >Number: 151814 >Category: ports >Synopsis: [Patch][Maintainer Update] net/haproxy: v1.4.8 -> v1.4.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 14:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ross West >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: >Description: Update from v1.4.8 to v1.4.9 Many updates and some fixes too! The sources and builds are available at the usual place : site index : http://haproxy.1wt.eu/ sources : http://haproxy.1wt.eu/download/1.4/src/ changelog : http://haproxy.1wt.eu/download/1.4/src/CHANGELOG binaries : http://haproxy.1wt.eu/download/1.4/bin/ >How-To-Repeat: >Fix: diff -ruN --exclude=CVS /usr/ports/net/haproxy.1.4.8/Makefile /usr/ports/net/haproxy/Makefile --- /usr/ports/net/haproxy.1.4.8/Makefile 2010-07-04 15:26:17.000000000 -0400 +++ /usr/ports/net/haproxy/Makefile 2010-10-29 10:17:49.000000000 -0400 @@ -6,13 +6,16 @@ # PORTNAME= haproxy -PORTVERSION= 1.4.8 +PORTVERSION= 1.4.9 CATEGORIES= net www MASTER_SITES= http://haproxy.1wt.eu/download/1.4/src/ MAINTAINER= freebsd@linepoint.com COMMENT= The Reliable, High Performance TCP/HTTP Load Balancer +LICENSE_COMB= multi +LICENSE= GPLv2 LGPL21 + USE_RC_SUBR= haproxy USE_GMAKE= YES SUB_FILES= pkg-message diff -ruN --exclude=CVS /usr/ports/net/haproxy.1.4.8/distinfo /usr/ports/net/haproxy/distinfo --- /usr/ports/net/haproxy.1.4.8/distinfo 2010-07-04 15:26:17.000000000 -0400 +++ /usr/ports/net/haproxy/distinfo 2010-10-29 10:17:15.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (haproxy-1.4.8.tar.gz) = 104f4985b37bd9bac7a33e20fb6aaadf -SHA256 (haproxy-1.4.8.tar.gz) = 707487ade815cbd37492d91a014f9a5b3ac313e5b4cb31e2d7c4d2a16f4a23f1 -SIZE (haproxy-1.4.8.tar.gz) = 778220 +MD5 (haproxy-1.4.9.tar.gz) = 2cbcc95b54c0d803edaa13e7b4aeec25 +SHA256 (haproxy-1.4.9.tar.gz) = 68565c216a39cf2e9b7dbe4775b4ede9696b324dd6d9fa962aec8fdfb6518826 +SIZE (haproxy-1.4.9.tar.gz) = 806102 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 16:15:21 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DB9E1065675; Fri, 29 Oct 2010 16:15:21 +0000 (UTC) (envelope-from brix@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E54698FC1B; Fri, 29 Oct 2010 16:15:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TGFKL9004100; Fri, 29 Oct 2010 16:15:20 GMT (envelope-from brix@freefall.freebsd.org) Received: (from brix@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TGFKq5004095; Fri, 29 Oct 2010 16:15:20 GMT (envelope-from brix) Date: Fri, 29 Oct 2010 16:15:20 GMT Message-Id: <201010291615.o9TGFKq5004095@freefall.freebsd.org> To: jean-francois.dockes@wanadoo.fr, jf@dockes.org, brix@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, brix@FreeBSD.org From: brix@FreeBSD.org Cc: Subject: Re: ports/151782: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 16:15:21 -0000 Synopsis: databases/xapian-core needs to be at least 1.0.18 for xapian-bindings and p5-Search-Xapian to build State-Changed-From-To: feedback->open State-Changed-By: brix State-Changed-When: Fri Oct 29 16:14:17 UTC 2010 State-Changed-Why: I'll take it Responsible-Changed-From-To: freebsd-ports-bugs->brix Responsible-Changed-By: brix Responsible-Changed-When: Fri Oct 29 16:14:17 UTC 2010 Responsible-Changed-Why: I'll take it http://www.freebsd.org/cgi/query-pr.cgi?pr=151782 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 16:30:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CED010657A1 for ; Fri, 29 Oct 2010 16:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BD7F48FC0C for ; Fri, 29 Oct 2010 16:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TGUDTP013582 for ; Fri, 29 Oct 2010 16:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TGUDNn013579; Fri, 29 Oct 2010 16:30:13 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 16:30:13 GMT Resent-Message-Id: <201010291630.o9TGUDNn013579@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, lbartoletti Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA96B10656A7 for ; Fri, 29 Oct 2010 16:21:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id BE9FB8FC22 for ; Fri, 29 Oct 2010 16:21:14 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TGLE2q008280 for ; Fri, 29 Oct 2010 16:21:14 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TGLEJQ008276; Fri, 29 Oct 2010 16:21:14 GMT (envelope-from nobody) Message-Id: <201010291621.o9TGLEJQ008276@www.freebsd.org> Date: Fri, 29 Oct 2010 16:21:14 GMT From: lbartoletti To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151816: Please udpate nvidia drivers 256.53 -> 260.19.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 16:30:16 -0000 >Number: 151816 >Category: ports >Synopsis: Please udpate nvidia drivers 256.53 -> 260.19.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 16:30:13 UTC 2010 >Closed-Date: >Last-Modified: >Originator: lbartoletti >Release: 8.1 >Organization: >Environment: FreeBSD coder.tuxfamily 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: There is a new version of Nvidia drivers. Version: 260.19.12 Certified Release Date: 2010.10.13 thank you >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 16:30:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A016210657A5 for ; Fri, 29 Oct 2010 16:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3692D8FC14 for ; Fri, 29 Oct 2010 16:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TGUEml013602 for ; Fri, 29 Oct 2010 16:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TGUEhj013601; Fri, 29 Oct 2010 16:30:14 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 16:30:14 GMT Resent-Message-Id: <201010291630.o9TGUEhj013601@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Cezary Morga Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41FDB10656A3 for ; Fri, 29 Oct 2010 16:22:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 300818FC18 for ; Fri, 29 Oct 2010 16:22:37 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TGMakH008841 for ; Fri, 29 Oct 2010 16:22:36 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TGMaXE008835; Fri, 29 Oct 2010 16:22:36 GMT (envelope-from nobody) Message-Id: <201010291622.o9TGMaXE008835@www.freebsd.org> Date: Fri, 29 Oct 2010 16:22:36 GMT From: Cezary Morga To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151817: [maintainer update] Update databases/p5-ORLite to 1.45 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 16:30:16 -0000 >Number: 151817 >Category: ports >Synopsis: [maintainer update] Update databases/p5-ORLite to 1.45 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 16:30:13 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Cezary Morga >Release: >Organization: >Environment: >Description: Update databases/p5-ORLite to 1.45 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN databases/p5-ORLite.orig/Makefile databases/p5-ORLite/Makefile --- databases/p5-ORLite.orig/Makefile 2010-06-10 01:00:12.000000000 +0200 +++ databases/p5-ORLite/Makefile 2010-10-29 18:20:29.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= ORLite -PORTVERSION= 1.43 +PORTVERSION= 1.45 CATEGORIES= databases perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= ../by-authors/id/A/AD/ADAMK diff -ruN databases/p5-ORLite.orig/distinfo databases/p5-ORLite/distinfo --- databases/p5-ORLite.orig/distinfo 2010-06-10 01:00:12.000000000 +0200 +++ databases/p5-ORLite/distinfo 2010-10-29 14:32:23.671029000 +0200 @@ -1,3 +1,2 @@ -MD5 (ORLite-1.43.tar.gz) = 74511b3026f7286d93326f7fd7012ee4 -SHA256 (ORLite-1.43.tar.gz) = fe438eb8788b80d4d3e58b7057287212a7af9a2e609934936b5cb83e82ca7af6 -SIZE (ORLite-1.43.tar.gz) = 54641 +SHA256 (ORLite-1.45.tar.gz) = 45749b4bb3208e0a49f28120352a92586d98b137f37ff035ee0f51fbfb35ba61 +SIZE (ORLite-1.45.tar.gz) = 56896 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 16:30:25 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E308C106566C; Fri, 29 Oct 2010 16:30:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B83F08FC08; Fri, 29 Oct 2010 16:30:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TGUPst014451; Fri, 29 Oct 2010 16:30:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TGUPsK014439; Fri, 29 Oct 2010 16:30:25 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 16:30:25 GMT Message-Id: <201010291630.o9TGUPsK014439@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151817: [maintainer update] Update databases/p5-ORLite to 1.45 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 16:30:26 -0000 Synopsis: [maintainer update] Update databases/p5-ORLite to 1.45 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 16:30:24 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151817 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 16:40:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C7B21065670 for ; Fri, 29 Oct 2010 16:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C1BEC8FC0A for ; Fri, 29 Oct 2010 16:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TGe9mq026431 for ; Fri, 29 Oct 2010 16:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TGe92g026430; Fri, 29 Oct 2010 16:40:09 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 16:40:09 GMT Resent-Message-Id: <201010291640.o9TGe92g026430@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Cezary Morga Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6ABE71065782 for ; Fri, 29 Oct 2010 16:30:16 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 60BBA8FC19 for ; Fri, 29 Oct 2010 16:30:09 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TGU9Ne022125 for ; Fri, 29 Oct 2010 16:30:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TGU9tu022119; Fri, 29 Oct 2010 16:30:09 GMT (envelope-from nobody) Message-Id: <201010291630.o9TGU9tu022119@www.freebsd.org> Date: Fri, 29 Oct 2010 16:30:09 GMT From: Cezary Morga To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151818: [maintainer update] Update converters/p5-Format-Human-Bytes to 0.06 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 16:40:10 -0000 >Number: 151818 >Category: ports >Synopsis: [maintainer update] Update converters/p5-Format-Human-Bytes to 0.06 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 16:40:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Cezary Morga >Release: >Organization: >Environment: >Description: Update converters/p5-Format-Human-Bytes to 0.06 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN converters/p5-Format-Human-Bytes.orig/Makefile converters/p5-Format-Human-Bytes/Makefile --- converters/p5-Format-Human-Bytes.orig/Makefile 2010-04-20 01:00:14.000000000 +0200 +++ converters/p5-Format-Human-Bytes/Makefile 2010-10-29 18:25:45.861389000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= Format-Human-Bytes -PORTVERSION= 0.05 +PORTVERSION= 0.06 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN converters/p5-Format-Human-Bytes.orig/distinfo converters/p5-Format-Human-Bytes/distinfo --- converters/p5-Format-Human-Bytes.orig/distinfo 2010-04-20 01:00:14.000000000 +0200 +++ converters/p5-Format-Human-Bytes/distinfo 2010-10-29 18:26:00.970509000 +0200 @@ -1,3 +1,2 @@ -MD5 (Format-Human-Bytes-0.05.tar.gz) = a2a056de9e3590ba15d752e18413e22c -SHA256 (Format-Human-Bytes-0.05.tar.gz) = 1d23b4f4e4e6b4f8104e3d8aa05b9dad1f1735a3b410f26d47df395666648f4f -SIZE (Format-Human-Bytes-0.05.tar.gz) = 24391 +SHA256 (Format-Human-Bytes-0.06.tar.gz) = 4d2578073748cc774b755f9805697221753b38154f0f57b7d820140128b4a9b1 +SIZE (Format-Human-Bytes-0.06.tar.gz) = 27183 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 16:40:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E99451065673; Fri, 29 Oct 2010 16:40:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE7818FC14; Fri, 29 Oct 2010 16:40:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TGeFWt026685; Fri, 29 Oct 2010 16:40:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TGeFCw026679; Fri, 29 Oct 2010 16:40:15 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 16:40:15 GMT Message-Id: <201010291640.o9TGeFCw026679@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151818: [maintainer update] Update converters/p5-Format-Human-Bytes to 0.06 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 16:40:16 -0000 Synopsis: [maintainer update] Update converters/p5-Format-Human-Bytes to 0.06 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 16:40:14 UTC 2010 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151818 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 18:20:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1A441065672 for ; Fri, 29 Oct 2010 18:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BB3868FC15 for ; Fri, 29 Oct 2010 18:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TIK7iU030077 for ; Fri, 29 Oct 2010 18:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TIK7AZ030076; Fri, 29 Oct 2010 18:20:07 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 18:20:07 GMT Message-Id: <201010291820.o9TIK7AZ030076@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Gerald Pfeifer Cc: Subject: Re: ports/151747: request to enable emulators/wine on amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gerald Pfeifer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 18:20:08 -0000 The following reply was made to PR ports/151747; it has been noted by GNATS. From: Gerald Pfeifer To: bug-followup@FreeBSD.org, ports@FreeBSD.org Cc: Subject: Re: ports/151747: request to enable emulators/wine on amd64 Date: Fri, 29 Oct 2010 20:03:53 +0200 (CEST) Addendum: I believe doing this with a specific port for amd64, at least initially is a good idea, and making this a slave port of emulators/wine so that things like constantly changing pkg-plist and general updates come for free. I am also happy to make adjustments to that port, as long as the "uglier" pieces remain in the slave port itself. Gerald k From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 18:40:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CE3710656C1 for ; Fri, 29 Oct 2010 18:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 49E888FC16 for ; Fri, 29 Oct 2010 18:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TIe8Or049839 for ; Fri, 29 Oct 2010 18:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TIe8X9049838; Fri, 29 Oct 2010 18:40:08 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 18:40:08 GMT Resent-Message-Id: <201010291840.o9TIe8X9049838@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aragon Gouveia Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20BA6106566C for ; Fri, 29 Oct 2010 18:33:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0E1A88FC1B for ; Fri, 29 Oct 2010 18:33:25 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TIXOmO049636 for ; Fri, 29 Oct 2010 18:33:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TIXOU3049635; Fri, 29 Oct 2010 18:33:24 GMT (envelope-from nobody) Message-Id: <201010291833.o9TIXOU3049635@www.freebsd.org> Date: Fri, 29 Oct 2010 18:33:24 GMT From: Aragon Gouveia To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151819: [patch] net-p2p/uhub port improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 18:40:11 -0000 >Number: 151819 >Category: ports >Synopsis: [patch] net-p2p/uhub port improvements >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 18:40:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Aragon Gouveia >Release: 8.1-STABLE >Organization: >Environment: FreeBSD igor.geek.sh 8.1-STABLE FreeBSD 8.1-STABLE #0: Sat Jul 24 19:06:08 SAST 2010 toor@igor.geek.sh:/usr/obj/usr/src/sys/IGOR amd64 >Description: Attached patch makes some improvements to the net-p2p/uhub port: * Sets up a uhub UID and GID for the daemon to run as. * Modifies configuration file permissions to restrict them to root and the above GID. * Patches uhub source so that PREFIX/etc/uhub/uhub.conf is the compiled in default configuration file. * rc.d script changes - enable above uid/gid, enable syslog logging, simplify. I think these changes are an improvement. Please consider committing them. Thanks! >How-To-Repeat: >Fix: Patch attached with submission follows: --- net-p2p/uhub/Makefile.orig 2010-10-29 17:57:45.000000000 +0200 +++ net-p2p/uhub/Makefile 2010-10-29 20:24:54.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= uhub PORTVERSION= 0.3.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-p2p MASTER_SITES= http://www.extatic.org/downloads/uhub/ DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -19,6 +19,10 @@ USE_GMAKE= yes USE_RC_SUBR= uhub.sh +USERS= uhub +GROUPS= uhub +SHAREGRP= uhub +SHAREMODE= 640 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} MAKEFILE= ${WRKSRC}/GNUmakefile @@ -36,15 +40,18 @@ post-patch: @${REINPLACE_CMD} -e 's|/etc/uhub/|${PREFIX}&|' ${WRKSRC}/doc/uhub.conf + @${REINPLACE_CMD} -e 's|/etc/uhub/|${PREFIX}&|' ${WRKSRC}/src/uhub.h -post-install: +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/uhub ${PREFIX}/bin/uhub + @${MKDIR} ${PREFIX}/etc/uhub @${INSTALL_DATA} ${WRKSRC}/doc/uhub.conf ${PREFIX}/etc/uhub/uhub.conf.sample @${INSTALL_DATA} ${WRKSRC}/doc/users.conf ${PREFIX}/etc/uhub/users.conf.sample - @if [ -f ${PREFIX}/etc/uhub/motd.txt ]; then \ - ${TOUCH} ${PREFIX}/etc/uhub/motd.txt.sample ; \ - fi - @if [ -f ${PREFIX}/etc/uhub/rules.txt ]; then \ - ${TOUCH} ${PREFIX}/etc/uhub/rules.txt.sample ; \ - fi + @${INSTALL_DATA} /dev/null ${PREFIX}/etc/uhub/motd.txt.sample + @${INSTALL_DATA} /dev/null ${PREFIX}/etc/uhub/rules.txt.sample +.for i in uhub.conf users.conf motd.txt rules.txt + @[ ! -f ${PREFIX}/etc/uhub/${i} ] \ + && cp -p ${PREFIX}/etc/uhub/${i}.sample ${PREFIX}/etc/uhub/${i} +.endfor .include --- net-p2p/uhub/files/uhub.sh.in.orig 2010-10-29 18:25:29.000000000 +0200 +++ net-p2p/uhub/files/uhub.sh.in 2010-10-29 20:18:27.000000000 +0200 @@ -11,8 +11,6 @@ # # uhub_enable (bool): Set it to "YES" to enable uhub # Default is "NO". -# uhub_conf (path): Set full path to config file. -# Default is "%%PREFIX%%/etc/uhub/uhub.conf". # uhub_pidfile (path): Set full path to pid file. # Default is "/var/run/uhub.pid". # @@ -24,12 +22,12 @@ load_rc_config $name -: ${uhub_enable="NO"} -: ${uhub_conf="%%PREFIX%%/etc/uhub/uhub.conf"} -: ${uhub_pidfile="/var/run/${name}.pid"} +: ${uhub_enable:="NO"} +: ${uhub_flags:="-L -u uhub -g uhub"} +: ${uhub_pidfile:="/var/run/${name}.pid"} command=%%PREFIX%%/bin/uhub -command_args="-fq -c ${uhub_conf} -p ${uhub_pidfile}" +command_args="-f -p ${uhub_pidfile}" pidfile=${uhub_pidfile} required_files=${uhub_conf} stop_postcmd=stop_postcmd --- UIDs.orig 2010-10-29 18:54:35.000000000 +0200 +++ UIDs 2010-10-29 18:55:29.000000000 +0200 @@ -128,6 +128,7 @@ httptunnel:*:361:361::0:0:httptunnel Daemon:/nonexistent:/usr/sbin/nologin ldap:*:389:389::0:0:OpenLDAP Server:/nonexistent:/usr/sbin/nologin tiarra:*:398:398::0:0:Tiarra IRC Proxy:/nonexistent:/usr/sbin/nologin +uhub:*:411:411::0:0:uHub ADC Daemon:/nonexistent:/usr/sbin/nologin drweb:*:426:426::0:0:Dr.Web Mail Scanner:/nonexistent:/usr/sbin/nologin callweaver:*:444:444::0:0:Callweaver account:/var/lib/callweaver:/usr/sbin/nologin courier:*:465:465::0:0:Courier Mail Server:/nonexistent:/usr/sbin/nologin --- GIDs.orig 2010-10-29 18:54:39.000000000 +0200 +++ GIDs 2010-10-29 18:55:48.000000000 +0200 @@ -118,6 +118,7 @@ httptunnel:*:361: ldap:*:389: tiarra:*:398: +uhub:*:411: drweb:*:426: callweaver:*:444: courier:*:465: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 18:40:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 818C210656F7; Fri, 29 Oct 2010 18:40:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 56CA28FC1E; Fri, 29 Oct 2010 18:40:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TIeGI5050425; Fri, 29 Oct 2010 18:40:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TIeG0J050413; Fri, 29 Oct 2010 18:40:16 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 18:40:16 GMT Message-Id: <201010291840.o9TIeG0J050413@freefall.freebsd.org> To: aragon@phat.za.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151819: [patch] net-p2p/uhub port improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 18:40:16 -0000 Synopsis: [patch] net-p2p/uhub port improvements State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Oct 29 18:40:15 UTC 2010 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151819 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 18:50:07 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DCA4106566B for ; Fri, 29 Oct 2010 18:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 753578FC14 for ; Fri, 29 Oct 2010 18:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TIo7X7059377 for ; Fri, 29 Oct 2010 18:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TIo7Ue059376; Fri, 29 Oct 2010 18:50:07 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 18:50:07 GMT Message-Id: <201010291850.o9TIo7Ue059376@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/151819: [patch] net-p2p/uhub port improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 18:50:07 -0000 The following reply was made to PR ports/151819; it has been noted by GNATS. From: Edwin Groothuis To: yashin.dm@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/151819: [patch] net-p2p/uhub port improvements Date: Fri, 29 Oct 2010 18:40:13 UT Maintainer of net-p2p/uhub, Please note that PR ports/151819 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151819 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 18:50:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E58F1065672 for ; Fri, 29 Oct 2010 18:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E722A8FC19 for ; Fri, 29 Oct 2010 18:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TIo7RZ059388 for ; Fri, 29 Oct 2010 18:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TIo7Sj059385; Fri, 29 Oct 2010 18:50:07 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 18:50:07 GMT Resent-Message-Id: <201010291850.o9TIo7Sj059385@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8277106566C; Fri, 29 Oct 2010 18:41:04 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 893B08FC25; Fri, 29 Oct 2010 18:41:04 +0000 (UTC) Received: by gya6 with SMTP id 6so2364567gya.13 for ; Fri, 29 Oct 2010 11:41:03 -0700 (PDT) Received: by 10.150.219.7 with SMTP id r7mr12477841ybg.192.1288377663693; Fri, 29 Oct 2010 11:41:03 -0700 (PDT) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx.google.com with ESMTPS id l66sm1922294yhd.20.2010.10.29.11.41.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 29 Oct 2010 11:41:03 -0700 (PDT) Received: by sunpoet.net (Postfix, from userid 1000) id 6C5C52AEC63D; Sat, 30 Oct 2010 02:40:50 +0800 (CST) Message-Id: <20101029184050.6C5C52AEC63D@sunpoet.net> Date: Sat, 30 Oct 2010 02:40:50 +0800 (CST) From: Sunpoet Po-Chuan Hsieh Sender: Sunpoet Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gnome@FreeBSD.org Subject: ports/151820: [PATCH] misc/pciids: update to 20101020 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 18:50:08 -0000 >Number: 151820 >Category: ports >Synopsis: [PATCH] misc/pciids: update to 20101020 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 18:50:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 8.1-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 8.1-STABLE FreeBSD 8.1-STABLE #0: Sat Oct 23 16:01:16 CST 2010 >Description: - Update to 20101020 Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- pciids-20101020.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/misc/pciids/Makefile,v retrieving revision 1.22 diff -u -u -r1.22 Makefile --- Makefile 17 Oct 2010 09:33:05 -0000 1.22 +++ Makefile 29 Oct 2010 18:40:42 -0000 @@ -6,7 +6,7 @@ # $MCom: ports/misc/pciids/Makefile,v 1.11 2008/03/23 06:57:57 marcus Exp $ PORTNAME= pciids -PORTVERSION= 20101005 +PORTVERSION= 20101020 CATEGORIES= misc MASTER_SITES= LOCAL/sunpoet Index: distinfo =================================================================== RCS file: /home/ncvs/ports/misc/pciids/distinfo,v retrieving revision 1.21 diff -u -u -r1.21 distinfo --- distinfo 17 Oct 2010 09:33:05 -0000 1.21 +++ distinfo 29 Oct 2010 18:40:42 -0000 @@ -1,3 +1,2 @@ -MD5 (pciids-20101005.tar.bz2) = 54b858ac1f7bb9735e697845fb478922 -SHA256 (pciids-20101005.tar.bz2) = d6ba29c59c20bccaae9d9c0767dd3c0169ad074b797b96428365bca859c25817 -SIZE (pciids-20101005.tar.bz2) = 163410 +SHA256 (pciids-20101020.tar.bz2) = 08ee7cbb69fd0e3391306cad1c87126478956a41cadc4e95939e15270c1a0a88 +SIZE (pciids-20101020.tar.bz2) = 164081 --- pciids-20101020.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 18:50:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D15D31065694; Fri, 29 Oct 2010 18:50:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A719A8FC16; Fri, 29 Oct 2010 18:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TIoDLt059963; Fri, 29 Oct 2010 18:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TIoDUP059952; Fri, 29 Oct 2010 18:50:13 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 18:50:13 GMT Message-Id: <201010291850.o9TIoDUP059952@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151820: [PATCH] misc/pciids: update to 20101020 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 18:50:13 -0000 Synopsis: [PATCH] misc/pciids: update to 20101020 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 18:50:13 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151820 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 19:50:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 25AD31065698 for ; Fri, 29 Oct 2010 19:50:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 85AB38FC08 for ; Fri, 29 Oct 2010 19:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TJoC9x021030 for ; Fri, 29 Oct 2010 19:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TJoCtf021029; Fri, 29 Oct 2010 19:50:12 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 19:50:12 GMT Message-Id: <201010291950.o9TJoCtf021029@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dmitry Yashin Cc: Subject: Re: ports/151819: [patch] net-p2p/uhub port improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Yashin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 19:50:13 -0000 The following reply was made to PR ports/151819; it has been noted by GNATS. From: Dmitry Yashin To: bug-followup@freebsd.org Cc: Subject: Re: ports/151819: [patch] net-p2p/uhub port improvements Date: Fri, 29 Oct 2010 23:42:10 +0400 thx, i agree From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 20:10:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 277BE106567A for ; Fri, 29 Oct 2010 20:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD11C8FC13 for ; Fri, 29 Oct 2010 20:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TKAA7W042641 for ; Fri, 29 Oct 2010 20:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TKAAFB042640; Fri, 29 Oct 2010 20:10:10 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 20:10:10 GMT Resent-Message-Id: <201010292010.o9TKAAFB042640@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Best Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDF061065670 for ; Fri, 29 Oct 2010 20:07:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id ACAC98FC0A for ; Fri, 29 Oct 2010 20:07:31 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TK7VtU034485 for ; Fri, 29 Oct 2010 20:07:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TK7VFV034483; Fri, 29 Oct 2010 20:07:31 GMT (envelope-from nobody) Message-Id: <201010292007.o9TK7VFV034483@www.freebsd.org> Date: Fri, 29 Oct 2010 20:07:31 GMT From: Alexander Best To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151822: [maintainer update] editors/py-room X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 20:10:11 -0000 >Number: 151822 >Category: ports >Synopsis: [maintainer update] editors/py-room >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 20:10:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Alexander Best >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD otaku 9.0-CURRENT FreeBSD 9.0-CURRENT #1 r214419M: Wed Oct 27 16:20:14 CEST 2010 arundel@otaku:/usr/obj/usr/subversion-src/sys/ARUNDEL amd64 >Description: update my mail address. ;) >How-To-Repeat: >Fix: Patch attached with submission follows: --- editors/py-room/Makefile.orig 2010-10-29 22:02:34.000000000 +0200 +++ editors/py-room/Makefile 2010-10-29 22:02:56.000000000 +0200 @@ -13,7 +13,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= py${PORTNAME}-${PORTVERSION} -MAINTAINER= alexbestms@wwu.de +MAINTAINER= arundel@FreeBSD.org COMMENT= PyRoom is a clone of WriteRoom and features "distraction-free writing" RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 20:10:18 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0348E1065672; Fri, 29 Oct 2010 20:10:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CCB3C8FC14; Fri, 29 Oct 2010 20:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TKAHGA043022; Fri, 29 Oct 2010 20:10:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TKAHfq043012; Fri, 29 Oct 2010 20:10:17 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 20:10:17 GMT Message-Id: <201010292010.o9TKAHfq043012@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151822: [maintainer update] editors/py-room X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 20:10:18 -0000 Synopsis: [maintainer update] editors/py-room Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Oct 29 20:10:17 UTC 2010 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151822 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 20:10:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A5661065673; Fri, 29 Oct 2010 20:10:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 500FB8FC08; Fri, 29 Oct 2010 20:10:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TKANtM043509; Fri, 29 Oct 2010 20:10:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TKANML043504; Fri, 29 Oct 2010 20:10:23 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 20:10:23 GMT Message-Id: <201010292010.o9TKANML043504@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, arundel@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151822: [maintainer update] editors/py-room X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 20:10:23 -0000 Synopsis: [maintainer update] editors/py-room Responsible-Changed-From-To: freebsd-ports-bugs->arundel Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 20:10:22 UTC 2010 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151822 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 20:30:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33B0A1065674 for ; Fri, 29 Oct 2010 20:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E18238FC14 for ; Fri, 29 Oct 2010 20:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TKU9ug062718 for ; Fri, 29 Oct 2010 20:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TKU9YS062717; Fri, 29 Oct 2010 20:30:09 GMT (envelope-from gnats) Resent-Date: Fri, 29 Oct 2010 20:30:09 GMT Resent-Message-Id: <201010292030.o9TKU9YS062717@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, C-S Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7BF1106566C for ; Fri, 29 Oct 2010 20:29:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 9520F8FC17 for ; Fri, 29 Oct 2010 20:29:43 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TKThUu061660 for ; Fri, 29 Oct 2010 20:29:43 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9TKThZf061657; Fri, 29 Oct 2010 20:29:43 GMT (envelope-from nobody) Message-Id: <201010292029.o9TKThZf061657@www.freebsd.org> Date: Fri, 29 Oct 2010 20:29:43 GMT From: C-S To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151823: [NEW PORT] devel/bzr-git X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 20:30:10 -0000 >Number: 151823 >Category: ports >Synopsis: [NEW PORT] devel/bzr-git >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 20:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: C-S >Release: >Organization: >Environment: >Description: My older PR about adding this port was closed successfully but nothing was every commited. Hence, here again :-) >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # bzr-git/Makefile # bzr-git/distinfo # bzr-git/pkg-descr # bzr-git/pkg-plist # echo x - bzr-git/Makefile sed 's/^X//' >bzr-git/Makefile << '23850274c4e934198077e26e3777800e' X# Ports collection makefile for: bzr-git X# Date created: 9 August 2010 X# Whom: Carlo Strub X# X# $FreeBSD$ X# X XPORTNAME= bzr-git XPORTVERSION= 0.5.2 XCATEGORIES= devel XMASTER_SITES= https://launchpadlibrarian.net/52765000/ \ X http://www.c-s.li/ports/ X XMAINTAINER= c-s@c-s.li XCOMMENT= Plugin for bzr to work with git trees X XBUILD_DEPENDS= bzr:${PORTSDIR}/devel/bazaar-ng XRUN_DEPENDS= ${PYTHON_SITELIBDIR}/dulwich/__init__.py:${PORTSDIR}/devel/dulwich \ X bzr:${PORTSDIR}/devel/bazaar-ng X XLICENSE= GPLv2 X XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} XUSE_PYTHON= yes XUSE_PYDISTUTILS= yes XPYDISTUTILS_PKGNAME= bzr_git X X.include 23850274c4e934198077e26e3777800e echo x - bzr-git/distinfo sed 's/^X//' >bzr-git/distinfo << '7be4861de60053836516eb6bc6ba3d28' XSHA256 (bzr-git-0.5.2.tar.gz) = 791f4e6c8dc1a06fd2519d209dd3f2da441a8060fc70b916dfd201c4e2222497 XSIZE (bzr-git-0.5.2.tar.gz) = 81139 7be4861de60053836516eb6bc6ba3d28 echo x - bzr-git/pkg-descr sed 's/^X//' >bzr-git/pkg-descr << 'fbce696cd42873f458ac45ff86c7723a' Xbzr-git is a plugin for bzr to work with git trees. All operations except for X"push" are supported. X Xwww: https://launchpad.net/bzr-git fbce696cd42873f458ac45ff86c7723a echo x - bzr-git/pkg-plist sed 's/^X//' >bzr-git/pkg-plist << '05e320cff02a88808c586c09a0221d08' Xbin/bzr-receive-pack Xbin/bzr-upload-pack X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/__init__.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/__init__.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/__init__.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/branch.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/branch.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/branch.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/cache.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/cache.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/cache.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/commands.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/commands.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/commands.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/commit.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/commit.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/commit.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/config.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/config.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/config.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/dir.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/dir.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/dir.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/errors.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/errors.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/errors.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/fetch.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/fetch.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/fetch.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/hg.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/hg.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/hg.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/info.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/info.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/info.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/inventory.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/inventory.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/inventory.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/mapping.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/mapping.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/mapping.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/object_store.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/object_store.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/object_store.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/push.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/push.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/push.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/refs.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/refs.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/refs.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/remote.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/remote.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/remote.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/repository.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/repository.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/repository.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/revspec.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/revspec.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/revspec.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/roundtrip.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/roundtrip.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/roundtrip.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/send.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/send.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/send.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/server.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/server.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/server.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/__init__.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/__init__.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/__init__.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_blackbox.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_blackbox.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_blackbox.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_branch.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_branch.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_branch.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_builder.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_builder.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_builder.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_cache.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_cache.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_cache.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_dir.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_dir.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_dir.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_fetch.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_fetch.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_fetch.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_mapping.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_mapping.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_mapping.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_object_store.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_object_store.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_object_store.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_push.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_push.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_push.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_refs.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_refs.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_refs.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_remote.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_remote.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_remote.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_repository.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_repository.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_repository.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_revspec.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_revspec.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_revspec.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_roundtrip.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_roundtrip.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_roundtrip.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_transportgit.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_transportgit.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests/test_transportgit.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/transportgit.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/transportgit.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/transportgit.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tree.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tree.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tree.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/versionedfiles.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/versionedfiles.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/versionedfiles.pyo X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/workingtree.py X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/workingtree.pyc X%%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/workingtree.pyo X@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/plugins/git/tests X@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/plugins/git X@dirrmtry %%PYTHON_SITELIBDIR%%/bzrlib/plugins X@dirrmtry %%PYTHON_SITELIBDIR%%/bzrlib 05e320cff02a88808c586c09a0221d08 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 20:30:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48305106564A; Fri, 29 Oct 2010 20:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 192F38FC0A; Fri, 29 Oct 2010 20:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TKUG4T063253; Fri, 29 Oct 2010 20:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TKUGhE063242; Fri, 29 Oct 2010 20:30:16 GMT (envelope-from edwin) Date: Fri, 29 Oct 2010 20:30:16 GMT Message-Id: <201010292030.o9TKUGhE063242@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glarkin@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151823: [NEW PORT] devel/bzr-git X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 20:30:17 -0000 Synopsis: [NEW PORT] devel/bzr-git Responsible-Changed-From-To: freebsd-ports-bugs->glarkin Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 29 20:30:16 UTC 2010 Responsible-Changed-Why: glarkin@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151823 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 29 21:30:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D84A710656CB for ; Fri, 29 Oct 2010 21:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9FB238FC18 for ; Fri, 29 Oct 2010 21:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9TLUCFF026576 for ; Fri, 29 Oct 2010 21:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9TLUC6d026571; Fri, 29 Oct 2010 21:30:12 GMT (envelope-from gnats) Date: Fri, 29 Oct 2010 21:30:12 GMT Message-Id: <201010292130.o9TLUC6d026571@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ivan Klymenko Cc: Subject: Re: ports/151816: Please udpate nvidia drivers 256.53 -> 260.19.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ivan Klymenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 21:30:16 -0000 The following reply was made to PR ports/151816; it has been noted by GNATS. From: Ivan Klymenko To: bug-followup@FreeBSD.org, coder@tuxfamily.org Cc: Subject: Re: ports/151816: Please udpate nvidia drivers 256.53 -> 260.19.12 Date: Sat, 30 Oct 2010 00:20:50 +0300 --MP_/ZGH3SV3QrhlR2LBBYOOcZOE Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline try to use ... --MP_/ZGH3SV3QrhlR2LBBYOOcZOE Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=nvidia-driver-260.19.12.shar.txt # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./files # ./files/patch-lib::Makefile # ./files/pkg-message.in # ./Makefile # ./distinfo # ./pkg-descr # ./pkg-plist # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/patch-lib::Makefile sed 's/^X//' >./files/patch-lib::Makefile << 'a2e5f05d8eb748e916fe48be8c5b57de' X--- lib/Makefile.orig Fri Jun 17 09:44:23 2005 X+++ lib/Makefile Wed Jun 22 19:12:16 2005 X@@ -6,7 +6,7 @@ X FIND_DIRS= /usr/lib \ X ${LOCALBASE}/lib X X-.if exists(/compat/linux) X+.if exists(/compat/linux) && !defined(WITHOUT_LINUX) X SUBDIR+= compat X FIND_DIRS+= /compat/linux/lib \ X /compat/linux/usr/lib \ a2e5f05d8eb748e916fe48be8c5b57de echo x - ./files/pkg-message.in sed 's/^X//' >./files/pkg-message.in << 'f63be51668f70461c30a5539f7c148ef' XTo use these drivers, make sure that you have loaded the nvidia kernel Xmodule, by doing X X # kldload nvidia X Xor adding X X nvidia_load="YES" X Xto your /boot/loader.conf. X XIf you build this port with WITH_FREEBSD_AGP=yes, make sure you have Xagp.ko kernel module installed and loaded, since nvidia.ko will depend Xon it, or have your kernel compiled with "device agp". Otherwise the Xnvidia kernel module will not load. Also, care to specify correct X``Option "NvAGP"'' in ``Device'' section of your X11 configuration file. X XWhen building with Linux compatibility (WITH_LINUX=yes), make sure Xlinux.ko is available as well (or have it compiled in kernel). It can Xbe loaded via /boot/loader.conf (or later in boot process if you add X X linux_enable="YES" X Xto your /etc/rc.conf. X XNote that this driver does not support PAE-enabled kernels. X XIf X.org cannot start and reports X X (EE) NVIDIA(0): Failed to obtain a shared memory identifier. X Xin /var/log/Xorg.0.log while actually you have ``options SYSVSHM'' Xenabled in kernel, the sysctl ``kern.ipc.shmall'' should be increased. X XSee %%DOCSDIR%%/README for more information. f63be51668f70461c30a5539f7c148ef echo x - ./Makefile sed 's/^X//' >./Makefile << '464ef7c6571951809b23e262cbe26e19' X# New ports collection makefile for: nvidia-driver (latest and master port) X# Date created: 15 september 2010 X# Whom: Ivan Klymenko X# X# $FreeBSD: ports/x11/nvidia-driver/Makefile,v 1.97 2010/04/10 13:40:07 danfe Exp $ X# X XPORTNAME= nvidia-driver XDISTVERSION?= 260.19.12 XPORTREVISION?= 0 # As a reminder it can be overridden XCATEGORIES= x11 kld XMASTER_SITES= ${MASTER_SITE_NVIDIA} XARCH_SUFX= ${ARCH:S/i386//:S/amd/_/} XMASTER_SITE_SUBDIR= XFree86/FreeBSD-x86${ARCH_SUFX}/${DISTVERSION} XDISTNAME= NVIDIA-FreeBSD-x86${ARCH_SUFX}-${DISTVERSION} X XMAINTAINER= fidaj@ukr.net XCOMMENT= NVidia graphics card binary drivers for hardware OpenGL rendering X XNO_PACKAGE= should be recompiled for a particular FreeBSD kernel XUSE_GL= gl XUSE_LDCONFIG= yes XSUB_FILES+= pkg-message XDOCSDIR= ${PREFIX}/share/doc/NVIDIA_GLX-1.0 XMODULESDIR= lib/xorg/modules XPORTDOCS= * X X# Starting with version 1.0-7667, NVidia has dropped support for numerous X# "legacy" GPUs. Consult NVidia README (the Appendix) to find out whether X# you need to use legacy driver version and install one of corresponding X# `x11/nvidia-driver-71', `x11/nvidia-driver-96', or `x11/nvidia-driver-173' X# slave ports. X# X# XXX Until NVidia starts to name their releases consistently, employ this X# ugly hack below to derive NVVERSION. XXX X# X.if ${DISTVERSION:C/[0-9]+//g} == ".." # major.minor.update XNVVERSION= ${DISTVERSION:S/.//g} X.else # major.minor XNVVERSION= ${DISTVERSION:S/.//g}00 X.endif X X.if ${NVVERSION} >= 1952200 XONLY_FOR_ARCHS= i386 amd64 X.else XONLY_FOR_ARCHS= i386 X.endif X XOPTIONS= FREEBSD_AGP "Use FreeBSD AGP GART driver" off \ X ACPI_PM "Enable support for ACPI Power Management" off \ X LINUX "Build with support for Linux compatibility" on X.if ${NVVERSION} >= 1952200 XOPTIONS+= WBINVD "Enable heavy-weight cache-flush logic" off X.endif X X.include X X# XXX Should use ${PKG_INFO} but it does not expand for some reason XXX X# XXSERVVERSION!= /usr/sbin/pkg_info -qO x11-servers/xorg-server 2>/dev/null || true XLIBGLVERSION!= /usr/sbin/pkg_info -qO graphics/libGL 2>/dev/null || true X X.if empty(XSERVVERSION) XIGNORE= needs an X server implementation installed X.endif X XPLIST_SUB+= XSERVVERSION=${XSERVVERSION} LIBGLVERSION=${LIBGLVERSION} \ X LINUXBASE=${LINUXBASE} SHLIB_VERSION=${PORTVERSION} \ X MODULESDIR=${MODULESDIR} X X.if !defined(WITHOUT_LINUX) XCONFLICTS= linux-dri-[0-9]* linux-f10-dri-[0-9]* linux-f8-dri-[0-9]* \ X linux_dri-[0-9]* linux_dri-devel-[0-9]* XUSE_LINUX= yes XPLIST_SUB+= LINUX="" X.else XPLIST_SUB+= LINUX="@comment " X# Propagate WITHOUT_LINUX variable down to inner Makefiles XMAKE_ENV+= WITHOUT_LINUX=yes X.endif X X.if ${OSVERSION} < 702106 && ${NVVERSION} >= 1952200 XIGNORE= requires fairly recent FreeBSD-STABLE, or FreeBSD-CURRENT X.endif X X.if ${NVVERSION} < 1952200 XLIB_DEPENDS+= m.3:${PORTSDIR}/misc/compat5x X.endif X Xpost-patch: .SILENT X# We should support -CURRENT: kill the check X ${REINPLACE_CMD} '24,26d' ${WRKSRC}/src/nv-freebsd.h X# Adjust for updated d_mmap() in recent -CURRENT X.if ${OSVERSION} > 900005 && ${NVVERSION} < 1952200 X ${REINPLACE_CMD} 's/vm_offset_t offset/vm_ooffset_t offset/ ; \ X s/vm_offset_t \*address/vm_paddr_t *address/ ; \ X s/int nprot/&, vm_memattr_t *memattr/' \ X ${WRKSRC}/src/nvidia_dev.c X.endif X.if defined(WITH_FREEBSD_AGP) X ${REINPLACE_CMD} -E 's/undef (NV_SUPPORT_OS_AGP)/define \1/' \ X ${WRKSRC}/src/nv-freebsd.h X.endif X.if defined(WITH_ACPI_PM) X ${REINPLACE_CMD} -E 's/undef (NV_SUPPORT_ACPI_PM)/define \1/' \ X ${WRKSRC}/src/nv-freebsd.h X.endif X.if defined(WITHOUT_LINUX) X ${REINPLACE_CMD} -E 's/define (NV_SUPPORT_LINUX_COMPAT)/undef \1/' \ X ${WRKSRC}/src/nv-freebsd.h X.endif X.if defined(WITH_WBINVD) X ${REINPLACE_CMD} -E 's/undef (NV_USE_WBINVD)/define \1/' \ X ${WRKSRC}/src/nv-freebsd.h X.endif X# Don't build any binaries (nvidia-settings and nvidia-xconfig) and manuals X.if ${NVVERSION} < 974600 || ${NVVERSION} >= 1952200 X ${REINPLACE_CMD} -E 's/(extension).*/\1/' ${WRKSRC}/x11/Makefile X.else X ${REINPLACE_CMD} -E 's/(lib).*/\1/' ${WRKSRC}/x11/Makefile X.endif X ${REINPLACE_CMD} '/bin/d ; /man/d' ${WRKSRC}/x11/Makefile X# Conditionally install documentation (but you generally want it) X.if defined(NOPORTDOCS) X ${REINPLACE_CMD} -E 's/(x11).*/\1/ ; /doc/d' ${WRKSRC}/Makefile X.endif X# Do not execute afterinstall target (prevent automatic module registration) X ${REINPLACE_CMD} -e 's/afterinstall/dontexecute/' ${WRKSRC}/Makefile X Xpre-su-install: X# XXX This port silently assumes PREFIX == LOCALBASE XXX X @${MKDIR} ${PREFIX}/${MODULESDIR}/drivers X Xpost-install: X# pkg-plist is already overbloated, so use these hacks instead of PLIST_SUB's X.if ${NVVERSION} < 817400 X @${REINPLACE_CMD} '/libnvidia-cfg/d' ${TMPPLIST} X.endif X.if ${NVVERSION} < 974600 || ${NVVERSION} >= 1952200 X @${REINPLACE_CMD} '/wfb/d' ${TMPPLIST} X.endif X.if ${NVVERSION} < 1802900 X @${REINPLACE_CMD} '/vdpau/d' ${TMPPLIST} X.else X @${MKDIR} ${PREFIX}/include/vdpau X @${LN} -sf ${DOCSDIR}/vdpau*.h ${PREFIX}/include/vdpau X.endif X.if ${NVVERSION} < 1851829 X @${REINPLACE_CMD} '/libcuda/d' ${TMPPLIST} X.endif X# Some applications need this symlink (see PR ports/72877) X @${LN} -sf libXvMCNVIDIA.so.1 ${PREFIX}/lib/libXvMCNVIDIA_dynamic.so.1 X @${ECHO_MSG} X @${CAT} ${PKGMESSAGE} X @${ECHO_MSG} X X.include 464ef7c6571951809b23e262cbe26e19 echo x - ./distinfo sed 's/^X//' >./distinfo << 'aec8793adfd5b7c3f00e62ae41a09ac2' XMD5 (NVIDIA-FreeBSD-x86-260.19.12.tar.gz) = cd9331364959a9e8ce6bfc23a9e46799 XSHA256 (NVIDIA-FreeBSD-x86-260.19.12.tar.gz) = 1ad76a62916b1c89ae005cbae8b33c3c7cc17ae6a0aaf750b62c70117a9a9db2 XSIZE (NVIDIA-FreeBSD-x86-260.19.12.tar.gz) = 27173729 XMD5 (NVIDIA-FreeBSD-x86_64-260.19.12.tar.gz) = a36e2aa1a1066fd462ff9b67069f7e63 XSHA256 (NVIDIA-FreeBSD-x86_64-260.19.12.tar.gz) = cb386babc6800808b84d3cc42f73fd20c954c40fe71997803f3457a4e7bfbc21 XSIZE (NVIDIA-FreeBSD-x86_64-260.19.12.tar.gz) = 27840201 XMD5 (NVIDIA-FreeBSD-x86-173.14.25.tar.gz) = 1eca3916a9ae86b953f54405e1881774 XSHA256 (NVIDIA-FreeBSD-x86-173.14.25.tar.gz) = c432ed94ce71e297b2d9304d9f34f906b58e2c7c4bc13d8dbac264ed52fd6261 XSIZE (NVIDIA-FreeBSD-x86-173.14.25.tar.gz) = 16682722 XMD5 (NVIDIA-FreeBSD-x86-96.43.16.tar.gz) = 3fc5c2bb537d4a7664d84a7a0df09c7c XSHA256 (NVIDIA-FreeBSD-x86-96.43.16.tar.gz) = 38bf334284dc600d92d8436333c98d5577e34d69456ed71f1cccc75caa6dffcd XSIZE (NVIDIA-FreeBSD-x86-96.43.16.tar.gz) = 11842453 XMD5 (NVIDIA-FreeBSD-x86-71.86.13.tar.gz) = 19000b906225ebd39ca3edc1b0c3c7a5 XSHA256 (NVIDIA-FreeBSD-x86-71.86.13.tar.gz) = 27ae01cd6fe050871f7785c2146b18e74ea882f6262e46dc965bf26061238447 XSIZE (NVIDIA-FreeBSD-x86-71.86.13.tar.gz) = 8066159 aec8793adfd5b7c3f00e62ae41a09ac2 echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << '0e313719ff012ceaf97a028d51caa8f5' XThese are the official NVidia binary drivers for hardware OpenGL rendering Xin X, using the GLX extensions. X XWWW: http://www.nvidia.com/object/unix.html 0e313719ff012ceaf97a028d51caa8f5 echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'ef3e7f63841ae908ba397c2bef1fbad6' X@comment I can't add the below files to the package because pkg_delete X@comment will complain when removing this package: X@comment %%MODULESDIR%%/extensions/XXX-libglx.la.%%%%.%%XSERVVERSION%% X@comment %%MODULESDIR%%/extensions/XXX-libglx.so.%%%%.%%XSERVVERSION%% X@comment lib/XXX-libGL.so.1.%%%%.%%LIBGLVERSION%% X@comment They are however restored when this package is removed: X@exec mv -f %D/%%MODULESDIR%%/extensions/libglx.la %D/%%MODULESDIR%%/extensions/XXX-libglx.la.%%%%.%%XSERVVERSION%% X@unexec mv -f %D/%%MODULESDIR%%/extensions/XXX-libglx.la.%%%%.%%XSERVVERSION%% %D/%%MODULESDIR%%/extensions/libglx.la X@exec mv -f %D/%%MODULESDIR%%/extensions/libglx.so %D/%%MODULESDIR%%/extensions/XXX-libglx.so.%%%%.%%XSERVVERSION%% X@unexec mv -f %D/%%MODULESDIR%%/extensions/XXX-libglx.so.%%%%.%%XSERVVERSION%% %D/%%MODULESDIR%%/extensions/libglx.so X@exec mv -f %D/lib/libGL.so.1 %D/lib/XXX-libGL.so.1.%%%%.%%LIBGLVERSION%% X@unexec mv -f %D/lib/XXX-libGL.so.1.%%%%.%%LIBGLVERSION%% %D/lib/libGL.so.1 Xlib/libnvidia-tls.so.1 Xlib/libnvidia-tls.so Xlib/libnvidia-cfg.so.1 Xlib/libnvidia-cfg.so Xlib/libnvidia-glcore.so.1 Xlib/libnvidia-glcore.so Xlib/vdpau/libvdpau_nvidia.so.1 Xlib/libvdpau_nvidia.so Xlib/libXvMCNVIDIA.so.1 Xlib/libXvMCNVIDIA.so Xlib/libXvMCNVIDIA.a Xlib/libXvMCNVIDIA_dynamic.so.1 X@dirrm lib/vdpau X%%MODULESDIR%%/libnvidia-wfb.so.1 X%%MODULESDIR%%/drivers/nvidia_drv.so X%%MODULESDIR%%/extensions/libglx.so.1 X@exec ln -sf libglx.so.1 %D/%%MODULESDIR%%/extensions/libglx.so X@dirrmtry %%MODULESDIR%%/drivers X@cwd /boot/modules Xnvidia.ko X@unexec kldxref %D X%%LINUX%%@cwd %%LINUXBASE%% X%%LINUX%%usr/lib/libGL.so.%%SHLIB_VERSION%% X%%LINUX%%usr/lib/libGL.so.1 X%%LINUX%%usr/lib/libnvidia-glcore.so.%%SHLIB_VERSION%% X%%LINUX%%usr/lib/libcuda.so.%%SHLIB_VERSION%% X%%LINUX%%usr/lib/libcuda.so.1 X%%LINUX%%usr/lib/libnvidia-tls.so.%%SHLIB_VERSION%% X%%LINUX%%usr/lib/libvdpau_nvidia.so X%%LINUX%%usr/lib/vdpau/libvdpau_nvidia.so.%%SHLIB_VERSION%% X%%LINUX%%usr/lib/vdpau/libvdpau_nvidia.so.1 X%%LINUX%%@dirrm usr/lib/vdpau X%%LINUX%%@exec %D/sbin/ldconfig -r %D X%%LINUX%%@unexec %D/sbin/ldconfig -r %D ef3e7f63841ae908ba397c2bef1fbad6 exit --MP_/ZGH3SV3QrhlR2LBBYOOcZOE-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 00:40:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D29391065670 for ; Sat, 30 Oct 2010 00:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 94CA38FC15 for ; Sat, 30 Oct 2010 00:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9U0e8i3022640 for ; Sat, 30 Oct 2010 00:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9U0e8Yb022639; Sat, 30 Oct 2010 00:40:08 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 00:40:08 GMT Resent-Message-Id: <201010300040.o9U0e8Yb022639@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ben Grimm Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EC921065673 for ; Sat, 30 Oct 2010 00:38:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 2CD768FC0C for ; Sat, 30 Oct 2010 00:38:59 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9U0cwqA015331 for ; Sat, 30 Oct 2010 00:38:58 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9U0cwSE015330; Sat, 30 Oct 2010 00:38:58 GMT (envelope-from nobody) Message-Id: <201010300038.o9U0cwSE015330@www.freebsd.org> Date: Sat, 30 Oct 2010 00:38:58 GMT From: Ben Grimm To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151824: portmaster -e globbing appears to have a problem with wildcards X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 00:40:08 -0000 >Number: 151824 >Category: ports >Synopsis: portmaster -e globbing appears to have a problem with wildcards >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 00:40:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ben Grimm >Release: FreeBSD 8.1-STABLE >Organization: >Environment: FreeBSD box 8.1-STABLE FreeBSD 8.1-STABLE #0: Thu Sep 23 15:37:21 CEST 2010 toor@box:/usr/obj/usr/src/sys/BOX amd64 >Description: See http://forums.freebsd.org/showthread.php?t=18868 for description. Summary: 'portmaster -e glob\*' only seems to work when /var/db/pkg is the current working directory. If it is any other directory, it appears to expand (erroneously) in *that* directory instead of matching entries in /var/db/pkg. >How-To-Repeat: http://forums.freebsd.org/showthread.php?t=18868 >Fix: Anchor the functionality of portmaster -e in /var/db/pkg/ instead of cwd. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 04:10:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79BCD106566C for ; Sat, 30 Oct 2010 04:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3A5E18FC0A for ; Sat, 30 Oct 2010 04:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9U4ABCM038288 for ; Sat, 30 Oct 2010 04:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9U4ABSo038287; Sat, 30 Oct 2010 04:10:11 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 04:10:11 GMT Resent-Message-Id: <201010300410.o9U4ABSo038287@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Harris Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0B34106564A for ; Sat, 30 Oct 2010 04:08:43 +0000 (UTC) (envelope-from jason@wilma.widomaker.com) Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by mx1.freebsd.org (Postfix) with ESMTP id AF68E8FC12 for ; Sat, 30 Oct 2010 04:08:43 +0000 (UTC) Received: from wilma.widomaker.com ([204.17.220.5]) by wilma.widomaker.com with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1PC24E-000P6R-20; Fri, 29 Oct 2010 23:25:19 -0400 Received: (from jason@localhost) by wilma.widomaker.com (8.14.3/8.14.3/Submit) id o9U3OdN7065511; Fri, 29 Oct 2010 23:24:39 -0400 (AST) (envelope-from jason) Message-Id: <201010300324.o9U3OdN7065511@wilma.widomaker.com> Date: Fri, 29 Oct 2010 23:24:39 -0400 (AST) From: Jason Harris To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Jason Harris Subject: ports/151825: [MAINTAINER] ports/sysutils/less -> 4.36 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jason Harris List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 04:10:11 -0000 >Number: 151825 >Category: ports >Synopsis: [MAINTAINER] ports/sysutils/less -> 4.36 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 04:10:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jason Harris >Release: FreeBSD 7.1-RELEASE i386 >Organization: not really... >Environment: System: FreeBSD laptop 7.1-RELEASE FreeBSD 7.1-RELEASE #0: Thu Jan 1 14:37:25 UTC 2009 root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: update ports/sysutils/less -> 4.36 >How-To-Repeat: apply patch below >Fix: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/less/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- Makefile 29 Jan 2007 19:05:06 -0000 1.41 +++ Makefile 30 Oct 2010 02:58:22 -0000 @@ -6,10 +6,10 @@ # PORTNAME= less -PORTVERSION= 382 +PORTVERSION= 436 CATEGORIES= sysutils -MASTER_SITES= http://www.greenwoodsoftware.com/%SUBDIR%/ \ - ${MASTER_SITE_GNU} +MASTER_SITES= http://www.greenwoodsoftware.com/%SUBDIR%/ +# ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= less MAINTAINER= jharris@widomaker.com @@ -20,13 +20,13 @@ .include GNU_CONFIGURE= yes -MAN1= less.1 lesskey.1 +MAN1= less.1 lesskey.1 lessecho.1 .if defined(COLOUR_LESS) || defined(COLOR_LESS) -MAKE_ENV= CPPFLAGS="-DCOLOUR_LESS" +MAKE_ENV= CPPFLAGS="-DCOLOR_LESS" pre-fetch: - @${ECHO_MSG} "Making a colour version of less." + @${ECHO_MSG} "Making a color version of less." .endif .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/sysutils/less/distinfo,v retrieving revision 1.21 diff -u -r1.21 distinfo --- distinfo 19 Jul 2007 21:37:13 -0000 1.21 +++ distinfo 30 Oct 2010 02:58:22 -0000 @@ -1,3 +1,3 @@ -MD5 (less-382.tar.gz) = 103fe4aef6297b93f0f73f38cc3b1bd7 -SHA256 (less-382.tar.gz) = d33cc51f220647d015fd526b3782cde03c5d8b18c5233e6388a0047a70446fe7 -SIZE (less-382.tar.gz) = 264414 +MD5 (less-436.tar.gz) = 817bf051953ad2dea825a1cdf460caa4 +SHA256 (less-436.tar.gz) = 57a16ff07431a9af45cf1cd5b374e1066d019304219f0d156e22bb8c4d6734d2 +SIZE (less-436.tar.gz) = 303921 cvs diff: Diffing files Index: files/patch-aa =================================================================== RCS file: /home/ncvs/ports/sysutils/less/files/patch-aa,v retrieving revision 1.7 diff -u -r1.7 patch-aa --- files/patch-aa 4 Apr 2003 12:40:04 -0000 1.7 +++ files/patch-aa 30 Oct 2010 02:58:22 -0000 @@ -1,7 +1,11 @@ ---- Makefile.in.orig Fri Apr 9 20:02:59 1999 -+++ Makefile.in Thu Apr 15 23:09:36 1999 -@@ -15,7 +15,7 @@ - LDFLAGS = @LDFLAGS@ +=================================================================== +RCS file: Makefile.in,v +retrieving revision 1.1 +diff -u -r1.1 Makefile.in +--- Makefile.in 2010/10/30 02:29:59 1.1 ++++ Makefile.in 2010/10/30 02:32:04 +@@ -17,7 +17,7 @@ + EXEEXT = @EXEEXT@ O=o -LIBS = @LIBS@ Index: files/patch-ab =================================================================== RCS file: /home/ncvs/ports/sysutils/less/files/patch-ab,v retrieving revision 1.3 diff -u -r1.3 patch-ab --- files/patch-ab 4 Apr 2003 12:40:04 -0000 1.3 +++ files/patch-ab 30 Oct 2010 02:58:22 -0000 @@ -1,8 +1,12 @@ ---- charset.c.orig Thu Mar 23 05:36:33 2000 -+++ charset.c Mon Jun 19 22:33:43 2000 -@@ -267,6 +267,10 @@ +=================================================================== +RCS file: charset.c,v +retrieving revision 1.1 +diff -u -r1.1 charset.c +--- charset.c 2010/10/30 02:38:17 1.1 ++++ charset.c 2010/10/30 02:40:03 +@@ -408,6 +408,10 @@ control_char(c) - int c; + LWCHAR c; { +#ifdef COLOR_LESS + if (c == ESC) @@ -11,9 +15,9 @@ c &= 0377; return (chardef[c] & IS_CONTROL_CHAR); } -@@ -281,6 +285,20 @@ - { - static char buf[8]; +@@ -423,6 +427,20 @@ + /* {{ This buffer can be overrun if LESSBINFMT is a long string. }} */ + static char buf[32]; +#ifdef COLOR_LESS + if(c == ESC) @@ -30,12 +34,13 @@ + } +#else c &= 0377; - if (!control_char(c)) - sprintf(buf, "%c", c); -@@ -290,5 +308,6 @@ - sprintf(buf, "^%c", c ^ 0100); + if ((c < 128 || !utf_mode) && !control_char(c)) + SNPRINTF1(buf, sizeof(buf), "%c", (int) c); +@@ -446,6 +464,7 @@ + #endif else - sprintf(buf, binfmt, c); + SNPRINTF1(buf, sizeof(buf), binfmt, c); +#endif return (buf); } + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 05:20:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EFC2106564A for ; Sat, 30 Oct 2010 05:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 08DA68FC0C for ; Sat, 30 Oct 2010 05:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9U5K8Id017754 for ; Sat, 30 Oct 2010 05:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9U5K8LT017753; Sat, 30 Oct 2010 05:20:08 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 05:20:08 GMT Resent-Message-Id: <201010300520.o9U5K8LT017753@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Logvinov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D944106566C for ; Sat, 30 Oct 2010 05:19:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id EFEA88FC0A for ; Sat, 30 Oct 2010 05:19:46 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9U5Jk7M063224 for ; Sat, 30 Oct 2010 05:19:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9U5JknI063223; Sat, 30 Oct 2010 05:19:46 GMT (envelope-from nobody) Message-Id: <201010300519.o9U5JknI063223@www.freebsd.org> Date: Sat, 30 Oct 2010 05:19:46 GMT From: Alexander Logvinov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151826: [PATCH] www/rubygem-haml: update to 3.0.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 05:20:09 -0000 >Number: 151826 >Category: ports >Synopsis: [PATCH] www/rubygem-haml: update to 3.0.22 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 05:20:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Alexander Logvinov >Release: >Organization: >Environment: >Description: Update to 3.0.22. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/rubygem-haml/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 6 Jun 2010 19:56:36 -0000 1.13 +++ Makefile 30 Oct 2010 05:12:03 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/www/rubygem-haml/Makefile,v 1.13 2010/06/06 19:56:36 pgollucci Exp $ PORTNAME= haml -PORTVERSION= 3.0.7 +PORTVERSION= 3.0.22 CATEGORIES= www rubygems MASTER_SITES= RG Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/rubygem-haml/distinfo,v retrieving revision 1.11 diff -u -r1.11 distinfo --- distinfo 6 Jun 2010 19:56:36 -0000 1.11 +++ distinfo 30 Oct 2010 05:12:03 -0000 @@ -1,3 +1,2 @@ -MD5 (rubygem/haml-3.0.7.gem) = a83e3005b31c9b5d0e3458aa150c74f4 -SHA256 (rubygem/haml-3.0.7.gem) = 3029d7d8d689448767024557495b7ca3d267548ace0170a6cfd6d23ff0b275e6 -SIZE (rubygem/haml-3.0.7.gem) = 515584 +SHA256 (rubygem/haml-3.0.22.gem) = 2d1846a2daf348d27ab1f406eeb5ee1840ec10fe1c8332d8b4d13f7c14d42c37 +SIZE (rubygem/haml-3.0.22.gem) = 271360 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 05:20:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3469E106566B; Sat, 30 Oct 2010 05:20:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 09BBB8FC13; Sat, 30 Oct 2010 05:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9U5KEMf018127; Sat, 30 Oct 2010 05:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9U5KExl018118; Sat, 30 Oct 2010 05:20:14 GMT (envelope-from edwin) Date: Sat, 30 Oct 2010 05:20:14 GMT Message-Id: <201010300520.o9U5KExl018118@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151826: [PATCH] www/rubygem-haml: update to 3.0.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 05:20:15 -0000 Synopsis: [PATCH] www/rubygem-haml: update to 3.0.22 Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 30 05:20:14 UTC 2010 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151826 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 05:50:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A68121065695 for ; Sat, 30 Oct 2010 05:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5FE768FC2D for ; Sat, 30 Oct 2010 05:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9U5o9QD047195 for ; Sat, 30 Oct 2010 05:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9U5o9qe047194; Sat, 30 Oct 2010 05:50:09 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 05:50:09 GMT Resent-Message-Id: <201010300550.o9U5o9qe047194@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F619106566C for ; Sat, 30 Oct 2010 05:45:49 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 116938FC14 for ; Sat, 30 Oct 2010 05:45:48 +0000 (UTC) Received: by gxk9 with SMTP id 9so2554654gxk.13 for ; Fri, 29 Oct 2010 22:45:48 -0700 (PDT) Received: by 10.91.18.35 with SMTP id v35mr5577997agi.147.1288417548027; Fri, 29 Oct 2010 22:45:48 -0700 (PDT) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx.google.com with ESMTPS id z70sm2473103yhc.36.2010.10.29.22.45.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 29 Oct 2010 22:45:47 -0700 (PDT) Received: by sunpoet.net (Postfix, from userid 1000) id 16AAF2AEC642; Sat, 30 Oct 2010 13:45:32 +0800 (CST) Message-Id: <20101030054532.16AAF2AEC642@sunpoet.net> Date: Sat, 30 Oct 2010 13:45:32 +0800 (CST) From: Sunpoet Po-Chuan Hsieh Sender: Sunpoet Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clsung@FreeBSD.org Subject: ports/151827: [PATCH] devel/p5-threads: update to 1.81 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 05:50:09 -0000 >Number: 151827 >Category: ports >Synopsis: [PATCH] devel/p5-threads: update to 1.81 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 05:50:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 8.1-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 8.1-STABLE FreeBSD 8.1-STABLE #0: Sat Oct 23 16:01:16 CST 2010 >Description: - Update to 1.81 Port maintainer (clsung@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-threads-1.81.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-threads/Makefile,v retrieving revision 1.24 diff -u -u -r1.24 Makefile --- Makefile 23 Aug 2010 03:58:05 -0000 1.24 +++ Makefile 30 Oct 2010 05:44:59 -0000 @@ -6,10 +6,9 @@ # PORTNAME= threads -PORTVERSION= 1.77 +PORTVERSION= 1.81 CATEGORIES= devel perl5 -MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= ../../authors/id/J/JD/JDHEDDEN +MASTER_SITES= CPAN/../../authors/id/J/JD/JDHEDDEN PKGNAMEPREFIX= p5- MAINTAINER= clsung@FreeBSD.org Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/p5-threads/distinfo,v retrieving revision 1.22 diff -u -u -r1.22 distinfo --- distinfo 23 Aug 2010 03:58:05 -0000 1.22 +++ distinfo 30 Oct 2010 05:44:59 -0000 @@ -1,3 +1,2 @@ -MD5 (threads-1.77.tar.gz) = 203101e0e8ecfee5ca8b750eb0e91660 -SHA256 (threads-1.77.tar.gz) = c0e1410e6e827c10b874589a83d80d78de0e7b9205af37e70b76b033543e6bb0 -SIZE (threads-1.77.tar.gz) = 94976 +SHA256 (threads-1.81.tar.gz) = eb4f3049314eec8ffb81e442b7204f364c07b93ddda1a8780c91965ba8b1d09c +SIZE (threads-1.81.tar.gz) = 97792 --- p5-threads-1.81.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 05:50:23 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B89B106564A; Sat, 30 Oct 2010 05:50:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 113FD8FC2D; Sat, 30 Oct 2010 05:50:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9U5oMsu048570; Sat, 30 Oct 2010 05:50:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9U5oMpU048560; Sat, 30 Oct 2010 05:50:22 GMT (envelope-from edwin) Date: Sat, 30 Oct 2010 05:50:22 GMT Message-Id: <201010300550.o9U5oMpU048560@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151827: [PATCH] devel/p5-threads: update to 1.81 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 05:50:23 -0000 Synopsis: [PATCH] devel/p5-threads: update to 1.81 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 30 05:50:22 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151827 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 06:51:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B78A6106564A; Sat, 30 Oct 2010 06:51:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8D0C98FC12; Sat, 30 Oct 2010 06:51:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9U6pJ59021799; Sat, 30 Oct 2010 06:51:19 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9U6pJM8021795; Sat, 30 Oct 2010 06:51:19 GMT (envelope-from sunpoet) Date: Sat, 30 Oct 2010 06:51:19 GMT Message-Id: <201010300651.o9U6pJM8021795@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151825: [MAINTAINER] ports/sysutils/less -> 4.36 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 06:51:19 -0000 Synopsis: [MAINTAINER] ports/sysutils/less -> 4.36 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Oct 30 06:51:19 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151825 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 07:00:21 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82EEB1065670 for ; Sat, 30 Oct 2010 07:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 31DE88FC1B for ; Sat, 30 Oct 2010 07:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9U70J73022182 for ; Sat, 30 Oct 2010 07:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9U70IVD022179; Sat, 30 Oct 2010 07:00:18 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 07:00:18 GMT Resent-Message-Id: <201010300700.o9U70IVD022179@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Svyatoslav Lempert Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECC71106564A for ; Sat, 30 Oct 2010 06:52:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D87728FC08 for ; Sat, 30 Oct 2010 06:52:30 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9U6qUEp058362 for ; Sat, 30 Oct 2010 06:52:30 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9U6qUYk058357; Sat, 30 Oct 2010 06:52:30 GMT (envelope-from nobody) Message-Id: <201010300652.o9U6qUYk058357@www.freebsd.org> Date: Sat, 30 Oct 2010 06:52:30 GMT From: Svyatoslav Lempert To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151828: [UPDATE] devel/ioncube: update to 4.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 07:00:21 -0000 >Number: 151828 >Category: ports >Synopsis: [UPDATE] devel/ioncube: update to 4.0.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 07:00:18 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Svyatoslav Lempert >Release: 8.1-STABLE amd64 >Organization: >Environment: >Description: - Version update from 3.3.19 to 4.0.0 - FreeBSD 6.x support depricated and will be removed from port soon >How-To-Repeat: >Fix: Patch attached with submission follows: diff -rn -U 1 ioncube.old/Makefile ioncube/Makefile --- ioncube.old/Makefile 2010-05-28 17:27:44.000000000 +0100 +++ ioncube/Makefile 2010-10-30 07:29:13.000000000 +0100 @@ -8,6 +8,6 @@ PORTNAME= ioncube -DISTVERSION= 3.3.19 +DISTVERSION= 4.0.0 CATEGORIES= devel MASTER_SITES= http://downloads2.ioncube.com/loader_downloads/ \ - http://dl.dropbox.com/u/4211495/ioncube/ + http://dl.dropbox.com/u/4211495/ioncube/4.0.0 DISTFILES= ${PORTNAME}_loaders_fre_${VER}_${ARCH_DIST}${EXTRACT_SUFX} diff -rn -U 1 ioncube.old/distinfo ioncube/distinfo --- ioncube.old/distinfo 2010-05-28 17:27:44.000000000 +0100 +++ ioncube/distinfo 2010-10-30 07:36:16.000000000 +0100 @@ -1,18 +1,12 @@ -SIZE (ioncube_loaders_fre_6_x86-64.tar.gz) = 2311512 -SIZE (ioncube_loaders_fre_6_x86.tar.gz) = 2705515 -SIZE (ioncube_loaders_fre_7_x86-64.tar.gz) = 2991616 -SIZE (ioncube_loaders_fre_7_x86.tar.gz) = 2730281 -SIZE (ioncube_loaders_fre_8_x86-64.tar.gz) = 2999642 -SIZE (ioncube_loaders_fre_8_x86.tar.gz) = 2737048 -MD5 (ioncube_loaders_fre_6_x86-64.tar.gz) = 0903db0ec7d66192eda0776f0e109ab0 -MD5 (ioncube_loaders_fre_6_x86.tar.gz) = 8da62ec3146a8f822ffdadc52e401d4a -MD5 (ioncube_loaders_fre_7_x86-64.tar.gz) = 142cae75df1864e962c484cc1738cf27 -MD5 (ioncube_loaders_fre_7_x86.tar.gz) = c5cb0809d9be6ff97cb23f98b734cb09 -MD5 (ioncube_loaders_fre_8_x86-64.tar.gz) = 712c72a4b0647009298f4ea6eafaea82 -MD5 (ioncube_loaders_fre_8_x86.tar.gz) = 2f83347c039e9f2b8bff7b9fcd6d9c6d -SHA256 (ioncube_loaders_fre_6_x86-64.tar.gz) = 37e00ce0436392caa02d8e2c8a9625f23d3fc73fdc47ef61c1e686b11a790c08 -SHA256 (ioncube_loaders_fre_6_x86.tar.gz) = 2532e3e62f4d42aa628b05484d26f7c215dd79734f3b2518bb9190269a50849d -SHA256 (ioncube_loaders_fre_7_x86-64.tar.gz) = 810bb37297a49560f478ec79d0a9b67125e41dd26afd99ef093d4d7961085e1c -SHA256 (ioncube_loaders_fre_7_x86.tar.gz) = cb653d2ef409c2d8c6a8f1177dcc0d262285f9dc3a682a7aed150e13d664fba4 -SHA256 (ioncube_loaders_fre_8_x86-64.tar.gz) = 1be0ac0e911137ae3ecf250c58ec7c4344543906dc4e84fae1459b64eb759581 -SHA256 (ioncube_loaders_fre_8_x86.tar.gz) = c61fed79cf74d97b2a74dd380e1507b5554937cb2c9eb4d06eb5df226e7627b7 +SIZE (ioncube_loaders_fre_6_x86-64.tar.gz) = 2316622 +SIZE (ioncube_loaders_fre_6_x86.tar.gz) = 2711100 +SIZE (ioncube_loaders_fre_7_x86-64.tar.gz) = 3149529 +SIZE (ioncube_loaders_fre_7_x86.tar.gz) = 2887663 +SIZE (ioncube_loaders_fre_8_x86-64.tar.gz) = 3149818 +SIZE (ioncube_loaders_fre_8_x86.tar.gz) = 2883650 +SHA256 (ioncube_loaders_fre_6_x86-64.tar.gz) = e352e146ad3ab3d7f7d1acdae9a7b269fe06eaca5c440ff268e4846fec37e1a2 +SHA256 (ioncube_loaders_fre_6_x86.tar.gz) = 95e684f8449207641821695e81eed47d871a019f30f2c8ac17e21481d606690f +SHA256 (ioncube_loaders_fre_7_x86-64.tar.gz) = 74b3a9c945f45e13585ec2734710d08fa65ddf0fc24c91ce13c9260103f5f561 +SHA256 (ioncube_loaders_fre_7_x86.tar.gz) = 6cbc87467a5fc6e1f1f25863ffe4f068f35efe759804752b23bc953df4cb6083 +SHA256 (ioncube_loaders_fre_8_x86-64.tar.gz) = 108ec65f9d2596ae9fbc6d954b498df526bc08ea53f37268da378a2d08219f53 +SHA256 (ioncube_loaders_fre_8_x86.tar.gz) = a77444787516d063e438af58b6ea1660aab7ba209e949659ad823d6204ba98ec diff -rn -U 1 ioncube.old/files/pkg-message.in ioncube/files/pkg-message.in --- ioncube.old/files/pkg-message.in 2010-04-08 17:39:02.000000000 +0100 +++ ioncube/files/pkg-message.in 2010-10-30 07:34:13.000000000 +0100 @@ -14 +14,3 @@ existing zend_extension lines. + +Note: FreeBSD 6.x depricated and will be unsupported in the next port release. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 11:40:04 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA9F71065674 for ; Sat, 30 Oct 2010 11:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B7F38FC1F for ; Sat, 30 Oct 2010 11:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UBe4XU043805 for ; Sat, 30 Oct 2010 11:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UBe4fC043804; Sat, 30 Oct 2010 11:40:04 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 11:40:04 GMT Resent-Message-Id: <201010301140.o9UBe4fC043804@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Denis Shaposhnikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20BEB1065674 for ; Sat, 30 Oct 2010 11:31:10 +0000 (UTC) (envelope-from dsh@bamus.cz) Received: from dsh.falconknight.com (dsh.falconknight.com [66.160.163.23]) by mx1.freebsd.org (Postfix) with ESMTP id 001308FC1B for ; Sat, 30 Oct 2010 11:31:09 +0000 (UTC) Received: from dsh.falconknight.com (dsh [66.160.163.23]) by dsh.falconknight.com (Postfix) with ESMTP id 8D788B6357C; Sat, 30 Oct 2010 04:31:09 -0700 (PDT) Received: from dsh.falconknight.com ([66.160.163.23]) by dsh.falconknight.com (dsh.falconknight.com [66.160.163.23]) (amavisd-new, port 10026) with LMTP id vIhzDSaa0XSC; Sat, 30 Oct 2010 04:31:08 -0700 (PDT) Received: from dsh.bamus.cz (unknown [88.103.62.114]) by dsh.falconknight.com (Postfix) with ESMTPS id 6DFE3B63573; Sat, 30 Oct 2010 04:31:06 -0700 (PDT) Received: from dsh.bamus.cz (localhost [127.0.0.1]) by dsh.bamus.cz (8.14.4/8.14.4) with ESMTP id o9UBV1Iv026203; Sat, 30 Oct 2010 13:31:01 +0200 (CEST) (envelope-from dsh@dsh.bamus.cz) Received: (from dsh@localhost) by dsh.bamus.cz (8.14.4/8.14.4/Submit) id o9UBV06V026200; Sat, 30 Oct 2010 13:31:00 +0200 (CEST) (envelope-from dsh) Message-Id: <201010301131.o9UBV06V026200@dsh.bamus.cz> Date: Sat, 30 Oct 2010 13:31:00 +0200 (CEST) From: Denis Shaposhnikov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151829: [PATCH] net-im/gajim: update to 0.14.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 11:40:04 -0000 >Number: 151829 >Category: ports >Synopsis: [PATCH] net-im/gajim: update to 0.14.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 11:40:04 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 8.1-RELEASE i386 >Organization: >Environment: System: FreeBSD dsh.bamus.cz 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 >Description: - Update to 0.14.1 - Change my email Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- gajim-0.14.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net-im/gajim/Makefile /home/dsh/ports/net-im/gajim/Makefile --- /usr/ports/net-im/gajim/Makefile 2010-09-30 06:23:56.000000000 +0200 +++ /home/dsh/ports/net-im/gajim/Makefile 2010-10-30 13:19:03.000000000 +0200 @@ -6,11 +6,11 @@ # PORTNAME= gajim -PORTVERSION= 0.14 +PORTVERSION= 0.14.1 CATEGORIES= net-im MASTER_SITES= http://www.gajim.org/downloads/0.14/ -MAINTAINER= dsh@wizard.volgograd.ru +MAINTAINER= dsh@bamus.cz COMMENT= Gajim is a Jabber client based on a plugin system BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.82.2:${PORTSDIR}/devel/py-dbus @@ -47,21 +47,4 @@ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src -post-install: - ${MKDIR} ${DATADIR}/data/activities - (cd ${WRKSRC}/data/activities && \ - ${COPYTREE_SHARE} "default" ${DATADIR}/data/activities) - - ${MKDIR} ${DATADIR}/data/emoticons - (cd ${WRKSRC}/data/emoticons && \ - ${COPYTREE_SHARE} "${EMOTICONS}" ${DATADIR}/data/emoticons) - - ${MKDIR} ${DATADIR}/data/iconsets - (cd ${WRKSRC}/data/iconsets && \ - ${COPYTREE_SHARE} "${ICONSETS}" ${DATADIR}/data/iconsets) - - ${MKDIR} ${DATADIR}/data/moods - (cd ${WRKSRC}/data/moods && \ - ${COPYTREE_SHARE} "default" ${DATADIR}/data/moods) - .include diff -ruN --exclude=CVS /usr/ports/net-im/gajim/distinfo /home/dsh/ports/net-im/gajim/distinfo --- /usr/ports/net-im/gajim/distinfo 2010-09-30 06:23:56.000000000 +0200 +++ /home/dsh/ports/net-im/gajim/distinfo 2010-10-30 13:12:02.000000000 +0200 @@ -1,3 +1,2 @@ -MD5 (gajim-0.14.tar.bz2) = f1508ff76344851eaf3fd4c0e32f22f6 -SHA256 (gajim-0.14.tar.bz2) = 9f9471781f178421d05250adc42a2d2efdf4aa05eac2148dab50ec262b92e61b -SIZE (gajim-0.14.tar.bz2) = 4142326 +SHA256 (gajim-0.14.1.tar.bz2) = 5c8a10e7b06f362844ff70c6f49bd92a170b9d6e4c24e878f604032e31254d3b +SIZE (gajim-0.14.1.tar.bz2) = 4144916 diff -ruN --exclude=CVS /usr/ports/net-im/gajim/files/patch-src-Makefile.in /home/dsh/ports/net-im/gajim/files/patch-src-Makefile.in --- /usr/ports/net-im/gajim/files/patch-src-Makefile.in 2010-09-30 06:23:56.000000000 +0200 +++ /home/dsh/ports/net-im/gajim/files/patch-src-Makefile.in 2010-10-30 13:14:20.000000000 +0200 @@ -1,6 +1,6 @@ ---- src/Makefile.in 2010-09-02 23:41:57.000000000 +0400 -+++ src/Makefile.in 2010-09-26 02:52:26.000000000 +0400 -@@ -236,12 +236,26 @@ +--- src/Makefile.in.orig 2010-10-26 17:30:57.000000000 +0200 ++++ src/Makefile.in 2010-10-30 13:13:42.000000000 +0200 +@@ -239,12 +239,26 @@ gajimsrcdir = $(gajim_srcdir) nobase_dist_gajimsrc_PYTHON = \ $(srcdir)/*.py \ @@ -28,7 +28,7 @@ MAINTAINERCLEANFILES = Makefile.in all: all-am -@@ -298,13 +312,13 @@ +@@ -301,13 +315,6 @@ $(MKDIR_P) "$(DESTDIR)$(gajimsrcdir)/$$dir"; }; \ echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(gajimsrcdir)/$$dir'"; \ $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(gajimsrcdir)/$$dir" || exit $$?; }; \ @@ -39,13 +39,6 @@ - PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(gajimsrcdir)" $$dlist; \ - fi; \ - else :; fi \ -+# if test -n "$$dlist"; then \ -+# if test -z "$(DESTDIR)"; then \ -+# PYTHON=$(PYTHON) $(py_compile) --basedir "$(gajimsrcdir)" $$dlist; \ -+# else \ -+# PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(gajimsrcdir)" $$dlist; \ -+# fi; \ -+# else :; fi \ done uninstall-nobase_dist_gajimsrcPYTHON: diff -ruN --exclude=CVS /usr/ports/net-im/gajim/pkg-plist /home/dsh/ports/net-im/gajim/pkg-plist --- /usr/ports/net-im/gajim/pkg-plist 2010-09-30 06:23:56.000000000 +0200 +++ /home/dsh/ports/net-im/gajim/pkg-plist 2010-10-30 13:26:45.000000000 +0200 @@ -1,14 +1,41 @@ bin/gajim bin/gajim-history-manager bin/gajim-remote +%%NLS%%share/locale/be/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/be@latin/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/bg/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/br/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/cs/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/da/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/de/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/el/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/eo/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/es/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/eu/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/gl/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/hr/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/it/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/ja/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/kk/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/lt/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/nb/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/nl/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/no/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/pl/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/pt/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/sk/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/sr/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/sr@Latn/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/uk/LC_MESSAGES/gajim.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/gajim.mo share/applications/gajim.desktop -%%DOCSDIR%%/AUTHORS -%%DOCSDIR%%/COPYING -%%DOCSDIR%%/ChangeLog -%%DOCSDIR%%/README -%%DOCSDIR%%/README.html -%%DOCSDIR%%/THANKS -%%DOCSDIR%%/THANKS.artists +share/icons/hicolor/64x64/apps/gajim.png +share/icons/hicolor/scalable/apps/gajim.svg %%DATADIR%%/data/activities/default/doing_chores/buying_groceries.png %%DATADIR%%/data/activities/default/doing_chores/category.png %%DATADIR%%/data/activities/default/doing_chores/cleaning.png @@ -878,6 +905,7 @@ %%DATADIR%%/icons/hicolor/48x48/actions/gajim-single_msg_recv.png %%DATADIR%%/icons/hicolor/48x48/actions/gajim-subscription_request.png %%DATADIR%%/icons/hicolor/48x48/actions/gajim-unsubscribed.png +%%DATADIR%%/icons/hicolor/48x48/actions/gajim-warning.png %%DATADIR%%/icons/hicolor/64x64/apps/gajim.png %%DATADIR%%/icons/hicolor/scalable/apps/gajim.svg %%DATADIR%%/src/adhoc_commands.py @@ -1255,125 +1283,96 @@ %%DATADIR%%/src/vcard.py %%DATADIR%%/src/vcard.pyc %%DATADIR%%/src/vcard.pyo -share/icons/hicolor/64x64/apps/gajim.png -share/icons/hicolor/scalable/apps/gajim.svg -%%NLS%%share/locale/be/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/be@latin/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/bg/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/br/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/cs/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/da/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/de/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/el/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/eo/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/es/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/eu/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/fr/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/gl/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/hr/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/it/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/ja/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/kk/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/lt/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/nb/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/nl/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/no/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/pl/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/pt/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/ru/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/sk/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/sr/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/sr@Latn/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/sv/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/uk/LC_MESSAGES/gajim.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/gajim.mo -%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/kk +%%DOCSDIR%%/AUTHORS +%%DOCSDIR%%/COPYING +%%DOCSDIR%%/ChangeLog +%%DOCSDIR%%/README +%%DOCSDIR%%/README.html +%%DOCSDIR%%/THANKS +%%DOCSDIR%%/THANKS.artists +@dirrmtry share/applications %%NLS%%@dirrmtry share/locale/be@latin/LC_MESSAGES %%NLS%%@dirrmtry share/locale/be@latin -@dirrm %%DATADIR%%/src/common/zeroconf +%%NLS%%@dirrmtry share/locale/gl/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/gl +%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/kk @dirrm %%DATADIR%%/src/common/xmpp +@dirrm %%DATADIR%%/src/common/zeroconf @dirrm %%DATADIR%%/src/common/protocol @dirrm %%DATADIR%%/src/common @dirrm %%DATADIR%%/src/command_system/implementation @dirrm %%DATADIR%%/src/command_system @dirrm %%DATADIR%%/src -@dirrm %%DATADIR%%/icons/hicolor/scalable/apps -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/64x64/apps -@dirrm %%DATADIR%%/icons/hicolor/64x64 -@dirrm %%DATADIR%%/icons/hicolor/48x48/actions -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/32x32/categories -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/16x16/status -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor/128x128/apps -@dirrm %%DATADIR%%/icons/hicolor/128x128 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%%/data/sounds +@dirrm %%DATADIR%%/data/gui +@dirrm %%DATADIR%%/data/emoticons/static-big +@dirrm %%DATADIR%%/data/emoticons/static +@dirrm %%DATADIR%%/data/emoticons/tango +@dirrm %%DATADIR%%/data/emoticons/animated +@dirrm %%DATADIR%%/data/emoticons @dirrm %%DATADIR%%/data/pixmaps -@dirrm %%DATADIR%%/data/other -@dirrm %%DATADIR%%/data/moods/default -@dirrm %%DATADIR%%/data/moods -@dirrm %%DATADIR%%/data/iconsets/wroop/48x48 -@dirrm %%DATADIR%%/data/iconsets/wroop/32x32 -@dirrm %%DATADIR%%/data/iconsets/wroop/16x16 -@dirrm %%DATADIR%%/data/iconsets/wroop -@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/48x48 -@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/32x32 -@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/16x16 -@dirrm %%DATADIR%%/data/iconsets/transports/yahoo -@dirrm %%DATADIR%%/data/iconsets/transports/weather/32x32 +@dirrm %%DATADIR%%/data/iconsets/transports/icq/16x16 +@dirrm %%DATADIR%%/data/iconsets/transports/icq/48x48 +@dirrm %%DATADIR%%/data/iconsets/transports/icq/32x32 +@dirrm %%DATADIR%%/data/iconsets/transports/icq +@dirrm %%DATADIR%%/data/iconsets/transports/facebook/16x16 +@dirrm %%DATADIR%%/data/iconsets/transports/facebook/48x48 +@dirrm %%DATADIR%%/data/iconsets/transports/facebook/32x32 +@dirrm %%DATADIR%%/data/iconsets/transports/facebook @dirrm %%DATADIR%%/data/iconsets/transports/weather/16x16 +@dirrm %%DATADIR%%/data/iconsets/transports/weather/32x32 @dirrm %%DATADIR%%/data/iconsets/transports/weather -@dirrm %%DATADIR%%/data/iconsets/transports/tlen/48x48 -@dirrm %%DATADIR%%/data/iconsets/transports/tlen/32x32 -@dirrm %%DATADIR%%/data/iconsets/transports/tlen/16x16 -@dirrm %%DATADIR%%/data/iconsets/transports/tlen -@dirrm %%DATADIR%%/data/iconsets/transports/sms/32x32 -@dirrm %%DATADIR%%/data/iconsets/transports/sms/16x16 -@dirrm %%DATADIR%%/data/iconsets/transports/sms -@dirrm %%DATADIR%%/data/iconsets/transports/msn/48x48 -@dirrm %%DATADIR%%/data/iconsets/transports/msn/32x32 -@dirrm %%DATADIR%%/data/iconsets/transports/msn/16x16 -@dirrm %%DATADIR%%/data/iconsets/transports/msn @dirrm %%DATADIR%%/data/iconsets/transports/mrim/48x48 @dirrm %%DATADIR%%/data/iconsets/transports/mrim/32x32 @dirrm %%DATADIR%%/data/iconsets/transports/mrim/16x16 @dirrm %%DATADIR%%/data/iconsets/transports/mrim -@dirrm %%DATADIR%%/data/iconsets/transports/irc/32x32 -@dirrm %%DATADIR%%/data/iconsets/transports/irc/16x16 -@dirrm %%DATADIR%%/data/iconsets/transports/irc -@dirrm %%DATADIR%%/data/iconsets/transports/icq/48x48 -@dirrm %%DATADIR%%/data/iconsets/transports/icq/32x32 -@dirrm %%DATADIR%%/data/iconsets/transports/icq/16x16 -@dirrm %%DATADIR%%/data/iconsets/transports/icq +@dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu/16x16 @dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu/48x48 @dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu/32x32 -@dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu/16x16 @dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu -@dirrm %%DATADIR%%/data/iconsets/transports/facebook/48x48 -@dirrm %%DATADIR%%/data/iconsets/transports/facebook/32x32 -@dirrm %%DATADIR%%/data/iconsets/transports/facebook/16x16 -@dirrm %%DATADIR%%/data/iconsets/transports/facebook @dirrm %%DATADIR%%/data/iconsets/transports/aim/48x48 @dirrm %%DATADIR%%/data/iconsets/transports/aim/32x32 @dirrm %%DATADIR%%/data/iconsets/transports/aim/16x16 @dirrm %%DATADIR%%/data/iconsets/transports/aim +@dirrm %%DATADIR%%/data/iconsets/transports/tlen/16x16 +@dirrm %%DATADIR%%/data/iconsets/transports/tlen/48x48 +@dirrm %%DATADIR%%/data/iconsets/transports/tlen/32x32 +@dirrm %%DATADIR%%/data/iconsets/transports/tlen +@dirrm %%DATADIR%%/data/iconsets/transports/msn/48x48 +@dirrm %%DATADIR%%/data/iconsets/transports/msn/32x32 +@dirrm %%DATADIR%%/data/iconsets/transports/msn/16x16 +@dirrm %%DATADIR%%/data/iconsets/transports/msn +@dirrm %%DATADIR%%/data/iconsets/transports/sms/32x32 +@dirrm %%DATADIR%%/data/iconsets/transports/sms/16x16 +@dirrm %%DATADIR%%/data/iconsets/transports/sms +@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/48x48 +@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/32x32 +@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/16x16 +@dirrm %%DATADIR%%/data/iconsets/transports/yahoo +@dirrm %%DATADIR%%/data/iconsets/transports/irc/32x32 +@dirrm %%DATADIR%%/data/iconsets/transports/irc/16x16 +@dirrm %%DATADIR%%/data/iconsets/transports/irc @dirrm %%DATADIR%%/data/iconsets/transports @dirrm %%DATADIR%%/data/iconsets/sun/48x48 @dirrm %%DATADIR%%/data/iconsets/sun/32x32 @dirrm %%DATADIR%%/data/iconsets/sun/16x16 @dirrm %%DATADIR%%/data/iconsets/sun +@dirrm %%DATADIR%%/data/iconsets/wroop/48x48 +@dirrm %%DATADIR%%/data/iconsets/wroop/32x32 +@dirrm %%DATADIR%%/data/iconsets/wroop/16x16 +@dirrm %%DATADIR%%/data/iconsets/wroop +@dirrm %%DATADIR%%/data/iconsets/gnome/48x48 +@dirrm %%DATADIR%%/data/iconsets/gnome/32x32 +@dirrm %%DATADIR%%/data/iconsets/gnome/16x16 +@dirrm %%DATADIR%%/data/iconsets/gnome @dirrm %%DATADIR%%/data/iconsets/jabberbulb/48x48 @dirrm %%DATADIR%%/data/iconsets/jabberbulb/32x32 @dirrm %%DATADIR%%/data/iconsets/jabberbulb/16x16 @dirrm %%DATADIR%%/data/iconsets/jabberbulb +@dirrm %%DATADIR%%/data/iconsets/dcraven/48x48 +@dirrm %%DATADIR%%/data/iconsets/dcraven/32x32 +@dirrm %%DATADIR%%/data/iconsets/dcraven/16x16 +@dirrm %%DATADIR%%/data/iconsets/dcraven @dirrm %%DATADIR%%/data/iconsets/gota/48x48 @dirrm %%DATADIR%%/data/iconsets/gota/32x32 @dirrm %%DATADIR%%/data/iconsets/gota/16x16 @@ -1382,36 +1381,40 @@ @dirrm %%DATADIR%%/data/iconsets/goojim/32x32 @dirrm %%DATADIR%%/data/iconsets/goojim/16x16 @dirrm %%DATADIR%%/data/iconsets/goojim -@dirrm %%DATADIR%%/data/iconsets/gnome/48x48 -@dirrm %%DATADIR%%/data/iconsets/gnome/32x32 -@dirrm %%DATADIR%%/data/iconsets/gnome/16x16 -@dirrm %%DATADIR%%/data/iconsets/gnome -@dirrm %%DATADIR%%/data/iconsets/dcraven/48x48 -@dirrm %%DATADIR%%/data/iconsets/dcraven/32x32 -@dirrm %%DATADIR%%/data/iconsets/dcraven/16x16 -@dirrm %%DATADIR%%/data/iconsets/dcraven @dirrm %%DATADIR%%/data/iconsets -@dirrm %%DATADIR%%/data/gui -@dirrm %%DATADIR%%/data/emoticons/tango -@dirrm %%DATADIR%%/data/emoticons/static-big -@dirrm %%DATADIR%%/data/emoticons/static -@dirrm %%DATADIR%%/data/emoticons/animated -@dirrm %%DATADIR%%/data/emoticons +@dirrm %%DATADIR%%/data/moods/default +@dirrm %%DATADIR%%/data/moods @dirrm %%DATADIR%%/data/activities/default/working +@dirrm %%DATADIR%%/data/activities/default/exercising +@dirrm %%DATADIR%%/data/activities/default/eating +@dirrm %%DATADIR%%/data/activities/default/grooming @dirrm %%DATADIR%%/data/activities/default/unknown -@dirrm %%DATADIR%%/data/activities/default/traveling @dirrm %%DATADIR%%/data/activities/default/talking +@dirrm %%DATADIR%%/data/activities/default/drinking +@dirrm %%DATADIR%%/data/activities/default/having_appointment +@dirrm %%DATADIR%%/data/activities/default/traveling @dirrm %%DATADIR%%/data/activities/default/relaxing @dirrm %%DATADIR%%/data/activities/default/inactive -@dirrm %%DATADIR%%/data/activities/default/having_appointment -@dirrm %%DATADIR%%/data/activities/default/grooming -@dirrm %%DATADIR%%/data/activities/default/exercising -@dirrm %%DATADIR%%/data/activities/default/eating -@dirrm %%DATADIR%%/data/activities/default/drinking @dirrm %%DATADIR%%/data/activities/default/doing_chores @dirrm %%DATADIR%%/data/activities/default @dirrm %%DATADIR%%/data/activities +@dirrm %%DATADIR%%/data/other +@dirrm %%DATADIR%%/data/sounds @dirrm %%DATADIR%%/data +@dirrm %%DATADIR%%/icons/hicolor/64x64/apps +@dirrm %%DATADIR%%/icons/hicolor/64x64 +@dirrm %%DATADIR%%/icons/hicolor/128x128/apps +@dirrm %%DATADIR%%/icons/hicolor/128x128 +@dirrm %%DATADIR%%/icons/hicolor/16x16/status +@dirrm %%DATADIR%%/icons/hicolor/16x16/actions +@dirrm %%DATADIR%%/icons/hicolor/16x16 +@dirrm %%DATADIR%%/icons/hicolor/scalable/apps +@dirrm %%DATADIR%%/icons/hicolor/scalable +@dirrm %%DATADIR%%/icons/hicolor/32x32/categories +@dirrm %%DATADIR%%/icons/hicolor/32x32 +@dirrm %%DATADIR%%/icons/hicolor/48x48/actions +@dirrm %%DATADIR%%/icons/hicolor/48x48 +@dirrm %%DATADIR%%/icons/hicolor +@dirrm %%DATADIR%%/icons @dirrm %%DATADIR%% @dirrm %%DOCSDIR%% -@dirrmtry share/applications --- gajim-0.14.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 12:06:53 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26D091065694; Sat, 30 Oct 2010 12:06:53 +0000 (UTC) (envelope-from arundel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F0C1F8FC16; Sat, 30 Oct 2010 12:06:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UC6qZ8074892; Sat, 30 Oct 2010 12:06:52 GMT (envelope-from arundel@freefall.freebsd.org) Received: (from arundel@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UC6qir074888; Sat, 30 Oct 2010 12:06:52 GMT (envelope-from arundel) Date: Sat, 30 Oct 2010 12:06:52 GMT Message-Id: <201010301206.o9UC6qir074888@freefall.freebsd.org> To: alexbestms@wwu.de, arundel@FreeBSD.org, arundel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arundel@FreeBSD.org Cc: Subject: Re: ports/151822: [maintainer update] editors/py-room X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 12:06:53 -0000 Synopsis: [maintainer update] editors/py-room Responsible-Changed-From-To: arundel->freebsd-ports-bugs Responsible-Changed-By: arundel Responsible-Changed-When: Sat Oct 30 12:05:25 UTC 2010 Responsible-Changed-Why: Back into the pool. ALthough i have GNATS access, i don't have a ports commit bit, so assigning this PR to me is pointless. http://www.freebsd.org/cgi/query-pr.cgi?pr=151822 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 13:00:20 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EC431065670 for ; Sat, 30 Oct 2010 13:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E8D1E8FC16 for ; Sat, 30 Oct 2010 13:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UD0Jgn024640 for ; Sat, 30 Oct 2010 13:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UD0Jri024639; Sat, 30 Oct 2010 13:00:19 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 13:00:19 GMT Resent-Message-Id: <201010301300.o9UD0Jri024639@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Anonymous Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFA991065670 for ; Sat, 30 Oct 2010 12:56:37 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9B6778FC0C for ; Sat, 30 Oct 2010 12:56:37 +0000 (UTC) Received: by ywh2 with SMTP id 2so2020433ywh.13 for ; Sat, 30 Oct 2010 05:56:36 -0700 (PDT) Received: by 10.229.105.17 with SMTP id r17mr12744961qco.187.1288443396060; Sat, 30 Oct 2010 05:56:36 -0700 (PDT) Received: from localhost ([208.53.142.42]) by mx.google.com with ESMTPS id p22sm1329005vcf.44.2010.10.30.05.56.32 (version=SSLv3 cipher=RC4-MD5); Sat, 30 Oct 2010 05:56:35 -0700 (PDT) Message-Id: <867hgz6dqg.fsf@gmail.com> Date: Sat, 30 Oct 2010 16:56:23 +0400 From: Anonymous To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/151830: [patch] devel/cmake: install cmake-mode.el X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 13:00:20 -0000 >Number: 151830 >Category: ports >Synopsis: [patch] devel/cmake: install cmake-mode.el >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 13:00:19 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Anonymous >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: emacs-24.0.50.102155,1 >Description: GNU Emacs unlike Vim doesn't bundle cmake-mode in their distribution. So, install it from the same tarball as cmake itself to avoid the case when user has an outdated cmake-mode.el in site-lisp. >How-To-Repeat: ;; put following to ~/.emacs and try to open a cmake file (autoload 'cmake-mode "cmake-mode" nil t) (add-to-list 'auto-mode-alist '("CMakeLists\\.txt" . cmake-mode)) (add-to-list 'auto-mode-alist '("\\.cmake$" . cmake-mode)) >Fix: --- a.diff begins here --- Index: devel/cmake/Makefile =================================================================== RCS file: /a/.cvsup/ports/devel/cmake/Makefile,v retrieving revision 1.42 diff -u -p -r1.42 Makefile --- devel/cmake/Makefile 21 Oct 2010 20:28:22 -0000 1.42 +++ devel/cmake/Makefile 30 Oct 2010 12:10:04 -0000 @@ -50,4 +50,7 @@ post-patch: ${WRKSRC}/Modules/FindKDE4.cmake @${FIND} ${WRKSRC} -name "*.bak" -delete -o -name "*.orig" -delete +post-install: + ${INSTALL_DATA} ${WRKSRC}/Docs/*.el ${PREFIX}/share/emacs/site-lisp + .include Index: devel/cmake/pkg-plist =================================================================== RCS file: /a/.cvsup/ports/devel/cmake/pkg-plist,v retrieving revision 1.25 diff -u -p -r1.25 pkg-plist --- devel/cmake/pkg-plist 24 Jul 2010 07:45:08 -0000 1.25 +++ devel/cmake/pkg-plist 30 Oct 2010 12:09:59 -0000 @@ -507,6 +507,7 @@ bin/ctest %%DATADIR%%/Templates/staticLibFooter.dsptemplate %%DATADIR%%/Templates/staticLibHeader.dsptemplate %%DATADIR%%/include/cmCPluginAPI.h +share/emacs/site-lisp/cmake-mode.el %%DOCSDIR%%/Copyright.txt %%DOCSDIR%%/ccmake.docbook %%DOCSDIR%%/ccmake.html --- a.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 13:00:30 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F1101065670; Sat, 30 Oct 2010 13:00:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 554C38FC13; Sat, 30 Oct 2010 13:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UD0UVd027272; Sat, 30 Oct 2010 13:00:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UD0Uik027246; Sat, 30 Oct 2010 13:00:30 GMT (envelope-from edwin) Date: Sat, 30 Oct 2010 13:00:30 GMT Message-Id: <201010301300.o9UD0Uik027246@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151830: [patch] devel/cmake: install cmake-mode.el X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 13:00:30 -0000 Synopsis: [patch] devel/cmake: install cmake-mode.el Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 30 13:00:29 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151830 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 14:32:54 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DCC31065674; Sat, 30 Oct 2010 14:32:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 42BCC8FC19; Sat, 30 Oct 2010 14:32:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UEWs7L029392; Sat, 30 Oct 2010 14:32:54 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UEWrd0029388; Sat, 30 Oct 2010 14:32:53 GMT (envelope-from sunpoet) Date: Sat, 30 Oct 2010 14:32:53 GMT Message-Id: <201010301432.o9UEWrd0029388@freefall.freebsd.org> To: alexbestms@wwu.de, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151822: [maintainer update] editors/py-room X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 14:32:54 -0000 Synopsis: [maintainer update] editors/py-room Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Oct 30 14:32:53 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151822 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 15:00:25 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BA2C1065717 for ; Sat, 30 Oct 2010 15:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D1DC68FC49 for ; Sat, 30 Oct 2010 15:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UF0NAJ048915 for ; Sat, 30 Oct 2010 15:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UF0Noe048901; Sat, 30 Oct 2010 15:00:23 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 15:00:23 GMT Resent-Message-Id: <201010301500.o9UF0Noe048901@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, TAOKA Fumiyoshi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45E60106566B for ; Sat, 30 Oct 2010 14:51:25 +0000 (UTC) (envelope-from fmysh@quad.dyndns.org) Received: from aqua.quad.dyndns.org (unknown [IPv6:2001:240:66e::10]) by mx1.freebsd.org (Postfix) with ESMTP id E22A48FC1C for ; Sat, 30 Oct 2010 14:51:24 +0000 (UTC) Received: by aqua.quad.dyndns.org (Postfix, from userid 1001) id 6E0506918; Sat, 30 Oct 2010 23:51:22 +0900 (JST) Message-Id: <20101030145122.6E0506918@aqua.quad.dyndns.org> Date: Sat, 30 Oct 2010 23:51:22 +0900 (JST) From: TAOKA Fumiyoshi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: TAOKA Fumiyoshi Subject: ports/151831: {graphics, japanese, russian, ukrainian}/gd conflict with one another X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: TAOKA Fumiyoshi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 15:00:25 -0000 >Number: 151831 >Category: ports >Synopsis: {graphics,japanese,russian,ukrainian}/gd conflict with one another >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 15:00:22 UTC 2010 >Closed-Date: >Last-Modified: >Originator: TAOKA Fumiyoshi >Release: >Organization: >Environment: >Description: Though {graphics,japanese,russian,ukrainian}/gd conflict with one another, they are not marked. graphics/gd and devel/bazaar have already been marked CONFLICTS. >How-To-Repeat: >Fix: Index: devel/bazaar/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/bazaar/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- devel/bazaar/Makefile 30 Jul 2010 22:14:46 -0000 1.19 +++ devel/bazaar/Makefile 30 Oct 2010 14:29:09 -0000 @@ -22,7 +22,7 @@ LIB_DEPENDS= neon.27:${PORTSDIR}/www/neon29 \ gpgme.18:${PORTSDIR}/security/gpgme -CONFLICTS= gd-2.* +CONFLICTS= gd-2.* ja-gd-2.* ru-gd-2.* uk-gd-2.* USE_GMAKE= yes USE_GETTEXT= yes Index: graphics/gd/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/gd/Makefile,v retrieving revision 1.99 diff -u -r1.99 Makefile --- graphics/gd/Makefile 3 Jun 2010 09:35:56 -0000 1.99 +++ graphics/gd/Makefile 30 Oct 2010 14:30:09 -0000 @@ -21,7 +21,8 @@ png.6:${PORTSDIR}/graphics/png \ freetype.9:${PORTSDIR}/print/freetype2 -CONFLICTS= bazaar-1.* +CONFLICTS?= ja-gd-2.* ru-gd-2.* uk-gd-2.* +CONFLICTS+= bazaar-1.* USE_BZIP2= yes SCRIPTDIR= ${FILESDIR} Index: japanese/gd/Makefile =================================================================== RCS file: /home/ncvs/ports/japanese/gd/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- japanese/gd/Makefile 18 Aug 2003 16:15:09 -0000 1.17 +++ japanese/gd/Makefile 30 Oct 2010 14:34:04 -0000 @@ -14,4 +14,6 @@ CPPFLAGS+= -DJISX0208 +CONFLICTS= gd-2.* ru-gd-2.* uk-gd-2.* + .include "${MASTERDIR}/Makefile" Index: russian/gd/Makefile =================================================================== RCS file: /home/ncvs/ports/russian/gd/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- russian/gd/Makefile 4 Jan 2009 10:06:39 -0000 1.16 +++ russian/gd/Makefile 30 Oct 2010 14:32:53 -0000 @@ -15,6 +15,8 @@ GD_FONTS= ${DISTDIR}/x-koi8u.tgz koi6x10.bdf koi6x13.bdf \ koi10x16b.bdf koi9x15.bdf koi10x20.bdf +CONFLICTS= gd-2.* ja-gd-2.* uk-gd-2.* + .if exists(${.CURDIR}/Makefile.local) .include "${.CURDIR}/Makefile.local" .endif Index: ukrainian/gd/Makefile =================================================================== RCS file: /home/ncvs/ports/ukrainian/gd/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- ukrainian/gd/Makefile 18 Aug 2003 16:15:10 -0000 1.4 +++ ukrainian/gd/Makefile 30 Oct 2010 14:33:07 -0000 @@ -15,4 +15,6 @@ GD_FONTS= ${DISTDIR}/x-koi8u.tgz koi6x10.bdf koi6x13.bdf \ koi10x16b.bdf koi9x15.bdf koi10x20.bdf +CONFLICTS= gd-2.* ja-gd-2.* ru-gd-2.* + .include "${MASTERDIR}/Makefile" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 15:10:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0963106567A for ; Sat, 30 Oct 2010 15:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9251A8FC12 for ; Sat, 30 Oct 2010 15:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UFABbU060663 for ; Sat, 30 Oct 2010 15:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UFABsm060662; Sat, 30 Oct 2010 15:10:11 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 15:10:11 GMT Resent-Message-Id: <201010301510.o9UFABsm060662@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jun Kuriyama Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A2581065673 for ; Sat, 30 Oct 2010 15:01:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 4E5BC8FC13 for ; Sat, 30 Oct 2010 15:01:37 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9UF1bJ8092106 for ; Sat, 30 Oct 2010 15:01:37 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9UF1b3q092105; Sat, 30 Oct 2010 15:01:37 GMT (envelope-from nobody) Message-Id: <201010301501.o9UF1b3q092105@www.freebsd.org> Date: Sat, 30 Oct 2010 15:01:37 GMT From: Jun Kuriyama To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151832: [repocopy] devel/flex-sdk to devel/flex-sdk35 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 15:10:11 -0000 >Number: 151832 >Category: ports >Synopsis: [repocopy] devel/flex-sdk to devel/flex-sdk35 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 15:10:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jun Kuriyama >Release: 8.1-RELEASE >Organization: FreeBSD Project >Environment: >Description: I'll update devel/flex-sdk to 4.1.0. Developers who uses 3.5.0 should stick to 3.5.x version to maintain their application. But new application can be built with modern 4.1.x version. So I'd like to keep 3.5.x version as devel/flex-sdk35. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 15:10:17 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A52A106566B; Sat, 30 Oct 2010 15:10:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0F7FA8FC08; Sat, 30 Oct 2010 15:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UFAGHa060916; Sat, 30 Oct 2010 15:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UFAG3F060912; Sat, 30 Oct 2010 15:10:16 GMT (envelope-from edwin) Date: Sat, 30 Oct 2010 15:10:16 GMT Message-Id: <201010301510.o9UFAG3F060912@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151832: [repocopy] devel/flex-sdk to devel/flex-sdk35 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 15:10:17 -0000 Synopsis: [repocopy] devel/flex-sdk to devel/flex-sdk35 Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 30 15:10:16 UTC 2010 Responsible-Changed-Why: Submitter is maintainer and has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151832 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 16:00:27 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BB841065670 for ; Sat, 30 Oct 2010 16:00:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F0B248FC19 for ; Sat, 30 Oct 2010 16:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UG0QX6011355 for ; Sat, 30 Oct 2010 16:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UG0QSa011338; Sat, 30 Oct 2010 16:00:26 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 16:00:26 GMT Resent-Message-Id: <201010301600.o9UG0QSa011338@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, daniele Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57A59106566B for ; Sat, 30 Oct 2010 15:54:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 2A91D8FC08 for ; Sat, 30 Oct 2010 15:54:53 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9UFsqCi042351 for ; Sat, 30 Oct 2010 15:54:52 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9UFsqgW042344; Sat, 30 Oct 2010 15:54:52 GMT (envelope-from nobody) Message-Id: <201010301554.o9UFsqgW042344@www.freebsd.org> Date: Sat, 30 Oct 2010 15:54:52 GMT From: daniele To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151833: sysutils/kiconvtool: I don't know how to load the pair (UTF-8 -> _wctype) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 16:00:27 -0000 >Number: 151833 >Category: ports >Synopsis: sysutils/kiconvtool: I don't know how to load the pair (UTF-8 -> _wctype) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 16:00:26 UTC 2010 >Closed-Date: >Last-Modified: >Originator: daniele >Release: 8.1-RELEASE #0 >Organization: >Environment: FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@:/usr/obj/usr/src/sys/GENERIC i386 >Description: As a standard user I could not succesfully execute 'mount_msdosfs -L en_US.UTF-8 /dev/da0s1 local/mnt' I installed kiconvtool and added the following lines to /etc/rc.conf kiconv_preload="YES" kiconv_local_charsets="UTF-8" kiconv_foreign_charsets="UTF-16BE UTF-8" Even with this I could not execute the preceding command as a standard user. Taking a look at the code I discovered that "mount_msdosfs -L en_US.UTF-8 /dev/da0s1 local/mnt" when starts up sets its locale to en_US.UTF-8 [1]. And this leads to loading also the pair (UTF-8,_wctype) [2]. So, apparently, if that pair is not loaded, standard users can not execute the preceding command. At this point the problem that arises is that at command line I do not know how to specify the charset _wctype (unless this is not possible) and feed kiconvtool. To solve the problem, I then modified kiconvtool (explained below) so that the pair (UTF-8, _wctype) is loaded automatically. d [1] /usr/src/sbin/mount_msdosfs/mount_msdosfs.c - Line 114 [2] /usr/src/lib/libkiconv/xlat16_iconv.c - Line 123 >How-To-Repeat: >Fix: The workaround to solve this __specific__ problem was to apply the following patch and rebuild kiconvtool. Please *note* that this patch is not intended for general usage but just to give an idea of a base to further improve the port in case it is not possible to specify _wctype at command line (or to remove the requirement). --- kiconvtool.c 2010-10-30 17:18:32.000000000 +0200 +++ kiconvtool.new 2010-10-30 17:18:32.000000000 +0200 @@ -35,6 +35,7 @@ #include #include #include +#include enum arg_type_t_ { ARGTYPE_LOCAL, @@ -185,6 +186,7 @@ return 1; } + setlocale(LC_CTYPE, "en_US.UTF-8"); enum arg_type_t_ arg_type = ARGTYPE_PAIR; for (i = 1; i < argc; i++) { if (argv[i][0] == '-') { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 16:00:34 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5ED7C1065674; Sat, 30 Oct 2010 16:00:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 338918FC18; Sat, 30 Oct 2010 16:00:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UG0YE4013379; Sat, 30 Oct 2010 16:00:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UG0Y4N013342; Sat, 30 Oct 2010 16:00:34 GMT (envelope-from edwin) Date: Sat, 30 Oct 2010 16:00:34 GMT Message-Id: <201010301600.o9UG0Y4N013342@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151833: sysutils/kiconvtool: I don't know how to load the pair (UTF-8 -> _wctype) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 16:00:34 -0000 Synopsis: sysutils/kiconvtool: I don't know how to load the pair (UTF-8 -> _wctype) Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 30 16:00:33 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151833 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 18:30:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D9331065679 for ; Sat, 30 Oct 2010 18:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D0238FC17 for ; Sat, 30 Oct 2010 18:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UIUA2j096884 for ; Sat, 30 Oct 2010 18:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UIUAvo096880; Sat, 30 Oct 2010 18:30:10 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 18:30:10 GMT Resent-Message-Id: <201010301830.o9UIUAvo096880@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Harris Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFF261065670 for ; Sat, 30 Oct 2010 18:24:24 +0000 (UTC) (envelope-from jason@wilma.widomaker.com) Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by mx1.freebsd.org (Postfix) with ESMTP id 8E70A8FC20 for ; Sat, 30 Oct 2010 18:24:24 +0000 (UTC) Received: from wilma.widomaker.com ([204.17.220.5]) by wilma.widomaker.com with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1PCG6t-0003GG-Gf; Sat, 30 Oct 2010 14:25:00 -0400 Received: (from jason@localhost) by wilma.widomaker.com (8.14.3/8.14.3/Submit) id o9UIOLCC069871; Sat, 30 Oct 2010 14:24:21 -0400 (AST) (envelope-from jason) Message-Id: <201010301824.o9UIOLCC069871@wilma.widomaker.com> Date: Sat, 30 Oct 2010 14:24:21 -0400 (AST) From: Jason Harris To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Jason Harris Subject: ports/151834: [MAINTAINER] ports/astro/dgpsip: fix fetch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jason Harris List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 18:30:11 -0000 >Number: 151834 >Category: ports >Synopsis: [MAINTAINER] ports/astro/dgpsip: fix fetch >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 18:30:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Jason Harris >Release: FreeBSD 7.1-RELEASE i386 >Organization: not really... >Environment: System: FreeBSD laptop 7.1-RELEASE FreeBSD 7.1-RELEASE #0: Thu Jan 1 14:37:25 UTC 2009 root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: old hostname is now IPv6-only, switch to a better one %host www.wsrcc.com www.wsrcc.com is an alias for ipv6only.wsrcc.com. ipv6only.wsrcc.com has IPv6 address 2001:5a8:4:7d0::1 ipv6only.wsrcc.com has IPv6 address 2002:408e:32e0::1 %host www.madbavarian.org www.madbavarian.org is an alias for oppidum.madbavarian.org. oppidum.madbavarian.org has address 64.142.50.224 oppidum.madbavarian.org has IPv6 address 2001:5a8:4:7d0::1 >How-To-Repeat: try to fetch >Fix: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 NotDashEscaped: You need GnuPG to verify this message cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /home/ncvs/ports/astro/dgpsip/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 22 Jul 2007 19:33:48 -0000 1.14 +++ Makefile 30 Oct 2010 17:58:32 -0000 @@ -8,7 +8,7 @@ PORTNAME= dgpsip PORTVERSION= 1.35 CATEGORIES= astro geography -MASTER_SITES= http://www.wsrcc.com/wolfgang/ftp/ +MASTER_SITES= http://www.madbavarian.org/ftp/ MAINTAINER= jharris@widomaker.com COMMENT= Differential GPS over IP communication device Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/astro/dgpsip/pkg-descr,v retrieving revision 1.3 diff -u -r1.3 pkg-descr --- pkg-descr 30 Oct 2000 19:10:00 -0000 1.3 +++ pkg-descr 30 Oct 2010 17:58:32 -0000 @@ -21,4 +21,4 @@ differential signals have diminished the SA-induced position and velocity errors by approximately 3 times. -WWW: http://www.wsrcc.com/wolfgang/gps/dgps-ip.html +WWW: http://www.madbavarian.org/gps/dgps-ip.html cvs diff: Diffing files -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iJ0EARECAF0FAkzMYaNWGGh0dHA6Ly9rZXlzZXJ2ZXIua2pzbC5jb206MTEzNzEv cGtzL2xvb2t1cD9vcD1nZXQmc2VhcmNoPTB4RDM5REEwRTMmd2VoYXZleW91bm93 PXRydWUACgkQSypIl9OdoOOAyQCdE6mjOz7xGwWpqi39D1hVgu654XAAn1UbeXmU +Hq/ooryDzDo+V4Fuxdb =1EHr -----END PGP SIGNATURE----- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 18:40:09 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4084F1065672 for ; Sat, 30 Oct 2010 18:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F095F8FC19 for ; Sat, 30 Oct 2010 18:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UIe8WK007637 for ; Sat, 30 Oct 2010 18:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UIe81E007636; Sat, 30 Oct 2010 18:40:08 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 18:40:08 GMT Resent-Message-Id: <201010301840.o9UIe81E007636@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eric Freeman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0B10106564A for ; Sat, 30 Oct 2010 18:33:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 83AD98FC12 for ; Sat, 30 Oct 2010 18:33:51 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9UIXp6J001545 for ; Sat, 30 Oct 2010 18:33:51 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9UIXomZ001544; Sat, 30 Oct 2010 18:33:50 GMT (envelope-from nobody) Message-Id: <201010301833.o9UIXomZ001544@www.freebsd.org> Date: Sat, 30 Oct 2010 18:33:50 GMT From: Eric Freeman To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151835: New port: devel/rubygem-holidays (ruby holiday date lib) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 18:40:09 -0000 >Number: 151835 >Category: ports >Synopsis: New port: devel/rubygem-holidays (ruby holiday date lib) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 18:40:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Eric Freeman >Release: 7.2 >Organization: >Environment: FreeBSD localhost 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 07:18:07 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Simple gem port for the holdays gem. Allows you to look up holidays in multiple regions based on customisable definition lists. http://code.dunae.ca/holidays/ >How-To-Repeat: n/a >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rubygem-holidays # rubygem-holidays/Makefile # rubygem-holidays/pkg-descr # rubygem-holidays/distinfo # echo c - rubygem-holidays mkdir -p rubygem-holidays > /dev/null 2>&1 echo x - rubygem-holidays/Makefile sed 's/^X//' >rubygem-holidays/Makefile << '79ee6f2a6f0388d0f345f98344dfefdd' X# Ports collection makefile for: rubygem-holidays X# Date created: 17 October 2010 X# Whom: Eric Freeman X# X# $FreeBSD$ X# X XPORTNAME= holidays XPORTVERSION= 0.9.3 XCATEGORIES= devel rubygems XMASTER_SITES= RG X XMAINTAINER= freebsdports@chillibear.com XCOMMENT= A collection of Ruby methods to deal with statutory and other holidays X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include 79ee6f2a6f0388d0f345f98344dfefdd echo x - rubygem-holidays/pkg-descr sed 's/^X//' >rubygem-holidays/pkg-descr << 'd5b38bb58cb21d99f63ea8479d73179f' XThe Ruby Holidays Gem allows you to look up holidays in Xmultiple regions based on customisable definition lists. X XIt also extends Ruby's built-in Date class. X XAuthor: Alex Dunae XWWW: http://code.dunae.ca/holidays/ d5b38bb58cb21d99f63ea8479d73179f echo x - rubygem-holidays/distinfo sed 's/^X//' >rubygem-holidays/distinfo << 'e2eda3c3e96b8ab95a22a2e6f53e3d0b' XMD5 (rubygem/holidays-0.9.3.gem) = 274920e7e1f41293343358f399eaf92b XSHA256 (rubygem/holidays-0.9.3.gem) = d32a3115cd7d88094295a5d6a4e5af8ea5a1fbd022027112ef4a4a336e9cb37f XSIZE (rubygem/holidays-0.9.3.gem) = 36352 e2eda3c3e96b8ab95a22a2e6f53e3d0b exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 18:40:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF0D0106564A; Sat, 30 Oct 2010 18:40:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B44368FC1A; Sat, 30 Oct 2010 18:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UIeEoS007909; Sat, 30 Oct 2010 18:40:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UIeE7O007898; Sat, 30 Oct 2010 18:40:14 GMT (envelope-from edwin) Date: Sat, 30 Oct 2010 18:40:14 GMT Message-Id: <201010301840.o9UIeE7O007898@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151835: New port: devel/rubygem-holidays (ruby holiday date lib) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 18:40:15 -0000 Synopsis: New port: devel/rubygem-holidays (ruby holiday date lib) Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 30 18:40:14 UTC 2010 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151835 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 18:45:41 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90155106566C; Sat, 30 Oct 2010 18:45:41 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 652418FC08; Sat, 30 Oct 2010 18:45:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UIjfSS017046; Sat, 30 Oct 2010 18:45:41 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UIjd8k017039; Sat, 30 Oct 2010 18:45:39 GMT (envelope-from makc) Date: Sat, 30 Oct 2010 18:45:39 GMT Message-Id: <201010301845.o9UIjd8k017039@freefall.freebsd.org> To: ntarmos@cs.uoi.gr, freebsd-pr@bengrimm.net, makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/150233: conky 1.8 broken (sysutils/conky) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 18:45:41 -0000 Synopsis: conky 1.8 broken (sysutils/conky) State-Changed-From-To: feedback->closed State-Changed-By: makc State-Changed-When: Sat Oct 30 18:45:39 UTC 2010 State-Changed-Why: Fix was committed along with ports/151668. http://www.freebsd.org/cgi/query-pr.cgi?pr=150233 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 18:48:48 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4B04106566C; Sat, 30 Oct 2010 18:48:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BB6CC8FC1C; Sat, 30 Oct 2010 18:48:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UImm5B017187; Sat, 30 Oct 2010 18:48:48 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UImmHr017183; Sat, 30 Oct 2010 18:48:48 GMT (envelope-from sunpoet) Date: Sat, 30 Oct 2010 18:48:48 GMT Message-Id: <201010301848.o9UImmHr017183@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151834: [MAINTAINER] ports/astro/dgpsip: fix fetch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 18:48:49 -0000 Synopsis: [MAINTAINER] ports/astro/dgpsip: fix fetch Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Oct 30 18:48:48 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151834 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 19:06:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97D4D1065673 for ; Sat, 30 Oct 2010 19:06:16 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 3B59A8FC14 for ; Sat, 30 Oct 2010 19:06:14 +0000 (UTC) Received: from [217.197.197.238] [217.197.197.238:22949] (HELO/EHLO luna.dio.ru, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id o9UIf87v078306 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sat, 30 Oct 2010 22:41:08 +0400 (MSD) From: Max Brazhnikov To: Timothy Beyer , freebsd-ports-bugs@freebsd.org Date: Sat, 30 Oct 2010 22:40:46 +0400 User-Agent: KMail/1.13.5 (FreeBSD/8.1-STABLE; KDE/4.5.3; amd64; ; ) References: <201009252020.o8PKKCPU070933@freefall.freebsd.org> <87hbg9c00c.wl@fastmail.fm> In-Reply-To: <87hbg9c00c.wl@fastmail.fm> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201010302240.48099.makc@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mail.issp.ac.ru [77.236.34.3]); Sat, 30 Oct 2010 22:41:08 +0400 (MSD) Cc: Subject: Re: ports/149736: update port: math/isabelle to version 2009.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 19:06:16 -0000 On Mon, 25 Oct 2010 16:42:43 -0700, Timothy Beyer wrote: > At Sat, 25 Sep 2010 20:20:12 GMT, > > makc@FreeBSD.org wrote: > > Synopsis: update port: math/isabelle to version 2009.2 > > > > State-Changed-From-To: open->feedback > > State-Changed-By: makc > > State-Changed-When: Sat Sep 25 20:20:12 UTC 2010 > > State-Changed-Why: > > It fails on tinderbox > > http://people.freebsd.org/~makc/tb/isabelle-2009.2.log. Any idea? > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=149736 > > I think I fixed the Makefile to build (now supresses warnings of polyEqual) > > I also fixed some potential path issues in the pkg-plist (gzipped) Committed, thanks! Max From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 19:22:04 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 679E0106566B; Sat, 30 Oct 2010 19:22:04 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3D0088FC14; Sat, 30 Oct 2010 19:22:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UJM4qw059884; Sat, 30 Oct 2010 19:22:04 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UJM4Fq059880; Sat, 30 Oct 2010 19:22:04 GMT (envelope-from makc) Date: Sat, 30 Oct 2010 19:22:04 GMT Message-Id: <201010301922.o9UJM4Fq059880@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danfe@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151816: Please udpate nvidia drivers 256.53 -> 260.19.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 19:22:04 -0000 Synopsis: Please udpate nvidia drivers 256.53 -> 260.19.12 Responsible-Changed-From-To: freebsd-ports-bugs->danfe Responsible-Changed-By: makc Responsible-Changed-When: Sat Oct 30 19:22:03 UTC 2010 Responsible-Changed-Why: Maintainer is committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=151816 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 19:28:12 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EE1C10656A4; Sat, 30 Oct 2010 19:28:12 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 03A908FC14; Sat, 30 Oct 2010 19:28:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UJSB7X060326; Sat, 30 Oct 2010 19:28:11 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UJSBqR060322; Sat, 30 Oct 2010 19:28:11 GMT (envelope-from makc) Date: Sat, 30 Oct 2010 19:28:11 GMT Message-Id: <201010301928.o9UJSBqR060322@freefall.freebsd.org> To: rfarmer@predatorlabs.net, c.petrik.sosa@gmail.com, makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151779: [PATCH] request maintainer for ftp/bareftp once again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 19:28:12 -0000 Synopsis: [PATCH] request maintainer for ftp/bareftp once again State-Changed-From-To: open->closed State-Changed-By: makc State-Changed-When: Sat Oct 30 19:28:11 UTC 2010 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151779 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 19:30:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B71971065673 for ; Sat, 30 Oct 2010 19:30:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8ABC58FC12 for ; Sat, 30 Oct 2010 19:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UJUEoB060612 for ; Sat, 30 Oct 2010 19:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UJUE36060609; Sat, 30 Oct 2010 19:30:14 GMT (envelope-from gnats) Date: Sat, 30 Oct 2010 19:30:14 GMT Message-Id: <201010301930.o9UJUE36060609@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151779: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 19:30:14 -0000 The following reply was made to PR ports/151779; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151779: commit references a PR Date: Sat, 30 Oct 2010 19:28:05 +0000 (UTC) makc 2010-10-30 19:28:00 UTC FreeBSD ports repository Modified files: ftp/bareftp Makefile distinfo Log: Pass maintainership back to Chris Petrik. Remove md5 sum while here PR: ports/151779 Submitted by: Chris Petrik Approved by: Rob Farmer (maintainer) Revision Changes Path 1.13 +1 -1 ports/ftp/bareftp/Makefile 1.5 +0 -1 ports/ftp/bareftp/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 19:30:26 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 056B110656A5; Sat, 30 Oct 2010 19:30:26 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CF9CA8FC1E; Sat, 30 Oct 2010 19:30:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UJUPZv061859; Sat, 30 Oct 2010 19:30:25 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UJUP63061845; Sat, 30 Oct 2010 19:30:25 GMT (envelope-from makc) Date: Sat, 30 Oct 2010 19:30:25 GMT Message-Id: <201010301930.o9UJUP63061845@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/151753: [PATCH] update science/peekabot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 19:30:26 -0000 Synopsis: [PATCH] update science/peekabot Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Sat Oct 30 19:30:25 UTC 2010 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151753 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 19:40:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6CEF106564A for ; Sat, 30 Oct 2010 19:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 630578FC13 for ; Sat, 30 Oct 2010 19:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UJe8NH071455 for ; Sat, 30 Oct 2010 19:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UJe8TH071454; Sat, 30 Oct 2010 19:40:08 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 19:40:08 GMT Resent-Message-Id: <201010301940.o9UJe8TH071454@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Vasiliy P. Melnik" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14718106566C for ; Sat, 30 Oct 2010 19:36:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0231E8FC0A for ; Sat, 30 Oct 2010 19:36:34 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9UJaXcp059934 for ; Sat, 30 Oct 2010 19:36:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9UJaXYv059933; Sat, 30 Oct 2010 19:36:33 GMT (envelope-from nobody) Message-Id: <201010301936.o9UJaXYv059933@www.freebsd.org> Date: Sat, 30 Oct 2010 19:36:33 GMT From: "Vasiliy P. Melnik" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151836: version upgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 19:40:08 -0000 >Number: 151836 >Category: ports >Synopsis: version upgrade >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 19:40:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vasiliy P. Melnik >Release: 8.1-RELEASE-p1 >Organization: >Environment: FreeBSD monkey.home 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #0: Sun Oct 3 05:26:20 EEST 2010 root@monkey.home:/usr/obj/usr/src/sys/monkey i386 >Description: This release contains lots of usability enhancements to make LAM even more user friendly. LAM Pro now includes support for Zarafa (users, groups, servers). >How-To-Repeat: >Fix: Patch attached with submission follows: ===> Generating patch ===> Viewing diff with more diff -ruN --exclude=CVS /usr/ports/sysutils/ldap-account-manager/Makefile /root/ldap-account-manager/Makefile --- /usr/ports/sysutils/ldap-account-manager/Makefile 2010-10-03 00:47:51.000000000 +0300 +++ /root/ldap-account-manager/Makefile 2010-10-30 22:22:40.000000000 +0300 @@ -6,7 +6,7 @@ # PORTNAME= ldap-account-manager -PORTVERSION= 3.1.0 +PORTVERSION= 3.2.0 CATEGORIES= sysutils www MASTER_SITES= SF/${PNAME}/LAM/${PORTVERSION} DISTNAME= ${PORTNAME:L}-${PORTVERSION} @@ -17,6 +17,8 @@ RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Quota.pm:${PORTSDIR}/sysutils/p5-Quota \ ${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap +LICENSE= GPLv2 + NO_BUILD= yes USE_GETTEXT= yes USE_PERL5= yes diff -ruN --exclude=CVS /usr/ports/sysutils/ldap-account-manager/distinfo /root/ldap-account-manager/distinfo --- /usr/ports/sysutils/ldap-account-manager/distinfo 2010-10-03 00:47:51.000000000 +0300 +++ /root/ldap-account-manager/distinfo 2010-10-30 22:21:50.000000000 +0300 @@ -1,3 +1,2 @@ -MD5 (ldap-account-manager-3.1.0.tar.gz) = f97d14f20f4773e087977515ced54b45 -SHA256 (ldap-account-manager-3.1.0.tar.gz) = 0899bcc56abd2e1a0ce2c92ba14bde3a94440e45920dba46a918ce20ec1e2377 -SIZE (ldap-account-manager-3.1.0.tar.gz) = 5528597 +SHA256 (ldap-account-manager-3.2.0.tar.gz) = f5bc559b616d8d54d6c5a90c8aaf9a93ae6485bc76580ec1566fc10f3eb924d5 +SIZE (ldap-account-manager-3.2.0.tar.gz) = 5729432 diff -ruN --exclude=CVS /usr/ports/sysutils/ldap-account-manager/pkg-plist /root/ldap-account-manager/pkg-plist --- /usr/ports/sysutils/ldap-account-manager/pkg-plist 2010-10-03 00:47:51.000000000 +0300 +++ /root/ldap-account-manager/pkg-plist 2010-10-30 22:05:30.000000000 +0300 @@ -36,7 +36,6 @@ %%WWWDIR%%/graphics/asterisk.png %%WWWDIR%%/graphics/asteriskExt.png %%WWWDIR%%/graphics/back.gif -%%WWWDIR%%/graphics/banner.jpg %%WWWDIR%%/graphics/bigPeople.png %%WWWDIR%%/graphics/bigTools.png %%WWWDIR%%/graphics/catalog.png @@ -62,6 +61,10 @@ %%WWWDIR%%/graphics/find.png %%WWWDIR%%/graphics/folder.png %%WWWDIR%%/graphics/forward.gif +%%WWWDIR%%/graphics/go-previous.png +%%WWWDIR%%/graphics/go-next.png +%%WWWDIR%%/graphics/go-first.png +%%WWWDIR%%/graphics/go-last.png %%WWWDIR%%/graphics/gear.png %%WWWDIR%%/graphics/go.png %%WWWDIR%%/graphics/group.png @@ -89,7 +92,6 @@ %%WWWDIR%%/graphics/mailBig.png %%WWWDIR%%/graphics/minus.png %%WWWDIR%%/graphics/modules.png -%%WWWDIR%%/graphics/moduleSettings.png %%WWWDIR%%/graphics/n.png %%WWWDIR%%/graphics/netgroup.png %%WWWDIR%%/graphics/network-wired.png @@ -263,6 +265,7 @@ %%WWWDIR%%/locale/zh_TW/LC_MESSAGES/messages.po %%WWWDIR%%/sess/.htaccess %%WWWDIR%%/style/.htaccess +%%WWWDIR%%/style/jquery-ui-1.8.2.custom.css %%WWWDIR%%/style/type_asteriskExt.css %%WWWDIR%%/style/type_dhcp.css %%WWWDIR%%/style/layout.css @@ -272,17 +275,6 @@ %%WWWDIR%%/style/type_netgroup.css %%WWWDIR%%/style/type_smbDomain.css %%WWWDIR%%/style/type_user.css -%%WWWDIR%%/style/jquery.ui.autocomplete.css -%%WWWDIR%%/style/jquery.ui.datepicker.css -%%WWWDIR%%/style/jquery.ui.accordion.css -%%WWWDIR%%/style/jquery.ui.dialog.css -%%WWWDIR%%/style/jquery.ui.base.css -%%WWWDIR%%/style/jquery-ui-1.8.2.custom.css -%%WWWDIR%%/style/jquery.ui.slider.css -%%WWWDIR%%/style/jquery.ui.button.css -%%WWWDIR%%/style/jquery.ui.selectable.css -%%WWWDIR%%/style/jquery.ui.theme.css -%%WWWDIR%%/style/jquery.ui.resizable.css %%WWWDIR%%/style/images/ui-icons_888888_256x240.png %%WWWDIR%%/style/images/ui-bg_glass_55_fbf9ee_1x400.png %%WWWDIR%%/style/images/ui-bg_flat_75_ffffff_40x100.png @@ -297,12 +289,11 @@ %%WWWDIR%%/style/images/ui-bg_highlight-soft_75_cccccc_1x100.png %%WWWDIR%%/style/images/ui-bg_glass_65_ffffff_1x400.png %%WWWDIR%%/style/images/ui-bg_glass_95_fef1ec_1x400.png -%%WWWDIR%%/style/jquery.ui.all.css -%%WWWDIR%%/style/jquery.ui.progressbar.css -%%WWWDIR%%/style/jquery.ui.core.css -%%WWWDIR%%/style/jquery.ui.tabs.css +%%WWWDIR%%/style/lam-images/headerLine.png +%%WWWDIR%%/templates/main_footer.php %%WWWDIR%%/templates/lib/jquery-1.4.2.min.js %%WWWDIR%%/templates/lib/jquery-ui-1.8.2.custom.min.js +%%WWWDIR%%/templates/lib/lam.js %%WWWDIR%%/templates/.htaccess %%WWWDIR%%/templates/account/edit.php %%WWWDIR%%/templates/config/conflogin.php @@ -318,8 +309,6 @@ %%WWWDIR%%/templates/delete.php %%WWWDIR%%/templates/help.php %%WWWDIR%%/templates/initsuff.php -%%WWWDIR%%/templates/lib/config.js -%%WWWDIR%%/templates/lib/list.js %%WWWDIR%%/templates/lib/wz_tooltip.js %%WWWDIR%%/templates/lists/deletelink.php %%WWWDIR%%/templates/lists/list.php @@ -387,6 +376,7 @@ @dirrm %%WWWDIR%%/templates/account @dirrm %%WWWDIR%%/templates @dirrm %%WWWDIR%%/style/images +@dirrm %%WWWDIR%%/style/lam-images @dirrm %%WWWDIR%%/style @dirrm %%WWWDIR%%/sess @dirrm %%WWWDIR%%/locale/zh_TW/LC_MESSAGES ===> Done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 20:28:57 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10BD5106566B; Sat, 30 Oct 2010 20:28:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DA8578FC13; Sat, 30 Oct 2010 20:28:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UKSuY1024473; Sat, 30 Oct 2010 20:28:56 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UKSuUq024469; Sat, 30 Oct 2010 20:28:56 GMT (envelope-from sunpoet) Date: Sat, 30 Oct 2010 20:28:56 GMT Message-Id: <201010302028.o9UKSuUq024469@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151831: {graphics, japanese, russian, ukrainian}/gd conflict with one another X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 20:28:57 -0000 Synopsis: {graphics,japanese,russian,ukrainian}/gd conflict with one another Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Oct 30 20:28:56 UTC 2010 Responsible-Changed-Why: Over to maintainer of {graphics|russian}/gd. http://www.freebsd.org/cgi/query-pr.cgi?pr=151831 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 20:50:15 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7606F10656DE for ; Sat, 30 Oct 2010 20:50:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 34AEC8FC15 for ; Sat, 30 Oct 2010 20:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UKoC82046111 for ; Sat, 30 Oct 2010 20:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UKoChh046110; Sat, 30 Oct 2010 20:50:12 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 20:50:12 GMT Resent-Message-Id: <201010302050.o9UKoChh046110@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Panagiotis Christias Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB915106564A for ; Sat, 30 Oct 2010 20:48:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id A84DF8FC12 for ; Sat, 30 Oct 2010 20:48:29 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9UKmTgK029766 for ; Sat, 30 Oct 2010 20:48:29 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9UKmTcm029765; Sat, 30 Oct 2010 20:48:29 GMT (envelope-from nobody) Message-Id: <201010302048.o9UKmTcm029765@www.freebsd.org> Date: Sat, 30 Oct 2010 20:48:29 GMT From: Panagiotis Christias To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151837: [patch] sysutils/bsdstats : does honor BATCH when installed from package X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 20:50:15 -0000 >Number: 151837 >Category: ports >Synopsis: [patch] sysutils/bsdstats : does honor BATCH when installed from package >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 20:50:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Panagiotis Christias >Release: 7.3-RELEASE-p3 amd64 >Organization: NTUA NOC >Environment: FreeBSD builder7-amd64.noc.ntua.gr 7.3-RELEASE-p3 FreeBSD 7.3-RELEASE-p3 #0: Wed Sep 22 15:55:56 EEST 2010 root@agamemnon.noc.ntua.gr:/usr/obj/usr/src/sys/NTUA amd64 >Description: Currently, when installing sysutils/bsdstats from package the BATCH variable, if defined, is not honored and the installation requires user input in order to complete. >How-To-Repeat: cd /usr/ports/sysutils/bsdstats env BATCH=1 make install package make deinstall env BATCH=1 /usr/ports/packages/Latest/bsdstats.tbz >Fix: See attached patch. Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # bsdstats # bsdstats/files # bsdstats/files/300.statistics.in # bsdstats/files/bsdstats.in # bsdstats/files/pkg-message.in # bsdstats/files/pkg-install.in # bsdstats/Makefile # bsdstats/pkg-descr # bsdstats/pkg-plist # echo c - bsdstats mkdir -p bsdstats > /dev/null 2>&1 echo c - bsdstats/files mkdir -p bsdstats/files > /dev/null 2>&1 echo x - bsdstats/files/300.statistics.in sed 's/^X//' >bsdstats/files/300.statistics.in << 'cada2042a8259c11a0272b68196f6459' X#!/bin/sh - X# X# $FreeBSD: ports/sysutils/bsdstats/files/300.statistics.in,v 1.44 2010/08/19 03:06:13 amdmi3 Exp $ X# X X# If there is a global system configuration file, suck it in. X# Xif [ -r /etc/defaults/periodic.conf ] Xthen X . /etc/defaults/periodic.conf X source_periodic_confs X periodic_conf=/etc/periodic.conf Xelse X . /etc/rc.conf # For systems without periodic.conf, use rc.conf X if [ -r /etc/rc.conf.local ] X then X . /etc/rc.conf.local X fi X periodic_conf=/etc/rc.conf.local Xfi X Xoldmask=$(umask) Xumask 066 Xtimeout=10 X Xversion="5.5" Xcheckin_server=${monthly_statistics_checkin_server:-"rpt.bsdstats.org"} Xbsdstats_log=${monthly_statistics_logfile:-"/var/log/bsdstats"} Xid_token_file='/var/db/bsdstats' X XPATH=/sbin:/bin:/usr/sbin:/usr/bin:%%PREFIX%%/sbin:%%PREFIX%%/bin Xexport PATH X Xunset HTTP_USER_AGENT X XIFS=" X" X Xrandom () { X jot -r 1 0 900 X} X X# RFC 2396 Xuri_escape () { X echo ${1+$@} | sed -e ' X s/%/%25/g X s/;/%3b/g X s,/,%2f,g X s/?/%3f/g X s/:/%3a/g X s/@/%40/g X s/&/%26/g X s/=/%3d/g X s/+/%2b/g X s/\$/%24/g X s/,/%2c/g X s/ /%20/g X ' X} X Xdo_fetch () { X url="http://$checkin_server/scripts/$1" X case $(uname) in X FreeBSD ) X /usr/bin/fetch -T "$timeout" -q -o - "$url" X ;; X * ) X /usr/bin/ftp -q "$timeout" -V -o - "$url" X ;; X esac X} X Xcheck_dns () { X if [ `dig bsdstats.org txt | grep TXT | grep UP | wc -l` = 0 ] X then X echo "DNS not reachable, Network Down?" X exit X fi X} X Xsend_devices () { X case $(uname) in X FreeBSD ) X for line in `/usr/sbin/pciconf -l` X do X DRIVER=`echo $line | awk -F\@ '{print $1}'` X DEV=`echo $line | awk '{print $4}' | cut -c8-15` X CLASS=`echo $line | awk '{print $2}' | cut -c9-14` X query_string=$query_string`echo \&dev[]=$DRIVER:$DEV:$CLASS` X done X X report_devices X ;; X * ) X # Not supported X ;; X esac X} X Xsend_ports () { X case $(uname) in X FreeBSD ) X for line in `/usr/sbin/pkg_info | /usr/bin/awk '{print $1}' ` X do X category=`grep "@comment ORIGIN" /var/db/pkg/${line}/+CONTENTS | sed -E 's/^\@comment ORIGIN:(.+)\/.+/\1/g'` X line=$(uri_escape $line) X category=$(uri_escape $category) X query_string=$query_string`echo \&port[]=${category}:${line}` X done X X report_ports X ;; X * ) X # Not supported X ;; X esac X} X Xreport_ports () { X # Handle HTTP proxy services X # X # HTTP_PROXY/http_proxy can take the following form: X # [http://][username:password@]proxy[:port][/] X # Authentication details may also be provided via HTTP_PROXY_AUTH: X # HTTP_PROXY_AUTH="basic:*:username:password" X # X X if [ -z "$HTTP_PROXY" -a -n "$http_proxy" ]; then X HTTP_PROXY=$http_proxy X fi X if [ -n "$HTTP_PROXY" ]; then X # Attempt to resolve any HTTP authentication X if [ -n "$HTTP_PROXY_AUTH" ]; then X PROXY_AUTH_USER=`echo $HTTP_PROXY_AUTH | sed -E 's/^.+:\*:(.+):.+$/\1/g'` X PROXY_AUTH_PASS=`echo $HTTP_PROXY_AUTH | sed -E 's/^.+:\*:.+:(.+)$/\1/g'` X else X # Check for authentication within HTTP_PROXY X HAS_HTTP_AUTH=`echo $HTTP_PROXY | sed -E 's/^(http:\/\/)?(.+:.+@)?.+/\2/'` X if [ -n "$HAS_HTTP_AUTH" ]; then X # Found HTTP authentication details X PROXY_AUTH_USER=`echo $HAS_HTTP_AUTH | cut -d: -f1` X PROXY_AUTH_PASS=`echo $HAS_HTTP_AUTH | cut -d: -f2` X fi X fi X X # Determine the proxy components X PROXY_HOST=`echo $HTTP_PROXY | sed -E 's/^(http:\/\/)?(.+:.+@)?([^@:]+)(:.+)?/\3/'` X PROXY_PORT=`echo $HTTP_PROXY | sed -E 's/^(http:\/\/)?(.+:.+@)?(.+):([0-9]+)/\4/' | sed -e 's/[^0-9]//g'` X if [ -z "$PROXY_PORT" ]; then X # Use default proxy port X PROXY_PORT=3128 X fi X fi X X # Determine the host/port netcat should connect to X if [ -n "$PROXY_HOST" -a -n "$PROXY_PORT" ]; then X nc_host=$PROXY_HOST X nc_port=$PROXY_PORT X url_prefix="http://${checkin_server}" X else X nc_host=$checkin_server X nc_port=80 X fi X X # Proxy authentication, if required X if [ -n "$PROXY_AUTH_USER" -a -n "$PROXY_AUTH_PASS" ]; then X auth_base64=`echo "$PROXY_AUTH_USER:$PROXY_AUTH_PASS" | openssl base64` X proxy_auth="Proxy-Authorization: Basic $auth_base64 X" X fi X X X # Make the request X string_length=`echo ${query_string} | wc -m` X string_length=`expr ${string_length} - 1` X X echo "POST ${url_prefix}/scripts/report_ports.php HTTP/1.0 XHost: ${checkin_server} XUser-Agent: bsdstats ${version} XConnection: close X${proxy_auth}Content-Type: application/x-www-form-urlencoded XContent-Length: ${string_length} X Xtoken=${TOKEN}&key=${KEY}${query_string}" | \ X nc $nc_host $nc_port | \ X grep STATUS= | { X local IFS X IFS='= X' X X while read var val X do X case $var in X STATUS) X if [ $val = "OK" ] X then X echo "[`date`] System Ports reported" X else X echo "[`date`] System Ports not reported, exiting" X exit X fi X ;; X *) X echo "[`date`] Error with fetch to server" X exit X ;; X esac X done X } >> $bsdstats_log X X} X Xreport_devices () { X do_fetch report_devices.php?token=$TOKEN\&key=$KEY$query_string | { X local IFS X IFS='= X' X X while read var val X do X case $var in X STATUS) X if [ $val = "OK" ] X then X echo "[`date`] System Devices reported" X else X echo "[`date`] System Devices not reported, exiting" X exit X fi X ;; X *) X echo "[`date`] Error with fetch to server" X exit X ;; X esac X done X } >> $bsdstats_log X} X Xget_id_token () { X if [ -f $id_token_file ] X then X if [ `wc -l < $id_token_file` -lt 3 ] X then X rm $id_token_file X fi X fi X X if [ ! -f $id_token_file -o ! -s $id_token_file ] ; X then X IDTOKEN=$(uri_escape $( openssl rand -base64 32 ) ) X X idf=$( mktemp "$id_token_file.XXXXXX" ) && \ X chown root:wheel $idf && \ X chmod 600 $idf X X do_fetch getid.php?key=$IDTOKEN | { X local IFS X IFS='= X' X X while read var val X do X case $var in X KEY) X echo "KEY=$val" X ;; X TOKEN) X echo "TOKEN=$val" X ;; X *) X ;; X esac X done X echo "VERSION=$version" X } > $idf && \ X X mv $idf $id_token_file X if [ ! -s $id_token_file ] ; X then X echo "Nothing returned from $checkin_server" X exit 1 X fi X fi X . $id_token_file X KEY=$( uri_escape $KEY ) X TOKEN=$( uri_escape $TOKEN ) X} X X Xenable_token () { X do_fetch enable_token.php?key=$TOKEN\&token=$KEY | { X local IFS X IFS='= X' X X while read var val X do X case $var in X STATUS) X if [ $val = "OK" ] X then X echo "[`date`] System enabled" X else X echo "[`date`] System not enabled, exiting" X exit X fi X ;; X *) X echo "[`date`] Error with fetch to server" X exit X ;; X esac X done X } >> $bsdstats_log X} X Xdisable_token () { X do_fetch disable_token.php?key=$TOKEN\&token=$KEY | { X local IFS X IFS='= X' X X while read var val X do X case $var in X STATUS) X if [ $val = "OK" ] X then X echo "[`date`] System disabled" X else X echo "[`date`] System not disabled, exiting" X exit X fi X ;; X *) X echo "[`date`] Error with fetch to server" X exit X ;; X esac X done X } >> $bsdstats_log X} X Xreport_system () { X do_fetch report_system.php?token=$TOKEN\&key=$KEY\&rel=$REL\&arch=$ARCH\&opsys=$OS | { X local IFS X IFS='= X' X X while read var val X do X case $var in X STATUS) X if [ $val = "OK" ] X then X echo "[`date`] System reported" X else X echo "[`date`] System report failed, exiting" X exit X fi X ;; X *) X echo "[`date`] Error with fetch to server" X exit X ;; X esac X done X } >> $bsdstats_log X} X Xreport_cpu () { X do_fetch report_cpu.php?token=$TOKEN\&key=$KEY\&cpus=$count\&vendor=$VEN\&cpu_type=$DEV | { X local IFS X IFS='= X' X X while read var val X do X case $var in X STATUS) X if [ $val = "OK" ] X then X echo "[`date`] System CPU reported" X else X echo "[`date`] System CPU report failed, exiting" X exit X fi X ;; X *) X echo "[`date`] Error with fetch to server" X exit X ;; X esac X done X } >> $bsdstats_log X} Xcase "$monthly_statistics_enable" in X [Yy][Ee][Ss]) X check_dns X REL=`/usr/bin/uname -r` X ARCH=`/usr/bin/uname -m` X OS=`/usr/bin/uname -s` X get_id_token X test X"$1" = X-nodelay || sleep `random` X enable_token X report_system X echo "Posting monthly OS statistics to $checkin_server" X if [ X"$1" != X-nodelay ]; then X case "$monthly_statistics_report_devices" in X [Yy][Ee][Ss]) X send_devices X echo "Posting monthly device statistics to $checkin_server" X line=$( sysctl -n hw.model ) X VEN=$( echo $line | cut -d ' ' -f 1 ) X DEV=$( uri_escape $( echo $line | cut -d ' ' -f 2- ) ) X count=$( sysctl -n hw.ncpu ) X report_cpu X echo "Posting monthly CPU statistics to $checkin_server" X ;; X *) X echo "Posting monthly device/CPU statistics disabled" X echo " set monthly_statistics_report_devices=\"YES\" in $periodic_conf" X ;; X esac X case "$monthly_statistics_report_ports" in X [Yy][Ee][Ss]) X send_ports X echo "Posting monthly ports statistics to $checkin_server" X ;; X *) X echo "Posting monthly ports statistics disabled" X echo " set monthly_statistics_report_ports=\"YES\" in $periodic_conf" X ;; X esac X fi X disable_token X ;; X *) X echo "Posting monthly OS statistics disabled" X echo " set monthly_statistics_enable=\"YES\" in $periodic_conf" X ;; Xesac X Xumask $oldmask Xexit $rc cada2042a8259c11a0272b68196f6459 echo x - bsdstats/files/bsdstats.in sed 's/^X//' >bsdstats/files/bsdstats.in << 'c6fd4a2e3db095ed05ececdac9b0dcc0' X#!/bin/sh X# X# $FreeBSD: ports/sysutils/bsdstats/files/bsdstats.in,v 1.3 2010/08/19 03:06:13 amdmi3 Exp $ X# X X# PROVIDE: bsdstats X# REQUIRE: LOGIN X# KEYWORD: shutdown X X# bsdstats is disabled by default, if you have configuration file X# X# Add the following line to /etc/rc.conf to enable bsdstats: X# X#bsdstats_enable="YES" X# X X. /etc/rc.subr X Xload_rc_config bsdstats X Xname=bsdstats Xrcvar=`set_rcvar` X Xcommand=%%PREFIX%%/etc/periodic/monthly/300.statistics X X# default to disable Xbsdstats_enable=${bsdstats_enable:-"NO"} Xbsdstats_flags=${bsdstats_flags:-"-nodelay"} X Xrun_rc_command "$1" c6fd4a2e3db095ed05ececdac9b0dcc0 echo x - bsdstats/files/pkg-message.in sed 's/^X//' >bsdstats/files/pkg-message.in << '1887d3f6146bc5a0dc33d6b0f7263f71' X XThis script, meant to be run monthly, submits statistics anonymously Xto a central checkin server (http://bsdstats.org), in an attempt to Xgenerate reasonably accurate demographics of both *BSD usage, as well Xas devices in use. X XSteps have been taken to make eliminate security concerns brought up Xin earlier releases of this, including, but not limited to, not storing Xanything in the database that has been deemed as 'sensitive' (ie. IP of Xthe reporting server, and hostname). X X******************** XTo enable monthly reporting, edit or create /etc/periodic.conf and add this line: X monthly_statistics_enable="YES" X XTo enable boottime reporting, edit or create /etc/rc.conf and add this line: X bsdstats_enable="YES" X XTo enable device reporting, add this line: X monthly_statistics_report_devices="YES" X XTo enable ports reporting, add this line: X monthly_statistics_report_ports="YES" X XTo run it manually the first time, just run it as: X %%PREFIX%%/etc/periodic/monthly/300.statistics -nodelay X XTo view current statistics, go to: X http://www.bsdstats.org X******************** 1887d3f6146bc5a0dc33d6b0f7263f71 echo x - bsdstats/files/pkg-install.in sed 's/^X//' >bsdstats/files/pkg-install.in << '046606ca1c8f79bb0f13b08f3b66301f' X#!/bin/sh -x X# X# pkg-install : based off ${PORTSDIR}/mail/courier/files/pkg-install.in X# XLOCALBASE=${LOCALBASE:=/usr/local} X Xask() { X local question default answer X X question=$1 X default=$2 X if [ -z "${PACKAGE_BUILDING}" ]; then X read -p "${question} [${default}]? " answer X fi X if [ -z "${answer}" ]; then X answer=${default} X fi X echo ${answer} X} X Xyesno() { X local question default answer X X question=$1 X default=$2 X while :; do X answer=$(ask "${question}" "${default}") X case "${answer}" in X [Yy]*) return 0;; X [Nn]*) return 1;; X esac X echo "Please answer yes or no." X done X} X Xif [ ":$2" = ":POST-INSTALL" ]; then X if [ -n "${BATCH}" -o -n "${PACKAGE_BUILDING}" ]; then X if [ ":$OSVERSION" != ":" ]; then X echo X echo "To activate monthly statistics reporting in /etc/periodic.conf," X echo "execute the following as root user:" X echo X echo "PKG_PREFIX=\"%%PREFIX%%\" %%SH%% %%PKGINSTALL%% %%PKGNAME%% POST-INSTALL" X echo X fi X exit 0 X fi X if [ -f "/etc/periodic.conf" ]; then X if [ `grep monthly_statistics /etc/periodic.conf | wc -l` = 0 ]; then X if yesno "Would you like to activate monthly reporting in /etc/periodic.conf" n; then X echo "monthly_statistics_enable=\"YES\"" >> /etc/periodic.conf X if yesno "Would you like to send a list of installed hardware as well" n; then X echo "monthly_statistics_report_devices=\"YES\"" >> /etc/periodic.conf X fi X if yesno "Would you like to send a list of installed ports as well" n; then X echo "monthly_statistics_report_ports=\"YES\"" >> /etc/periodic.conf X fi X if yesno "Would you like to run it now" y; then X ${PKG_PREFIX}/etc/periodic/monthly/300.statistics -nodelay X fi X fi X fi X elif [ ! -f "/etc/periodic.conf" ]; then X if yesno "Would you like to activate monthly reporting in /etc/periodic.conf" n; then X echo "monthly_statistics_enable=\"YES\"" >> /etc/periodic.conf X if yesno "Would you like to send a list of installed hardware as well" n; then X echo "monthly_statistics_report_devices=\"YES\"" >> /etc/periodic.conf X fi X if yesno "Would you like to send a list of installed ports as well" n; then X echo "monthly_statistics_report_ports=\"YES\"" >> /etc/periodic.conf X fi X if yesno "Would you like to run it now" y; then X ${PKG_PREFIX}/etc/periodic/monthly/300.statistics -nodelay X fi X fi X fi X if [ -f "/etc/rc.conf" ]; then X if [ `grep bsdstats_enable /etc/rc.conf | wc -l` = 0 ]; then X echo "" X echo "If running as a desktop, or on a laptop, it is recommended that you" X echo "enable bsdstats within /etc/rc.conf, so that it will run on reboot." X echo "" X echo "This will ensure that even if your computer is off when monthly runs," X echo "your computer will be properly counted." X echo "" X if yesno "Would you like to activate reporting on reboot in /etc/rc.conf" n; then X echo "bsdstats_enable=\"YES\"" >> /etc/rc.conf X fi X fi X elif [ ! -f "/etc/rc.conf" ]; then X echo "" X echo "If running as a desktop, or on a laptop, it is recommended that you" X echo "enable bsdstats within /etc/rc.conf, so that it will run on reboot." X echo "" X echo "This will ensure that even if your computer is off when monthly runs," X echo "your computer will be properly counted." X echo "" X if yesno "Would you like to activate reporting on reboot in /etc/rc.conf" n; then X echo "bsdstats_enable=\"YES\"" >> /etc/rc.conf X fi X fi Xfi X 046606ca1c8f79bb0f13b08f3b66301f echo x - bsdstats/Makefile sed 's/^X//' >bsdstats/Makefile << '11d1cbfbb132d8e380b60425bfbbe4dd' X# New ports collection makefile for: bsdstats X# Date created: 5 August 2006 X# Whom: Marc G. Fournier X# X# $FreeBSD: ports/sysutils/bsdstats/Makefile,v 1.61 2010/08/19 03:06:13 amdmi3 Exp $ X# X XPORTNAME= bsdstats XPORTVERSION= 5.5 XPORTREVISION= 2 XCATEGORIES= sysutils XDISTFILES= X XMAINTAINER= ports@FreeBSD.org XCOMMENT= Monthly script for reporting anonymous statistics about your machine X XNO_BUILD= yes XUSE_RC_SUBR= bsdstats XSUB_LIST= SH=${SH} PKGINSTALL=${PKGINSTALL} PKGNAME=${PKGNAME} XSUB_FILES= 300.statistics pkg-message pkg-install X Xdo-install: X ${MKDIR} ${PREFIX}/etc/periodic/monthly X ${INSTALL_SCRIPT} ${WRKDIR}/300.statistics ${PREFIX}/etc/periodic/monthly Xpost-install: X @${CAT} ${PKGMESSAGE} X @PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X X.include 11d1cbfbb132d8e380b60425bfbbe4dd echo x - bsdstats/pkg-descr sed 's/^X//' >bsdstats/pkg-descr << 'e35709a52408444cd679a2b8a4dd87e5' XThe purpose of this port is to attempt to produce reasonably accurate Xstatistics on FreeBSD deployment, to be used for both marketing, and Xadvocacy purposes by the project. X XThe major problem that we are trying to address is vendors who do not Xfeel that FreeBSD presents enough of a market to bother supporting. X XWWW: http://www.bsdstats.org/ e35709a52408444cd679a2b8a4dd87e5 echo x - bsdstats/pkg-plist sed 's/^X//' >bsdstats/pkg-plist << '7ec19d3614f27202b23ed58a1d13b5a0' Xetc/periodic/monthly/300.statistics X@dirrmtry etc/periodic/monthly X@dirrmtry etc/periodic 7ec19d3614f27202b23ed58a1d13b5a0 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 21:00:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C2C61065672 for ; Sat, 30 Oct 2010 21:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 073158FC18 for ; Sat, 30 Oct 2010 21:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UL0I6S056353 for ; Sat, 30 Oct 2010 21:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UL0I8L056335; Sat, 30 Oct 2010 21:00:18 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 21:00:18 GMT Resent-Message-Id: <201010302100.o9UL0I8L056335@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sterling Camden Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64103106566C for ; Sat, 30 Oct 2010 20:55:54 +0000 (UTC) (envelope-from sterling@camdensoftware.com) Received: from wh2.interactivevillages.com (wh2.interactivevillages.com [75.125.250.34]) by mx1.freebsd.org (Postfix) with ESMTP id 3341A8FC19 for ; Sat, 30 Oct 2010 20:55:54 +0000 (UTC) Received: from 174-21-106-233.tukw.qwest.net ([174.21.106.233] helo=_HOSTNAME_) by wh2.interactivevillages.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1PCIKQ-0001cp-Ow for FreeBSD-gnats-submit@freebsd.org; Sat, 30 Oct 2010 13:47:08 -0700 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sat, 30 Oct 2010 13:55:48 -0700 Message-Id: <20101030205554.64103106566C@hub.freebsd.org> Date: Sat, 30 Oct 2010 13:55:48 -0700 From: Sterling Camden To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151838: Update sysutils/pcpustat to version 1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sterling Camden List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 21:00:19 -0000 >Number: 151838 >Category: ports >Synopsis: Update sysutils/pcpustat to version 1.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 21:00:18 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sterling Camden >Release: FreeBSD 8.1-STABLE amd64 >Organization: Camden Software Consulting >Environment: System: FreeBSD libertas.local.camdensoftware.com 8.1-STABLE FreeBSD 8.1-STABLE #85: Fri Oct 29 10:27:19 PDT 2010 sterling@libertas.local.camdensoftware.com:/usr/obj/usr/src/sys/LIBERTAS amd64 >Description: Update pcpustat utility to versionm 1.4, which includes a -d (--delimiter) option. >How-To-Repeat: N/A - new feature >Fix: Patches follow: diff -u port/Makefile 1.4/Makefile --- port/Makefile 2010-10-29 05:10:35.000000000 -0700 +++ 1.4/Makefile 2010-10-30 13:41:18.000000000 -0700 @@ -1,12 +1,12 @@ # New ports collection makefile for: pcpustat -# Date created: 13 July 2010 +# Date created: 30 October 2010 # Whom: sterling # # $FreeBSD: ports/sysutils/pcpustat/Makefile,v 1.4 2010/10/29 12:10:35 pav Exp $ # PORTNAME= pcpustat -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= sysutils MASTER_SITES= http://chipstips.com/download/ diff -u port/distinfo 1.4/distinfo --- port/distinfo 2010-09-15 05:15:08.000000000 -0700 +++ 1.4/distinfo 2010-10-30 13:45:38.000000000 -0700 @@ -1,3 +1,2 @@ -MD5 (pcpustat-1.3.tar.bz2) = 040f1d0436e95b181ab08f69683e80b7 -SHA256 (pcpustat-1.3.tar.bz2) = 878a9e38f41ba434288f99e0d6a2c0321ed2fa34401113b42fe961b3ad3fa490 -SIZE (pcpustat-1.3.tar.bz2) = 4038 +SHA256 (pcpustat-1.4.tar.bz2) = 001fcafd28b50b9a0867aab5e7d89b65ccd05197f5a644538e901a7a0d8b2db1 +SIZE (pcpustat-1.4.tar.bz2) = 4947 diff -ur port/work/pcpustat-1.3/man/man1/pcpustat.1 1.4/work/pcpustat-1.4/man/man1/pcpustat.1 --- port/work/pcpustat-1.3/man/man1/pcpustat.1 2010-09-02 13:43:01.000000000 -0700 +++ 1.4/work/pcpustat-1.4/man/man1/pcpustat.1 2010-10-30 13:40:13.000000000 -0700 @@ -1,5 +1,5 @@ .\" man page for the pcpustat utility. -.Dd July 12, 2010 +.Dd September 26, 2010 .Dt PCPUSTAT 1 .Os .Sh NAME @@ -9,6 +9,7 @@ .Nm .Op Fl ahinqstux .Op Fl c Ar count +.Op Fl d Ar delimiter .Op Fl p Ar cpu .Op Fl w Ar wait .Sh DESCRIPTION @@ -19,6 +20,8 @@ Include all usage statistics (same as -instu). This is the default if no specific statistics are selected. .It Fl c, count Ar count Sample statistics the specified number of times. If not specified, it defaults to 1 if -w is not specified, otherwise forever. +.It Fl d, delim Ar delimiter +Delimit columns with delimiter instead of justifying them with spaces. .It Fl h, help Print the list of options and exit. .It Fl i, idle @@ -39,9 +42,47 @@ Pause the specified number of seconds between updates. The default is 1. .It Fl x, not Report the percentage of time not in each state. If specified, each percentage is subtracted from 100. The header (unless the -q option is selected) displays a "!" before each heading. +.Sh OUTPUT FORMAT +If the +.Op Fl q +option is not specified, the first two lines of output will contain a header. +.Pp +The first line lists the CPUs, by number. If the options +specify only one column of information per CPU, then this line will only contain the CPU numbers (starting with 0), otherwise it will contain +the string "cpu " followed by the number. This heading will be right-justified over the columns that apply to that CPU, unless the +.Op Fl d +option is specified (in which case the headers are also delimited). +.Pp +The second header line labels the columns within the output for each CPU. These labels can be any of the following: +.Pp +.Bl -tag -width indent -compact +.It \&us +% of cpu time in user mode +.It \&ni +% of cpu time in user mode running niced processes +.It \&sy +% of cpu time in system mode +.It \&in +% of cpu time in interrupt mode +.It \&id +% of cpu time in idle mode +.El +.Pp +If the +.Op Fl x +option was specified, then each of the above is prefixed by '!'. +.Pp +The remaining lines of output will be the percentage of time each CPU spent in each of the designated states since the previous line (or since pcpustat started, in the case of the first line). +.Pp +If the +.Op Fl d +option is specified, then the string specified as its argument will occur between each column. Otherwise, enough spaces will be used to +right-align each column under its heading. .Sh SEE ALSO top(1), iostat(8), sysctl(3), sysctl(8) .Sh AUTHOR -Sterling (Chip) Camden , http://chipstips.com/?tag=c_pcpustat +Sterling (Chip) Camden +.Sh SITE +http://chipstips.com/?tag=c_pcpustat .Sh BUGS The pcpustat utility can only report on CPUs 0-n, where n is one less than the number of bits in a long. diff -ur port/work/pcpustat-1.3/pcpustat.c 1.4/work/pcpustat-1.4/pcpustat.c --- port/work/pcpustat-1.3/pcpustat.c 2010-09-02 13:43:01.000000000 -0700 +++ 1.4/work/pcpustat-1.4/pcpustat.c 2010-10-30 13:39:50.000000000 -0700 @@ -12,7 +12,7 @@ #define CPUSTATES 5 /* OSX doesn't define this */ #endif -static const char* what_string="@(#)pcpustat 1.3"; +static const char* what_string="@(#)pcpustat 1.4"; /* Bit flags for what stats to include: */ @@ -37,12 +37,14 @@ int main(int ac, char **av) { int c, option_index, stats=0, count=-1, wait=0, cpu, ncpu, quiet=0, not=0; + char *delim=NULL; size_t state_size; long cpus=0; long *cpu_prev, *cpu_curr; struct option options[] = { {"all", 0, 0, 'a'}, {"count", 1, 0, 'c'}, + {"delim", 1, 0, 'd'}, {"help", 0, 0, 'h'}, {"idle", 0, 0, 'i'}, {"nice", 0, 0, 'n'}, @@ -57,6 +59,7 @@ struct opthelp help[] = { {0,"include all usage statistics (-instu)"}, {"count","repeat count times (default = forever if wait is specified)"}, + {"delimiter","separate columns with delimiter instead of justifying with spaces"}, {0,"print this list and exit"}, {0,"include idle time"}, {0,"include nice time"}, @@ -74,7 +77,7 @@ if (ncpu > sizeof(long)*8) ncpu = sizeof(long)*8; /* We're using a bit per CPU */ - while ((c = getopt_long(ac, av, "ac:hinp:qsuw:x", options, &option_index)) >= 0) + while ((c = getopt_long(ac, av, "ac:d:hinp:qstuw:x", options, &option_index)) >= 0) { switch (c) { @@ -86,10 +89,15 @@ count = strtol(optarg, NULL, 10); break; + case 'd': + delim = malloc(strlen(optarg)+1); + strcpy(delim, optarg); + break; + case 'h': { int n, nopts = (sizeof(options) / sizeof(struct option)); - printf("usage: pcpustat [-"); + printf("%s\nusage: pcpustat [-", what_string+4); for (n = 0; n < nopts; n++) if (!(help[n].argname)) printf("%c", options[n].val); @@ -166,37 +174,79 @@ if (!quiet) { - char head[21], fmt[5]; + char *head, fmt[5]; int i; - sprintf(head, "%s%s%s%s%s", - (stats & STAT_USER) ? " us" : "", - (stats & STAT_NICE) ? " ni" : "", - (stats & STAT_SYSTEM) ? " sy" : "", - (stats & STAT_INT) ? " in" : "", - (stats & STAT_IDLE) ? " id" : ""); - if (not) - for (i=1; i 0) + printf(delim); + printf("cpu %d", cpu); + for (dc=0; dc < cnt; dc++) + printf(delim); + } + printf("\n"); + } + else + { + head = malloc(21); + sprintf(head, "%s%s%s%s%s", + (stats & STAT_USER) ? " us" : "", + (stats & STAT_NICE) ? " ni" : "", + (stats & STAT_SYSTEM) ? " sy" : "", + (stats & STAT_INT) ? " in" : "", + (stats & STAT_IDLE) ? " id" : ""); + if (not) + for (i=1; i 5) + sprintf(str, "cpu %d", cpu); + else + sprintf(str, "%d", cpu); + printf(fmt, str); + } + printf("\n"); + } for (cpu = 0; cpu < ncpu; cpu++) if (cpus & (1 << cpu)) { - char str[8]; - if (strlen(head) > 5) - sprintf(str, "cpu %d", cpu); - else - sprintf(str, "%d", cpu); - printf(fmt, str); - } - printf("\n"); - for (cpu = 0; cpu < ncpu; cpu++) - if (cpus & (1 << cpu)) - { + if (delim && (cpu > 0)) + printf(delim); printf(head); } printf("\n"); + free(head); } state_size = getsysctllen("kern.cp_times"); @@ -207,6 +257,7 @@ for (;count; count--) /* Negative = forever */ { long *prev, *curr; + int first = 1; if (wait > 0) sleep(wait); @@ -231,7 +282,18 @@ int pct = (int)((diff[n] * 100 + h) / total); if (not) pct = 100 - pct; - printf(" %3d", pct); + if (delim) + { + if (first) + first = 0; + else + printf(delim); + printf("%d", pct); + } + else + { + printf(" %3d", pct); + } } } printf("\n"); @@ -242,6 +304,8 @@ free(cpu_prev); free(cpu_curr); + if (delim) + free(delim); return(0); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 21:10:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D442C1065672 for ; Sat, 30 Oct 2010 21:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1B9D8FC1C for ; Sat, 30 Oct 2010 21:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ULAA4B068559 for ; Sat, 30 Oct 2010 21:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9ULAAKo068558; Sat, 30 Oct 2010 21:10:10 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 21:10:10 GMT Resent-Message-Id: <201010302110.o9ULAAKo068558@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C08BF1065673 for ; Sat, 30 Oct 2010 21:02:04 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7234C8FC21 for ; Sat, 30 Oct 2010 21:02:04 +0000 (UTC) Received: by yxl31 with SMTP id 31so2777028yxl.13 for ; Sat, 30 Oct 2010 14:02:03 -0700 (PDT) Received: by 10.91.16.27 with SMTP id t27mr6589362agi.126.1288472523223; Sat, 30 Oct 2010 14:02:03 -0700 (PDT) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx.google.com with ESMTPS id f46sm3234820yhc.17.2010.10.30.14.02.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 30 Oct 2010 14:02:02 -0700 (PDT) Received: by sunpoet.net (Postfix, from userid 1000) id 9E9CF2AEC642; Sun, 31 Oct 2010 05:01:47 +0800 (CST) Message-Id: <20101030210147.9E9CF2AEC642@sunpoet.net> Date: Sun, 31 Oct 2010 05:01:47 +0800 (CST) From: Sunpoet Po-Chuan Hsieh Sender: Sunpoet Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: araujo@FreeBSD.org Subject: ports/151839: [PATCH] www/youtube_dl: update to 2010.10.24 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 21:10:11 -0000 >Number: 151839 >Category: ports >Synopsis: [PATCH] www/youtube_dl: update to 2010.10.24 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 21:10:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 8.1-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 8.1-STABLE FreeBSD 8.1-STABLE #0: Sat Oct 23 16:01:16 CST 2010 >Description: - Update to 2010.10.24 Port maintainer (araujo@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- youtube_dl-2010.10.24.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/youtube_dl/Makefile,v retrieving revision 1.51 diff -u -u -r1.51 Makefile --- Makefile 21 Oct 2010 15:37:48 -0000 1.51 +++ Makefile 30 Oct 2010 21:01:43 -0000 @@ -6,7 +6,7 @@ # PORTNAME= youtube_dl -PORTVERSION= 2010.10.03 +PORTVERSION= 2010.10.24 CATEGORIES= www MASTER_SITES= http://bitbucket.org/rg3/youtube-dl/raw/${PORTVERSION}/ DISTNAME= youtube-dl Index: distinfo =================================================================== RCS file: /home/ncvs/ports/www/youtube_dl/distinfo,v retrieving revision 1.41 diff -u -u -r1.41 distinfo --- distinfo 21 Oct 2010 15:37:48 -0000 1.41 +++ distinfo 30 Oct 2010 21:01:43 -0000 @@ -1,3 +1,2 @@ -MD5 (youtube_dl/2010.10.03/youtube-dl) = c552c00881845689900b67525ac6f72b -SHA256 (youtube_dl/2010.10.03/youtube-dl) = eb6a5deb494e8949918ca5a674d961439963fadd822df67dfa49ce47fa326d75 -SIZE (youtube_dl/2010.10.03/youtube-dl) = 81038 +SHA256 (youtube_dl/2010.10.24/youtube-dl) = 1ec91cd1d791c62777724fb650fde3d6da1ad5c86b4f46ec0368759ce7a7a381 +SIZE (youtube_dl/2010.10.24/youtube-dl) = 82350 --- youtube_dl-2010.10.24.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 21:10:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78F40106566B; Sat, 30 Oct 2010 21:10:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4F0808FC08; Sat, 30 Oct 2010 21:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ULAJWa069211; Sat, 30 Oct 2010 21:10:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9ULAJAZ069207; Sat, 30 Oct 2010 21:10:19 GMT (envelope-from edwin) Date: Sat, 30 Oct 2010 21:10:19 GMT Message-Id: <201010302110.o9ULAJAZ069207@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151839: [PATCH] www/youtube_dl: update to 2010.10.24 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 21:10:19 -0000 Synopsis: [PATCH] www/youtube_dl: update to 2010.10.24 Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 30 21:10:18 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151839 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 21:19:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 574B9106566B; Sat, 30 Oct 2010 21:19:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D87A8FC0A; Sat, 30 Oct 2010 21:19:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ULJ9un079562; Sat, 30 Oct 2010 21:19:09 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9ULJ91N079558; Sat, 30 Oct 2010 21:19:09 GMT (envelope-from sunpoet) Date: Sat, 30 Oct 2010 21:19:09 GMT Message-Id: <201010302119.o9ULJ91N079558@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/151838: Update sysutils/pcpustat to version 1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 21:19:10 -0000 Synopsis: Update sysutils/pcpustat to version 1.4 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Oct 30 21:19:09 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=151838 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 21:40:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D806B1065694 for ; Sat, 30 Oct 2010 21:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A4A98FC0A for ; Sat, 30 Oct 2010 21:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ULeBFC000607 for ; Sat, 30 Oct 2010 21:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9ULeB1g000606; Sat, 30 Oct 2010 21:40:11 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 21:40:11 GMT Resent-Message-Id: <201010302140.o9ULeB1g000606@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Toomas Aas Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37A311065672 for ; Sat, 30 Oct 2010 21:35:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 1F2A68FC0C for ; Sat, 30 Oct 2010 21:35:05 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o9ULZ4am072573 for ; Sat, 30 Oct 2010 21:35:04 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o9ULZ3Rs072572; Sat, 30 Oct 2010 21:35:03 GMT (envelope-from nobody) Message-Id: <201010302135.o9ULZ3Rs072572@www.freebsd.org> Date: Sat, 30 Oct 2010 21:35:03 GMT From: Toomas Aas To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/151840: www/ruby-cruisecontrolrb rc.d script doesn't clean up on stop X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 21:40:11 -0000 >Number: 151840 >Category: ports >Synopsis: www/ruby-cruisecontrolrb rc.d script doesn't clean up on stop >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 21:40:11 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Toomas Aas >Release: 8.1-RELEASE-p1 >Organization: >Environment: FreeBSD builder.tarkvarastuudio.ee 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #1: Tue Sep 21 23:49:01 EEST 2010 toomas@builder.tarkvarastuudio.ee:/usr/obj/usr/src/sys/TVS8 amd64 >Description: The script /usr/local/etc/rc.d/cruisecontrolrb doesn't shut down builder processes when run with the 'stop' argument. Since the PID files of the builders are also left behind, this means that cruisecontrol.rb will not start automatically on server reboot. >How-To-Repeat: Configure some projects in cruisecontrol.rb Start the dashboard and builders: /usr/local/etc/rc.d/cruisecontrolrb start Now run: /usr/local/etc/rc.d/cruisecontrolrb stop And then again: /usr/local/etc/rc.d/cruisecontrolrb start Notice that cruisecontrol.rb was not started. >Fix: Attached is a patch to the rc.d script, which terminates the builders and removes their PID files when run with the 'stop' argument. Patch attached with submission follows: a30 7 cd %%PREFIX%%/www/${name}/tmp/pids/builders/ for builder in `ls` do { kill $(cat $builder) rm ${builder} } done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 21:40:18 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03F5E1065697; Sat, 30 Oct 2010 21:40:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CDF908FC08; Sat, 30 Oct 2010 21:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ULeHO9000973; Sat, 30 Oct 2010 21:40:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9ULeHga000963; Sat, 30 Oct 2010 21:40:17 GMT (envelope-from edwin) Date: Sat, 30 Oct 2010 21:40:17 GMT Message-Id: <201010302140.o9ULeHga000963@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151840: www/ruby-cruisecontrolrb rc.d script doesn't clean up on stop X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 21:40:18 -0000 Synopsis: www/ruby-cruisecontrolrb rc.d script doesn't clean up on stop Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 30 21:40:17 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151840 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 22:30:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3683B106566B for ; Sat, 30 Oct 2010 22:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8EF738FC13 for ; Sat, 30 Oct 2010 22:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UMU99M053576 for ; Sat, 30 Oct 2010 22:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UMU9Uq053574; Sat, 30 Oct 2010 22:30:09 GMT (envelope-from gnats) Resent-Date: Sat, 30 Oct 2010 22:30:09 GMT Resent-Message-Id: <201010302230.o9UMU9Uq053574@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sevan Janiyan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87BAB1065670 for ; Sat, 30 Oct 2010 22:20:06 +0000 (UTC) (envelope-from sevan@newbie.thingamajig-systems.co.uk) Received: from newbie.thingamajig-systems.co.uk (cl-415.lon-02.gb.sixxs.net [IPv6:2a01:348:6:19e::2]) by mx1.freebsd.org (Postfix) with ESMTP id 8298D8FC17 for ; Sat, 30 Oct 2010 22:20:03 +0000 (UTC) Received: from tinderbox.home.thingamajig-systems.co.uk (localhost [127.0.0.1]) by newbie.thingamajig-systems.co.uk (8.14.3/8.14.3) with ESMTP id o9UMK2Hv024557 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Sat, 30 Oct 2010 23:20:02 +0100 (BST) (envelope-from sevan@tinderbox.home.thingamajig-systems.co.uk) Received: (from sevan@localhost) by tinderbox.home.thingamajig-systems.co.uk (8.14.3/8.14.3/Submit) id o9UMK2oU024556; Sat, 30 Oct 2010 23:20:02 +0100 (BST) (envelope-from sevan) Message-Id: <201010302220.o9UMK2oU024556@tinderbox.home.thingamajig-systems.co.uk> Date: Sat, 30 Oct 2010 23:20:02 +0100 (BST) From: Sevan Janiyan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151841: [PATCH] net-mgmt/netdisco: update to 1.0, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 22:30:13 -0000 >Number: 151841 >Category: ports >Synopsis: [PATCH] net-mgmt/netdisco: update to 1.0, take maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 30 22:30:09 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sevan Janiyan >Release: FreeBSD 8.0-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD tinderbox.home.thingamajig-systems.co.uk 8.0-RELEASE-p4 FreeBSD 8.0-RELEASE-p4 #4: Sat Jul 24 16:24:34 BST 2010 >Description: - Update to 1.0 - Take maintainership Added file(s): - files/patch-sql_pg Removed file(s): - files/pkg-install.in Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- netdisco-1.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/Makefile,v retrieving revision 1.13 diff -u -u -r1.13 Makefile --- Makefile 21 Sep 2010 16:08:09 -0000 1.13 +++ Makefile 30 Oct 2010 22:14:42 -0000 @@ -6,13 +6,12 @@ # PORTNAME= netdisco -PORTVERSION= 0.95 -PORTREVISION= 5 +PORTVERSION= 1.0 CATEGORIES= net-mgmt www MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}_with_mibs -MAINTAINER= ports@FreeBSD.org +MAINTAINER= venture37@geeklan.co.uk COMMENT= Web-based network management tool for moderate to large networks RUN_DEPENDS+= ${SITE_PERL}/Net/SNMP.pm:${PORTSDIR}/net-mgmt/p5-Net-SNMP \ @@ -29,6 +28,9 @@ OPTIONS= GRAPHVIZ "Install GraphViz for network map support" on +USERS= netdisco +GROUPS= netdisco + USE_PERL5= yes USE_PGSQL= yes USE_APACHE= 1.3+ @@ -39,16 +41,15 @@ RUNDIR?= /var/run DBDIR?= /var/db -APACHE_CFG= ${APACHE_CFGDIR}/httpd.conf -SUB_FILES= pkg-message pkg-install +SUB_FILES= pkg-message SUB_LIST= DBDIR=${DBDIR} PLIST_SUB= DBDIR=${DBDIR} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} ALTER_FILES= netdisco netdisco.conf netdisco_apache.conf \ - netdisco_apache_dir.conf netdisco.crontab + netdisco_apache_dir.conf netdisco.crontab sql/pg CONFIG_FILES= netdisco.conf netdisco.crontab netdisco-topology.txt \ netdisco_apache.conf netdisco_apache_dir.conf @@ -66,12 +67,9 @@ .if ${APACHE_VERSION} >= 20 RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl2.pm:${PORTSDIR}/www/mod_perl2 \ ${SITE_PERL}/${PERL_ARCH}/APR/Request/Apache2.pm:${PORTSDIR}/www/p5-libapreq2 -APACHE_CFGDIR= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/} .else RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/mod_perl \ ${SITE_PERL}/${PERL_ARCH}/Apache/Request.pm:${PORTSDIR}/www/p5-libapreq -APACHE_CFGDIR= ${LOCALBASE}/etc/apache -APACHE2_RE= \# .endif .if defined(WITH_GRAPHVIZ) @@ -85,13 +83,16 @@ . endfor cd ${WRKSRC} && \ - ${REINPLACE_CMD} -e 's#%%WWWDIR%%#${WWWDIR}#g' \ - -e 's#%%PREFIX%%#${PREFIX}#g' \ - -e 's#%%DATADIR%%#${DATADIR}#g' \ - -e 's#%%RUNDIR%%#${RUNDIR}#g' \ - -e 's#%%DBDIR%%#${DBDIR}#g' \ - -e 's/%%APACHE2%%/${APACHE2_RE}/g' \ - ${ALTER_FILES} + ${REINPLACE_CMD} -e 's#%%WWWDIR%%#${WWWDIR}#g' \ + -e 's#%%PREFIX%%#${PREFIX}#g' \ + -e 's#%%DATADIR%%#${DATADIR}#g' \ + -e 's#%%RUNDIR%%#${RUNDIR}#g' \ + -e 's#%%DBDIR%%#${DBDIR}#g' \ + -e 's#%%ETCDIR%%#${ETCDIR}#g' \ + -e 's#%%SITE_PERL%%#${SITE_PERL}#g' \ + -e 's#%%LOCALBASE%%#${LOCALBASE}#g' \ + -e 's#%%APACHEMODDIR%%#${APACHEMODDIR}#g'\ + ${ALTER_FILES} do-install: . for i in netdisco bin/parse_mac bin/port_control bin/parse_kismet_ap @@ -110,13 +111,13 @@ ${INSTALL_DATA} ${WRKSRC}/netdisco.pm ${SITE_PERL} - ${MKDIR} ${PREFIX}/etc/${PORTNAME} + ${MKDIR} ${ETCDIR} . for i in ${CONFIG_FILES} - cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${PREFIX}/etc/${PORTNAME}/${i}.sample - @(if [ ! -f ${PREFIX}/etc/${PORTNAME}/${i} ]; then \ - ${CP} ${PREFIX}/etc/${PORTNAME}/${i}.sample \ - ${PREFIX}/etc/${PORTNAME}/${i}; \ + cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${ETCDIR}/${i}.sample + @(if [ ! -f ${ETCDIR}/${i} ]; then \ + ${CP} ${ETCDIR}/${i}.sample \ + ${ETCDIR}/${i}; \ fi) . endfor @@ -132,17 +133,20 @@ ${MKDIR} ${DBDIR}/${PORTNAME} + ${CHOWN} -R ${USERS}:${GROUPS} ${ETCDIR} + ${CHMOD} -R 660 ${ETCDIR}/* + ${CHOWN} -R ${USERS}:${GROUPS} ${DBDIR}/netdisco + . if !defined(PACKAGE_BUILDING) - @(if [ -f ${APACHE_CFG} ] ; then \ - ${ECHO_MSG} "===> Updating ${APACHE_CFG}..."; \ - ${ECHO_CMD} "# Netdisco include files" >> ${APACHE_CFG}; \ - ${ECHO_CMD} "Include ${PREFIX}/etc/${PORTNAME}/netdisco_apache.conf" >> ${APACHE_CFG}; \ - ${ECHO_CMD} "Include ${PREFIX}/etc/${PORTNAME}/netdisco_apache_dir.conf" >> ${APACHE_CFG}; \ + @(if [ -f ${LOCALBASE}/${APACHEETCDIR}/httpd.conf ] ; then \ + ${ECHO_MSG} "===> Updating ${LOCALBASE}/${APACHEETCDIR}/httpd.conf..."; \ + ${ECHO_CMD} "# Netdisco include files" >> ${LOCALBASE}/${APACHEETCDIR}/httpd.conf; \ + ${ECHO_CMD} "Include ${ETCDIR}/netdisco_apache.conf" >> ${LOCALBASE}/${APACHEETCDIR}/httpd.conf; \ + ${ECHO_CMD} "Include ${ETCDIR}/netdisco_apache_dir.conf" >> ${LOCALBASE}/${APACHEETCDIR}/httpd.conf; \ fi) . endif post-install: - @${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL @${CAT} ${PKGMESSAGE} .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/distinfo,v retrieving revision 1.2 diff -u -u -r1.2 distinfo --- distinfo 5 Jan 2008 14:35:25 -0000 1.2 +++ distinfo 30 Oct 2010 22:14:42 -0000 @@ -1,3 +1,3 @@ -MD5 (netdisco-0.95_with_mibs.tar.gz) = 7cca1eb52203a0fa7b9bb65727b86d00 -SHA256 (netdisco-0.95_with_mibs.tar.gz) = d7a48dba471d683b0be470c1f82d2b5fa9f396deb914b7171774d0a3137e0745 -SIZE (netdisco-0.95_with_mibs.tar.gz) = 8318725 +MD5 (netdisco-1.0_with_mibs.tar.gz) = c1d9c3f51569235e90a6eb7dc0e73c74 +SHA256 (netdisco-1.0_with_mibs.tar.gz) = ff20ff42f71e9a8390aa4a436e7a8426bea6a43bd96884e65a1d6e71c3a047b0 +SIZE (netdisco-1.0_with_mibs.tar.gz) = 12701473 Index: pkg-deinstall =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/pkg-deinstall,v retrieving revision 1.3 diff -u -u -r1.3 pkg-deinstall --- pkg-deinstall 12 Jan 2008 16:54:23 -0000 1.3 +++ pkg-deinstall 30 Oct 2010 22:14:42 -0000 @@ -4,27 +4,6 @@ exit 0 fi -USER=netdisco -GROUP=${USER} - -echo "" - -if pw usershow "${USER}" 2>/dev/null 1>&2; then - if [ -z "${PACKAGE_BUILDING}" -a -z "${BATCH}" ]; then - echo "To delete the netdisco user permanently, use 'pw userdel ${USER}'." - else - pw userdel ${USER} - fi -fi - -if pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if [ -z "${PACKAGE_BUILDING}" -a -z "${BATCH}" ]; then - echo "To delete the netdisco group permanently, use 'pw groupdel ${GROUP}'." - else - pw groupdel ${GROUP} - fi -fi - TMPDIR=${TMPDIR:=/tmp} PKG_TMPDIR=${PKG_TMPDIR:=${TMPDIR}} Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/pkg-plist,v retrieving revision 1.3 diff -u -u -r1.3 pkg-plist --- pkg-plist 7 Jan 2008 14:08:44 -0000 1.3 +++ pkg-plist 30 Oct 2010 22:14:42 -0000 @@ -7,11 +7,181 @@ %%DATADIR%%/mibs/UPGRADE %%DATADIR%%/mibs/allied/ati-mib.mib %%DATADIR%%/mibs/allied/atswtch2.mib +%%DATADIR%%/mibs/arista/ARISTA-PRODUCTS-MIB.txt +%%DATADIR%%/mibs/arista/ARISTA-SMI-MIB.txt +%%DATADIR%%/mibs/aruba/a80sb_mb_private.mib %%DATADIR%%/mibs/aruba/aruba-ap.my +%%DATADIR%%/mibs/aruba/aruba-auth.my +%%DATADIR%%/mibs/aruba/aruba-cts.my +%%DATADIR%%/mibs/aruba/aruba-esi.my +%%DATADIR%%/mibs/aruba/aruba-ifext.my +%%DATADIR%%/mibs/aruba/aruba-mesh.my +%%DATADIR%%/mibs/aruba/aruba-mgmt.my +%%DATADIR%%/mibs/aruba/aruba-mobility.my +%%DATADIR%%/mibs/aruba/aruba-mon.my +%%DATADIR%%/mibs/aruba/aruba-snr.my %%DATADIR%%/mibs/aruba/aruba-switch.my +%%DATADIR%%/mibs/aruba/aruba-systemext.my +%%DATADIR%%/mibs/aruba/aruba-tc.my +%%DATADIR%%/mibs/aruba/aruba-trap.my +%%DATADIR%%/mibs/aruba/aruba-user.my +%%DATADIR%%/mibs/aruba/aruba-voice.my +%%DATADIR%%/mibs/aruba/aruba-wlan.my %%DATADIR%%/mibs/aruba/aruba.my %%DATADIR%%/mibs/asante/ASANTE-AH1012-MIB.txt %%DATADIR%%/mibs/asante/AsanteSwitchMIB.txt +%%DATADIR%%/mibs/cabletron/cabletron-traps-irm.txt +%%DATADIR%%/mibs/cabletron/cabletron-traps.txt +%%DATADIR%%/mibs/cabletron/chassis-mib.txt +%%DATADIR%%/mibs/cabletron/community-mib.txt +%%DATADIR%%/mibs/cabletron/ct-broadcast-mib.txt +%%DATADIR%%/mibs/cabletron/ct-cmmphys-mib.txt +%%DATADIR%%/mibs/cabletron/ct-container-mib.txt +%%DATADIR%%/mibs/cabletron/ct-els10-mib.txt +%%DATADIR%%/mibs/cabletron/ct-fastpath-dhcpserver-mib.txt +%%DATADIR%%/mibs/cabletron/ct-fastpath-protected-port-mib.txt +%%DATADIR%%/mibs/cabletron/ct-flash-mib.txt +%%DATADIR%%/mibs/cabletron/ct-fps-services-mib.txt +%%DATADIR%%/mibs/cabletron/ct-hsimphys-mib.txt +%%DATADIR%%/mibs/cabletron/ct-pic-mib.txt +%%DATADIR%%/mibs/cabletron/ct-priority-classify-mib.txt +%%DATADIR%%/mibs/cabletron/ct-priority-queuing-mib.txt +%%DATADIR%%/mibs/cabletron/ctatm-config-mib.txt +%%DATADIR%%/mibs/cabletron/ctels100-ng-mib.txt +%%DATADIR%%/mibs/cabletron/ctfps-mib.txt +%%DATADIR%%/mibs/cabletron/ctframer-config-mib.txt +%%DATADIR%%/mibs/cabletron/ctif-ext-mib.txt +%%DATADIR%%/mibs/cabletron/ctinb-mib.txt +%%DATADIR%%/mibs/cabletron/ctinb2-mib.txt +%%DATADIR%%/mibs/cabletron/ctrmonxt-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-alias-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ap3000-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-appletalk-router-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-appn-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-bdg-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-bridge-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-bus-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-cdp.mib.txt +%%DATADIR%%/mibs/cabletron/ctron-chassis-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-common-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-csmacd-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-dcm-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-deciv-router-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-device-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-dhcp-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-dlsw-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-download-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-elan-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-entity-state-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-entity-state-tc-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-environment-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ethernet-parameters.txt +%%DATADIR%%/mibs/cabletron/ctron-etwmim-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-fddi-fnb-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-fddi-stat-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-fnbtr-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-frontpanel-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-if-remap-2-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-if-remap-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-igmp-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ip-router-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ipx-router-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-mib-names.txt +%%DATADIR%%/mibs/cabletron/ctron-nat-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-oids.mib.txt +%%DATADIR%%/mibs/cabletron/ctron-orp-hsim-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-portmap-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-power-supply-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ppc-bad-packets.txt +%%DATADIR%%/mibs/cabletron/ctron-priority-classify-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-priority-extensions-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-q-bridge-mib-ext.txt +%%DATADIR%%/mibs/cabletron/ctron-rate-policing-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-remote-access-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-routers-internal-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-routers-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfcs-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-base-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-bindery-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-call-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-chassis-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-common-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-conn-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-connection-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-diagstats-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-directory-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-esys-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-eventlog-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-flood-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-include-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-l4ss-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-mcast-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-path-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-pktmgr-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-policy-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-port-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-resolve-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-sflsp-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-size-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-softlink-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-tap-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-topology-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-vlan-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-sfps-vstp-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-smarttrunk-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-capacity-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-config-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-hardware-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-l2-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-l3-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-policy-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-service-status-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-smi-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ssr-trap-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-timed-reset-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-translation-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-tx-queue-arbitration-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-ups-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-vlan-classify-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-vlan-extensions-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-wan-imux-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-wan-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-wan-multi-imux-mib.txt +%%DATADIR%%/mibs/cabletron/ctron-webview-mib.txt +%%DATADIR%%/mibs/cabletron/ctsmtmib-mib.txt +%%DATADIR%%/mibs/cabletron/cttraplog-mib.txt +%%DATADIR%%/mibs/cabletron/dlm-mib.txt +%%DATADIR%%/mibs/cabletron/dot5-log-mib.txt +%%DATADIR%%/mibs/cabletron/dot5-phys-mib.txt +%%DATADIR%%/mibs/cabletron/elh100-mib.txt +%%DATADIR%%/mibs/cabletron/els100-s24tx2m-mib.txt +%%DATADIR%%/mibs/cabletron/event-actions-mib.txt +%%DATADIR%%/mibs/cabletron/fast-ethernet-mib.txt +%%DATADIR%%/mibs/cabletron/garp-mib.txt +%%DATADIR%%/mibs/cabletron/irm-oids.txt +%%DATADIR%%/mibs/cabletron/irm3-mib.txt +%%DATADIR%%/mibs/cabletron/netlink-specific-mib.txt +%%DATADIR%%/mibs/cabletron/network-diags-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-ap-status-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-ap-tc.txt +%%DATADIR%%/mibs/cabletron/rbtws-basic-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-client-session-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-client-session-tc.txt +%%DATADIR%%/mibs/cabletron/rbtws-external-server-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-info-rf-detect-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-port-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-registration-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-root-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-system-mib.txt +%%DATADIR%%/mibs/cabletron/rbtws-trap-mib.txt +%%DATADIR%%/mibs/cabletron/repeater-mib-2.txt +%%DATADIR%%/mibs/cabletron/repeater-rev4-mib.txt +%%DATADIR%%/mibs/cabletron/router-oids.txt +%%DATADIR%%/mibs/cabletron/system-resource-mib.txt +%%DATADIR%%/mibs/cabletron/trap-mib.txt +%%DATADIR%%/mibs/cabletron/ups2-mib.txt +%%DATADIR%%/mibs/cabletron/v2h124-24-mib.txt +%%DATADIR%%/mibs/cabletron/ziplock-mib.txt %%DATADIR%%/mibs/chk_dups %%DATADIR%%/mibs/chk_mibs %%DATADIR%%/mibs/chk_mibs_all @@ -20,6 +190,7 @@ %%DATADIR%%/mibs/cisco/ADMIN-AUTH-STATS-MIB.my %%DATADIR%%/mibs/cisco/ADSL-DMT-LINE-MIB.my %%DATADIR%%/mibs/cisco/AIRESPACE-REF-MIB.my +%%DATADIR%%/mibs/cisco/AIRESPACE-SWITCHING-MIB.my %%DATADIR%%/mibs/cisco/AIRESPACE-WIRELESS-MIB.my %%DATADIR%%/mibs/cisco/ALTIGA-ADDRESS-STATS-MIB.my %%DATADIR%%/mibs/cisco/ALTIGA-BMGT-STATS-MIB.my @@ -70,6 +241,7 @@ %%DATADIR%%/mibs/cisco/CAT2600-MIB.my %%DATADIR%%/mibs/cisco/CISCO-5800-HEALTH-MON-MIB.my %%DATADIR%%/mibs/cisco/CISCO-6400-CHASSIS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-802-TAP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-90-MIB.my %%DATADIR%%/mibs/cisco/CISCO-AAA-CLIENT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-AAA-SERVER-EXT-MIB.my @@ -83,7 +255,9 @@ %%DATADIR%%/mibs/cisco/CISCO-ADSL-DMT-LINE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ALPS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ANNOUNCEMENT-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-AON-STATUS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-APPLIANCE-REDUNDANCY-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-APPLICATION-ACCELERATION-MIB.my %%DATADIR%%/mibs/cisco/CISCO-APS-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-APS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ASPP-MIB.my @@ -96,6 +270,7 @@ %%DATADIR%%/mibs/cisco/CISCO-ATM-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ATM-IF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ATM-IF-PHYS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-ATM-NETWORK-CLOCK-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ATM-PVC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ATM-PVCTRAP-EXTN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ATM-QOS-MIB.my @@ -111,6 +286,7 @@ %%DATADIR%%/mibs/cisco/CISCO-ATM-TRUNK-STAT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ATM-VIRTUAL-IF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ATM2-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-AUTH-FRAMEWORK-MIB.my %%DATADIR%%/mibs/cisco/CISCO-AUTHORIZATION-STATS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-BBSM-MIB.my %%DATADIR%%/mibs/cisco/CISCO-BCP-MIB.my @@ -118,6 +294,7 @@ %%DATADIR%%/mibs/cisco/CISCO-BGP-POLICY-ACCOUNTING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-BGP4-MIB.my %%DATADIR%%/mibs/cisco/CISCO-BITS-CLOCK-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-BRIDGE-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-BSC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-BSTUN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-BULK-FILE-MIB.my @@ -132,6 +309,7 @@ %%DATADIR%%/mibs/cisco/CISCO-CABLE-METERING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CABLE-QOS-MONITOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CABLE-SPECTRUM-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-CABLE-WIDEBAND-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CAC-SYSTEM-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CALL-APPLICATION-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CALL-HISTORY-MIB.my @@ -147,10 +325,13 @@ %%DATADIR%%/mibs/cisco/CISCO-CASA-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CAT6K-CROSSBAR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CATOS-ACL-QOS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-CBP-TARGET-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-CBP-TARGET-TC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CCM-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CCME-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CDL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CDMA-AHDLC-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-CDMA-PDSN-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CDMA-PDSN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CDP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CEF-MIB.my @@ -174,6 +355,8 @@ %%DATADIR%%/mibs/cisco/CISCO-CONFIG-MAN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CONTENT-ENGINE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CONTENT-NETWORK-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-CONTENT-SERVICES-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-CONTEXT-MAPPING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-COPS-CLIENT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CRYPTO-ACCELERATOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-CSG-MIB.my @@ -183,6 +366,7 @@ %%DATADIR%%/mibs/cisco/CISCO-DHCP-SNOOPING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DIAL-CONTROL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DIFFSERV-EXT-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-DIGITAL-MEDIA-SYSTEMS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DIST-DIRECTOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DLCSW-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DLSW-EXT-MIB.my @@ -195,12 +379,16 @@ %%DATADIR%%/mibs/cisco/CISCO-DOT11-ASSOCIATION-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DOT11-CONTEXT-SERVICES-CLIENT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DOT11-CONTEXT-SERVICES-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-DOT11-HT-MAC-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-DOT11-HT-PHY-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DOT11-IF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DOT11-LBS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DOT11-QOS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-DOT11-RADAR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DOT11-RADIO-DIAGNOSTIC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DOT11-SSID-SECURITY-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DOT11-WIDS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-DOT3-OAM-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DS0-CROSS-CONNECT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DS0BUNDLE-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-DS0BUNDLE-MIB.my @@ -213,6 +401,7 @@ %%DATADIR%%/mibs/cisco/CISCO-DYNAMIC-PORT-VSAN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-EIGRP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-EMBEDDED-EVENT-MGR-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-ENERGYWISE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENHANCED-IMAGE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENHANCED-IPSEC-FLOW-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENHANCED-MEMPOOL-MIB.my @@ -220,17 +409,24 @@ %%DATADIR%%/mibs/cisco/CISCO-ENHANCED-WRED-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-ALARM-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-ASSET-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-ENTITY-DIAG-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-ENTITY-DIAG-TC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-DISPLAY-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-FRU-CONTROL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-PFE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-PROVISIONING-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-ENTITY-REDUNDANCY-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-ENTITY-REDUNDANCY-TC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-SENSOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENTITY-VENDORTYPE-OID-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ENVMON-MIB.my %%DATADIR%%/mibs/cisco/CISCO-EPM-NOTIFICATION-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-ERM-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-ERR-DISABLE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ETHER-CFM-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ETHERNET-ACCESS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-EVC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-EXT-SCSI-MIB.my %%DATADIR%%/mibs/cisco/CISCO-FABRIC-C12K-MIB.my %%DATADIR%%/mibs/cisco/CISCO-FABRIC-HFR-MIB.my @@ -241,6 +437,7 @@ %%DATADIR%%/mibs/cisco/CISCO-FC-FE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-FC-MULTICAST-MIB.my %%DATADIR%%/mibs/cisco/CISCO-FC-ROUTE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-FC-SDV-MIB.my %%DATADIR%%/mibs/cisco/CISCO-FC-SPAN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-FCC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-FCIP-MGMT-EXT-MIB.my @@ -262,22 +459,30 @@ %%DATADIR%%/mibs/cisco/CISCO-FSPF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-FTP-CLIENT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GATEKEEPER-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-GGSN-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GGSN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GGSN-QOS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GGSN-SERVICE-AWARE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GPRS-ACC-PT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GPRS-CHARGING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GPRS-GTP-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-GSLB-DNS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-GSLB-HEALTH-MON-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-GSLB-SYSTEM-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-GSLB-TC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GTP-DIRECTOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-GTP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-H323-TC-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-H324-DIAL-CONTROL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-HC-ALARM-MIB.my %%DATADIR%%/mibs/cisco/CISCO-HEALTH-MONITOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-HSRP-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-HSRP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ICSUDSU-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IDSL-LINE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IEEE8021-CFM-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-ATM2-PVCTRAP-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IETF-BFD-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-DHCP-SERVER-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-DHCP-SERVER-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-DOT11-QOS-EXT-MIB.my @@ -289,6 +494,7 @@ %%DATADIR%%/mibs/cisco/CISCO-IETF-ISIS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-ISNS-MGMT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-MEGACO-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IETF-MSDP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-NAT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-PIM-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-PIM-MIB.my @@ -300,6 +506,9 @@ %%DATADIR%%/mibs/cisco/CISCO-IETF-SCTP-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-SCTP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-VDSL-LINE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IETF-VPLS-BGP-EXT-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IETF-VPLS-GENERIC-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IETF-VPLS-LDP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IETF-VRRP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IF-CALL-SERVICE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IF-EXTENSION-MIB.my @@ -316,13 +525,17 @@ %%DATADIR%%/mibs/cisco/CISCO-IMAGE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IMAGE-TC.my %%DATADIR%%/mibs/cisco/CISCO-IMAGE-UPGRADE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-INTERFACETOPN-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IP-ENCRYPTION-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IP-IF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IP-LOCAL-POOL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IP-NW-DISCOVERY-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IP-PROTOCOL-FILTER-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IP-RAN-BACKHAUL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IP-STAT-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IP-TAP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IP-UPLINK-REDIRECT-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-IP-URPF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IPMCAST-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IPMROUTE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IPSEC-FLOW-MONITOR-MIB.my @@ -331,6 +544,7 @@ %%DATADIR%%/mibs/cisco/CISCO-IPSEC-PROVISIONING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IPSEC-SIGNALING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-IPSEC-TC.my +%%DATADIR%%/mibs/cisco/CISCO-IPSLA-ETHERNET-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ISCSI-GW-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ISCSI-MIB.my %%DATADIR%%/mibs/cisco/CISCO-ISDN-MIB.my @@ -358,6 +572,7 @@ %%DATADIR%%/mibs/cisco/CISCO-L2-DEV-MONITORING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-L2-TUNNEL-CONFIG-MIB.my %%DATADIR%%/mibs/cisco/CISCO-L2L3-INTERFACE-CONFIG-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-L4L7MODULE-REDUNDANCY-MIB.my %%DATADIR%%/mibs/cisco/CISCO-L4L7MODULE-RESOURCE-LIMIT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LAG-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LATITUDE-MIB.my @@ -365,28 +580,46 @@ %%DATADIR%%/mibs/cisco/CISCO-LEC-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LECS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LES-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LICENSE-MGMT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LICENSE-MGR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LICENSE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LINK-ERROR-MONITOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LOCAL-DIRECTOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LRE-CPE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-AAA-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-ACL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-AP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-CCX-RM-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-CDP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-CLIENT-ROAMING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-DOT11-CLIENT-CALIB-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-DOT11-CLIENT-CCX-TC-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-DOT11-CLIENT-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-DOT11-LDAP-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-DOT11-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-IDS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-LINKTEST-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-LOCAL-AUTH-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-MESH-BATTERY-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-MESH-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-MESH-STATS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-MFP-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-MOBILITY-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-QOS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-REAP-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-ROGUE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-RRM-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-LWAPP-SYS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-TC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-TSM-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-WEBAUTH-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-WLAN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-LWAPP-WLAN-SECURITY-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-MAC-AUTH-BYPASS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MAC-NOTIFICATION-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MAU-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MEDIA-GATEWAY-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-MEGACO-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MEMORY-POOL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-METRO-PHY-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MGC-MIB.my @@ -404,15 +637,19 @@ %%DATADIR%%/mibs/cisco/CISCO-MGX82XX-VIRTUAL-PORT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MGX8800-IF-MAPPING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MMAIL-DIAL-CONTROL-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-MMODAL-CONTACT-APPS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MOBILE-IP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MODEM-MGMT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MODULE-AUTO-SHUTDOWN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MODULE-VIRTUALIZATION-MIB.my %%DATADIR%%/mibs/cisco/CISCO-MVPN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-NAC-NAD-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-NAC-TC-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-NAT-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB.my %%DATADIR%%/mibs/cisco/CISCO-NDE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-NETFLOW-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-NETINT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-NETWORK-REGISTRAR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-NMS-APPL-HEALTH-MIB.my %%DATADIR%%/mibs/cisco/CISCO-NS-MIB.my @@ -426,7 +663,10 @@ %%DATADIR%%/mibs/cisco/CISCO-OSCP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-OSPF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-OSPF-TRAP-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-OTN-IF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-OUTAGE-MONITOR-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-P2P-IF-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-PACKET-CAPTURE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PAE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PAGP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PIM-MIB.my @@ -434,6 +674,7 @@ %%DATADIR%%/mibs/cisco/CISCO-PKI-PARTICIPATION-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PNNI-MIB.my %%DATADIR%%/mibs/cisco/CISCO-POE-PD-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-POLICY-GROUP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-POP-MGMT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PORT-CHANNEL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PORT-QOS-MIB.my @@ -442,6 +683,7 @@ %%DATADIR%%/mibs/cisco/CISCO-PORT-TRACK-MIB.my %%DATADIR%%/mibs/cisco/CISCO-POWER-ETHERNET-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PPPOE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-PREFERRED-PATH-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PRIVATE-VLAN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PROCESS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-PRODUCTS-MIB.my @@ -455,10 +697,12 @@ %%DATADIR%%/mibs/cisco/CISCO-QLLC01-MIB.my %%DATADIR%%/mibs/cisco/CISCO-QOS-PIB-MIB.my %%DATADIR%%/mibs/cisco/CISCO-QOS-POLICY-CONFIG-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-QOS-TC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-QUEUE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RADIUS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-REMOTE-ACCESS-MONITOR-MIB.my %%DATADIR%%/mibs/cisco/CISCO-REPEATER-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-RESILIENT-ETHERNET-PROTOCOL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RF-SUPPLEMENTAL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RHINO-MIB.my @@ -467,6 +711,7 @@ %%DATADIR%%/mibs/cisco/CISCO-RSCN-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RSRB-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RTTMON-ICMP-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-RTTMON-IP-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RTTMON-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RTTMON-RTP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-RTTMON-TC-MIB.my @@ -478,6 +723,14 @@ %%DATADIR%%/mibs/cisco/CISCO-SDLLC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SDSL-LINE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SECURE-SHELL-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SERVICE-CONTROL-ATTACK-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SERVICE-CONTROL-LINK-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SERVICE-CONTROL-RDR-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SERVICE-CONTROL-SUBSCRIBERS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SERVICE-CONTROL-TP-STATS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SERVICE-CONTROLLER-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SESS-BORDER-CTRLR-EVENT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SIBU-FLASH-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SIBU-MANAGERS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SIBU-STACKABLE-DUAL-SPEED-HUB-MIB.my @@ -486,11 +739,13 @@ %%DATADIR%%/mibs/cisco/CISCO-SLB-HEALTH-MON-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SLB-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SM-FILE-DOWNLOAD-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SME-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SMI.my %%DATADIR%%/mibs/cisco/CISCO-SNA-LLC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SNAPSHOT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SNMP-NOTIFICATION-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SNMP-TARGET-EXT-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SNMP-USM-OIDS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SNMP-VACM-EXT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SONET-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SP-MIB.my @@ -509,6 +764,9 @@ %%DATADIR%%/mibs/cisco/CISCO-SVI-AUTOSTATE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SWITCH-CGMP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SWITCH-ENGINE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SWITCH-HARDWARE-CAPACITY-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SWITCH-MULTICAST-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-SWITCH-QOS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SWITCH-USAGE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SYS-INFO-LOG-MIB.my %%DATADIR%%/mibs/cisco/CISCO-SYSLOG-EVENT-EXT-MIB.my @@ -523,6 +781,9 @@ %%DATADIR%%/mibs/cisco/CISCO-TC.my %%DATADIR%%/mibs/cisco/CISCO-TCP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-TCPOFFLOAD-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-TELEPRESENCE-CALL-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-TELEPRESENCE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-TELNET-SERVER-MIB.my %%DATADIR%%/mibs/cisco/CISCO-TN3270SERVER-MIB.my %%DATADIR%%/mibs/cisco/CISCO-TPC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-TRANSACTION-CONNECTION-MIB.my @@ -530,8 +791,10 @@ %%DATADIR%%/mibs/cisco/CISCO-UDLDP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-UNIFIED-FIREWALL-MIB.my %%DATADIR%%/mibs/cisco/CISCO-UNITY-EXPRESS-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-USER-CONNECTION-TAP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VINES-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VIRTUAL-NW-IF-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-VIRTUAL-SWITCH-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VISM-ATM-TRUNK-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VISM-CAC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VISM-CAS-MIB.my @@ -548,12 +811,13 @@ %%DATADIR%%/mibs/cisco/CISCO-VISM-SVC-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VISM-TRAPS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VISM-XGCP-EXT.my -%%DATADIR%%/mibs/cisco/CISCO-VLAN-BRIDGE-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-VLAN-BRIDGING-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VLAN-MEMBERSHIP-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VLAN-TRANSLATION-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VMPS-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VOA-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-VOICE-AALX-PROFILE-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VOICE-ANALOG-IF-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VOICE-APPLICATIONS-OID-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VOICE-APPS-MIB.my @@ -574,6 +838,7 @@ %%DATADIR%%/mibs/cisco/CISCO-VSI-CONTROLLER-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VSIMASTER-MIB.my %%DATADIR%%/mibs/cisco/CISCO-VTP-MIB.my +%%DATADIR%%/mibs/cisco/CISCO-WAN-3G-MIB.my %%DATADIR%%/mibs/cisco/CISCO-WAN-AAL2-PROFILES-MIB.my %%DATADIR%%/mibs/cisco/CISCO-WAN-ANNOUNCEMENT-MIB.my %%DATADIR%%/mibs/cisco/CISCO-WAN-ATM-CONN-MIB.my @@ -639,22 +904,36 @@ %%DATADIR%%/mibs/cisco/CISCO-ZS-MIB.my %%DATADIR%%/mibs/cisco/CISCOWAN-SMI.my %%DATADIR%%/mibs/cisco/CISCOWORKS-MIB.my +%%DATADIR%%/mibs/cisco/CLAB-DEF-MIB.my +%%DATADIR%%/mibs/cisco/CLAB-TOPO-MIB.my %%DATADIR%%/mibs/cisco/COMPAT-MIB.my %%DATADIR%%/mibs/cisco/DOCS-BPI-PLUS-MIB.my %%DATADIR%%/mibs/cisco/DOCS-CABLE-DEVICE-TRAP-MIB.my +%%DATADIR%%/mibs/cisco/DOCS-DIAG-MIB.my +%%DATADIR%%/mibs/cisco/DOCS-DRF-MIB.my +%%DATADIR%%/mibs/cisco/DOCS-DSG-IF-MIB.my %%DATADIR%%/mibs/cisco/DOCS-IF-EXT-MIB.my +%%DATADIR%%/mibs/cisco/DOCS-IF3-MIB.my +%%DATADIR%%/mibs/cisco/DOCS-IFEXT2-MIB.my +%%DATADIR%%/mibs/cisco/DOCS-L2VPN-MIB.my %%DATADIR%%/mibs/cisco/DOCS-QOS-MIB.my +%%DATADIR%%/mibs/cisco/DOCS-QOS3-MIB.my %%DATADIR%%/mibs/cisco/DOCS-SUBMGT-MIB.my +%%DATADIR%%/mibs/cisco/DOCS-TEST-MIB.my %%DATADIR%%/mibs/cisco/ERR-STATUS-MIB.my %%DATADIR%%/mibs/cisco/ESMODULE-MIB.my %%DATADIR%%/mibs/cisco/ESSWITCH-MIB.my %%DATADIR%%/mibs/cisco/ETHERLIKE-MIB.my %%DATADIR%%/mibs/cisco/EXPRESSION-MIB.my %%DATADIR%%/mibs/cisco/GENERICOBJECT-MIB.my -%%DATADIR%%/mibs/cisco/IBM-6611-APPN-MIB.my +%%DATADIR%%/mibs/cisco/IEEE-802DOT17-RPR-MIB.my +%%DATADIR%%/mibs/cisco/IEEE8021-CFM-MIB.my +%%DATADIR%%/mibs/cisco/IEEE8021-CFM-V2-MIB.my +%%DATADIR%%/mibs/cisco/IEEE8021-TC-MIB.my %%DATADIR%%/mibs/cisco/IGMP-MIB.my %%DATADIR%%/mibs/cisco/IMA-MIB.my %%DATADIR%%/mibs/cisco/IPMROUTE-MIB.my +%%DATADIR%%/mibs/cisco/ISIS-CAPABILTY-MIB.my %%DATADIR%%/mibs/cisco/LAN-EMULATION-CLIENT-MIB.my %%DATADIR%%/mibs/cisco/LANOPTICS-ALERTS-MIB.my %%DATADIR%%/mibs/cisco/LANOPTICS-BRIDGE-OPTION-MIB.my @@ -667,7 +946,6 @@ %%DATADIR%%/mibs/cisco/MADGEBOX-MIB.my %%DATADIR%%/mibs/cisco/MADGERSW-MIB.my %%DATADIR%%/mibs/cisco/METRO1500-MIB.my -%%DATADIR%%/mibs/cisco/MPLS-L3VPN-STD-MIB.my %%DATADIR%%/mibs/cisco/MPLS-LDP-MIB.my %%DATADIR%%/mibs/cisco/MPLS-LSR-MIB.my %%DATADIR%%/mibs/cisco/MPLS-TE-MIB.my @@ -707,6 +985,14 @@ %%DATADIR%%/mibs/cisco/v2-readme %%DATADIR%%/mibs/cisco1.diff %%DATADIR%%/mibs/cisco2.diff +%%DATADIR%%/mibs/cisco_remove +%%DATADIR%%/mibs/cyclades/CYCLADES-ACS-ADM-MIB.mib +%%DATADIR%%/mibs/cyclades/CYCLADES-ACS-CONF-MIB.mib +%%DATADIR%%/mibs/cyclades/CYCLADES-ACS-INFO-MIB.mib +%%DATADIR%%/mibs/cyclades/CYCLADES-ACS-MIB.mib +%%DATADIR%%/mibs/cyclades/CYCLADES-ACS-PM-MIB.mib +%%DATADIR%%/mibs/cyclades/CYCLADES-ACS-SYS-MIB.mib +%%DATADIR%%/mibs/cyclades/CYCLADES-MIB.mib %%DATADIR%%/mibs/dell/apollo.mib %%DATADIR%%/mibs/dell/dell_ita.mib %%DATADIR%%/mibs/dell/env_mib.mib @@ -742,10 +1028,70 @@ %%DATADIR%%/mibs/dell/rlvlan.mib %%DATADIR%%/mibs/dell/trunk.mib %%DATADIR%%/mibs/diff_dir +%%DATADIR%%/mibs/enterasys/enterasys-8021x-extensions-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-8021x-rekeying-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-802dot11ext.txt +%%DATADIR%%/mibs/enterasys/enterasys-R2Management.txt +%%DATADIR%%/mibs/enterasys/enterasys-aaa-policy-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-activation-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-class-of-service-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-configuration-change-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-configuration-management-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-convergence-end-point-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-diagnostic-message-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-encr-8021x-config-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-encr-8021x-rekeying-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-eswitch-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-firewall-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-flow-limiting-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-ieee8023-lag-mib-ext-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-ietf-bridge-mib-ext-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-ietf-p-bridge-mib-ext-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-if-mib-ext-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-image-validation-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-jumbo-ethernet-frame-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-license-key-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-license-key-oids-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-link-flap-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-mac-authentication-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-mac-locking-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-mau-mib-ext-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-mgmt-auth-notification-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-mib-names.mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-mib-org.mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-mstp-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-multi-auth-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-multi-user-8021x-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-netflow-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-oids-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-policy-profile-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-power-ethernet-mib-ext-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-pwa-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-radius-acct-client-ext-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-radius-auth-client-encrypt-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-radius-auth-client-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-resource-utilization-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-secure-shell-server-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-service-level-reporting-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-snmp-persistence-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-sntp-client-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-spanning-tree-diagnostic-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-ssh-server-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-syslog-client-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-threat-notification-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-tls-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-upn-tc-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-vlan-authorization-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-vlan-interface-mib.txt +%%DATADIR%%/mibs/enterasys/enterasys-wifi-protected-access-mib.txt %%DATADIR%%/mibs/extreme/extreme-base.mib +%%DATADIR%%/mibs/extreme/extreme-cable.mib %%DATADIR%%/mibs/extreme/extreme-dlcs.mib +%%DATADIR%%/mibs/extreme/extreme-dos.mib %%DATADIR%%/mibs/extreme/extreme-eaps.mib %%DATADIR%%/mibs/extreme/extreme-edp.mib +%%DATADIR%%/mibs/extreme/extreme-enh-dos.mib +%%DATADIR%%/mibs/extreme/extreme-entity.mib %%DATADIR%%/mibs/extreme/extreme-esrp.mib %%DATADIR%%/mibs/extreme/extreme-fdb.mib %%DATADIR%%/mibs/extreme/extreme-filetransfer.mib @@ -761,6 +1107,7 @@ %%DATADIR%%/mibs/extreme/extreme-services.mib %%DATADIR%%/mibs/extreme/extreme-slb.mib %%DATADIR%%/mibs/extreme/extreme-snmpv3.mib +%%DATADIR%%/mibs/extreme/extreme-stacking.mib %%DATADIR%%/mibs/extreme/extreme-stp-extensions.mib %%DATADIR%%/mibs/extreme/extreme-system.mib %%DATADIR%%/mibs/extreme/extreme-trap.mib @@ -768,6 +1115,9 @@ %%DATADIR%%/mibs/extreme/extreme-v2trap.mib %%DATADIR%%/mibs/extreme/extreme-vc.mib %%DATADIR%%/mibs/extreme/extreme-vlan.mib +%%DATADIR%%/mibs/extreme/extreme-wireless.mib +%%DATADIR%%/mibs/extreme/extremedot11ap.mib +%%DATADIR%%/mibs/extreme/extremedot11f.mib %%DATADIR%%/mibs/foundry/FOUNDRY-CAR-MIB.mib %%DATADIR%%/mibs/foundry/FOUNDRY-SN-AGENT-MIB.mib %%DATADIR%%/mibs/foundry/FOUNDRY-SN-APPLETALK-MIB.mib @@ -787,6 +1137,9 @@ %%DATADIR%%/mibs/foundry/FOUNDRY-SN-VSRP-MIB.mib %%DATADIR%%/mibs/foundry/FOUNDRY-SN-WIRELESS-GROUP-MIB.mib %%DATADIR%%/mibs/foundry/FOUNDRY-VLAN-CAR-MIB.mib +%%DATADIR%%/mibs/foundry/foundry-sn-mac-authentication.mib +%%DATADIR%%/mibs/foundry/foundry-sn-mac-vlan.mib +%%DATADIR%%/mibs/foundry/foundry-sn-mrp.mib %%DATADIR%%/mibs/hp/h2r07604c.mib %%DATADIR%%/mibs/hp/hp-sn-agent.mib %%DATADIR%%/mibs/hp/hp-sn-appletalk.mib @@ -806,6 +1159,9 @@ %%DATADIR%%/mibs/hp/hpentmib.mib %%DATADIR%%/mibs/hp/hphttpmg.mib %%DATADIR%%/mibs/hp/hpicf8023rptr.mib +%%DATADIR%%/mibs/hp/hpicfarpprotect.mib +%%DATADIR%%/mibs/hp/hpicfautorun.mib +%%DATADIR%%/mibs/hp/hpicfautz.mib %%DATADIR%%/mibs/hp/hpicfbasic.mib %%DATADIR%%/mibs/hp/hpicfbridge.mib %%DATADIR%%/mibs/hp/hpicfchain.mib @@ -816,21 +1172,30 @@ %%DATADIR%%/mibs/hp/hpicfetwist.mib %%DATADIR%%/mibs/hp/hpicfff.mib %%DATADIR%%/mibs/hp/hpicfgenrptr.mib +%%DATADIR%%/mibs/hp/hpicfgppc.mib +%%DATADIR%%/mibs/hp/hpicfhighavailability.mib +%%DATADIR%%/mibs/hp/hpicfinstmon.mib %%DATADIR%%/mibs/hp/hpicfipaddress.mib %%DATADIR%%/mibs/hp/hpicfiproute.mib %%DATADIR%%/mibs/hp/hpicfjumbo.mib +%%DATADIR%%/mibs/hp/hpicfl3macconfig.mib %%DATADIR%%/mibs/hp/hpicflinktest.mib +%%DATADIR%%/mibs/hp/hpicfmld.mib %%DATADIR%%/mibs/hp/hpicfoid.mib %%DATADIR%%/mibs/hp/hpicfospf.mib %%DATADIR%%/mibs/hp/hpicfpim.mib +%%DATADIR%%/mibs/hp/hpicfproviderbridge.mib %%DATADIR%%/mibs/hp/hpicfratelimit.mib %%DATADIR%%/mibs/hp/hpicfrip.mib %%DATADIR%%/mibs/hp/hpicfsecurity.mib +%%DATADIR%%/mibs/hp/hpicfsnmp.mib %%DATADIR%%/mibs/hp/hpicfsntp.mib %%DATADIR%%/mibs/hp/hpicfstack.mib %%DATADIR%%/mibs/hp/hpicftc.mib +%%DATADIR%%/mibs/hp/hpicfudld.mib %%DATADIR%%/mibs/hp/hpicfudpforward.mib %%DATADIR%%/mibs/hp/hpicfusrauth.mib +%%DATADIR%%/mibs/hp/hpicfusrprof.mib %%DATADIR%%/mibs/hp/hpicfvg.mib %%DATADIR%%/mibs/hp/hpicfvgrptr.mib %%DATADIR%%/mibs/hp/hpicfvrrp.mib @@ -845,8 +1210,8 @@ %%DATADIR%%/mibs/hp/hpvlan.mib %%DATADIR%%/mibs/hp/ipx.mib %%DATADIR%%/mibs/hp/orinoco.mib -%%DATADIR%%/mibs/hp/sflow.mib %%DATADIR%%/mibs/hp1.diff +%%DATADIR%%/mibs/ianalist %%DATADIR%%/mibs/juniper/mib-jnx-atm-cos.txt %%DATADIR%%/mibs/juniper/mib-jnx-atm.txt %%DATADIR%%/mibs/juniper/mib-jnx-bgpmib2.txt @@ -887,8 +1252,10 @@ %%DATADIR%%/mibs/net-snmp/NET-SNMP-EXTEND-MIB.txt %%DATADIR%%/mibs/net-snmp/NET-SNMP-MIB.txt %%DATADIR%%/mibs/net-snmp/NET-SNMP-MONITOR-MIB.txt +%%DATADIR%%/mibs/net-snmp/NET-SNMP-PASS-MIB.txt %%DATADIR%%/mibs/net-snmp/NET-SNMP-SYSTEM-MIB.txt %%DATADIR%%/mibs/net-snmp/NET-SNMP-TC.txt +%%DATADIR%%/mibs/net-snmp/NET-SNMP-VACM-MIB.txt %%DATADIR%%/mibs/net-snmp/RFC-1215.txt %%DATADIR%%/mibs/net-snmp/UCD-DEMO-MIB.txt %%DATADIR%%/mibs/net-snmp/UCD-DISKIO-MIB.txt @@ -904,23 +1271,40 @@ %%DATADIR%%/mibs/netscreen/NETSCREEN-RESOURCE-MIB.mib %%DATADIR%%/mibs/netscreen/NETSCREEN-SET-GEN-MIB.mib %%DATADIR%%/mibs/netscreen/NETSCREEN-SMI.mib +%%DATADIR%%/mibs/nortel.diff %%DATADIR%%/mibs/nortel/AAC.mib %%DATADIR%%/mibs/nortel/CSMACD.MIB %%DATADIR%%/mibs/nortel/Commgmt.mib %%DATADIR%%/mibs/nortel/HARDWARE.MIB %%DATADIR%%/mibs/nortel/L2mgmt.mib %%DATADIR%%/mibs/nortel/L3mgmt.mib +%%DATADIR%%/mibs/nortel/MODULE.MIB %%DATADIR%%/mibs/nortel/OSPF.MIB %%DATADIR%%/mibs/nortel/PriL3mgmt.mib %%DATADIR%%/mibs/nortel/SSH.mib %%DATADIR%%/mibs/nortel/TAG1Q.MIB %%DATADIR%%/mibs/nortel/WFCOMMON.MIB -%%DATADIR%%/mibs/nortel/WSS2270-SW20-switching.mib %%DATADIR%%/mibs/nortel/altroot.mib +%%DATADIR%%/mibs/nortel/aosbwm.mib +%%DATADIR%%/mibs/nortel/aoslayer4.mib +%%DATADIR%%/mibs/nortel/aoslayer7.mib +%%DATADIR%%/mibs/nortel/aosnetwork.mib +%%DATADIR%%/mibs/nortel/aosphysical.mib +%%DATADIR%%/mibs/nortel/aosswitch.mib +%%DATADIR%%/mibs/nortel/baystack.mib %%DATADIR%%/mibs/nortel/baystackadac.mib +%%DATADIR%%/mibs/nortel/baystackarpinspection.mib +%%DATADIR%%/mibs/nortel/baystackdhcpsnooping.mib +%%DATADIR%%/mibs/nortel/baystackecmp.mib +%%DATADIR%%/mibs/nortel/baystackerrormessage.mib %%DATADIR%%/mibs/nortel/baystacklacpext.mib %%DATADIR%%/mibs/nortel/baystackmulticastflooding.mib +%%DATADIR%%/mibs/nortel/baystackospfext.mib %%DATADIR%%/mibs/nortel/baystackpethext.mib +%%DATADIR%%/mibs/nortel/baystackradius.mib +%%DATADIR%%/mibs/nortel/baystacksourceguard.mib +%%DATADIR%%/mibs/nortel/baystackstats.mib +%%DATADIR%%/mibs/nortel/baystackvrrpext.mib %%DATADIR%%/mibs/nortel/bayxlr.mib %%DATADIR%%/mibs/nortel/bnlog.mib %%DATADIR%%/mibs/nortel/bsee.mib @@ -932,8 +1316,10 @@ %%DATADIR%%/mibs/nortel/mcast201.mib %%DATADIR%%/mibs/nortel/nnmst.mib %%DATADIR%%/mibs/nortel/nnrst.mib +%%DATADIR%%/mibs/nortel/nortelsecurenetworkaccess.mib %%DATADIR%%/mibs/nortel/ntwlanap006.mib %%DATADIR%%/mibs/nortel/rapid_city.mib +%%DATADIR%%/mibs/nortel/rcmlt.mib %%DATADIR%%/mibs/nortel/s3com.mib %%DATADIR%%/mibs/nortel/s3eth.mib %%DATADIR%%/mibs/nortel/s5age.mib @@ -958,7 +1344,10 @@ %%DATADIR%%/mibs/rfc/ADSL-LINE-EXT-MIB.txt %%DATADIR%%/mibs/rfc/ADSL-LINE-MIB.txt %%DATADIR%%/mibs/rfc/ADSL-TC-MIB.txt +%%DATADIR%%/mibs/rfc/ADSL2-LINE-MIB.txt +%%DATADIR%%/mibs/rfc/ADSL2-LINE-TC-MIB.txt %%DATADIR%%/mibs/rfc/AGENTX-MIB.txt +%%DATADIR%%/mibs/rfc/AGGREGATE-MIB.txt %%DATADIR%%/mibs/rfc/ALARM-MIB.txt %%DATADIR%%/mibs/rfc/APM-MIB.txt %%DATADIR%%/mibs/rfc/APPC-MIB.txt @@ -998,16 +1387,23 @@ %%DATADIR%%/mibs/rfc/DOCS-BPI-MIB.txt %%DATADIR%%/mibs/rfc/DOCS-CABLE-DEVICE-MIB.txt %%DATADIR%%/mibs/rfc/DOCS-IETF-BPI2-MIB.txt +%%DATADIR%%/mibs/rfc/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB.txt +%%DATADIR%%/mibs/rfc/DOCS-IETF-QOS-MIB.txt %%DATADIR%%/mibs/rfc/DOCS-IETF-SUBMGT-MIB.txt %%DATADIR%%/mibs/rfc/DOCS-IF-MIB.txt %%DATADIR%%/mibs/rfc/DOT12-IF-MIB.txt %%DATADIR%%/mibs/rfc/DOT12-RPTR-MIB.txt +%%DATADIR%%/mibs/rfc/DOT3-EPON-MIB.txt +%%DATADIR%%/mibs/rfc/DOT3-OAM-MIB.txt +%%DATADIR%%/mibs/rfc/DPI20-MIB.txt %%DATADIR%%/mibs/rfc/DS0-MIB.txt %%DATADIR%%/mibs/rfc/DS0BUNDLE-MIB.txt %%DATADIR%%/mibs/rfc/DS1-MIB.txt %%DATADIR%%/mibs/rfc/DS3-MIB.txt %%DATADIR%%/mibs/rfc/DSA-MIB.txt +%%DATADIR%%/mibs/rfc/DSMON-MIB.txt %%DATADIR%%/mibs/rfc/EBN-MIB.txt +%%DATADIR%%/mibs/rfc/EFM-CU-MIB.txt %%DATADIR%%/mibs/rfc/ENTITY-MIB.txt %%DATADIR%%/mibs/rfc/ENTITY-SENSOR-MIB.txt %%DATADIR%%/mibs/rfc/ENTITY-STATE-MIB.txt @@ -1016,6 +1412,7 @@ %%DATADIR%%/mibs/rfc/ETHER-WIS.txt %%DATADIR%%/mibs/rfc/EtherLike-MIB.txt %%DATADIR%%/mibs/rfc/FC-MGMT-MIB.txt +%%DATADIR%%/mibs/rfc/FCIP-MGMT-MIB.txt %%DATADIR%%/mibs/rfc/FDDI-SMT73-MIB.txt %%DATADIR%%/mibs/rfc/FIBRE-CHANNEL-FE-MIB.txt %%DATADIR%%/mibs/rfc/FLOW-METER-MIB.txt @@ -1025,6 +1422,10 @@ %%DATADIR%%/mibs/rfc/FRNETSERV-MIB.txt %%DATADIR%%/mibs/rfc/FRSLD-MIB.txt %%DATADIR%%/mibs/rfc/Finisher-MIB.txt +%%DATADIR%%/mibs/rfc/GMPLS-LABEL-STD-MIB.txt +%%DATADIR%%/mibs/rfc/GMPLS-LSR-STD-MIB.txt +%%DATADIR%%/mibs/rfc/GMPLS-TC-STD-MIB.txt +%%DATADIR%%/mibs/rfc/GMPLS-TE-STD-MIB.txt %%DATADIR%%/mibs/rfc/GSMP-MIB.txt %%DATADIR%%/mibs/rfc/HC-ALARM-MIB.txt %%DATADIR%%/mibs/rfc/HC-PerfHist-TC-MIB.txt @@ -1038,18 +1439,23 @@ %%DATADIR%%/mibs/rfc/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt %%DATADIR%%/mibs/rfc/IANA-CHARSET-MIB.txt %%DATADIR%%/mibs/rfc/IANA-FINISHER-MIB.txt +%%DATADIR%%/mibs/rfc/IANA-GMPLS-TC-MIB.txt %%DATADIR%%/mibs/rfc/IANA-ITU-ALARM-TC-MIB.txt %%DATADIR%%/mibs/rfc/IANA-LANGUAGE-MIB.txt %%DATADIR%%/mibs/rfc/IANA-MALLOC-MIB.txt +%%DATADIR%%/mibs/rfc/IANA-MAU-MIB.txt %%DATADIR%%/mibs/rfc/IANA-PRINTER-MIB.txt %%DATADIR%%/mibs/rfc/IANA-RTPROTO-MIB.txt %%DATADIR%%/mibs/rfc/IANATn3270eTC-MIB.txt %%DATADIR%%/mibs/rfc/IANAifType-MIB.txt +%%DATADIR%%/mibs/rfc/IBM-6611-APPN-MIB.txt %%DATADIR%%/mibs/rfc/IEEE8021-PAE-MIB.my %%DATADIR%%/mibs/rfc/IEEE8023-LAG-MIB.my %%DATADIR%%/mibs/rfc/IEEE802dot11-MIB.my +%%DATADIR%%/mibs/rfc/IF-CAP-STACK-MIB.txt %%DATADIR%%/mibs/rfc/IF-INVERTED-STACK-MIB.txt %%DATADIR%%/mibs/rfc/IF-MIB.txt +%%DATADIR%%/mibs/rfc/IFCP-MGMT-MIB.txt %%DATADIR%%/mibs/rfc/IGMP-STD-MIB.txt %%DATADIR%%/mibs/rfc/INET-ADDRESS-MIB.txt %%DATADIR%%/mibs/rfc/INT-SERV-GUARANTEED-MIB.my @@ -1060,8 +1466,11 @@ %%DATADIR%%/mibs/rfc/IP-FORWARD-MIB.txt %%DATADIR%%/mibs/rfc/IP-MIB.txt %%DATADIR%%/mibs/rfc/IPATM-IPMC-MIB.txt +%%DATADIR%%/mibs/rfc/IPMCAST-MIB.txt %%DATADIR%%/mibs/rfc/IPMROUTE-STD-MIB.txt %%DATADIR%%/mibs/rfc/IPOA-MIB.txt +%%DATADIR%%/mibs/rfc/IPS-AUTH-MIB.txt +%%DATADIR%%/mibs/rfc/IPSEC-SPD-MIB.txt %%DATADIR%%/mibs/rfc/IPV6-FLOW-LABEL-MIB.txt %%DATADIR%%/mibs/rfc/IPV6-ICMP-MIB.txt %%DATADIR%%/mibs/rfc/IPV6-MIB.txt @@ -1069,16 +1478,27 @@ %%DATADIR%%/mibs/rfc/IPV6-TC.txt %%DATADIR%%/mibs/rfc/IPV6-TCP-MIB.txt %%DATADIR%%/mibs/rfc/IPV6-UDP-MIB.txt +%%DATADIR%%/mibs/rfc/ISCSI-MIB.txt %%DATADIR%%/mibs/rfc/ISDN-MIB.txt +%%DATADIR%%/mibs/rfc/ISIS-MIB.txt +%%DATADIR%%/mibs/rfc/ISNS-MIB.txt %%DATADIR%%/mibs/rfc/ITU-ALARM-MIB.txt %%DATADIR%%/mibs/rfc/ITU-ALARM-TC-MIB.txt %%DATADIR%%/mibs/rfc/Job-Monitoring-MIB.txt %%DATADIR%%/mibs/rfc/L2TP-MIB.txt +%%DATADIR%%/mibs/rfc/LANGTAG-TC-MIB.txt +%%DATADIR%%/mibs/rfc/LMP-MIB.txt %%DATADIR%%/mibs/rfc/MALLOC-MIB.txt %%DATADIR%%/mibs/rfc/MAU-MIB.txt +%%DATADIR%%/mibs/rfc/MGMD-STD-MIB.txt +%%DATADIR%%/mibs/rfc/MIDCOM-MIB.txt %%DATADIR%%/mibs/rfc/MIOX25-MIB.txt %%DATADIR%%/mibs/rfc/MIP-MIB.txt +%%DATADIR%%/mibs/rfc/MOBILEIPV6-MIB.txt %%DATADIR%%/mibs/rfc/MPLS-FTN-STD-MIB.txt +%%DATADIR%%/mibs/rfc/MPLS-L3VPN-STD-MIB.txt +%%DATADIR%%/mibs/rfc/MPLS-LC-ATM-STD-MIB.txt +%%DATADIR%%/mibs/rfc/MPLS-LC-FR-STD-MIB.txt %%DATADIR%%/mibs/rfc/MPLS-LDP-ATM-STD-MIB.txt %%DATADIR%%/mibs/rfc/MPLS-LDP-FRAME-RELAY-STD-MIB.txt %%DATADIR%%/mibs/rfc/MPLS-LDP-GENERIC-STD-MIB.txt @@ -1086,9 +1506,11 @@ %%DATADIR%%/mibs/rfc/MPLS-LSR-STD-MIB.txt %%DATADIR%%/mibs/rfc/MPLS-TC-STD-MIB.txt %%DATADIR%%/mibs/rfc/MPLS-TE-STD-MIB.txt +%%DATADIR%%/mibs/rfc/MSDP-MIB.txt %%DATADIR%%/mibs/rfc/MTA-MIB.txt %%DATADIR%%/mibs/rfc/Modem-MIB.txt %%DATADIR%%/mibs/rfc/NAT-MIB.txt +%%DATADIR%%/mibs/rfc/NEMO-MIB.txt %%DATADIR%%/mibs/rfc/NETWORK-SERVICES-MIB.txt %%DATADIR%%/mibs/rfc/NHRP-MIB.txt %%DATADIR%%/mibs/rfc/NOTIFICATION-LOG-MIB.txt @@ -1097,8 +1519,13 @@ %%DATADIR%%/mibs/rfc/OSPF-TRAP-MIB.txt %%DATADIR%%/mibs/rfc/P-BRIDGE-MIB.txt %%DATADIR%%/mibs/rfc/PARALLEL-MIB.txt +%%DATADIR%%/mibs/rfc/PIM-BSR-MIB.txt %%DATADIR%%/mibs/rfc/PIM-MIB.txt +%%DATADIR%%/mibs/rfc/PIM-STD-MIB.txt %%DATADIR%%/mibs/rfc/PINT-MIB.txt +%%DATADIR%%/mibs/rfc/PKTC-IETF-EVENT-MIB.txt +%%DATADIR%%/mibs/rfc/PKTC-IETF-MTA-MIB.txt +%%DATADIR%%/mibs/rfc/PKTC-IETF-SIG-MIB.txt %%DATADIR%%/mibs/rfc/POLICY-BASED-MANAGEMENT-MIB.txt %%DATADIR%%/mibs/rfc/POWER-ETHERNET-MIB.txt %%DATADIR%%/mibs/rfc/PPP-BRIDGE-NCP-MIB.txt @@ -1113,6 +1540,10 @@ %%DATADIR%%/mibs/rfc/RADIUS-ACC-SERVER-MIB.txt %%DATADIR%%/mibs/rfc/RADIUS-AUTH-CLIENT-MIB.txt %%DATADIR%%/mibs/rfc/RADIUS-AUTH-SERVER-MIB.txt +%%DATADIR%%/mibs/rfc/RADIUS-DYNAUTH-CLIENT-MIB.txt +%%DATADIR%%/mibs/rfc/RADIUS-DYNAUTH-SERVER-MIB.txt +%%DATADIR%%/mibs/rfc/RAQMON-MIB.txt +%%DATADIR%%/mibs/rfc/RAQMON-RDS-MIB.txt %%DATADIR%%/mibs/rfc/RDBMS-MIB.txt %%DATADIR%%/mibs/rfc/RFC1155-SMI.txt %%DATADIR%%/mibs/rfc/RFC1213-MIB.txt @@ -1134,10 +1565,18 @@ %%DATADIR%%/mibs/rfc/ROHC-RTP-MIB.txt %%DATADIR%%/mibs/rfc/ROHC-UNCOMPRESSED-MIB.txt %%DATADIR%%/mibs/rfc/RS-232-MIB.txt +%%DATADIR%%/mibs/rfc/RSERPOOL-MIB.txt +%%DATADIR%%/mibs/rfc/RSTP-MIB.txt %%DATADIR%%/mibs/rfc/RSVP-MIB.txt %%DATADIR%%/mibs/rfc/RTP-MIB.txt +%%DATADIR%%/mibs/rfc/SCSI-MIB.txt %%DATADIR%%/mibs/rfc/SCTP-MIB.txt +%%DATADIR%%/mibs/rfc/SFLOW-MIB.txt +%%DATADIR%%/mibs/rfc/SIP-COMMON-MIB.txt %%DATADIR%%/mibs/rfc/SIP-MIB.txt +%%DATADIR%%/mibs/rfc/SIP-SERVER-MIB.txt +%%DATADIR%%/mibs/rfc/SIP-TC-MIB.txt +%%DATADIR%%/mibs/rfc/SIP-UA-MIB.txt %%DATADIR%%/mibs/rfc/SLAPM-MIB.txt %%DATADIR%%/mibs/rfc/SMON-MIB.txt %%DATADIR%%/mibs/rfc/SMUX-MIB.txt @@ -1145,6 +1584,7 @@ %%DATADIR%%/mibs/rfc/SNA-SDLC-MIB.txt %%DATADIR%%/mibs/rfc/SNMP-COMMUNITY-MIB.txt %%DATADIR%%/mibs/rfc/SNMP-FRAMEWORK-MIB.txt +%%DATADIR%%/mibs/rfc/SNMP-IEEE802-TM-MIB.txt %%DATADIR%%/mibs/rfc/SNMP-MPD-MIB.txt %%DATADIR%%/mibs/rfc/SNMP-NOTIFICATION-MIB.txt %%DATADIR%%/mibs/rfc/SNMP-PROXY-MIB.txt @@ -1155,27 +1595,53 @@ %%DATADIR%%/mibs/rfc/SNMP-USM-DH-OBJECTS-MIB.txt %%DATADIR%%/mibs/rfc/SNMP-VIEW-BASED-ACM-MIB.txt %%DATADIR%%/mibs/rfc/SNMPv2-CONF.txt +%%DATADIR%%/mibs/rfc/SNMPv2-M2M-MIB.txt %%DATADIR%%/mibs/rfc/SNMPv2-MIB.txt +%%DATADIR%%/mibs/rfc/SNMPv2-PARTY-MIB.txt %%DATADIR%%/mibs/rfc/SNMPv2-SMI.txt %%DATADIR%%/mibs/rfc/SNMPv2-TC.txt %%DATADIR%%/mibs/rfc/SNMPv2-TM.txt +%%DATADIR%%/mibs/rfc/SNMPv2-USEC-MIB.txt %%DATADIR%%/mibs/rfc/SONET-MIB.txt %%DATADIR%%/mibs/rfc/SOURCE-ROUTING-MIB.txt %%DATADIR%%/mibs/rfc/SSPM-MIB.txt %%DATADIR%%/mibs/rfc/SYSAPPL-MIB.txt +%%DATADIR%%/mibs/rfc/SYSLOG-TC-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-FABRIC-ADDR-MGR-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-FABRIC-CONFIG-SERVER-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-FABRIC-LOCK-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-FSPF-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-NAME-SERVER-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-ROUTE-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-RSCN-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-SP-AUTHENTICATION-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-SP-POLICY-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-SP-SA-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-SP-TC-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-SP-ZONING-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-VIRTUAL-FABRIC-MIB.txt +%%DATADIR%%/mibs/rfc/T11-FC-ZONE-SERVER-MIB.txt +%%DATADIR%%/mibs/rfc/T11-TC-MIB.txt +%%DATADIR%%/mibs/rfc/TCP-ESTATS-MIB.txt %%DATADIR%%/mibs/rfc/TCP-MIB.txt %%DATADIR%%/mibs/rfc/TCPIPX-MIB.txt %%DATADIR%%/mibs/rfc/TE-LINK-STD-MIB.txt %%DATADIR%%/mibs/rfc/TE-MIB.txt +%%DATADIR%%/mibs/rfc/TIME-AGGREGATE-MIB.txt %%DATADIR%%/mibs/rfc/TN3270E-MIB.txt %%DATADIR%%/mibs/rfc/TN3270E-RT-MIB.txt %%DATADIR%%/mibs/rfc/TOKEN-RING-RMON-MIB.txt %%DATADIR%%/mibs/rfc/TOKENRING-MIB.txt %%DATADIR%%/mibs/rfc/TOKENRING-STATION-SR-MIB.txt +%%DATADIR%%/mibs/rfc/TPM-MIB.txt %%DATADIR%%/mibs/rfc/TRANSPORT-ADDRESS-MIB.txt +%%DATADIR%%/mibs/rfc/TRIP-MIB.txt +%%DATADIR%%/mibs/rfc/TRIP-TC-MIB.txt %%DATADIR%%/mibs/rfc/TUNNEL-MIB.txt %%DATADIR%%/mibs/rfc/UDP-MIB.txt +%%DATADIR%%/mibs/rfc/UDPLITE-MIB.txt %%DATADIR%%/mibs/rfc/UPS-MIB.txt +%%DATADIR%%/mibs/rfc/URI-TC-MIB.txt %%DATADIR%%/mibs/rfc/VDSL-LINE-EXT-MCM-MIB.txt %%DATADIR%%/mibs/rfc/VDSL-LINE-EXT-SCM-MIB.txt %%DATADIR%%/mibs/rfc/VDSL-LINE-MIB.txt @@ -1186,28 +1652,40 @@ %%DATADIR%%/mibs/rfc/lldp_dot1.mib %%DATADIR%%/mibs/rfc/lldp_dot3.mib %%DATADIR%%/mibs/rfc1.diff +%%DATADIR%%/mibs/rfclist %%DATADIR%%/mibs/rm_cisco_dups %%DATADIR%%/mibs/snmp.conf %%DATADIR%%/mibs/snmpwalkmib +%%DATADIR%%/mibs/split-extreme %%DATADIR%%/mibs/to_locase %%DATADIR%%/mibs/walk_all %%DATADIR%%/sql/admin.sql %%DATADIR%%/sql/device.sql %%DATADIR%%/sql/device_ip.sql +%%DATADIR%%/sql/device_module.sql %%DATADIR%%/sql/device_port.sql %%DATADIR%%/sql/device_port_log.sql +%%DATADIR%%/sql/device_port_power.sql %%DATADIR%%/sql/device_port_ssid.sql +%%DATADIR%%/sql/device_port_vlan.sql +%%DATADIR%%/sql/device_port_wireless.sql +%%DATADIR%%/sql/device_power.sql +%%DATADIR%%/sql/device_vlan.sql %%DATADIR%%/sql/log.sql %%DATADIR%%/sql/node.sql %%DATADIR%%/sql/node_ip.sql +%%DATADIR%%/sql/node_monitor.sql %%DATADIR%%/sql/node_nbt.sql +%%DATADIR%%/sql/node_wireless.sql %%DATADIR%%/sql/oui.sql %%DATADIR%%/sql/pg +%%DATADIR%%/sql/process.sql %%DATADIR%%/sql/sessions.sql %%DATADIR%%/sql/subnets.sql %%DATADIR%%/sql/upgrade-0.92-to-0.93.sql %%DATADIR%%/sql/upgrade-0.93-to-0.94.sql %%DATADIR%%/sql/upgrade-0.94-to-0.95.sql +%%DATADIR%%/sql/upgrade-0.95-to-1.0.sql %%DATADIR%%/sql/user_log.sql %%DATADIR%%/sql/users.sql %%WWWDIR%%/admin.html @@ -1218,6 +1696,7 @@ %%WWWDIR%%/admin_user.html %%WWWDIR%%/apache_login.html %%WWWDIR%%/autohandler +%%WWWDIR%%/bullet.gif %%WWWDIR%%/change_pw.html %%WWWDIR%%/corner-bl.png %%WWWDIR%%/corner-br.png @@ -1225,7 +1704,10 @@ %%WWWDIR%%/corner-tr.png %%WWWDIR%%/device.html %%WWWDIR%%/device_inv.html +%%WWWDIR%%/device_module.html +%%WWWDIR%%/device_module_search.html %%WWWDIR%%/device_search.html +%%WWWDIR%%/discoball2.gif %%WWWDIR%%/doc/ChangeLog.txt %%WWWDIR%%/doc/INSTALL.html %%WWWDIR%%/doc/README.html @@ -1234,6 +1716,7 @@ %%WWWDIR%%/doc/netdisco-api-backend.html %%WWWDIR%%/doc/netdisco-api-shared.html %%WWWDIR%%/duplex.html +%%WWWDIR%%/frontpanel.html %%WWWDIR%%/icon_down.gif %%WWWDIR%%/icon_info.gif %%WWWDIR%%/icon_lock.gif @@ -1246,33 +1729,42 @@ %%WWWDIR%%/log.html %%WWWDIR%%/login.html %%WWWDIR%%/logout.html +%%WWWDIR%%/minus.gif +%%WWWDIR%%/mktree.css +%%WWWDIR%%/mktree.js +%%WWWDIR%%/netdisco.css +%%WWWDIR%%/netdisco.ico %%WWWDIR%%/netdiscoball.gif %%WWWDIR%%/netmap.html %%WWWDIR%%/node.html +%%WWWDIR%%/plus.gif %%WWWDIR%%/port_info.html %%WWWDIR%%/port_report.html %%WWWDIR%%/portcontrol.html %%WWWDIR%%/powered_by_mason.jpg +%%WWWDIR%%/public_debugging.html +%%WWWDIR%%/reports.html +%%WWWDIR%%/search.html %%WWWDIR%%/sidebar.html %%WWWDIR%%/stats.html %%WWWDIR%%/traceroute.html %%WWWDIR%%/valid-html401.png %%WWWDIR%%/vcss.gif -@unexec d="%D/etc/netdisco"; f="netdisco.conf"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; -etc/netdisco/netdisco.conf.sample -@exec if [ ! -f %D/etc/netdisco/netdisco.conf ] ; then cp -p %D/etc/netdisco/netdisco.conf.sample %D/etc/netdisco/netdisco.conf; fi -@unexec d="%D/etc/netdisco"; f="netdisco-topology.txt"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; -etc/netdisco/netdisco-topology.txt.sample -@exec if [ ! -f %D/etc/netdisco/netdisco-topology.txt ] ; then cp -p %D/etc/netdisco/netdisco-topology.txt.sample %D/etc/netdisco/netdisco-topology.txt; fi -@unexec d="%D/etc/netdisco"; f="netdisco.crontab"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; -etc/netdisco/netdisco.crontab.sample -@exec if [ ! -f %D/etc/netdisco/netdisco.crontab ] ; then cp -p %D/etc/netdisco/netdisco.crontab.sample %D/etc/netdisco/netdisco.crontab; fi -@unexec d="%D/etc/netdisco"; f="netdisco_apache.conf"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; -etc/netdisco/netdisco_apache.conf.sample -@exec if [ ! -f %D/etc/netdisco/netdisco_apache.conf ] ; then cp -p %D/etc/netdisco/netdisco_apache.conf.sample %D/etc/netdisco/netdisco_apache.conf; fi -@unexec d="%D/etc/netdisco"; f="netdisco_apache_dir.conf"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; -etc/netdisco/netdisco_apache_dir.conf.sample -@exec if [ ! -f %D/etc/netdisco/netdisco_apache_dir.conf ] ; then cp -p %D/etc/netdisco/netdisco_apache_dir.conf.sample %D/etc/netdisco/netdisco_apache_dir.conf; fi +@unexec d="%D/%%ETCDIR%%"; f="netdisco.conf"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; +%%ETCDIR%%/netdisco.conf.sample +@exec if [ ! -f %%ETCDIR%%/netdisco.conf ] ; then cp -p %%ETCDIR%%/netdisco.conf.sample %%ETCDIR%%/netdisco.conf; fi +@unexec d="%D/%%ETCDIR%%"; f="netdisco-topology.txt"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; +%%ETCDIR%%/netdisco-topology.txt.sample +@exec if [ ! -f %%ETCDIR%%/netdisco-topology.txt ] ; then cp -p %%ETCDIR%%/netdisco-topology.txt.sample %%ETCDIR%%/netdisco-topology.txt; fi +@unexec d="%D/%%ETCDIR%%"; f="netdisco.crontab"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; +%%ETCDIR%%/netdisco.crontab.sample +@exec if [ ! -f %%ETCDIR%%/netdisco.crontab ] ; then cp -p %%ETCDIR%%/netdisco.crontab.sample %%ETCDIR%%/netdisco.crontab; fi +@unexec d="%D/%%ETCDIR%%"; f="netdisco_apache.conf"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; +%%ETCDIR%%/netdisco_apache.conf.sample +@exec if [ ! -f %%ETCDIR%%/netdisco_apache.conf ] ; then cp -p %%ETCDIR%%/netdisco_apache.conf.sample %%ETCDIR%%/netdisco_apache.conf; fi +@unexec d="%D/%%ETCDIR%%"; f="netdisco_apache_dir.conf"; if cmp -s ${d}/${f}.sample ${d}/${f}; then rm -f ${d}/${f}; fi; +%%ETCDIR%%/netdisco_apache_dir.conf.sample +@exec if [ ! -f %%ETCDIR%%/netdisco_apache_dir.conf ] ; then cp -p %%ETCDIR%%/netdisco_apache_dir.conf.sample %%ETCDIR%%/netdisco_apache_dir.conf; fi @dirrm %%WWWDIR%%/doc @exec mkdir -p %D/%%WWWDIR%%/mason @dirrm %%WWWDIR%%/mason @@ -1286,11 +1778,15 @@ @dirrm %%DATADIR%%/mibs/hp @dirrm %%DATADIR%%/mibs/foundry @dirrm %%DATADIR%%/mibs/extreme +@dirrm %%DATADIR%%/mibs/enterasys @dirrm %%DATADIR%%/mibs/dell +@dirrm %%DATADIR%%/mibs/cyclades @dirrm %%DATADIR%%/mibs/cisco +@dirrm %%DATADIR%%/mibs/cabletron @dirrm %%DATADIR%%/mibs/asante @dirrm %%DATADIR%%/mibs/aruba +@dirrm %%DATADIR%%/mibs/arista @dirrm %%DATADIR%%/mibs/allied @dirrm %%DATADIR%%/mibs @dirrm %%DATADIR%% -@dirrmtry etc/netdisco +@dirrmtry %%ETCDIR%% Index: files/netdisco.in =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/files/netdisco.in,v retrieving revision 1.2 diff -u -u -r1.2 netdisco.in --- files/netdisco.in 27 Mar 2010 00:14:24 -0000 1.2 +++ files/netdisco.in 30 Oct 2010 22:14:42 -0000 @@ -21,7 +21,7 @@ status_cmd=${name}_status command="%%PREFIX%%/bin/netdisco" -required_files="%%PREFIX%%/etc/netdisco.conf" +required_files="%%ETCDIR%%/netdisco.conf" netdisco_start() { $command -p start Index: files/patch-netdisco =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/files/patch-netdisco,v retrieving revision 1.2 diff -u -u -r1.2 patch-netdisco --- files/patch-netdisco 5 Jan 2008 14:35:25 -0000 1.2 +++ files/patch-netdisco 30 Oct 2010 22:14:42 -0000 @@ -1,15 +1,15 @@ ---- netdisco.orig Wed Mar 7 10:09:23 2007 -+++ netdisco Wed Mar 7 10:18:23 2007 +--- netdisco.orig 2010-07-04 01:51:44.000000000 +0100 ++++ netdisco 2010-07-04 01:55:59.000000000 +0100 @@ -113,7 +113,7 @@ &header if (grep(/^([aABdeEFgIikKmMOprRTu]|expire-nodes-subnet)$/,keys %args) and !$BatchMode); # Parse Config File - Check for -C, then in current dir, then in default dir. -foreach my $c ($args{C},"$FindBin::Bin/netdisco.conf",'/usr/local/netdisco/netdisco.conf') { -+foreach my $c ($args{C},"$FindBin::Bin/netdisco.conf",'%%PREFIX%%/etc/netdisco/netdisco.conf') { ++foreach my $c ($args{C},"$FindBin::Bin/netdisco.conf",'%%ETCDIR%%/netdisco.conf') { if (defined $c and -r $c){ $configfile = $c; print "Using Config File : $configfile\n" if $DEBUG; -@@ -629,7 +629,7 @@ +@@ -683,7 +683,7 @@ my ($file_name,$want_time,$no_header) = @_; @@ -18,12 +18,12 @@ my $extension = defined $CONFIG{logextension} ? $CONFIG{logextension} : 'log'; -@@ -3597,7 +3597,7 @@ +@@ -4471,7 +4471,7 @@ sub admin_daemon_pid { my $pid = shift; - my $pid_file = homepath('daemon_pid', 'netdisco_daemon.pid'); -+ my $pid_file = homepath('daemon_pid','%%RUNDIR%%/netdisco_daemon.pid'); ++ my $pid_file = homepath('daemon_pid', '%%RUNDIR%%/netdisco_daemon.pid'); if (defined $pid) { print "Writing pid:$pid to $pid_file\n" if $DEBUG; Index: files/patch-netdisco.conf =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/files/patch-netdisco.conf,v retrieving revision 1.2 diff -u -u -r1.2 patch-netdisco.conf --- files/patch-netdisco.conf 5 Jan 2008 14:35:25 -0000 1.2 +++ files/patch-netdisco.conf 30 Oct 2010 22:14:42 -0000 @@ -1,35 +1,36 @@ ---- netdisco.conf.orig Wed Mar 7 10:26:11 2007 -+++ netdisco.conf Wed Mar 7 10:50:53 2007 -@@ -13,8 +13,8 @@ +--- netdisco.conf.orig 2010-07-04 01:57:30.000000000 +0100 ++++ netdisco.conf 2010-07-04 02:03:16.000000000 +0100 +@@ -13,10 +13,10 @@ # ---- General Settings ---- domain = .mycompany.com -home = /usr/local/netdisco --topofile = netdisco-topology.txt +home = %%DATADIR%% -+topofile = %%PREFIX%%/etc/netdisco-topology.txt - timeout = 90 - macsuck_timeout = 90 + #customer = mycompany + #customericon = mycompany.gif,88,31 +-topofile = netdisco-topology.txt ++topofile = %%ETCDIR%%/netdisco-topology.txt + timeout = 180 + macsuck_timeout = 240 #macsuck_all_vlans = true -@@ -25,6 +25,8 @@ +@@ -28,6 +28,7 @@ #discover_only = #arpnip_no = 192.168.5.5,192.168.0.0/24,192.168.2.1,192.168.5.0/26 #arpnip_only = -+mibshome = %%DATADIR%%/mibs -+ ++mibshome = %%DATADIR%%/mibs - # -- Database Maintenance and Data Removal -- - expire_devices = 60 -@@ -33,7 +35,7 @@ + # interfaces with names matching these items will skipped in discovery + ignore_interfaces = EOBC,unrouted VLAN,StackPort,Control Plane Interface,SPAN (S|R)P Interface,StackSub +@@ -61,7 +62,7 @@ # ---- Admin Panel Daemon Settings ---- daemon_bg = true -daemon_pid = netdisco_daemon.pid -+daemon_pid = %%RUNDIR%%/netdisco.pid ++daemon_pid = %%RUNDIR%%/netdisco_daemon.pid daemon_poll = 2 # ---- Port Control Settings --- -@@ -49,7 +51,7 @@ +@@ -76,7 +77,7 @@ # Data Archiving and Logging compresslogs = true compress = /usr/bin/gzip -f @@ -38,45 +39,61 @@ logextension = txt #nmis_dump = netdisco_nmis -@@ -83,11 +85,12 @@ +@@ -128,23 +129,23 @@ snmptimeout = 1000000 snmpretries = 3 - snmpver = 2 --mibdirs = $home/mibs/allied, $home/mibs/asante, $home/mibs/cisco, \ -- $home/mibs/foundry, $home/mibs/hp, $home/mibs/nortel, \ -- $home/mibs/extreme, \ -+mibdirs = $mibshome/mibs/allied, $mibshome/mibs/asante, $mibshome/mibs/cisco, \ -+ $mibshome/mibs/foundry, $mibshome/mibs/hp, $mibshome/mibs/nortel, \ -+ $mibshome/mibs/extreme, \ - # Do not remove rfc or net-snmp. \ -- $home/mibs/rfc, $home/mibs/net-snmp -+ $mibshome/mibs/rfc, $mibshome/mibs/net-snmp -+ + mibdirs = \ +- $home/mibs/allied, \ +- $home/mibs/arista, \ +- $home/mibs/aruba, \ +- $home/mibs/asante, \ +- $home/mibs/cabletron, \ +- $home/mibs/cisco, \ +- $home/mibs/cyclades, \ +- $home/mibs/dell, \ +- $home/mibs/enterasys, \ +- $home/mibs/extreme, \ +- $home/mibs/foundry, \ +- $home/mibs/hp, \ +- $home/mibs/juniper, \ +- $home/mibs/netscreen, \ +- $home/mibs/nortel, \ ++ $mibshome/mibs/allied, \ ++ $mibshome/mibs/arista, \ ++ $mibshome/mibs/aruba, \ ++ $mibshome/mibs/asante, \ ++ $mibshome/mibs/cabletron, \ ++ $mibshome/mibs/cisco, \ ++ $mibshome/mibs/cyclades, \ ++ $mibshome/mibs/dell, \ ++ $mibshome/mibs/enterasys, \ ++ $mibshome/mibs/extreme, \ ++ $mibshome/mibs/foundry, \ ++ $mibshome/mibs/hp, \ ++ $mibshome/mibs/juniper, \ ++ $mibshome/mibs/netscreen, \ ++ $mibshome/mibs/nortel, \ + # Do not remove rfc or net-snmp. \ +- $home/mibs/rfc, $home/mibs/net-snmp ++ $mibshome/mibs/rfc, $home/mibs/net-snmp #bulkwalk_no = vendor:foundry,model:blah,127.0.0.1/32,myswitch #bulkwalk_off = true -@@ -96,7 +99,7 @@ +@@ -167,7 +168,7 @@ # ---- Graph Settings ---- edge_color = wheat -graph = html/netmap.gif +graph = netmap.gif - # If you'd rather use PNG, comment out the above and - # uncomment this. #graph_png = html/netmap.png -@@ -106,13 +109,13 @@ - #graph_dir = net_dir.gif - graph_epsilon = 6 - graph_layout = twopi # try neato or fdp too --graph_map = html/netmap.map -+graph_map = netmap.map - graph_overlap = scale - graph_nodesep = 2 + graph_bg = black + graph_clusters = false # try fdp layout +@@ -182,7 +183,7 @@ graph_ranksep = .3 - #graph_raw = graph_raw.dot + #graph_raw = graph_raw.dot graph_splines = false --#graph_svg = html/netmap.svg -+graph_svg = netmap.svg +-graph_svg = html/netmap.svg ++graph_svg = netmap.svg graph_timeout = 90 graph_x = 30 graph_y = 30 Index: files/patch-netdisco.crontab =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/files/patch-netdisco.crontab,v retrieving revision 1.1 diff -u -u -r1.1 patch-netdisco.crontab --- files/patch-netdisco.crontab 13 Jul 2006 00:11:12 -0000 1.1 +++ files/patch-netdisco.crontab 30 Oct 2010 22:14:42 -0000 @@ -1,7 +1,7 @@ ---- netdisco.crontab.orig Sun Dec 5 02:14:26 2004 -+++ netdisco.crontab Sat Apr 8 23:11:20 2006 +--- netdisco.crontab.orig 2010-07-04 02:08:01.000000000 +0100 ++++ netdisco.crontab 2010-07-04 02:07:28.000000000 +0100 @@ -4,34 +4,34 @@ - # $Id: netdisco.crontab,v 1.7 2004/12/05 02:14:26 maxbaker Exp $ + # $Id: netdisco.crontab,v 1.8 2009/06/10 18:39:03 maxbaker Exp $ #MAILTO=max -PATH=/bin:/usr/bin:/usr/local/bin @@ -20,8 +20,8 @@ +0 1 * * * %%PREFIX%%/bin/netdisco -b -B # Restart admin panel daemon nightly --0 2 * * * /usr/local/netdisco/netdisco -p restart -+0 2 * * * %%PREFIX%%/bin/netdisco -p restart +-0 2 * * * /usr/local/netdisco/netdisco -b -p restart ++0 2 * * * %%PREFIX%%/bin/netdisco -b -p restart # Refresh Graph every day -0 3 * * * /usr/local/netdisco/netdisco -b -g 2>&1 Index: files/patch-netdisco_apache.conf =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/files/patch-netdisco_apache.conf,v retrieving revision 1.3 diff -u -u -r1.3 patch-netdisco_apache.conf --- files/patch-netdisco_apache.conf 5 Jan 2008 14:35:25 -0000 1.3 +++ files/patch-netdisco_apache.conf 30 Oct 2010 22:14:42 -0000 @@ -1,23 +1,20 @@ ---- netdisco_apache.conf.orig Sun Mar 7 19:13:49 2004 -+++ netdisco_apache.conf Sun Apr 9 17:44:59 2006 -@@ -2,25 +2,35 @@ - # This file applied to the global server space. - # $Id: netdisco_apache.conf,v 1.12 2004/03/07 19:13:49 maxbaker Exp $ +--- netdisco_apache.conf.orig 2009-06-02 23:27:02.000000000 +0000 ++++ netdisco_apache.conf 2010-10-29 20:17:38.160431550 +0000 +@@ -5,26 +5,30 @@ + # + # Apache 1.x Users -- Comment out these four lines + # +-LoadModule perl_module libexec/apache2/mod_perl.so +-LoadModule apreq_module libexec/apache2/mod_apreq2.so ++LoadModule perl_module %%LOCALBASE%%/%%APACHEMODDIR%%/mod_perl.so ++LoadModule apreq_module %%LOCALBASE%%/%%APACHEMODDIR%%/mod_apreq2.so + PerlModule Apache2::compat + PerlModule Apache2::Request -+#Apache 2.x --- -+%%APACHE2%%LoadModule apreq_module /usr/local/libexec/apache2/mod_apreq2.so -+#-------------- -+ # Pool Database Connections PerlModule Apache::DBI - -+#Apache 2.x --- -+%%APACHE2%%PerlModule CGI -+%%APACHE2%%PerlModule Apache2::Request -+%%APACHE2%%PerlModule Apache2::compat -+#-------------- -+ + order allow,deny allow from all @@ -35,11 +32,18 @@ - use lib '/usr/local/netdisco'; use netdisco qw/:all/; - &netdisco::config('/usr/local/netdisco/netdisco.conf'); -- -- # Uncomment next two lines to setup switch reverse proxy. -- #use lib '/usr/local/netdisco/switch'; -- #use Apache::ProxyRewriteMax; -+ &netdisco::config('%%PREFIX%%/etc/netdisco/netdisco.conf'); ++ &netdisco::config('%%ETCDIR%%/netdisco.conf'); } # Setup Mason and Session Handler +@@ -35,8 +39,8 @@ + + my $ah = new HTML::Mason::ApacheHandler( + args_method => 'mod_perl', +- comp_root => '/usr/local/netdisco/html', +- data_dir => '/usr/local/netdisco/mason', ++ comp_root => '%%WWWDIR%%', ++ data_dir => '%%WWWDIR%%/mason', + request_class => 'MasonX::Request::WithApacheSession', + session_class => 'Apache::Session::Postgres', + session_commit => 1, Index: files/patch-netdisco_apache_dir.conf =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/files/patch-netdisco_apache_dir.conf,v retrieving revision 1.2 diff -u -u -r1.2 patch-netdisco_apache_dir.conf --- files/patch-netdisco_apache_dir.conf 24 Mar 2007 14:04:34 -0000 1.2 +++ files/patch-netdisco_apache_dir.conf 30 Oct 2010 22:14:42 -0000 @@ -1,5 +1,5 @@ ---- netdisco_apache_dir.conf.orig Wed May 7 02:07:35 2003 -+++ netdisco_apache_dir.conf Sat Apr 8 23:44:17 2006 +--- netdisco_apache_dir.conf.orig 2010-07-04 15:19:09.000000000 +0100 ++++ netdisco_apache_dir.conf 2010-07-04 15:30:02.000000000 +0100 @@ -1,8 +1,8 @@ # Apache Configuration for Netdisco # This is applied to each virtual server Index: files/patch-sql_pg =================================================================== RCS file: files/patch-sql_pg diff -N files/patch-sql_pg --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-sql_pg 30 Oct 2010 22:14:42 -0000 @@ -0,0 +1,44 @@ +--- sql/pg.orig 2009-01-31 02:06:37.000000000 +0000 ++++ sql/pg 2010-07-20 22:19:46.000000000 +0000 +@@ -27,7 +27,7 @@ + 'h|help', + ); + +- $DefaultDir = "/usr/local/netdisco"; ++ $DefaultDir = "%%SITE_PERL%%"; + # add more possible locations here + foreach $poss ($FindBin::Bin . "/..", "..") { + if (-f $poss . "/netdisco.pm") { +@@ -35,7 +35,7 @@ + } + } + $Dir = $ARGS{d} || $DefaultDir; +- $ConfigFile = $ARGS{c} || "$Dir/netdisco.conf"; ++ $ConfigFile = $ARGS{c} || "%%ETCDIR%%/netdisco.conf"; + $Psql = $ARGS{p} || 'psql'; + eval "use lib '$Dir';"; + die "use lib '$Dir': $@." if ($@); +@@ -172,12 +172,12 @@ + open (ALL,">pg_all.input") or die "Can't create pg_all.input for output. $!\n"; + + # Cat all tables into one big file +- opendir(SQLDIR, "$Dir/sql") or die "Can't open $Dir/sql: $!"; ++ opendir(SQLDIR, "%%DATADIR%%/sql") or die "Can't open %%DATADIR%%/sql: $!"; + while( defined (my $f = readdir SQLDIR) ) { + next if $f =~ /^\.\.?$/ or $f =~ /^upgrade-.*\.sql$/; + next unless $f =~ /\.sql$/; + print "[ $f ]\n"; +- open (F, "<$Dir/sql/$f") or die "Can't read $f. $!\n"; ++ open (F, "<%%DATADIR%%/sql/$f") or die "Can't read $f. $!\n"; + while () { + print ALL; + } +@@ -304,7 +304,7 @@ + + OPTIONS + -b -- Batch mode, no override protection +- -d /usr/local/netdisco -- Path to netdisco.pm ++ -d /path/to/netdisco.pm -- Path to netdisco.pm + -c /path/to/netdisco.conf -- Netdisco Config file to use + -u pgsql -- Database UNIX user + -p /path/to/psql -- psql cli executable Index: files/pkg-install.in =================================================================== RCS file: files/pkg-install.in diff -N files/pkg-install.in --- files/pkg-install.in 13 Jul 2006 00:11:12 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,38 +0,0 @@ -#!/bin/sh - -if [ x"$2" != x"POST-INSTALL" ]; then - exit 0 -fi - -USER=netdisco -GROUP=${USER} -UID=840 -GID=${UID} -USERS_HOME="/nonexistent" - -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/bin/sh" -d ${USERS_HOME} -c "netdisco user"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi - -chown -R ${USER}:${GROUP} ${PKG_PREFIX}/etc/netdisco -chmod 660 ${PKG_PREFIX}/etc/netdisco/* - -chown ${USER}:${GROUP} %%DBDIR%%/netdisco - -exit 0 Index: files/pkg-message.in =================================================================== RCS file: /home/ncvs/ports/net-mgmt/netdisco/files/pkg-message.in,v retrieving revision 1.2 diff -u -u -r1.2 pkg-message.in --- files/pkg-message.in 5 Jan 2008 14:35:25 -0000 1.2 +++ files/pkg-message.in 30 Oct 2010 22:14:42 -0000 @@ -8,22 +8,20 @@ 2) Run the following to create and initialise the netdisco database: - sh %%DATADIR%%/sql/pg_init - sh %%DATADIR%%/sql/pg_run - sh %%DATADIR%%/sql/pg_all + perl %%DATADIR%%/sql/pg --init - 3) Examine all the configuration files in %%PREFIX%%/etc/netdisco, + 3) Examine all the configuration files in %%ETCDIR%%, and modify them to suit your needs. 4) Add an initial admin user by running 'netdisco -u' 5) Import the OUI database: netdisco -o - 6) Edit %%PREFIX%%/etc/netdisco/netdisco.crontab and change + 6) Edit %%ETCDIR%%/netdisco.crontab and change center_network_device to one of your core routers/switches. Then install the crontab: - crontab -u netdisco %%PREFIX%%/etc/netdisco/netdisco.crontab + crontab -u netdisco %%ETCDIR%%/netdisco.crontab 7) Add netdisco_enable="YES" to /etc/rc.conf, and then run %%PREFIX%%/etc/rc.d/netdisco to start the admin daemon. --- netdisco-1.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 30 23:05:24 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D372B106566B; Sat, 30 Oct 2010 23:05:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A89478FC0C; Sat, 30 Oct 2010 23:05:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9UN5Ot2096509; Sat, 30 Oct 2010 23:05:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9UN5Of1096505; Sat, 30 Oct 2010 23:05:24 GMT (envelope-from linimon) Date: Sat, 30 Oct 2010 23:05:24 GMT Message-Id: <201010302305.o9UN5Of1096505@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dougb@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/151824: ports-mgmt/portmaster: portmaster -e globbing appears to have a problem with wildcards X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 23:05:24 -0000 Old Synopsis: portmaster -e globbing appears to have a problem with wildcards New Synopsis: ports-mgmt/portmaster: portmaster -e globbing appears to have a problem with wildcards Responsible-Changed-From-To: freebsd-ports-bugs->dougb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Oct 30 23:04:48 UTC 2010 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=151824