From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 03:00:31 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04FF71065680 for ; Sun, 25 Dec 2011 03:00:31 +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 D7AF08FC12 for ; Sun, 25 Dec 2011 03:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP30UAU066773 for ; Sun, 25 Dec 2011 03:00:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP30ULu066767; Sun, 25 Dec 2011 03:00:30 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 03:00:30 GMT Resent-Message-Id: <201112250300.pBP30ULu066767@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, Wesley Shields Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4305F106566C for ; Sun, 25 Dec 2011 02:54:27 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.49.45]) by mx1.freebsd.org (Postfix) with ESMTP id EF7C48FC16 for ; Sun, 25 Dec 2011 02:54:26 +0000 (UTC) Received: by syn.atarininja.org (Postfix, from userid 1001) id 3198A5C2E; Sat, 24 Dec 2011 21:39:24 -0500 (EST) Message-Id: <20111225023924.3198A5C2E@syn.atarininja.org> Date: Sat, 24 Dec 2011 21:39:24 -0500 (EST) From: Wesley Shields To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: eksffa@freebsdbrasil.com.br Subject: ports/163603: [PATCH]: Update security/suricata X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Wesley Shields List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Dec 2011 03:00:31 -0000 >Number: 163603 >Category: ports >Synopsis: [PATCH]: Update security/suricata >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 Dec 25 03:00:29 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Wesley Shields >Release: FreeBSD 8.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD syn.csh.rit.edu 8.2-RELEASE-p3 FreeBSD 8.2-RELEASE-p3 #4: Fri Sep 30 09:39:27 EDT 2011 root@syn.csh.rit.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update security/suricata to the latest release. This patch switches to using devel/libhtp (I'm committing it shortly), which should make important updates easier in the future. >How-To-Repeat: N/A >Fix: Index: Makefile =================================================================== RCS file: /ncvs/ports/security/suricata/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- Makefile 19 Jul 2011 21:14:30 -0000 1.8 +++ Makefile 20 Dec 2011 15:38:03 -0000 @@ -6,10 +6,9 @@ # PORTNAME= suricata -PORTVERSION= 1.0.3 +PORTVERSION= 1.1.1 CATEGORIES= security -MASTER_SITES= http://openinfosecfoundation.org/download/ \ - http://www6.freebsdbrasil.com.br/~eksffa/l/dev/suricata/ +MASTER_SITES= http://www.openinfosecfoundation.org/download/ MAINTAINER= eksffa@freebsdbrasil.com.br COMMENT= Open Source next generation IDS/IPS engine by OISF @@ -19,7 +18,8 @@ LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre \ yaml:${PORTSDIR}/textproc/libyaml \ - pcap.1:${PORTSDIR}/net/libpcap + pcap.1:${PORTSDIR}/net/libpcap \ + htp-0.2.1:${PORTSDIR}/devel/libhtp BUILD_DEPENDS+= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet \ pkg-config:${PORTSDIR}/devel/pkg-config @@ -48,9 +48,6 @@ .include -.if ${OSVERSION} < 700000 -BROKEN= does not configure on 6.X -.endif .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" BROKEN= Does not compile on ia64, powerpc, or sparc64 .endif @@ -69,6 +66,9 @@ CONFIGURE_ARGS+= --enable-dag .endif +post-patch: + @${REINPLACE_CMD} -Ee 's|^(install-data-am: )install-pkgconfigDATA|\1|' ${WRKSRC}/libhtp/Makefile.in + pre-install: @${REINPLACE_CMD} -e 's|/etc/suricata|${PREFIX}/etc/suricata|g' ${WRKSRC}/suricata.yaml @@ -82,7 +82,6 @@ ${CP} -p ${CONFIG_DIR}/${f}-sample ${CONFIG_DIR}/${f} ; \ fi .endfor - @${CAT} ${PKGMESSAGE} .include Index: distinfo =================================================================== RCS file: /ncvs/ports/security/suricata/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 22 Jun 2011 00:29:16 -0000 1.2 +++ distinfo 20 Dec 2011 01:36:40 -0000 @@ -1,2 +1,2 @@ -SHA256 (suricata-1.0.3.tar.gz) = df0245181057603a8dc37c937816adecbd8468cc2531d7431525df8205995d92 -SIZE (suricata-1.0.3.tar.gz) = 1639825 +SHA256 (suricata-1.1.1.tar.gz) = 6ff337ca71ca015d50e73a2bb90e02d894b617935482802102648d51b3876fac +SIZE (suricata-1.1.1.tar.gz) = 2018055 Index: pkg-plist =================================================================== RCS file: /ncvs/ports/security/suricata/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- pkg-plist 1 Sep 2010 15:31:51 -0000 1.1 +++ pkg-plist 20 Dec 2011 14:17:04 -0000 @@ -1,9 +1,3 @@ -lib/libhtp.a -lib/libhtp-0.2.so -lib/libhtp-0.2.so.1 -libdata/pkgconfig/htp.pc -lib/libhtp.la -lib/libhtp.so bin/suricata etc/suricata/suricata.yaml etc/suricata/suricata.yaml-sample @@ -11,5 +5,3 @@ etc/suricata/classification.config @unexec /bin/rmdir %D/etc/suricata/rules 2>/dev/null || true @unexec /bin/rmdir %D/etc/suricata 2>/dev/null || true -@unexec echo "completely uninstalling %D/include/htp" -@unexec /bin/rm -rf %D/include/htp 2>/dev/null || true Index: files/patch-Makefile.in =================================================================== RCS file: files/patch-Makefile.in diff -N files/patch-Makefile.in --- files/patch-Makefile.in 1 Sep 2010 15:31:52 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- libhtp/Makefile.in.dist 2010-08-30 22:01:03.000000000 -0300 -+++ libhtp/Makefile.in 2010-08-30 22:02:08.000000000 -0300 -@@ -250,7 +250,7 @@ - ACLOCAL_AMFLAGS = -I m4 - SUBDIRS = $(GENERIC_LIBRARY_NAME) test - EXTRA_DIST = ChangeLog COPYING LICENSE LIBHTP_LICENSING_EXCEPTION docs/doxygen.conf docs/QUICK_START --pkgconfigdir = $(libdir)/pkgconfig -+pkgconfigdir = $(libdir)/../libdata/pkgconfig - pkgconfig_DATA = htp.pc - all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 03:00:42 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4EE11065672; Sun, 25 Dec 2011 03:00:42 +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 9B04A8FC08; Sun, 25 Dec 2011 03:00:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP30gfW067293; Sun, 25 Dec 2011 03:00:42 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP30goY067286; Sun, 25 Dec 2011 03:00:42 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 03:00:42 GMT Message-Id: <201112250300.pBP30goY067286@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wxs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163603: [PATCH]: Update security/suricata X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 03:00:42 -0000 Synopsis: [PATCH]: Update security/suricata Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 03:00:41 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163603 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:20:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D77D106564A; Sun, 25 Dec 2011 07:20:18 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 145928FC0A; Sun, 25 Dec 2011 07:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7KHac015306; Sun, 25 Dec 2011 07:20:17 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7KHwO015302; Sun, 25 Dec 2011 07:20:17 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:20:17 GMT Message-Id: <201112250720.pBP7KHwO015302@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163601: [maintainer] [patch] science/hdf-java X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 07:20:18 -0000 Synopsis: [maintainer] [patch] science/hdf-java Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 07:20:17 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163601 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:20:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C45351065698; Sun, 25 Dec 2011 07:20:20 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9ACBA8FC0C; Sun, 25 Dec 2011 07:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7KKXX015374; Sun, 25 Dec 2011 07:20:20 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7KK48015370; Sun, 25 Dec 2011 07:20:20 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:20:20 GMT Message-Id: <201112250720.pBP7KK48015370@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163600: [maintainer] [patch] graphics/xmlgraphics-commons Update to svn r1222519 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 07:20:20 -0000 Synopsis: [maintainer] [patch] graphics/xmlgraphics-commons Update to svn r1222519 Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 07:20:20 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163600 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:20:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DC4E1065680; Sun, 25 Dec 2011 07:20:23 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 64D508FC13; Sun, 25 Dec 2011 07:20:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7KNeQ015457; Sun, 25 Dec 2011 07:20:23 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7KNx8015449; Sun, 25 Dec 2011 07:20:23 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:20:23 GMT Message-Id: <201112250720.pBP7KNx8015449@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163598: [maintainer] [patch] editors/texmacs Update to 1.0.7.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 07:20:23 -0000 Synopsis: [maintainer] [patch] editors/texmacs Update to 1.0.7.14 Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 07:20:22 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163598 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:20:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74D9A10656DD; Sun, 25 Dec 2011 07:20:26 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4BCF88FC15; Sun, 25 Dec 2011 07:20:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7KQZP015560; Sun, 25 Dec 2011 07:20:26 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7KQqe015556; Sun, 25 Dec 2011 07:20:26 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:20:26 GMT Message-Id: <201112250720.pBP7KQqe015556@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163597: [maintainer] [patch] shells/scponly Update WWW X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 07:20:26 -0000 Synopsis: [maintainer] [patch] shells/scponly Update WWW Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 07:20:25 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163597 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:20:29 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A27D71065688; Sun, 25 Dec 2011 07:20:29 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7A9488FC17; Sun, 25 Dec 2011 07:20:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7KTPK015867; Sun, 25 Dec 2011 07:20:29 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7KTsO015857; Sun, 25 Dec 2011 07:20:29 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:20:29 GMT Message-Id: <201112250720.pBP7KTsO015857@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163596: [maintainer] [patch] math/jlatexmath Update to 0.9.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 07:20:29 -0000 Synopsis: [maintainer] [patch] math/jlatexmath Update to 0.9.7 Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 07:20:29 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163596 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:24:50 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69655106564A; Sun, 25 Dec 2011 07:24:50 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 404B18FC08; Sun, 25 Dec 2011 07:24:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7Oo0v023744; Sun, 25 Dec 2011 07:24:50 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7Oo1r023740; Sun, 25 Dec 2011 07:24:50 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:24:50 GMT Message-Id: <201112250724.pBP7Oo1r023740@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163593: [maintainer] [patch] devel/dklibs Deprecate X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 07:24:50 -0000 Synopsis: [maintainer] [patch] devel/dklibs Deprecate Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 07:24:49 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163593 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:37:59 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE47E1065670; Sun, 25 Dec 2011 07:37:59 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C50838FC15; Sun, 25 Dec 2011 07:37:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7bxgq055621; Sun, 25 Dec 2011 07:37:59 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7bxo2055615; Sun, 25 Dec 2011 07:37:59 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:37:59 GMT Message-Id: <201112250737.pBP7bxo2055615@freefall.freebsd.org> To: samm@os2.kiev.ua, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158983: [NEW PORT] devel/pecl-dtrace: PHP DTrace provider X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 07:38:00 -0000 Synopsis: [NEW PORT] devel/pecl-dtrace: PHP DTrace provider State-Changed-From-To: suspended->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 07:37:58 UTC 2011 State-Changed-Why: kern/159046 is done http://www.freebsd.org/cgi/query-pr.cgi?pr=158983 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:40:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24A77106564A; Sun, 25 Dec 2011 07:40:21 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EF35C8FC12; Sun, 25 Dec 2011 07:40:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7eKVX056572; Sun, 25 Dec 2011 07:40:20 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7eJAP056483; Sun, 25 Dec 2011 07:40:19 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:40:19 GMT Message-Id: <201112250740.pBP7eJAP056483@freefall.freebsd.org> To: dindin@freebsd.org.ua, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159108: sysutils/fusefs-smbnetfs update to 0.5.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: Sun, 25 Dec 2011 07:40:21 -0000 Synopsis: sysutils/fusefs-smbnetfs update to 0.5.3 Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 07:40:19 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=159108 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 07:48:38 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83678106566B; Sun, 25 Dec 2011 07:48:38 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 598DB8FC0A; Sun, 25 Dec 2011 07:48:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBP7mcfO065727; Sun, 25 Dec 2011 07:48:38 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBP7mbiR065722; Sun, 25 Dec 2011 07:48:37 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 07:48:37 GMT Message-Id: <201112250748.pBP7mbiR065722@freefall.freebsd.org> To: koziol@hdfgroup.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163595: [patch] science/hdf5-18 Update to 1.8.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, 25 Dec 2011 07:48:38 -0000 Synopsis: [patch] science/hdf5-18 Update to 1.8.8 Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 07:48:37 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163595 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 12:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F9031065678 for ; Sun, 25 Dec 2011 12: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 277278FC0C for ; Sun, 25 Dec 2011 12:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPCUAYk028941 for ; Sun, 25 Dec 2011 12:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPCUAO8028938; Sun, 25 Dec 2011 12:30:10 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 12:30:10 GMT Resent-Message-Id: <201112251230.pBPCUAO8028938@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, Jimmy Olgeni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 105EE106564A for ; Sun, 25 Dec 2011 12:26:24 +0000 (UTC) (envelope-from g.olgeni@colby.it) Received: from mail.colby.tv (93-62-141-58.ip22.fastwebnet.it [93.62.141.58]) by mx1.freebsd.org (Postfix) with ESMTP id 6C3E88FC12 for ; Sun, 25 Dec 2011 12:26:22 +0000 (UTC) Received: from server.colby.local (localhost [127.0.0.1]) by server.colby.local (8.14.5/8.14.5) with ESMTP id pBPCQKed094121; Sun, 25 Dec 2011 13:26:20 +0100 (CET) (envelope-from g.olgeni@colby.it) Received: from exchange.colby.local ([192.168.1.11] helo=exchange.colby.local) with IPv4:25 by server.colby.local; 25 Dec 2011 13:26:20 +0100 Received: from backoffice.colby.local ([192.168.1.56]) by exchange.colby.local over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sun, 25 Dec 2011 13:26:20 +0100 Received: from backoffice.colby.local (localhost [127.0.0.1]) by backoffice.colby.local (8.14.5/8.14.5) with ESMTP id pBPCQKpN040418; Sun, 25 Dec 2011 13:26:20 +0100 (CET) (envelope-from olgeni@backoffice.colby.local) Received: (from olgeni@localhost) by backoffice.colby.local (8.14.5/8.14.5/Submit) id pBPCQKvH040417; Sun, 25 Dec 2011 13:26:20 +0100 (CET) (envelope-from olgeni) Message-Id: <201112251226.pBPCQKvH040417@backoffice.colby.local> Date: Sun, 25 Dec 2011 13:26:20 +0100 (CET) From: Jimmy Olgeni To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jdunn@aquezada.com Subject: ports/163605: [PATCH] net-im/ttytter: update to 1.2.05 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 12:30:11 -0000 >Number: 163605 >Category: ports >Synopsis: [PATCH] net-im/ttytter: update to 1.2.05 >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 Dec 25 12:30:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 9.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD backoffice 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #2: Mon Nov 28 18:00:16 CET 2011 >Description: - Update to 1.2.05 Port maintainer (jdunn@aquezada.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- ttytter-1.2.05.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net-im/ttytter/Makefile,v retrieving revision 1.20 diff -u -u -r1.20 Makefile --- Makefile 30 Nov 2011 13:56:21 -0000 1.20 +++ Makefile 25 Dec 2011 12:25:54 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/net-im/ttytter/Makefile,v 1.20 2011/11/30 13:56:21 olgeni Exp $ PORTNAME= ttytter -PORTVERSION= 1.2.04 +PORTVERSION= 1.2.05 CATEGORIES= net-im perl5 MASTER_SITES= http://www.floodgap.com/software/ttytter/dist1/ DISTNAME= ${PORTVERSION} Index: distinfo =================================================================== RCS file: /home/pcvs/ports/net-im/ttytter/distinfo,v retrieving revision 1.20 diff -u -u -r1.20 distinfo --- distinfo 30 Nov 2011 13:56:21 -0000 1.20 +++ distinfo 25 Dec 2011 12:25:54 -0000 @@ -1,2 +1,2 @@ -SHA256 (1.2.04.txt) = 2a79f3ccb620341359cfd4458d633afcb67afe67886c675a8ceb853253c69b66 -SIZE (1.2.04.txt) = 198984 +SHA256 (1.2.05.txt) = 580144a32f88901d80a708b1664638d163c4595ff66eaeb0fd895d08988be632 +SIZE (1.2.05.txt) = 199243 --- ttytter-1.2.05.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 12:30:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 934AF1065672; Sun, 25 Dec 2011 12:30: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 658B48FC08; Sun, 25 Dec 2011 12:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPCUNh8029914; Sun, 25 Dec 2011 12:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPCUN6h029904; Sun, 25 Dec 2011 12:30:23 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 12:30:23 GMT Message-Id: <201112251230.pBPCUN6h029904@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163605: [PATCH] net-im/ttytter: update to 1.2.05 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 12:30:23 -0000 Synopsis: [PATCH] net-im/ttytter: update to 1.2.05 Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 12:30:22 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163605 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 13:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DD68106564A for ; Sun, 25 Dec 2011 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 48C5A8FC14 for ; Sun, 25 Dec 2011 13:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPDACBL065298 for ; Sun, 25 Dec 2011 13:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPDACq5065297; Sun, 25 Dec 2011 13:10:12 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 13:10:12 GMT Resent-Message-Id: <201112251310.pBPDACq5065297@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 448A21065678 for ; Sun, 25 Dec 2011 13:02:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2F7AC8FC15 for ; Sun, 25 Dec 2011 13:02:10 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBPD29OS021172 for ; Sun, 25 Dec 2011 13:02:09 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBPD295w021171; Sun, 25 Dec 2011 13:02:09 GMT (envelope-from nobody) Message-Id: <201112251302.pBPD295w021171@red.freebsd.org> Date: Sun, 25 Dec 2011 13:02:09 GMT From: Panagiotis Christias To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163606: [patch] lang/v8: make sure that CFLAGS always contains -fno-strict-aliasing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 13:10:12 -0000 >Number: 163606 >Category: ports >Synopsis: [patch] lang/v8: make sure that CFLAGS always contains -fno-strict-aliasing >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 Dec 25 13:10:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Panagiotis Christias >Release: 7.4-amd64 >Organization: NTUA NOC >Environment: FreeBSD builder7-amd64.noc.ntua.gr 7.4-RELEASE FreeBSD 7.4-RELEASE #0: Tue Apr 5 14:05:40 EEST 2011 root@thetis.noc.ntua.gr:/usr/obj/usr/src/sys/NTUA amd64 >Description: lang/v8 needs -fno-strict-aliasing to compile properly, so if CFLAGS is defined outside the port's Makefile (e.g. in /etc/make.conf) and does not contain -fno-strict-aliasing then default value of CFLAGS gets overwritten and building fails. Merry Christmas, Panagiotis >How-To-Repeat: Have something like "CFLAGS=-O -pipe" and try to build lang/v8: # echo "CFLAGS=-O -pipe" >> /etc/make.conf # cd /usr/ports/lang/v8 # make >Fix: See attached patch (could be done in a better way i suppose). Patch attached with submission follows: --- /usr/ports/lang/v8//Makefile.orig 2011-11-03 17:13:14.000000000 +0200 +++ /usr/ports/lang/v8//Makefile 2011-12-25 13:35:46.000000000 +0200 @@ -48,6 +48,14 @@ .elif ${ARCH} == amd64 V8ARCH=x64 .endif + +.if defined(CFLAGS) +CFLAGS:= ${CFLAGS:C/-fstrict-aliasing//} +.if empty(CFLAGS:M-fno-strict-aliasing) +CFLAGS+= -fno-strict-aliasing +.endif +.endif + PLIST_SUB+= ARCH=${V8ARCH} SCONS_ARGS+= arch=${V8ARCH} SCONS_BUILDENV+= CC="${CC} ${CFLAGS}" CXX="${CXX} ${CXXFLAGS}" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 13:10:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D377106566C; Sun, 25 Dec 2011 13:10: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 3ED478FC08; Sun, 25 Dec 2011 13:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPDAME6065555; Sun, 25 Dec 2011 13:10:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPDAM0O065546; Sun, 25 Dec 2011 13:10:22 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 13:10:22 GMT Message-Id: <201112251310.pBPDAM0O065546@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163606: [patch] lang/v8: make sure that CFLAGS always contains -fno-strict-aliasing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 13:10:22 -0000 Synopsis: [patch] lang/v8: make sure that CFLAGS always contains -fno-strict-aliasing Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 13:10:21 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163606 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 13:50:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 358381065672 for ; Sun, 25 Dec 2011 13: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 012158FC0C for ; Sun, 25 Dec 2011 13:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPDo9G3002841 for ; Sun, 25 Dec 2011 13:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPDo9Gi002840; Sun, 25 Dec 2011 13:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 13:50:09 GMT Resent-Message-Id: <201112251350.pBPDo9Gi002840@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, Jimmy Olgeni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A2701065676; Sun, 25 Dec 2011 13:49:03 +0000 (UTC) (envelope-from g.olgeni@colby.it) Received: from mail.colby.tv (93-62-141-58.ip22.fastwebnet.it [93.62.141.58]) by mx1.freebsd.org (Postfix) with ESMTP id 208D78FC17; Sun, 25 Dec 2011 13:49:01 +0000 (UTC) Received: from server.colby.local (localhost [127.0.0.1]) by server.colby.local (8.14.5/8.14.5) with ESMTP id pBPDn0Oq095889; Sun, 25 Dec 2011 14:49:00 +0100 (CET) (envelope-from g.olgeni@colby.it) Received: from exchange.colby.local ([192.168.1.11] helo=exchange.colby.local) with IPv4:25 by server.colby.local; 25 Dec 2011 14:49:00 +0100 Received: from backoffice.colby.local ([192.168.1.56]) by exchange.colby.local over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sun, 25 Dec 2011 14:49:00 +0100 Received: from backoffice.colby.local (localhost [127.0.0.1]) by backoffice.colby.local (8.14.5/8.14.5) with ESMTP id pBPDmxJt040656; Sun, 25 Dec 2011 14:48:59 +0100 (CET) (envelope-from olgeni@backoffice.colby.local) Received: (from olgeni@localhost) by backoffice.colby.local (8.14.5/8.14.5/Submit) id pBPDmx5K040655; Sun, 25 Dec 2011 14:48:59 +0100 (CET) (envelope-from olgeni) Message-Id: <201112251348.pBPDmx5K040655@backoffice.colby.local> Date: Sun, 25 Dec 2011 14:48:59 +0100 (CET) From: Jimmy Olgeni To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: bsam@FreeBSD.org Subject: ports/163607: [PATCH] mail/imaptools: update to 1.117 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 13:50:10 -0000 >Number: 163607 >Category: ports >Synopsis: [PATCH] mail/imaptools: update to 1.117 >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 Dec 25 13:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 9.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD olgeni 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #0: Mon Nov 28 20:25:34 CET 2011 >Description: - Update to 1.117 Port maintainer (bsam@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- imaptools-1.117.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/mail/imaptools/Makefile,v retrieving revision 1.15 diff -u -u -r1.15 Makefile --- Makefile 21 Nov 2011 14:40:24 -0000 1.15 +++ Makefile 25 Dec 2011 13:48:17 -0000 @@ -6,7 +6,7 @@ # PORTNAME= imaptools -PORTVERSION= 1.113 +PORTVERSION= 1.117 CATEGORIES= mail MASTER_SITES= http://www.athensfbc.com/imap_tools/files/ DISTNAME= imap_tools_V${PORTVERSION} Index: distinfo =================================================================== RCS file: /home/pcvs/ports/mail/imaptools/distinfo,v retrieving revision 1.16 diff -u -u -r1.16 distinfo --- distinfo 21 Nov 2011 14:40:24 -0000 1.16 +++ distinfo 25 Dec 2011 13:48:17 -0000 @@ -1,2 +1,2 @@ -SHA256 (imap_tools_V1.113.tar.gz) = 4049a9678f32db89a43a813679f213584a59af8f2f45e62b329908b6c077665c -SIZE (imap_tools_V1.113.tar.gz) = 90975 +SHA256 (imap_tools_V1.117.tar.gz) = 68b462601ea3b3141ec6d56d445776492affc6bedbc14f008336a31692a9566c +SIZE (imap_tools_V1.117.tar.gz) = 91745 --- imaptools-1.117.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 13:50:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DC201065672; Sun, 25 Dec 2011 13:50: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 3002D8FC15; Sun, 25 Dec 2011 13:50:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPDoKvl003118; Sun, 25 Dec 2011 13:50:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPDoK3v003111; Sun, 25 Dec 2011 13:50:20 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 13:50:20 GMT Message-Id: <201112251350.pBPDoK3v003111@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bsam@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163607: [PATCH] mail/imaptools: update to 1.117 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 13:50:20 -0000 Synopsis: [PATCH] mail/imaptools: update to 1.117 Responsible-Changed-From-To: freebsd-ports-bugs->bsam Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 13:50:19 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163607 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 13:55:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D6A0106564A; Sun, 25 Dec 2011 13:55:15 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6EC9A8FC12; Sun, 25 Dec 2011 13:55:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPDtFHT011069; Sun, 25 Dec 2011 13:55:15 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPDtFaZ011065; Sun, 25 Dec 2011 13:55:15 GMT (envelope-from rm) Date: Sun, 25 Dec 2011 13:55:15 GMT Message-Id: <201112251355.pBPDtFaZ011065@freefall.freebsd.org> To: prniii@gmail.com, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/163423: devel/arduino: 9.0 rc3 ports Arduino package needs updated java tzupdater X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 13:55:15 -0000 Synopsis: devel/arduino: 9.0 rc3 ports Arduino package needs updated java tzupdater State-Changed-From-To: open->closed State-Changed-By: rm State-Changed-When: Sun Dec 25 13:55:14 UTC 2011 State-Changed-Why: Today tzupdater was updated to 1.3.45 http://www.freebsd.org/cgi/query-pr.cgi?pr=163423 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 14:50:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B3CB1065676 for ; Sun, 25 Dec 2011 14: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 0AACC8FC13 for ; Sun, 25 Dec 2011 14:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPEo79r057339 for ; Sun, 25 Dec 2011 14:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPEo7ZN057338; Sun, 25 Dec 2011 14:50:07 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 14:50:07 GMT Resent-Message-Id: <201112251450.pBPEo7ZN057338@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 2E4B8106566B for ; Sun, 25 Dec 2011 14:47:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1923F8FC08 for ; Sun, 25 Dec 2011 14:47:14 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBPElDWP066163 for ; Sun, 25 Dec 2011 14:47:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBPElDG5066162; Sun, 25 Dec 2011 14:47:13 GMT (envelope-from nobody) Message-Id: <201112251447.pBPElDG5066162@red.freebsd.org> Date: Sun, 25 Dec 2011 14:47:13 GMT From: Pawel Pekala To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163609: databases/mysql-udf-pregs installs files 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: Sun, 25 Dec 2011 14:50:08 -0000 >Number: 163609 >Category: ports >Synopsis: databases/mysql-udf-pregs installs files 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: Sun Dec 25 14:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: FreeBSD 8.2-STABLE >Organization: >Environment: FreeBSD blaviken.slowicza.org 8.2-STABLE FreeBSD 8.2-STABLE #1: Sun Jul 3 15:11:21 CEST 2011 corn@blaviken.slowicza.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: This port installs mysql plugins in dir ${PREFIX}/mysql/lib/plugins, but mysqld [1] expects them to be in ${PREFIX}/mysql/lib/plugin: [corn:/home/corn]# mysql < /usr/local/share/mysql-udf-preg/installdb.sql ERROR 1126 (HY000) at line 3: Can't open shared library 'lib_mysqludf_preg.so' (errno: 0 Cannot open "/usr/local/lib/mysql/plugin/lib_mysqludf_preg.so") [1] http://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html#sysvar_plugin_dir Attached patch fixes issue for me. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/databases/mysql-udf-preg/Makefile ./Makefile --- /usr/ports/databases/mysql-udf-preg/Makefile 2011-10-28 04:09:23.000000000 +0200 +++ ./Makefile 2011-12-25 13:53:11.000000000 +0100 @@ -17,7 +17,7 @@ LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/mysql/plugins +CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/mysql/plugin USE_GMAKE= yes USE_MYSQL= yes @@ -25,12 +25,12 @@ WRKSRC= ${WRKDIR}/lib_mysqludf_preg-${PORTVERSION} -PLIST_FILES= lib/mysql/plugins/lib_mysqludf_preg.a \ - lib/mysql/plugins/lib_mysqludf_preg.la \ - lib/mysql/plugins/lib_mysqludf_preg.so \ +PLIST_FILES= lib/mysql/plugin/lib_mysqludf_preg.a \ + lib/mysql/plugin/lib_mysqludf_preg.la \ + lib/mysql/plugin/lib_mysqludf_preg.so \ %%DATADIR%%/installdb.sql \ %%DATADIR%%/uninstalldb.sql -PLIST_DIRS= ${DATADIR_REL} lib/mysql/plugins +PLIST_DIRS= ${DATADIR_REL} lib/mysql/plugin post-install: ${MKDIR} ${DATADIR}/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 15:00:27 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73F9E106566C for ; Sun, 25 Dec 2011 15: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 4586B8FC0A for ; Sun, 25 Dec 2011 15:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPF0Rbf065642 for ; Sun, 25 Dec 2011 15:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPF0RL8065632; Sun, 25 Dec 2011 15:00:27 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 15:00:27 GMT Resent-Message-Id: <201112251500.pBPF0RL8065632@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, Fabian Keil Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42D4E106566B for ; Sun, 25 Dec 2011 14:52:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2D5738FC13 for ; Sun, 25 Dec 2011 14:52:01 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBPEq0st066581 for ; Sun, 25 Dec 2011 14:52:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBPEq0lY066580; Sun, 25 Dec 2011 14:52:00 GMT (envelope-from nobody) Message-Id: <201112251452.pBPEq0lY066580@red.freebsd.org> Date: Sun, 25 Dec 2011 14:52:00 GMT From: Fabian Keil To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163610: Patch for proxy regression in net/liferea 1.8.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, 25 Dec 2011 15:00:27 -0000 >Number: 163610 >Category: ports >Synopsis: Patch for proxy regression in net/liferea 1.8.0 >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 Dec 25 15:00:26 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Fabian Keil >Release: HEAD >Organization: >Environment: FreeBSD r500.local 10.0-CURRENT FreeBSD 10.0-CURRENT #386: Sat Dec 24 13:19:40 CET 2011 fk@r500.local:/usr/obj/usr/src/sys/ZOEY amd64 >Description: There's a regression in Liferea 1.8.0 that causes it to ignore the proxy settings for requests made though the feed item viewer. The configured HTTP proxy is used to update the feeds, though. This has been fixed upstream in: http://liferea.git.sourceforge.net/git/gitweb.cgi?p=liferea/liferea;a=patch;h=137604683770cae900d5835befefd95c65866cd7;hp=b509074806afbf5f0ee3f36db8e112c1ea20cdac The attached patch "backports" this fix. >How-To-Repeat: Configure a HTTP proxy in Liferea, read a feed item with embedded images and watch the network traffic. In environments where direct HTTP requests from common applications are redirected or blocked and DNS requests are made through Tor, the image requests will also take longer than usual and occasionally timeout. >Fix: Apply the patch (with -p0). You may want to shorten the patch it creates in net/liferea/files to the src/ui/liferea_htmlview.c chunk. I kept it as-is so comparing with the source is easier. It was created with: git format-patch --no-prefix 137604683^..137604683 Patch attached with submission follows: diff -ruN .zfs/snapshot/2011-12-25/net/liferea/Makefile net/liferea/Makefile --- .zfs/snapshot/2011-12-25/net/liferea/Makefile 2011-12-18 16:07:30.467969699 +0100 +++ net/liferea/Makefile 2011-12-25 15:09:06.975384655 +0100 @@ -7,6 +7,7 @@ PORTNAME= liferea PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= net gnome MASTER_SITES= SF/${PORTNAME}/Liferea%20Stable/${PORTVERSION} diff -ruN .zfs/snapshot/2011-12-25/net/liferea/files/patch-proxy-fix-1376046 net/liferea/files/patch-proxy-fix-1376046 --- .zfs/snapshot/2011-12-25/net/liferea/files/patch-proxy-fix-1376046 1970-01-01 01:00:00.000000000 +0100 +++ net/liferea/files/patch-proxy-fix-1376046 2011-12-25 14:53:17.000000000 +0100 @@ -0,0 +1,45 @@ +From 137604683770cae900d5835befefd95c65866cd7 Mon Sep 17 00:00:00 2001 +From: Lars Lindner +Date: Wed, 14 Dec 2011 18:18:02 +0100 +Subject: [PATCH] Fixes proxy preference not affecting the HTML widget. + +--- + ChangeLog | 8 ++++++++ + src/ui/liferea_htmlview.c | 5 +++++ + 2 files changed, 13 insertions(+), 0 deletions(-) + +diff --git ChangeLog ChangeLog +index 251bdb9..12724e5 100644 +--- ChangeLog ++++ ChangeLog +@@ -1,3 +1,11 @@ ++2011-12-?? ??? ++ ++ Version 1.8.1 ++ ++ * Fixes proxy preference not affecting the HTML widget. ++ (reported by Chris Siebenmann) ++ ++ + 2011-12-10 Lars Lindner + + Version 1.8.0 +diff --git src/ui/liferea_htmlview.c src/ui/liferea_htmlview.c +index 7642c3a..afb20f8 100644 +--- src/ui/liferea_htmlview.c ++++ src/ui/liferea_htmlview.c +@@ -181,6 +181,11 @@ liferea_htmlview_new (gboolean forceInternalBrowsing) + g_signal_connect (network_monitor_get (), "proxy-changed", + G_CALLBACK (liferea_htmlview_proxy_changed), + htmlview); ++ ++ if (NULL != network_get_proxy_host ()) { ++ debug0 (DEBUG_NET, "Setting initial HTML widget proxy..."); ++ liferea_htmlview_proxy_changed (network_monitor_get (), htmlview); ++ } + + return htmlview; + } +-- +1.7.8 + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 15:00:38 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A27D106564A; Sun, 25 Dec 2011 15:00:38 +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 F02B18FC15; Sun, 25 Dec 2011 15:00:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPF0b4b065853; Sun, 25 Dec 2011 15:00:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPF0bkP065849; Sun, 25 Dec 2011 15:00:37 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 15:00:37 GMT Message-Id: <201112251500.pBPF0bkP065849@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163610: Patch for proxy regression in net/liferea 1.8.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, 25 Dec 2011 15:00:38 -0000 Synopsis: Patch for proxy regression in net/liferea 1.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 15:00:37 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163610 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:03:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49FE91065670; Sun, 25 Dec 2011 17:03:10 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C3AC8FC08; Sun, 25 Dec 2011 17:03:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPH39sI083051; Sun, 25 Dec 2011 17:03:09 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPH39dU083046; Sun, 25 Dec 2011 17:03:09 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:03:09 GMT Message-Id: <201112251703.pBPH39dU083046@freefall.freebsd.org> To: beyert@cs.ucr.edu, thorgrim@free.fr, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160991: net/opennx : Unexpected termination of nxssh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:03:10 -0000 Synopsis: net/opennx : Unexpected termination of nxssh State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:03:09 UTC 2011 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=160991 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:04:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 801E01065677; Sun, 25 Dec 2011 17:04:13 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A3448FC1B; Sun, 25 Dec 2011 17:04:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPH4D0g083295; Sun, 25 Dec 2011 17:04:13 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPH4BDH083287; Sun, 25 Dec 2011 17:04:11 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:04:11 GMT Message-Id: <201112251704.pBPH4BDH083287@freefall.freebsd.org> To: konstantin@saurbier.net, ohartman@zedat.fu-berlin.de, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161005: graphics/geos: CLANG : for functional-style cast from 'geos::geom::Geometry 'std::auto_ptr' return std::auto_ptr( createGeometryCollection() ); X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:04:13 -0000 Synopsis: graphics/geos: CLANG : for functional-style cast from 'geos::geom::Geometry 'std::auto_ptr' return std::auto_ptr( createGeometryCollection() ); State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:04:11 UTC 2011 State-Changed-Why: There is much work to do before we could support building ports with clang. Thanks for working on it. The best thing you could do now is submit patches upstream. We are not yet accepting bug reports about ports unbuildable with clang. http://www.freebsd.org/cgi/query-pr.cgi?pr=161005 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:04:42 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AECE1065670; Sun, 25 Dec 2011 17:04:42 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E055B8FC16; Sun, 25 Dec 2011 17:04:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPH4fwW083472; Sun, 25 Dec 2011 17:04:41 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPH4frA083467; Sun, 25 Dec 2011 17:04:41 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:04:41 GMT Message-Id: <201112251704.pBPH4frA083467@freefall.freebsd.org> To: turutani@scphys.kyoto-u.ac.jp, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161139: restore sysutils/gpart X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:04:42 -0000 Synopsis: restore sysutils/gpart State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:04:40 UTC 2011 State-Changed-Why: feedback timeout. Feel free to email me and I'll reopen it http://www.freebsd.org/cgi/query-pr.cgi?pr=161139 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:05:47 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4354E1065672; Sun, 25 Dec 2011 17:05:47 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D1878FC0C; Sun, 25 Dec 2011 17:05:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPH5lIB083842; Sun, 25 Dec 2011 17:05:47 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPH5kpc083836; Sun, 25 Dec 2011 17:05:46 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:05:46 GMT Message-Id: <201112251705.pBPH5kpc083836@freefall.freebsd.org> To: devel@stasyan.com, ohartman@zedat.fu-berlin.de, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161299: science/paraview: CLANG: Linking CXX shared library ../../bin/libvtkPVServerManagerPythonD.so [ 91%] Built target vtkPVServerManagerPythonD gmake: *** [all] Error 2 *** Error code 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, 25 Dec 2011 17:05:47 -0000 Synopsis: science/paraview: CLANG: Linking CXX shared library ../../bin/libvtkPVServerManagerPythonD.so [ 91%] Built target vtkPVServerManagerPythonD gmake: *** [all] Error 2 *** Error code 1 State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:05:45 UTC 2011 State-Changed-Why: There is much work to do before we could support building ports with clang. Thanks for working on it. The best thing you could do now is submit patches upstream. We are not yet accepting bug reports about ports unbuildable with clang. http://www.freebsd.org/cgi/query-pr.cgi?pr=161299 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:06:36 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 998101065670; Sun, 25 Dec 2011 17:06:36 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6B7F08FC1A; Sun, 25 Dec 2011 17:06:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPH6aB9084023; Sun, 25 Dec 2011 17:06:36 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPH6Zxo084019; Sun, 25 Dec 2011 17:06:35 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:06:35 GMT Message-Id: <201112251706.pBPH6Zxo084019@freefall.freebsd.org> To: peter@pean.org, basarevych@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/162496: sysutils/zfs-periodic periodic script 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: Sun, 25 Dec 2011 17:06:36 -0000 Synopsis: sysutils/zfs-periodic periodic script error State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:06:35 UTC 2011 State-Changed-Why: Maintainer has approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=162496 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:07:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B6381065672; Sun, 25 Dec 2011 17:07:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D29C8FC0A; Sun, 25 Dec 2011 17:07:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPH79hs084150; Sun, 25 Dec 2011 17:07:09 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPH78d1084146; Sun, 25 Dec 2011 17:07:08 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:07:08 GMT Message-Id: <201112251707.pBPH78d1084146@freefall.freebsd.org> To: ports@bsdserwis.com, root@claimlynx.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/162975: net-mgmt/nagios-check_smartmon causes error when run X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:07:09 -0000 Synopsis: net-mgmt/nagios-check_smartmon causes error when run State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:07:08 UTC 2011 State-Changed-Why: closed per maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=162975 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:07:36 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC40F1065670; Sun, 25 Dec 2011 17:07:36 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8DD9F8FC0A; Sun, 25 Dec 2011 17:07:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPH7ajJ084270; Sun, 25 Dec 2011 17:07:36 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPH7Zno084266; Sun, 25 Dec 2011 17:07:35 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:07:35 GMT Message-Id: <201112251707.pBPH7Zno084266@freefall.freebsd.org> To: jnlin@csie.nctu.edu.tw, komarov@valerka.net, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163150: [patch][update] net/scribe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:07:36 -0000 Synopsis: [patch][update] net/scribe State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:07:34 UTC 2011 State-Changed-Why: maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=163150 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:08:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6921F1065672; Sun, 25 Dec 2011 17:08:02 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 379578FC16; Sun, 25 Dec 2011 17:08:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPH82dh084391; Sun, 25 Dec 2011 17:08:02 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPH817p084387; Sun, 25 Dec 2011 17:08:01 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:08:01 GMT Message-Id: <201112251708.pBPH817p084387@freefall.freebsd.org> To: gavin.atkinson@ury.york.ac.uk, hanabana@mail.ru, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/122333: net/arping - patch to lookup for interface and src ip, second variant X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:08:02 -0000 Synopsis: net/arping - patch to lookup for interface and src ip, second variant State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:08:01 UTC 2011 State-Changed-Why: wait until upstream releass one with a fix http://www.freebsd.org/cgi/query-pr.cgi?pr=122333 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:27:29 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 234EA106566C; Sun, 25 Dec 2011 17:27:29 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E7C9C8FC13; Sun, 25 Dec 2011 17:27:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHRSi4002871; Sun, 25 Dec 2011 17:27:28 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHRSsG002867; Sun, 25 Dec 2011 17:27:28 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:27:28 GMT Message-Id: <201112251727.pBPHRSsG002867@freefall.freebsd.org> To: joemann@beefree.free.de, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/139872: [PATCH] ports-mgmt/porttools: improve port's directory name heuristic and handle added/deleted files in CVS mode X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:27:29 -0000 Synopsis: [PATCH] ports-mgmt/porttools: improve port's directory name heuristic and handle added/deleted files in CVS mode State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:27:28 UTC 2011 State-Changed-Why: take a look http://www.freebsd.org/cgi/query-pr.cgi?pr=139872 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:27:56 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EB621065676; Sun, 25 Dec 2011 17:27:56 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1303D8FC0A; Sun, 25 Dec 2011 17:27:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHRtco002987; Sun, 25 Dec 2011 17:27:55 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHRt7i002983; Sun, 25 Dec 2011 17:27:55 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:27:55 GMT Message-Id: <201112251727.pBPHRt7i002983@freefall.freebsd.org> To: cjk32@cam.ac.uk, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/147645: audio/squeezeboxserver should reopen logs on SIGHUP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:27:56 -0000 Synopsis: audio/squeezeboxserver should reopen logs on SIGHUP State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:27:55 UTC 2011 State-Changed-Why: Maintainer has approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=147645 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:28:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3D171065672; Sun, 25 Dec 2011 17:28:15 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7516A8FC13; Sun, 25 Dec 2011 17:28:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHSFVH003107; Sun, 25 Dec 2011 17:28:15 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHSEJd003103; Sun, 25 Dec 2011 17:28:14 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:28:14 GMT Message-Id: <201112251728.pBPHSEJd003103@freefall.freebsd.org> To: michael.le_barbier@laposte.net, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/148006: Update of devel/ocaml-camomile to 0.7.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: Sun, 25 Dec 2011 17:28:15 -0000 Synopsis: Update of devel/ocaml-camomile to 0.7.3 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:28:14 UTC 2011 State-Changed-Why: Submitter has fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=148006 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:29:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EDBD1065672; Sun, 25 Dec 2011 17:29:02 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 41B9F8FC0A; Sun, 25 Dec 2011 17:29:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHT2uu003233; Sun, 25 Dec 2011 17:29:02 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHT26C003229; Sun, 25 Dec 2011 17:29:02 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:29:02 GMT Message-Id: <201112251729.pBPHT26C003229@freefall.freebsd.org> To: beyert@cs.ucr.edu, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/154546: update port: games/gemrb to version 0.6.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: Sun, 25 Dec 2011 17:29:02 -0000 Synopsis: update port: games/gemrb to version 0.6.3 State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:29:01 UTC 2011 State-Changed-Why: awaiting new pr for newer version http://www.freebsd.org/cgi/query-pr.cgi?pr=154546 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:29:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 779BD1065670; Sun, 25 Dec 2011 17:29:25 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 49B058FC16; Sun, 25 Dec 2011 17:29:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHTPCR003350; Sun, 25 Dec 2011 17:29:25 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHTP0R003346; Sun, 25 Dec 2011 17:29:25 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:29:25 GMT Message-Id: <201112251729.pBPHTP0R003346@freefall.freebsd.org> To: ports@demosoft.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/155538: new port devel/radlib radlib developer library. Event-driven framework X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:29:25 -0000 Synopsis: new port devel/radlib radlib developer library. Event-driven framework State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:29:24 UTC 2011 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=155538 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:29:50 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC1161065672; Sun, 25 Dec 2011 17:29:50 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BC8848FC1B; Sun, 25 Dec 2011 17:29:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHTovO003466; Sun, 25 Dec 2011 17:29:50 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHTnT2003462; Sun, 25 Dec 2011 17:29:49 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:29:49 GMT Message-Id: <201112251729.pBPHTnT2003462@freefall.freebsd.org> To: securedog@users.sourceforge.jp, pg@2lazy.ru, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/155697: ports-mgmt/pkg_replace doesn't want to replace java/openjdk6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:29:51 -0000 Synopsis: ports-mgmt/pkg_replace doesn't want to replace java/openjdk6 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:29:49 UTC 2011 State-Changed-Why: maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=155697 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 269BD1065678; Sun, 25 Dec 2011 17:30:11 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E47A48FC08; Sun, 25 Dec 2011 17:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHUAUP003600; Sun, 25 Dec 2011 17:30:10 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHUADg003596; Sun, 25 Dec 2011 17:30:10 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:30:10 GMT Message-Id: <201112251730.pBPHUADg003596@freefall.freebsd.org> To: piyawat@usablelabs.com, hatuka@nezumi.nu, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/155898: Update port devel/libthai X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:30:11 -0000 Synopsis: Update port devel/libthai State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:30:09 UTC 2011 State-Changed-Why: maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=155898 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:32:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99DAC106564A; Sun, 25 Dec 2011 17:32:12 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 699A48FC0A; Sun, 25 Dec 2011 17:32:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHWCoW013549; Sun, 25 Dec 2011 17:32:12 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHWC34013545; Sun, 25 Dec 2011 17:32:12 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:32:12 GMT Message-Id: <201112251732.pBPHWC34013545@freefall.freebsd.org> To: werner.garcia@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/156075: [new port] graphics/openfst: library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:32:12 -0000 Synopsis: [new port] graphics/openfst: library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs) State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:32:11 UTC 2011 State-Changed-Why: new ports must be submitted as a 'shar' instead of a diff. Please reply to the PR with a new submission and CC me - I'll reopen the PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=156075 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:32:36 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96851106566C; Sun, 25 Dec 2011 17:32:36 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 680C78FC12; Sun, 25 Dec 2011 17:32:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHWaNg013721; Sun, 25 Dec 2011 17:32:36 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHWarq013716; Sun, 25 Dec 2011 17:32:36 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:32:36 GMT Message-Id: <201112251732.pBPHWarq013716@freefall.freebsd.org> To: leres@ee.lbl.gov, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/156143: New port: devel/arduino-mk: Build Arduino sketches from the command line X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:32:36 -0000 Synopsis: New port: devel/arduino-mk: Build Arduino sketches from the command line State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:32:35 UTC 2011 State-Changed-Why: patch appears broken. please resend and CC me http://www.freebsd.org/cgi/query-pr.cgi?pr=156143 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:32:55 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 290811065676; Sun, 25 Dec 2011 17:32:55 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED6938FC08; Sun, 25 Dec 2011 17:32:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHWsMH013876; Sun, 25 Dec 2011 17:32:54 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHWsBx013871; Sun, 25 Dec 2011 17:32:54 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:32:54 GMT Message-Id: <201112251732.pBPHWsBx013871@freefall.freebsd.org> To: kpedersen@opencde.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/156252: New port: devel/radar Opensource tools to disasm, debug, analyze and manipulate binary 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, 25 Dec 2011 17:32:55 -0000 Synopsis: New port: devel/radar Opensource tools to disasm, debug, analyze and manipulate binary files State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:32:53 UTC 2011 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=156252 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:33:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FB121065670; Sun, 25 Dec 2011 17:33:13 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4110F8FC14; Sun, 25 Dec 2011 17:33:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHXDjD014058; Sun, 25 Dec 2011 17:33:13 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHXBF5014051; Sun, 25 Dec 2011 17:33:11 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:33:11 GMT Message-Id: <201112251733.pBPHXBF5014051@freefall.freebsd.org> To: tom@hur.st, ayuzhaninov@team.vega.ru, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/156376: [PATCH] graphics/optipng: 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, 25 Dec 2011 17:33:13 -0000 Synopsis: [PATCH] graphics/optipng: update to 0.6.5 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:33:11 UTC 2011 State-Changed-Why: maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=156376 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:37:31 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B479B106564A; Sun, 25 Dec 2011 17:37:31 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8572D8FC08; Sun, 25 Dec 2011 17:37:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHbVTZ014612; Sun, 25 Dec 2011 17:37:31 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHbVgW014608; Sun, 25 Dec 2011 17:37:31 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:37:31 GMT Message-Id: <201112251737.pBPHbVgW014608@freefall.freebsd.org> To: swills@FreeBSD.org, linpct@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158167: [NEW PORT] databases/percona-server: Multithreaded SQL database (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: Sun, 25 Dec 2011 17:37:31 -0000 Synopsis: [NEW PORT] databases/percona-server: Multithreaded SQL database (server) State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:37:31 UTC 2011 State-Changed-Why: fails to fetch http://www.freebsd.org/cgi/query-pr.cgi?pr=158167 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:38:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CD881065670; Sun, 25 Dec 2011 17:38:05 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6F0E58FC0A; Sun, 25 Dec 2011 17:38:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHc5cV014739; Sun, 25 Dec 2011 17:38:05 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHc4g7014735; Sun, 25 Dec 2011 17:38:04 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:38:04 GMT Message-Id: <201112251738.pBPHc4g7014735@freefall.freebsd.org> To: bra@fsn.hu, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158703: New port: mail/mailutils X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:38:05 -0000 Synopsis: New port: mail/mailutils State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:38:04 UTC 2011 State-Changed-Why: feedback timeout. CC me and I'll reopen. http://www.freebsd.org/cgi/query-pr.cgi?pr=158703 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:39:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EF6B1065673; Sun, 25 Dec 2011 17:39:05 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 41FDE8FC12; Sun, 25 Dec 2011 17:39:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHd5DY014872; Sun, 25 Dec 2011 17:39:05 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHd53K014868; Sun, 25 Dec 2011 17:39:05 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:39:05 GMT Message-Id: <201112251739.pBPHd53K014868@freefall.freebsd.org> To: linpct@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158904: [PATCH] finance/openerp-web: update to 6.0.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: Sun, 25 Dec 2011 17:39:05 -0000 Synopsis: [PATCH] finance/openerp-web: update to 6.0.2 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:39:04 UTC 2011 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=158904 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:39:48 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FBB81065678; Sun, 25 Dec 2011 17:39:48 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 11F448FC12; Sun, 25 Dec 2011 17:39:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHdlNr014990; Sun, 25 Dec 2011 17:39:47 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHdlaG014986; Sun, 25 Dec 2011 17:39:47 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:39:47 GMT Message-Id: <201112251739.pBPHdlaG014986@freefall.freebsd.org> To: emss@free.fr, linpct@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158935: [PATCH] print/lpr-wrapper: update to 0.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:39:48 -0000 Synopsis: [PATCH] print/lpr-wrapper: update to 0.7 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:39:47 UTC 2011 State-Changed-Why: Maintainer has approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=158935 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:41:41 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B65CD106566C; Sun, 25 Dec 2011 17:41:41 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 880118FC0A; Sun, 25 Dec 2011 17:41:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHffdD023124; Sun, 25 Dec 2011 17:41:41 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHffMJ023120; Sun, 25 Dec 2011 17:41:41 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:41:41 GMT Message-Id: <201112251741.pBPHffMJ023120@freefall.freebsd.org> To: katsuji.ishikawa@gmail.com, mjt@cltn.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158968: Update port: lang/mosh version 0.2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:41:41 -0000 Synopsis: Update port: lang/mosh version 0.2.7 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:41:41 UTC 2011 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=158968 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:42:59 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03BAE1065673; Sun, 25 Dec 2011 17:42:59 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C96158FC08; Sun, 25 Dec 2011 17:42:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHgw1p023337; Sun, 25 Dec 2011 17:42:58 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHgw4M023333; Sun, 25 Dec 2011 17:42:58 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:42:58 GMT Message-Id: <201112251742.pBPHgw4M023333@freefall.freebsd.org> To: ttsestt@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159313: sysutils/uhidd: uhidd-devd.conf.sample doesn't work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:42:59 -0000 Synopsis: sysutils/uhidd: uhidd-devd.conf.sample doesn't work State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:42:58 UTC 2011 State-Changed-Why: wait until the new version is released http://www.freebsd.org/cgi/query-pr.cgi?pr=159313 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:43:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 881BB1065672; Sun, 25 Dec 2011 17:43:16 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 59B5A8FC16; Sun, 25 Dec 2011 17:43:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHhGvO023449; Sun, 25 Dec 2011 17:43:16 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHhFkZ023445; Sun, 25 Dec 2011 17:43:15 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:43:15 GMT Message-Id: <201112251743.pBPHhFkZ023445@freefall.freebsd.org> To: sawp@sawp.com.br, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159607: Update port: graphic/mahotas Efficient Image Processing Library for Python X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:43:16 -0000 Synopsis: Update port: graphic/mahotas Efficient Image Processing Library for Python State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:43:15 UTC 2011 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=159607 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:44:39 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 460F81065676; Sun, 25 Dec 2011 17:44:39 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 17E478FC14; Sun, 25 Dec 2011 17:44:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHicVb023638; Sun, 25 Dec 2011 17:44:38 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHicIH023634; Sun, 25 Dec 2011 17:44:38 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:44:38 GMT Message-Id: <201112251744.pBPHicIH023634@freefall.freebsd.org> To: tmseck@web.de, mwisnicki+freebsd@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159821: [patch] www/squid31: dnsserver does not 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: Sun, 25 Dec 2011 17:44:39 -0000 Synopsis: [patch] www/squid31: dnsserver does not build State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:44:38 UTC 2011 State-Changed-Why: wait until a release is made / feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=159821 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:44:57 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E119106566C; Sun, 25 Dec 2011 17:44:57 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 503278FC19; Sun, 25 Dec 2011 17:44:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHivSZ023752; Sun, 25 Dec 2011 17:44:57 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHivfb023748; Sun, 25 Dec 2011 17:44:57 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:44:57 GMT Message-Id: <201112251744.pBPHivfb023748@freefall.freebsd.org> To: ttsestt@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159874: [patch] sysutils/zfs-snapshot-mgmt: respect local timezone in offsets X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:44:57 -0000 Synopsis: [patch] sysutils/zfs-snapshot-mgmt: respect local timezone in offsets State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:44:56 UTC 2011 State-Changed-Why: maintainer timoeut http://www.freebsd.org/cgi/query-pr.cgi?pr=159874 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:53:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D345106564A; Sun, 25 Dec 2011 17:53:07 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6ECFC8FC15; Sun, 25 Dec 2011 17:53:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHr7A5032750; Sun, 25 Dec 2011 17:53:07 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHr76M032746; Sun, 25 Dec 2011 17:53:07 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:53:07 GMT Message-Id: <201112251753.pBPHr76M032746@freefall.freebsd.org> To: dereckson@gmail.com, root@cooltrainer.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159951: [patch] www/woof to support Python 2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:53:07 -0000 Synopsis: [patch] www/woof to support Python 2.7 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:53:06 UTC 2011 State-Changed-Why: feedback / maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=159951 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:53:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BC7F1065676; Sun, 25 Dec 2011 17:53:11 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5D5428FC0A; Sun, 25 Dec 2011 17:53:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHrBvq032813; Sun, 25 Dec 2011 17:53:11 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHr96V032809; Sun, 25 Dec 2011 17:53:09 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:53:09 GMT Message-Id: <201112251753.pBPHr96V032809@freefall.freebsd.org> To: aldis@bsdroot.lv, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160178: [NEW PORT] www/vimprobable1 - webkit browser inspired by Vimperator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:53:11 -0000 Synopsis: [NEW PORT] www/vimprobable1 - webkit browser inspired by Vimperator State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:53:09 UTC 2011 State-Changed-Why: feedback / maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=160178 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:53:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1096010656A9; Sun, 25 Dec 2011 17:53:14 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D6D298FC0C; Sun, 25 Dec 2011 17:53:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHrDu4032876; Sun, 25 Dec 2011 17:53:13 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHrDbx032872; Sun, 25 Dec 2011 17:53:13 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:53:13 GMT Message-Id: <201112251753.pBPHrDbx032872@freefall.freebsd.org> To: raven428@gmail.com, komarov@valerka.net, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160210: [update] devel/php5-pinba X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:53:14 -0000 Synopsis: [update] devel/php5-pinba State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:53:13 UTC 2011 State-Changed-Why: feedback / maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=160210 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:53:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8409F10656B6; Sun, 25 Dec 2011 17:53:16 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 55F418FC12; Sun, 25 Dec 2011 17:53:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHrG4N032938; Sun, 25 Dec 2011 17:53:16 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHrG2i032934; Sun, 25 Dec 2011 17:53:16 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:53:16 GMT Message-Id: <201112251753.pBPHrG2i032934@freefall.freebsd.org> To: aakuusta@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160626: [patch] www/py-rssdler: deprecate in favor of www/py-flexget X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:53:16 -0000 Synopsis: [patch] www/py-rssdler: deprecate in favor of www/py-flexget State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:53:15 UTC 2011 State-Changed-Why: feedback / maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=160626 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:53:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09D881065670; Sun, 25 Dec 2011 17:53:19 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D008F8FC16; Sun, 25 Dec 2011 17:53:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHrI4o033001; Sun, 25 Dec 2011 17:53:18 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHrIIh032997; Sun, 25 Dec 2011 17:53:18 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:53:18 GMT Message-Id: <201112251753.pBPHrIIh032997@freefall.freebsd.org> To: nalitoja@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161271: [patch] x11/cl-clx: loading with clozure fails, dep-openmcl.lisp is missing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:53:19 -0000 Synopsis: [patch] x11/cl-clx: loading with clozure fails, dep-openmcl.lisp is missing State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:53:18 UTC 2011 State-Changed-Why: feedback / maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=161271 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:53:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47E4F1065687; Sun, 25 Dec 2011 17:53:22 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 19E118FC0C; Sun, 25 Dec 2011 17:53:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHrLM1033063; Sun, 25 Dec 2011 17:53:21 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHrLZZ033059; Sun, 25 Dec 2011 17:53:21 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:53:21 GMT Message-Id: <201112251753.pBPHrLZZ033059@freefall.freebsd.org> To: gavin@16degrees.com.au, nkoch@demig.de, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161518: [patch] update/add devel/scons version 2.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: Sun, 25 Dec 2011 17:53:22 -0000 Synopsis: [patch] update/add devel/scons version 2.1.0 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:53:20 UTC 2011 State-Changed-Why: feedback / maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=161518 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 17:53:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 175B31065689; Sun, 25 Dec 2011 17:53:25 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DDA698FC12; Sun, 25 Dec 2011 17:53:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPHrOmR033126; Sun, 25 Dec 2011 17:53:24 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPHrO6C033121; Sun, 25 Dec 2011 17:53:24 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 17:53:24 GMT Message-Id: <201112251753.pBPHrO6C033121@freefall.freebsd.org> To: spam@rm-rf.kiev.ua, mrossi@swin.edu.au, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163217: security/dropbear does not compile if WITH_STATIC is enabled X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 17:53:25 -0000 Synopsis: security/dropbear does not compile if WITH_STATIC is enabled State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 17:53:24 UTC 2011 State-Changed-Why: feedback / maintainer timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=163217 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:05:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18227106566C; Sun, 25 Dec 2011 18:05:22 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DDBD78FC0A; Sun, 25 Dec 2011 18:05:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPI5LdB042074; Sun, 25 Dec 2011 18:05:21 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPI5LcB042070; Sun, 25 Dec 2011 18:05:21 GMT (envelope-from rm) Date: Sun, 25 Dec 2011 18:05:21 GMT Message-Id: <201112251805.pBPI5LcB042070@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/160626: [patch] www/py-rssdler: deprecate in favor of www/py-flexget X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:05:22 -0000 Synopsis: [patch] www/py-rssdler: deprecate in favor of www/py-flexget Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Sun Dec 25 18:05:21 UTC 2011 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=160626 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:05:35 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C2B3106564A; Sun, 25 Dec 2011 18:05:35 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D2DD58FC14; Sun, 25 Dec 2011 18:05:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPI5YjN042198; Sun, 25 Dec 2011 18:05:34 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPI5YsQ042194; Sun, 25 Dec 2011 18:05:34 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:05:34 GMT Message-Id: <201112251805.pBPI5YsQ042194@freefall.freebsd.org> To: jessefrgsmith@yahoo.ca, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159976: new port: games/blackjack X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:05:35 -0000 Synopsis: new port: games/blackjack State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:05:34 UTC 2011 State-Changed-Why: this seems like a new port http://www.freebsd.org/cgi/query-pr.cgi?pr=159976 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:06:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C3A41065678; Sun, 25 Dec 2011 18:06:11 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F5818FC15; Sun, 25 Dec 2011 18:06:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPI6BaZ042373; Sun, 25 Dec 2011 18:06:11 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPI6A6G042369; Sun, 25 Dec 2011 18:06:10 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:06:10 GMT Message-Id: <201112251806.pBPI6A6G042369@freefall.freebsd.org> To: shurd@sasktel.net, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161103: graphics/rawtherapee fails 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: Sun, 25 Dec 2011 18:06:11 -0000 Synopsis: graphics/rawtherapee fails to build State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:06:10 UTC 2011 State-Changed-Why: fixed in other PR http://www.freebsd.org/cgi/query-pr.cgi?pr=161103 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:06:58 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C95F41065670; Sun, 25 Dec 2011 18:06:58 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9AF888FC08; Sun, 25 Dec 2011 18:06:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPI6w1f042501; Sun, 25 Dec 2011 18:06:58 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPI6v9m042497; Sun, 25 Dec 2011 18:06:57 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:06:57 GMT Message-Id: <201112251806.pBPI6v9m042497@freefall.freebsd.org> To: tmseck@web.de, Martin.Birgmeier@aon.at, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161470: [patch] www/squid31 unintentionally picks up libmd5 as installed by libwww X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:06:58 -0000 Synopsis: [patch] www/squid31 unintentionally picks up libmd5 as installed by libwww State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:06:57 UTC 2011 State-Changed-Why: maintainer prefers vendor patch http://www.freebsd.org/cgi/query-pr.cgi?pr=161470 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:07:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD8A810657C4; Sun, 25 Dec 2011 18:07:28 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8F12A8FC08; Sun, 25 Dec 2011 18:07:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPI7Sgt042622; Sun, 25 Dec 2011 18:07:28 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPI7STe042618; Sun, 25 Dec 2011 18:07:28 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:07:28 GMT Message-Id: <201112251807.pBPI7STe042618@freefall.freebsd.org> To: swills@FreeBSD.org, schwern@pobox.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/162016: BSDPAN::ExtUtils::Packlist->get_dir_list can go into an infinite loop X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:07:28 -0000 Synopsis: BSDPAN::ExtUtils::Packlist->get_dir_list can go into an infinite loop State-Changed-From-To: feedback->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:07:28 UTC 2011 State-Changed-Why: seems like newer perl solves the problem http://www.freebsd.org/cgi/query-pr.cgi?pr=162016 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:09:46 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E878106566B; Sun, 25 Dec 2011 18:09:46 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 110758FC08; Sun, 25 Dec 2011 18:09:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPI9jST042774; Sun, 25 Dec 2011 18:09:45 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPI9jkV042770; Sun, 25 Dec 2011 18:09:45 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:09:45 GMT Message-Id: <201112251809.pBPI9jkV042770@freefall.freebsd.org> To: shurd@sasktel.net, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161103: graphics/rawtherapee fails 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: Sun, 25 Dec 2011 18:09:46 -0000 Synopsis: graphics/rawtherapee fails to build State-Changed-From-To: closed->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:09:45 UTC 2011 State-Changed-Why: still a rproblem http://www.freebsd.org/cgi/query-pr.cgi?pr=161103 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:10:48 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BACC1065673; Sun, 25 Dec 2011 18:10:48 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E12BA8FC1A; Sun, 25 Dec 2011 18:10:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIAlqD047004; Sun, 25 Dec 2011 18:10:47 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIAlmm046905; Sun, 25 Dec 2011 18:10:47 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:10:47 GMT Message-Id: <201112251810.pBPIAlmm046905@freefall.freebsd.org> To: citrin@citrin.ru, spil.oss@googlemail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160821: audio/libmp3splt: Building WITHOUT_ID3 fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:10:48 -0000 Synopsis: audio/libmp3splt: Building WITHOUT_ID3 fails State-Changed-From-To: feedback->suspended State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:10:46 UTC 2011 State-Changed-Why: awaiting upstream fix http://www.freebsd.org/cgi/query-pr.cgi?pr=160821 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:11:36 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A114E1065678; Sun, 25 Dec 2011 18:11:36 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 719178FC08; Sun, 25 Dec 2011 18:11:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIBa6c050996; Sun, 25 Dec 2011 18:11:36 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIBaK3050992; Sun, 25 Dec 2011 18:11:36 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:11:36 GMT Message-Id: <201112251811.pBPIBaK3050992@freefall.freebsd.org> To: etteldor@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160667: [patch] audio/xmmix: fix WARNING pid 4826 (xmmix): ioctl sign-extension ioctl ffffffffc0044d04 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:11:36 -0000 Synopsis: [patch] audio/xmmix: fix WARNING pid 4826 (xmmix): ioctl sign-extension ioctl ffffffffc0044d04 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:11:21 UTC 2011 State-Changed-Why: fine, I'll commit (maintainer timeout) Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:11:21 UTC 2011 Responsible-Changed-Why: fine, I'll commit (maintainer timeout) http://www.freebsd.org/cgi/query-pr.cgi?pr=160667 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:23:53 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E23BF1065670; Sun, 25 Dec 2011 18:23:53 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B4B7B8FC0A; Sun, 25 Dec 2011 18:23:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPINrbR061256; Sun, 25 Dec 2011 18:23:53 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPINrXm061252; Sun, 25 Dec 2011 18:23:53 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:23:53 GMT Message-Id: <201112251823.pBPINrXm061252@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/162685: [new port] misc/usbgeiger, USB-Geiger for FreeBSD7.x and before. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:23:54 -0000 Synopsis: [new port] misc/usbgeiger, USB-Geiger for FreeBSD7.x and before. Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:23:53 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=162685 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:24:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38BFA1065678; Sun, 25 Dec 2011 18:24:14 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F3E5E8FC1B; Sun, 25 Dec 2011 18:24:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIODaD061344; Sun, 25 Dec 2011 18:24:13 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIODIA061340; Sun, 25 Dec 2011 18:24:13 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:24:13 GMT Message-Id: <201112251824.pBPIODIA061340@freefall.freebsd.org> To: dsh@bamus.cz, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/150086: [NEW PORT] net-im/tkabber-plugins-devel: External Plugins for Tkabber X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:24:14 -0000 Synopsis: [NEW PORT] net-im/tkabber-plugins-devel: External Plugins for Tkabber State-Changed-From-To: open->repocopy State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:24:13 UTC 2011 State-Changed-Why: please make a repo copy and then return this PR to the pool http://www.freebsd.org/cgi/query-pr.cgi?pr=150086 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CF4C1065675; Sun, 25 Dec 2011 18:28:02 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D34C08FC16; Sun, 25 Dec 2011 18:28:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIS1p1061604; Sun, 25 Dec 2011 18:28:01 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIS15L061600; Sun, 25 Dec 2011 18:28:01 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:01 GMT Message-Id: <201112251828.pBPIS15L061600@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/152118: New port: deskutils/linux-tahometer A worktime tracking and reporting tool X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:02 -0000 Synopsis: New port: deskutils/linux-tahometer A worktime tracking and reporting tool Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:01 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=152118 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:04 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A92C4106566B; Sun, 25 Dec 2011 18:28:04 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7C71B8FC19; Sun, 25 Dec 2011 18:28:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIS4jw061672; Sun, 25 Dec 2011 18:28:04 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIS4Fh061668; Sun, 25 Dec 2011 18:28:04 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:04 GMT Message-Id: <201112251828.pBPIS4Fh061668@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/154217: New port: ports-mgmt/portsreinstall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:04 -0000 Synopsis: New port: ports-mgmt/portsreinstall Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:04 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=154217 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41E5F106566B; Sun, 25 Dec 2011 18:28:07 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 13C568FC08; Sun, 25 Dec 2011 18:28:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIS6eE061740; Sun, 25 Dec 2011 18:28:06 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIS6ja061736; Sun, 25 Dec 2011 18:28:06 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:06 GMT Message-Id: <201112251828.pBPIS6ja061736@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/154401: New port: www/jetty7 - newer fork by Eclipse/Codehaus X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:07 -0000 Synopsis: New port: www/jetty7 - newer fork by Eclipse/Codehaus Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:06 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=154401 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3A581065673; Sun, 25 Dec 2011 18:28:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 95D068FC0A; Sun, 25 Dec 2011 18:28:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIS9n0061810; Sun, 25 Dec 2011 18:28:09 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIS9Bl061806; Sun, 25 Dec 2011 18:28:09 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:09 GMT Message-Id: <201112251828.pBPIS9Bl061806@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/156362: New port: games/rftg Race for the Galaxy AI X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:09 -0000 Synopsis: New port: games/rftg Race for the Galaxy AI Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:09 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156362 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7854F106566C; Sun, 25 Dec 2011 18:28:12 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4AA318FC0C; Sun, 25 Dec 2011 18:28:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISCXf061897; Sun, 25 Dec 2011 18:28:12 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISCIH061893; Sun, 25 Dec 2011 18:28:12 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:12 GMT Message-Id: <201112251828.pBPISCIH061893@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/157301: [New port] net-mgmt/zbxlog: Syslog server receives messages and send them to Zabbix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:12 -0000 Synopsis: [New port] net-mgmt/zbxlog: Syslog server receives messages and send them to Zabbix Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:11 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=157301 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1125F106566C; Sun, 25 Dec 2011 18:28:15 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D82EE8FC18; Sun, 25 Dec 2011 18:28:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISENU061965; Sun, 25 Dec 2011 18:28:14 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISEtr061961; Sun, 25 Dec 2011 18:28:14 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:14 GMT Message-Id: <201112251828.pBPISEtr061961@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/157320: [NEW PORT] databases/pecl-pdo_user: PECL classes provides a Userspace interface for PDO drivers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:15 -0000 Synopsis: [NEW PORT] databases/pecl-pdo_user: PECL classes provides a Userspace interface for PDO drivers Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:14 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=157320 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A1051065672; Sun, 25 Dec 2011 18:28:17 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6C18F8FC13; Sun, 25 Dec 2011 18:28:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISHi0062033; Sun, 25 Dec 2011 18:28:17 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISHxE062029; Sun, 25 Dec 2011 18:28:17 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:17 GMT Message-Id: <201112251828.pBPISHxE062029@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158781: New port: games/drcreep Platform Puzzle Game X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:17 -0000 Synopsis: New port: games/drcreep Platform Puzzle Game Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:17 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=158781 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F17110656B4; Sun, 25 Dec 2011 18:28:20 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0116B8FC12; Sun, 25 Dec 2011 18:28:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISJ5J062101; Sun, 25 Dec 2011 18:28:19 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISJ71062097; Sun, 25 Dec 2011 18:28:19 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:19 GMT Message-Id: <201112251828.pBPISJ71062097@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158983: [NEW PORT] devel/pecl-dtrace: PHP DTrace provider X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:20 -0000 Synopsis: [NEW PORT] devel/pecl-dtrace: PHP DTrace provider Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:19 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=158983 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9A7F1065679; Sun, 25 Dec 2011 18:28:22 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BB6E48FC24; Sun, 25 Dec 2011 18:28:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISMq5062169; Sun, 25 Dec 2011 18:28:22 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISM7f062165; Sun, 25 Dec 2011 18:28:22 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:22 GMT Message-Id: <201112251828.pBPISM7f062165@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159378: [NEW PORT] lang/php-plua: PLua is a PHP extension which with the Lua interpreter embed in X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:23 -0000 Synopsis: [NEW PORT] lang/php-plua: PLua is a PHP extension which with the Lua interpreter embed in Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:22 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=159378 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18743106566B; Sun, 25 Dec 2011 18:28:25 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD5878FC0A; Sun, 25 Dec 2011 18:28:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISO4a062242; Sun, 25 Dec 2011 18:28:24 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISOHr062237; Sun, 25 Dec 2011 18:28:24 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:24 GMT Message-Id: <201112251828.pBPISOHr062237@freefall.freebsd.org> To: aragon@phat.za.net, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159631: New port: sysutils/amount FreeBSD specific auto mount framework for X11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:25 -0000 Synopsis: New port: sysutils/amount FreeBSD specific auto mount framework for X11 State-Changed-From-To: open->closed State-Changed-By: eadler State-Changed-When: Sun Dec 25 18:28:23 UTC 2011 State-Changed-Why: closed per ports/161977 http://www.freebsd.org/cgi/query-pr.cgi?pr=159631 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E6E2106564A; Sun, 25 Dec 2011 18:28:26 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 609D88FC18; Sun, 25 Dec 2011 18:28:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISQ1G062309; Sun, 25 Dec 2011 18:28:26 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISQ6p062305; Sun, 25 Dec 2011 18:28:26 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:26 GMT Message-Id: <201112251828.pBPISQ6p062305@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159976: new port: games/blackjack X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:26 -0000 Synopsis: new port: games/blackjack Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:25 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=159976 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:30 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2585A1065673; Sun, 25 Dec 2011 18:28:30 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EBD088FC13; Sun, 25 Dec 2011 18:28:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISTnw062390; Sun, 25 Dec 2011 18:28:29 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISTJr062386; Sun, 25 Dec 2011 18:28:29 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:29 GMT Message-Id: <201112251828.pBPISTJr062386@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160208: [NEW PORT} print/py27-pdfcolorsplit - script to split pdf into color and bw pdfs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:30 -0000 Synopsis: [NEW PORT} print/py27-pdfcolorsplit - script to split pdf into color and bw pdfs Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:29 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=160208 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B801F1065672; Sun, 25 Dec 2011 18:28:32 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 897308FC1D; Sun, 25 Dec 2011 18:28:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISW0e062459; Sun, 25 Dec 2011 18:28:32 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISW8w062455; Sun, 25 Dec 2011 18:28:32 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:32 GMT Message-Id: <201112251828.pBPISW8w062455@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160366: New port: misc/xmonad-log-applet An applet that will display Xmonad log information X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:32 -0000 Synopsis: New port: misc/xmonad-log-applet An applet that will display Xmonad log information Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:32 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=160366 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:35 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5282910656B5; Sun, 25 Dec 2011 18:28:35 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 24F148FC16; Sun, 25 Dec 2011 18:28:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISZpV062531; Sun, 25 Dec 2011 18:28:35 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISZkh062527; Sun, 25 Dec 2011 18:28:35 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:35 GMT Message-Id: <201112251828.pBPISZkh062527@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160861: New port: security/racoon-tool Manage setkey and racoon easily X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:35 -0000 Synopsis: New port: security/racoon-tool Manage setkey and racoon easily Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:34 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=160861 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:37 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEC601065670; Sun, 25 Dec 2011 18:28:37 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B17EB8FC23; Sun, 25 Dec 2011 18:28:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISbee062599; Sun, 25 Dec 2011 18:28:37 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISbEs062595; Sun, 25 Dec 2011 18:28:37 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:37 GMT Message-Id: <201112251828.pBPISbEs062595@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161231: [NEW PORT] www/sencha-touch: The First HTML5 Mobile Web App Framework X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:38 -0000 Synopsis: [NEW PORT] www/sencha-touch: The First HTML5 Mobile Web App Framework Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:37 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=161231 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:40 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A8C8106564A; Sun, 25 Dec 2011 18:28:40 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D0788FC0A; Sun, 25 Dec 2011 18:28:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISe8X062667; Sun, 25 Dec 2011 18:28:40 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISeGT062663; Sun, 25 Dec 2011 18:28:40 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:40 GMT Message-Id: <201112251828.pBPISeGT062663@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161539: New port: audio/gmusicbrowser - Jukebox for large amount of music 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, 25 Dec 2011 18:28:40 -0000 Synopsis: New port: audio/gmusicbrowser - Jukebox for large amount of music files Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:39 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=161539 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:43 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 238031065673; Sun, 25 Dec 2011 18:28:43 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E9B888FC13; Sun, 25 Dec 2011 18:28:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISgdw062735; Sun, 25 Dec 2011 18:28:42 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISgK3062731; Sun, 25 Dec 2011 18:28:42 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:42 GMT Message-Id: <201112251828.pBPISgK3062731@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161690: New port: games/prboom-plus Port of ID Software's Doom X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:43 -0000 Synopsis: New port: games/prboom-plus Port of ID Software's Doom Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:42 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=161690 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:45 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B425610656D1; Sun, 25 Dec 2011 18:28:45 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 872A78FC0A; Sun, 25 Dec 2011 18:28:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISju5062803; Sun, 25 Dec 2011 18:28:45 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISj5H062799; Sun, 25 Dec 2011 18:28:45 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:45 GMT Message-Id: <201112251828.pBPISj5H062799@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161894: New port databases/datamodeler: Database modeling tool X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:45 -0000 Synopsis: New port databases/datamodeler: Database modeling tool Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:45 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=161894 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:28:48 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50F971065676; Sun, 25 Dec 2011 18:28:48 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2373C8FC14; Sun, 25 Dec 2011 18:28:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPISmli062871; Sun, 25 Dec 2011 18:28:48 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPISm2T062867; Sun, 25 Dec 2011 18:28:48 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:28:48 GMT Message-Id: <201112251828.pBPISm2T062867@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161977: New port: sysutils/volman FreeBSD specific volume manager X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:28:48 -0000 Synopsis: New port: sysutils/volman FreeBSD specific volume manager Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:28:47 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=161977 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:30:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 245071065675; Sun, 25 Dec 2011 18:30:21 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E5F188FC1F; Sun, 25 Dec 2011 18:30:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIUKBE063524; Sun, 25 Dec 2011 18:30:20 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIUKgS063520; Sun, 25 Dec 2011 18:30:20 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:30:20 GMT Message-Id: <201112251830.pBPIUKgS063520@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/162749: new port: devel/ocaml-cppo, a simple preprocessor for OCaml X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:30:21 -0000 Synopsis: new port: devel/ocaml-cppo, a simple preprocessor for OCaml Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:30:20 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=162749 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:30:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9140A1065670; Sun, 25 Dec 2011 18:30:28 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3B39B8FC18; Sun, 25 Dec 2011 18:30:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIUS9n064172; Sun, 25 Dec 2011 18:30:28 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIUSJX064161; Sun, 25 Dec 2011 18:30:28 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:30:28 GMT Message-Id: <201112251830.pBPIUSJX064161@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/162880: New port: www/cas C++ Application 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: Sun, 25 Dec 2011 18:30:28 -0000 Synopsis: New port: www/cas C++ Application server Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:30:27 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=162880 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:30:35 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E6421065676; Sun, 25 Dec 2011 18:30:35 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1FFA08FC21; Sun, 25 Dec 2011 18:30:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIUYAC064817; Sun, 25 Dec 2011 18:30:35 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIUYxJ064806; Sun, 25 Dec 2011 18:30:34 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:30:34 GMT Message-Id: <201112251830.pBPIUYxJ064806@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/162956: New port: devel/bmkdep: Construct Makefile dependency list X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:30:35 -0000 Synopsis: New port: devel/bmkdep: Construct Makefile dependency list Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:30:34 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=162956 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:30:43 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1A0810656E2; Sun, 25 Dec 2011 18:30:42 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C4D088FC1C; Sun, 25 Dec 2011 18:30:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIUgCt065398; Sun, 25 Dec 2011 18:30:42 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIUggC065392; Sun, 25 Dec 2011 18:30:42 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:30:42 GMT Message-Id: <201112251830.pBPIUggC065392@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163196: [NEW PORT] www/ocportal X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:30:43 -0000 Synopsis: [NEW PORT] www/ocportal Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:30:41 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163196 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:30:50 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5494C1065675; Sun, 25 Dec 2011 18:30:50 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 261678FC15; Sun, 25 Dec 2011 18:30:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIUocb065921; Sun, 25 Dec 2011 18:30:50 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIUnhF065912; Sun, 25 Dec 2011 18:30:49 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:30:49 GMT Message-Id: <201112251830.pBPIUnhF065912@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163213: [new port]: databases/tarantool Tarantool, is a high performance key/value storage 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: Sun, 25 Dec 2011 18:30:50 -0000 Synopsis: [new port]: databases/tarantool Tarantool, is a high performance key/value storage server Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:30:49 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163213 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:30:58 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BD0610656A9; Sun, 25 Dec 2011 18:30:58 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F14B48FC15; Sun, 25 Dec 2011 18:30:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIUvOX066506; Sun, 25 Dec 2011 18:30:57 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIUvIf066498; Sun, 25 Dec 2011 18:30:57 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:30:57 GMT Message-Id: <201112251830.pBPIUvIf066498@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163242: [NEW PORT] databases/autopostgresqlbackup: Make daily, weekly and monthly backups of your PostgreSQL databases X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:30:58 -0000 Synopsis: [NEW PORT] databases/autopostgresqlbackup: Make daily, weekly and monthly backups of your PostgreSQL databases Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:30:57 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163242 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 18:31:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F08BE106564A; Sun, 25 Dec 2011 18:31:05 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C361A8FC1E; Sun, 25 Dec 2011 18:31:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPIV558067072; Sun, 25 Dec 2011 18:31:05 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPIV5UU067063; Sun, 25 Dec 2011 18:31:05 GMT (envelope-from eadler) Date: Sun, 25 Dec 2011 18:31:05 GMT Message-Id: <201112251831.pBPIV5UU067063@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163292: [NEW PORT] databases/py26-cql: Python DB-API 2.0 client interface for Cassandra X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 18:31:06 -0000 Synopsis: [NEW PORT] databases/py26-cql: Python DB-API 2.0 client interface for Cassandra Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 25 18:31:04 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163292 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 19:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C5AE106566C for ; Sun, 25 Dec 2011 19: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 6CEC68FC0A for ; Sun, 25 Dec 2011 19:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPJo9Me038340 for ; Sun, 25 Dec 2011 19:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPJo9XR038339; Sun, 25 Dec 2011 19:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 19:50:09 GMT Resent-Message-Id: <201112251950.pBPJo9XR038339@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 70E6C106564A for ; Sun, 25 Dec 2011 19:40:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 41B978FC0A for ; Sun, 25 Dec 2011 19:40:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBPJepWq008155 for ; Sun, 25 Dec 2011 19:40:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBPJeoRD008154; Sun, 25 Dec 2011 19:40:50 GMT (envelope-from nobody) Message-Id: <201112251940.pBPJeoRD008154@red.freebsd.org> Date: Sun, 25 Dec 2011 19:40:50 GMT From: "Herbert J. Skuhra" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163612: [Patch] Update www/xxxterm to version 1.9.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, 25 Dec 2011 19:50:09 -0000 >Number: 163612 >Category: ports >Synopsis: [Patch] Update www/xxxterm to version 1.9.0 >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 Dec 25 19:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Herbert J. Skuhra >Release: FreeBSD 9.0-PRERELEASE i386 >Organization: >Environment: FreeBSD oslo.ath.cx 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #1 r227950: Thu Nov 24 20:36:39 CET 2011 herbert@oslo.ath.cx:/usr/obj/usr/src/sys/PC1 i386 >Description: The attached patch updates www/xxxterm to version 1.9.0. I had to modify freebsd/Makefile to fix build on FreeBSD. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN www/xxxterm.orig/Makefile www/xxxterm/Makefile --- www/xxxterm.orig/Makefile 2011-12-25 20:14:08.000000000 +0100 +++ www/xxxterm/Makefile 2011-12-25 20:18:23.000000000 +0100 @@ -6,7 +6,8 @@ # PORTNAME= xxxterm -PORTVERSION= 1.518 +PORTVERSION= 1.9.0 +PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= https://opensource.conformal.com/snapshots/xxxterm/ \ SF/xxxterm/ diff -ruN www/xxxterm.orig/distinfo www/xxxterm/distinfo --- www/xxxterm.orig/distinfo 2011-12-25 20:14:08.000000000 +0100 +++ www/xxxterm/distinfo 2011-12-25 20:14:20.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (xxxterm-1.518.tgz) = c7b3e89c91cfe4aec21573c3810dc6b6882360fde7ef7061c2cc3d1a6c222084 -SIZE (xxxterm-1.518.tgz) = 158514 +SHA256 (xxxterm-1.9.0.tgz) = f3369f108623906e5f18fcc5ea98ad0d496f5c3711e98b18a7bfe25c1eea82fb +SIZE (xxxterm-1.9.0.tgz) = 173693 diff -ruN www/xxxterm.orig/files/patch-freebsd_Makefile www/xxxterm/files/patch-freebsd_Makefile --- www/xxxterm.orig/files/patch-freebsd_Makefile 1970-01-01 01:00:00.000000000 +0100 +++ www/xxxterm/files/patch-freebsd_Makefile 2011-12-25 20:20:20.000000000 +0100 @@ -0,0 +1,15 @@ +--- freebsd/Makefile.bak 2011-12-25 20:08:41.000000000 +0100 ++++ freebsd/Makefile 2011-12-25 20:08:58.000000000 +0100 +@@ -33,9 +33,11 @@ + + cookie.o: ../cookie.o + ++inputfocus.o: ../inputfocus.o ++ + ../xxxterm.o: ../javascript.h + +-xxxterm: xxxterm.o freebsd.o marco.o about.o inspector.o whitelist.o settings.o cookie.o ++xxxterm: xxxterm.o freebsd.o marco.o about.o inspector.o whitelist.o settings.o cookie.o inputfocus.o + $(CC) $(LDFLAGS) -o $@ *.o $+ $(LDADD) + + install: all >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 19:50:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24DCF106566C; Sun, 25 Dec 2011 19:50: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 ECD508FC14; Sun, 25 Dec 2011 19:50:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPJoJxv038624; Sun, 25 Dec 2011 19:50:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPJoJUi038617; Sun, 25 Dec 2011 19:50:19 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 19:50:19 GMT Message-Id: <201112251950.pBPJoJUi038617@freefall.freebsd.org> To: h.skuhra@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163612: [Patch] Update www/xxxterm to version 1.9.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, 25 Dec 2011 19:50:20 -0000 Synopsis: [Patch] Update www/xxxterm to version 1.9.0 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Dec 25 19:50:19 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163612 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:00:27 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 597DC1065677 for ; Sun, 25 Dec 2011 20: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 3B8E58FC16 for ; Sun, 25 Dec 2011 20:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPK0RhO046763 for ; Sun, 25 Dec 2011 20:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPK0Rg4046762; Sun, 25 Dec 2011 20:00:27 GMT (envelope-from gnats) Date: Sun, 25 Dec 2011 20:00:27 GMT Message-Id: <201112252000.pBPK0Rg4046762@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163612: [Patch] Update www/xxxterm to version 1.9.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, 25 Dec 2011 20:00:27 -0000 The following reply was made to PR ports/163612; it has been noted by GNATS. From: Edwin Groothuis To: graudeejs@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/163612: [Patch] Update www/xxxterm to version 1.9.0 Date: Sun, 25 Dec 2011 19:50:17 UT Maintainer of www/xxxterm, Please note that PR ports/163612 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/163612 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:00:38 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A87C21065672 for ; Sun, 25 Dec 2011 20:00:38 +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 92EF48FC17 for ; Sun, 25 Dec 2011 20:00:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPK0cdS047041 for ; Sun, 25 Dec 2011 20:00:38 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPK0cU0047037; Sun, 25 Dec 2011 20:00:38 GMT (envelope-from gnats) Date: Sun, 25 Dec 2011 20:00:38 GMT Message-Id: <201112252000.pBPK0cU0047037@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/156472: 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: Sun, 25 Dec 2011 20:00:38 -0000 The following reply was made to PR ports/156472; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156472: commit references a PR Date: Sun, 25 Dec 2011 19:58:47 +0000 (UTC) eadler 2011-12-25 19:58:39 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/ocaml-react Makefile distinfo pkg-descr pkg-plist Log: React is an Ocaml module for functional reactive programming. It provides support to programs with time varying values: applicative events and signals. React doesn't define any primitive event or signal, this lets the client choose the concrete timeline. WWW: http://erratique.ch/software/react PR: ports/156472 Submitted by: Jaap Boender Revision Changes Path 1.4771 +7 -0 ports/devel/Makefile 1.1 +38 -0 ports/devel/ocaml-react/Makefile (new) 1.1 +2 -0 ports/devel/ocaml-react/distinfo (new) 1.1 +6 -0 ports/devel/ocaml-react/pkg-descr (new) 1.1 +9 -0 ports/devel/ocaml-react/pkg-plist (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 Sun Dec 25 20:07:02 2011 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 7D5B01065670; Sun, 25 Dec 2011 20:07:02 +0000 (UTC) (envelope-from xxjack12xx@gmail.com) Received: from mail-qw0-f47.google.com (mail-qw0-f47.google.com [209.85.216.47]) by mx1.freebsd.org (Postfix) with ESMTP id 2538E8FC0A; Sun, 25 Dec 2011 20:07:02 +0000 (UTC) Received: by qadb17 with SMTP id b17so7092740qad.13 for ; Sun, 25 Dec 2011 12:07:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=vn4IcrixQQaCDY4DiJi2HO04TcKXVxTYUjKjvCgAjag=; b=NB4TLi3LHQzZuhKvb2GbYX43+6+oN6cSbHje1SfYQHI+jIJj01lJHbjpuASERZMvka ZyhpT2r6tYjQACgcpGhLqQSV51NFQYM73nI3J4jwEZpr5FnJQlpyU/u+QCmeaI1meeXB xWgh5qs1Cq2TqwqIFC13vxY7T1IVyGz6pcVdw= Received: by 10.224.18.66 with SMTP id v2mr27448355qaa.91.1324842307210; Sun, 25 Dec 2011 11:45:07 -0800 (PST) MIME-Version: 1.0 Received: by 10.229.184.12 with HTTP; Sun, 25 Dec 2011 11:44:26 -0800 (PST) In-Reply-To: <201112181903.pBIJ34nN090347@freefall.freebsd.org> References: <201112181903.pBIJ34nN090347@freefall.freebsd.org> From: "Jack L." Date: Sun, 25 Dec 2011 11:44:26 -0800 Message-ID: To: pawel@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: freebsd-ports-bugs@freebsd.org Subject: Re: ports/163278: Upgrade audio/audacity from 1.3.13 to 1.3.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 20:07:02 -0000 I'm working on fixing those other features. On Sun, Dec 18, 2011 at 11:03 AM, wrote: > Synopsis: Upgrade audio/audacity from 1.3.13 to 1.3.14 > > Responsible-Changed-From-To: freebsd-ports-bugs->pawel > Responsible-Changed-By: pawel > Responsible-Changed-When: Sun Dec 18 19:03:04 UTC 2011 > Responsible-Changed-Why: > I'll take it. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=163278 > _______________________________________________ > 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" From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:10:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FB64106566B for ; Sun, 25 Dec 2011 20: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 36FDD8FC15 for ; Sun, 25 Dec 2011 20:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPKAEp4055744 for ; Sun, 25 Dec 2011 20:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPKAEfL055743; Sun, 25 Dec 2011 20:10:14 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 20:10:14 GMT Resent-Message-Id: <201112252010.pBPKAEfL055743@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92741106564A for ; Sun, 25 Dec 2011 20:07:50 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 1C69A8FC08 for ; Sun, 25 Dec 2011 20:07:50 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id pBPK7jpF072432 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 25 Dec 2011 15:07:45 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id pBPK7jX2093296; Sun, 25 Dec 2011 15:07:45 -0500 (EST) (envelope-from steve) Message-Id: <201112252007.pBPK7jX2093296@meatwad.mouf.net> Date: Sun, 25 Dec 2011 15:07:45 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gnome@FreeBSD.org Subject: ports/163613: [PATCH] devel/libgtop: fix build on 10-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: Sun, 25 Dec 2011 20:10:14 -0000 >Number: 163613 >Category: ports >Synopsis: [PATCH] devel/libgtop: fix build on 10-CURRENT >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 Dec 25 20:10:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #8: Mon Dec 19 15:53:28 EST 2011 >Description: I experienced the same build failure with libgtop seen here: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20111207031942/libgtop-2.28.3_2.log gmake[3]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.28.3/sysdeps/freebsd' ... gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include -DHAVE_NET_IF_VAR_H -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT open.lo -MD -MP -MF .deps/open.Tpo -c open.c -fPIC -DPIC -o .libs/open.o open.c: In function 'glibtop_open_s': open.c:47: error: '__FreeBSD_kernel_version' undeclared (first use in this function) open.c:47: error: (Each undeclared identifier is reported only once open.c:47: error: for each function it appears in.) gmake[3]: *** [open.lo] Error 1 The attached patch fixes it for me. The patch is mainly noise due to the file files/patch-sysdeps_freebsd_open.c not being updated I think, but the main change is that the check for __FreeBSD_kernel__ and usage of __FreeBSD_kernel_version was removed in favor of just using __FreeBSD_version all the time. I believe this is the correct thing to do, but I'm not 100% sure. Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- libgtop-2.28.3_2.patch begins here --- Index: files/patch-sysdeps_freebsd_open.c =================================================================== RCS file: /home/pcvs/ports/devel/libgtop/files/patch-sysdeps_freebsd_open.c,v retrieving revision 1.1 diff -u -u -r1.1 patch-sysdeps_freebsd_open.c --- files/patch-sysdeps_freebsd_open.c 10 Jan 2009 05:21:26 -0000 1.1 +++ files/patch-sysdeps_freebsd_open.c 25 Dec 2011 20:03:26 -0000 @@ -1,6 +1,6 @@ ---- sysdeps/freebsd/open.c.orig 2008-05-23 18:13:23.000000000 -0400 -+++ sysdeps/freebsd/open.c 2008-09-29 17:23:22.000000000 -0400 -@@ -20,76 +20,33 @@ +--- sysdeps/freebsd/open.c.orig 2011-12-25 11:29:32.897248000 +0000 ++++ sysdeps/freebsd/open.c 2011-12-25 11:38:05.000000000 +0000 +@@ -20,76 +20,27 @@ */ #include @@ -23,16 +23,16 @@ - glibtop_error_r (NULL, "glibtop_init_p (server == NULL)"); - - /* Do the initialization, but only if not already initialized. */ -- -- if ((server->flags & _GLIBTOP_INIT_STATE_SYSDEPS) == 0) { -- glibtop_open_p (server, "glibtop", features, flags); +#include +#include -- for (init_fkt = _glibtop_init_hook_p; *init_fkt; init_fkt++) -- (*init_fkt) (server); +- if ((server->flags & _GLIBTOP_INIT_STATE_SYSDEPS) == 0) { +- glibtop_open_p (server, "glibtop", features, flags); +#include +- for (init_fkt = _glibtop_init_hook_p; *init_fkt; init_fkt++) +- (*init_fkt) (server); +- - server->flags |= _GLIBTOP_INIT_STATE_SYSDEPS; - } -} @@ -46,24 +46,24 @@ -#ifdef DEBUG - fprintf (stderr, "DEBUG (%d): glibtop_open_p ()\n", getpid ()); -#endif +- +- /* !!! WE ARE ROOT HERE - CHANGE WITH CAUTION !!! */ + int ncpus; + size_t len; -- /* !!! WE ARE ROOT HERE - CHANGE WITH CAUTION !!! */ -+ len = sizeof (ncpus); -+ sysctlbyname ("hw.ncpu", &ncpus, &len, NULL, 0); -+ server->real_ncpu = ncpus - 1; -+ server->ncpu = MIN(GLIBTOP_NCPU - 1, server->real_ncpu); - - server->machine.uid = getuid (); - server->machine.euid = geteuid (); - server->machine.gid = getgid (); - server->machine.egid = getegid (); - #if defined(__FreeBSD_kernel__) - server->os_version_code = __FreeBSD_kernel_version; - #else +-#if defined(__FreeBSD_kernel__) +- server->os_version_code = __FreeBSD_kernel_version; +-#else ++ len = sizeof (ncpus); ++ sysctlbyname ("hw.ncpu", &ncpus, &len, NULL, 0); ++ server->real_ncpu = ncpus - 1; ++ server->ncpu = MIN(GLIBTOP_NCPU - 1, server->real_ncpu); server->os_version_code = __FreeBSD_version; - #endif +-#endif - /* Setup machine-specific data */ - server->machine.kd = kvm_open (NULL, NULL, NULL, O_RDONLY, "kvm_open"); - @@ -82,7 +82,7 @@ - - /* Our effective uid is now those of the user invoking the server, - * so we do no longer have any priviledges. */ - +- - /* NOTE: On FreeBSD, we do not need to be suid root, we just need to - * be sgid kmem. - * --- libgtop-2.28.3_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:10:29 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F49C106566B; Sun, 25 Dec 2011 20:10: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 509608FC0C; Sun, 25 Dec 2011 20:10:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPKATc1056746; Sun, 25 Dec 2011 20:10:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPKAT7p056742; Sun, 25 Dec 2011 20:10:29 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 20:10:29 GMT Message-Id: <201112252010.pBPKAT7p056742@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163613: [PATCH] devel/libgtop: fix build on 10-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: Sun, 25 Dec 2011 20:10:29 -0000 Synopsis: [PATCH] devel/libgtop: fix build on 10-CURRENT Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 20:10:28 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163613 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 797231065679 for ; Sun, 25 Dec 2011 20: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 4FF968FC0A for ; Sun, 25 Dec 2011 20:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPKKBTE065820 for ; Sun, 25 Dec 2011 20:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPKKBi8065819; Sun, 25 Dec 2011 20:20:11 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 20:20:11 GMT Resent-Message-Id: <201112252020.pBPKKBi8065819@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB090106567B for ; Sun, 25 Dec 2011 20:16:35 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 4A8BB8FC1B for ; Sun, 25 Dec 2011 20:16:35 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id pBPKGUa2072543 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 25 Dec 2011 15:16:31 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id pBPKGUKx089413; Sun, 25 Dec 2011 15:16:30 -0500 (EST) (envelope-from steve) Message-Id: <201112252016.pBPKGUKx089413@meatwad.mouf.net> Date: Sun, 25 Dec 2011 15:16:30 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: nox@FreeBSD.org Subject: ports/163614: [PATCH] games/gracer: switch to giflib since it is more featureful X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 20:20:11 -0000 >Number: 163614 >Category: ports >Synopsis: [PATCH] games/gracer: switch to giflib since it is more featureful >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 Dec 25 20:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #8: Mon Dec 19 15:53:28 EST 2011 >Description: The attached patch switches the port to using the API and ABI compatible and more featureful giflib instead of libungif. This will help with the effort to allow CONFLICTS between the two gif ports so that packaging issues can be avoided. Also, pet portlint while here. Port maintainer (nox@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- gracer-0.1.5_10.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/games/gracer/Makefile,v retrieving revision 1.40 diff -u -u -r1.40 Makefile --- Makefile 23 Sep 2011 22:22:44 -0000 1.40 +++ Makefile 25 Dec 2011 20:14:49 -0000 @@ -7,7 +7,7 @@ PORTNAME= gracer PORTVERSION= 0.1.5 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= games MASTER_SITES= SF @@ -15,7 +15,7 @@ COMMENT= A 3D motor sport simulator BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib -LIB_DEPENDS= ungif.5:${PORTSDIR}/graphics/libungif \ +LIB_DEPENDS= gif.5:${PORTSDIR}/graphics/giflib \ png.6:${PORTSDIR}/graphics/png \ jpeg.11:${PORTSDIR}/graphics/jpeg \ tcl84.1:${PORTSDIR}/lang/tcl84 @@ -28,7 +28,7 @@ -I${LOCALBASE}/include/tcl8.4 USE_GMAKE= yes # for plib (sound): -CONFIGURE_ARGS+= --with-plib=${LOCALBASE}/plib +CONFIGURE_ARGS+= --with-plib=${LOCALBASE}/plib MAN6= gracer.6 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/games/gracer/pkg-plist,v retrieving revision 1.4 diff -u -u -r1.4 pkg-plist --- pkg-plist 10 Jun 2001 15:28:40 -0000 1.4 +++ pkg-plist 25 Dec 2011 20:14:49 -0000 @@ -1,80 +1,80 @@ bin/gracer -share/gracer/courses/cliff.jpg -share/gracer/courses/course1.grc -share/gracer/courses/course1.grs -share/gracer/courses/course2.grc -share/gracer/courses/course2.grs -share/gracer/courses/course3.grc -share/gracer/courses/course3.grs -share/gracer/courses/course4.grc -share/gracer/courses/course4.grs -share/gracer/courses/course5.grc -share/gracer/courses/course5.grs -share/gracer/courses/grass.jpg -share/gracer/courses/road.jpg -share/gracer/courses/road2.jpg -share/gracer/images/icon.xpm -share/gracer/images/mini-icon.xpm -share/gracer/license -share/gracer/scenes/cement.png -share/gracer/scenes/font.grs -share/gracer/scenes/grass.png -share/gracer/scenes/panel.grs -share/gracer/scenes/rock.png -share/gracer/scenes/sky.grs -share/gracer/scenes/sky.jpg -share/gracer/scripts/cache.tcl -share/gracer/scripts/glut.tcl -share/gracer/scripts/gr.tcl -share/gracer/scripts/hiscore.tcl -share/gracer/scripts/init.tcl -share/gracer/scripts/postinit.tcl -share/gracer/scripts/timestamp.tcl -share/gracer/scripts/ui.tcl -share/gracer/sounds/exhaust.au -share/gracer/sounds/slip.au -share/gracer/vehicles/cart.grv -share/gracer/vehicles/cart/cart.grs -share/gracer/vehicles/cart/engine.dat -share/gracer/vehicles/cart/fbmu.dat -share/gracer/vehicles/cart/ftire.dat -share/gracer/vehicles/cart/rtire.dat -share/gracer/vehicles/formula.grv -share/gracer/vehicles/formula/engine.dat -share/gracer/vehicles/formula/fbmu.dat -share/gracer/vehicles/formula/formula.grs -share/gracer/vehicles/formula/ftire.dat -share/gracer/vehicles/formula/rtire.dat -share/gracer/vehicles/mini.grv -share/gracer/vehicles/mini/engine.dat -share/gracer/vehicles/mini/fbmu.dat -share/gracer/vehicles/mini/ftire.dat -share/gracer/vehicles/mini/mini.grs -share/gracer/vehicles/mini/rtire.dat -share/gracer/vehicles/mini/sbmu.dat -share/gracer/vehicles/road.grv -share/gracer/vehicles/road/engine.dat -share/gracer/vehicles/road/fbmu.dat -share/gracer/vehicles/road/ftire.dat -share/gracer/vehicles/road/road.grs -share/gracer/vehicles/road/rtire.dat -share/gracer/vehicles/road/sbmu.dat -share/gracer/vehicles/s2000.grv -share/gracer/vehicles/s2000/engine.dat -share/gracer/vehicles/s2000/fbmu.dat -share/gracer/vehicles/s2000/ftire.dat -share/gracer/vehicles/s2000/rtire.dat -share/gracer/vehicles/s2000/s2000.grs -share/gracer/vehicles/s2000/sbmu.dat -@dirrm share/gracer/vehicles/s2000 -@dirrm share/gracer/vehicles/road -@dirrm share/gracer/vehicles/mini -@dirrm share/gracer/vehicles/formula -@dirrm share/gracer/vehicles/cart -@dirrm share/gracer/vehicles -@dirrm share/gracer/sounds -@dirrm share/gracer/scripts -@dirrm share/gracer/scenes -@dirrm share/gracer/images -@dirrm share/gracer/courses -@dirrm share/gracer +%%DATADIR%%/courses/cliff.jpg +%%DATADIR%%/courses/course1.grc +%%DATADIR%%/courses/course1.grs +%%DATADIR%%/courses/course2.grc +%%DATADIR%%/courses/course2.grs +%%DATADIR%%/courses/course3.grc +%%DATADIR%%/courses/course3.grs +%%DATADIR%%/courses/course4.grc +%%DATADIR%%/courses/course4.grs +%%DATADIR%%/courses/course5.grc +%%DATADIR%%/courses/course5.grs +%%DATADIR%%/courses/grass.jpg +%%DATADIR%%/courses/road.jpg +%%DATADIR%%/courses/road2.jpg +%%DATADIR%%/images/icon.xpm +%%DATADIR%%/images/mini-icon.xpm +%%DATADIR%%/license +%%DATADIR%%/scenes/cement.png +%%DATADIR%%/scenes/font.grs +%%DATADIR%%/scenes/grass.png +%%DATADIR%%/scenes/panel.grs +%%DATADIR%%/scenes/rock.png +%%DATADIR%%/scenes/sky.grs +%%DATADIR%%/scenes/sky.jpg +%%DATADIR%%/scripts/cache.tcl +%%DATADIR%%/scripts/glut.tcl +%%DATADIR%%/scripts/gr.tcl +%%DATADIR%%/scripts/hiscore.tcl +%%DATADIR%%/scripts/init.tcl +%%DATADIR%%/scripts/postinit.tcl +%%DATADIR%%/scripts/timestamp.tcl +%%DATADIR%%/scripts/ui.tcl +%%DATADIR%%/sounds/exhaust.au +%%DATADIR%%/sounds/slip.au +%%DATADIR%%/vehicles/cart.grv +%%DATADIR%%/vehicles/cart/cart.grs +%%DATADIR%%/vehicles/cart/engine.dat +%%DATADIR%%/vehicles/cart/fbmu.dat +%%DATADIR%%/vehicles/cart/ftire.dat +%%DATADIR%%/vehicles/cart/rtire.dat +%%DATADIR%%/vehicles/formula.grv +%%DATADIR%%/vehicles/formula/engine.dat +%%DATADIR%%/vehicles/formula/fbmu.dat +%%DATADIR%%/vehicles/formula/formula.grs +%%DATADIR%%/vehicles/formula/ftire.dat +%%DATADIR%%/vehicles/formula/rtire.dat +%%DATADIR%%/vehicles/mini.grv +%%DATADIR%%/vehicles/mini/engine.dat +%%DATADIR%%/vehicles/mini/fbmu.dat +%%DATADIR%%/vehicles/mini/ftire.dat +%%DATADIR%%/vehicles/mini/mini.grs +%%DATADIR%%/vehicles/mini/rtire.dat +%%DATADIR%%/vehicles/mini/sbmu.dat +%%DATADIR%%/vehicles/road.grv +%%DATADIR%%/vehicles/road/engine.dat +%%DATADIR%%/vehicles/road/fbmu.dat +%%DATADIR%%/vehicles/road/ftire.dat +%%DATADIR%%/vehicles/road/road.grs +%%DATADIR%%/vehicles/road/rtire.dat +%%DATADIR%%/vehicles/road/sbmu.dat +%%DATADIR%%/vehicles/s2000.grv +%%DATADIR%%/vehicles/s2000/engine.dat +%%DATADIR%%/vehicles/s2000/fbmu.dat +%%DATADIR%%/vehicles/s2000/ftire.dat +%%DATADIR%%/vehicles/s2000/rtire.dat +%%DATADIR%%/vehicles/s2000/s2000.grs +%%DATADIR%%/vehicles/s2000/sbmu.dat +@dirrm %%DATADIR%%/vehicles/s2000 +@dirrm %%DATADIR%%/vehicles/road +@dirrm %%DATADIR%%/vehicles/mini +@dirrm %%DATADIR%%/vehicles/formula +@dirrm %%DATADIR%%/vehicles/cart +@dirrm %%DATADIR%%/vehicles +@dirrm %%DATADIR%%/sounds +@dirrm %%DATADIR%%/scripts +@dirrm %%DATADIR%%/scenes +@dirrm %%DATADIR%%/images +@dirrm %%DATADIR%%/courses +@dirrm %%DATADIR%% --- gracer-0.1.5_10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:20:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9802B106566B; Sun, 25 Dec 2011 20:20: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 6A8678FC16; Sun, 25 Dec 2011 20:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPKKL61066226; Sun, 25 Dec 2011 20:20:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPKKLD4066222; Sun, 25 Dec 2011 20:20:21 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 20:20:21 GMT Message-Id: <201112252020.pBPKKLD4066222@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nox@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163614: [PATCH] games/gracer: switch to giflib since it is more featureful X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 20:20:21 -0000 Synopsis: [PATCH] games/gracer: switch to giflib since it is more featureful Responsible-Changed-From-To: freebsd-ports-bugs->nox Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 20:20:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163614 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:30:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70FD81065676 for ; Sun, 25 Dec 2011 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 481918FC16 for ; Sun, 25 Dec 2011 20:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPKUFJY074347 for ; Sun, 25 Dec 2011 20:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPKUFIt074344; Sun, 25 Dec 2011 20:30:15 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 20:30:15 GMT Resent-Message-Id: <201112252030.pBPKUFIt074344@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E0751065672 for ; Sun, 25 Dec 2011 20:28:57 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 184B28FC14 for ; Sun, 25 Dec 2011 20:28:57 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id pBPKSpRK072644 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 25 Dec 2011 15:28:52 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id pBPKSp2J062162; Sun, 25 Dec 2011 15:28:51 -0500 (EST) (envelope-from steve) Message-Id: <201112252028.pBPKSp2J062162@meatwad.mouf.net> Date: Sun, 25 Dec 2011 15:28:51 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ehaupt@FreeBSD.org Subject: ports/163615: [PATCH] devel/ccache: improve English grammar of messages and pet portlint X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 20:30:15 -0000 >Number: 163615 >Category: ports >Synopsis: [PATCH] devel/ccache: improve English grammar of messages and pet portlint >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 Dec 25 20:30:14 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #8: Mon Dec 19 15:53:28 EST 2011 >Description: Noticed the grammar of these could be improved a little, so here is a patch for that. Also, pet portlint while here. Port maintainer (ehaupt@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- ccache-3.1.6.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/ccache/Makefile,v retrieving revision 1.65 diff -u -u -r1.65 Makefile --- Makefile 24 Nov 2011 13:34:49 -0000 1.65 +++ Makefile 25 Dec 2011 20:28:03 -0000 @@ -80,7 +80,7 @@ .endif post-install: - @${ECHO_CMD} "Create compiler links..." + @${ECHO_CMD} "Creating compiler links..." @${PREFIX}/bin/ccache-update-links -v @${CAT} ${PKGMESSAGE} .if defined(WITH_CLANGLINK) Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/devel/ccache/pkg-plist,v retrieving revision 1.4 diff -u -u -r1.4 pkg-plist --- pkg-plist 30 Mar 2011 15:43:16 -0000 1.4 +++ pkg-plist 25 Dec 2011 20:28:03 -0000 @@ -3,8 +3,8 @@ %%DATADIR%%/ccache.tar %%CCLINKDIR%%/world/ccache @dirrm %%DATADIR%% -@exec echo "Create compiler links..." +@exec echo "Creating compiler links..." @exec %D/bin/ccache-update-links -v @unexec find %D/%%CCLINKDIR%% -type l -exec rm -f {} \; -@unexec rmdir %D/%%CCLINKDIR%%/world -@unexec rmdir %D/%%CCLINKDIR%% +@dirrmtry %%CCLINKDIR%%/world +@dirrmtry %%CCLINKDIR%% Index: files/pkg-message-clang =================================================================== RCS file: /home/pcvs/ports/devel/ccache/files/pkg-message-clang,v retrieving revision 1.1 diff -u -u -r1.1 pkg-message-clang --- files/pkg-message-clang 1 Oct 2011 21:49:28 -0000 1.1 +++ files/pkg-message-clang 25 Dec 2011 20:28:03 -0000 @@ -1,5 +1,5 @@ -You've chosen to create symlinks to clang compiler binaries if they exist. -While it's known to be save to build world with clang/ccache, is not fully +You've chosen to create symlinks to the clang compiler binaries if they exist. +While it's known to be safe to build world with clang/ccache, is not fully supported yet. You have been warned. See: --- ccache-3.1.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:30:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A36F10656D8; Sun, 25 Dec 2011 20:30: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 5BF618FC13; Sun, 25 Dec 2011 20:30:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPKUW8m075978; Sun, 25 Dec 2011 20:30:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPKUWgM075969; Sun, 25 Dec 2011 20:30:32 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 20:30:32 GMT Message-Id: <201112252030.pBPKUWgM075969@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ehaupt@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163615: [PATCH] devel/ccache: improve English grammar of messages and pet portlint X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 20:30:32 -0000 Synopsis: [PATCH] devel/ccache: improve English grammar of messages and pet portlint Responsible-Changed-From-To: freebsd-ports-bugs->ehaupt Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 20:30:31 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163615 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 20:40:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0049C106566C for ; Sun, 25 Dec 2011 20: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 CE1C88FC13 for ; Sun, 25 Dec 2011 20:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPKeBxx085856 for ; Sun, 25 Dec 2011 20:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPKeBxU085855; Sun, 25 Dec 2011 20:40:11 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 20:40:11 GMT Resent-Message-Id: <201112252040.pBPKeBxU085855@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, Karsten Brandt Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 587EC106566B for ; Sun, 25 Dec 2011 20:33:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 425888FC08 for ; Sun, 25 Dec 2011 20:33:29 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBPKXT7P001070 for ; Sun, 25 Dec 2011 20:33:29 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBPKXSTZ001064; Sun, 25 Dec 2011 20:33:28 GMT (envelope-from nobody) Message-Id: <201112252033.pBPKXSTZ001064@red.freebsd.org> Date: Sun, 25 Dec 2011 20:33:28 GMT From: Karsten Brandt To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163616: a new game 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: Sun, 25 Dec 2011 20:40:12 -0000 >Number: 163616 >Category: ports >Synopsis: a new game port >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 Dec 25 20:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Karsten Brandt >Release: 8.2-STABLE >Organization: >Environment: FreeBSD 8.2-STABLE #8: Fri Oct 7 21:40:55 CEST 2011 brandt@ATHENE:/usr/obj/usr/src/sys/ATHENE amd64 >Description: This is a proposal for a new games port for the very funny multi user tetris game 'quadra'. More information for this game can be found on http://code.google.com/p/quadra. Because the source of this game is only hostet on an svn server, the required tarball can created by call 'make maint-gen-distfile'. After updating of distinfo with 'make makesum' this port should be ready for distibution. >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: # # quadra # quadra/Makefile # quadra/files # quadra/files/patch-quadra-source-rules.mk # quadra/files/patch-quadra-skelton-svgalib-video.cpp # quadra/distinfo # quadra/pkg-descr # echo c - quadra mkdir -p quadra > /dev/null 2>&1 echo x - quadra/Makefile sed 's/^X//' >quadra/Makefile << '8709cfbddf2fa72e6b594c1b42066a4d' X# New ports collection makefile for: quadra X# Date created: 25 December 2011 X# Whom: [KB] X# X# $FreeBSD$ X# X XPORTNAME= quadra XPORTVERSION= 1.3.0 XCATEGORIES= games XMASTER_SITES= http://quadra.googlecode.com/svn/trunk/quadra/ X XMAINTAINER= ports@FreeBSD.org XCOMMENT= A tetris like multiuser action puzzle X XFETCH_DEPENDS= svn:${PORTSDIR}/devel/subversion XLIB_DEPENDS= png:${PORTSDIR}/graphics/png X XSVN_REV= 757 XUSE_BZIP2= yes X XUSE_SDL= sdl XUSE_XORG= x11 xau xdmcp X XUSE_AUTOTOOLS= autoconf autoheader X XCPPFLAGS+= -I${PREFIX}/include/libpng XLDFLAGS+= -L${PREFIX}/lib XGNU_CONFIGURE= yes X XUSE_GMAKE= yes X XPLIST_DIRS= lib/games X XPLIST_FILES= bin/quadra \ X share/games/quadra.res \ X share/pixmaps/quadra.xpm X Xdo-patch: X ${PATCH} -s ${WRKDIR}/${PORTNAME}-${PORTVERSION}/skelton/svgalib/video.cpp \ X ${FILESDIR}/patch-quadra-skelton-svgalib-video.cpp X ${PATCH} -s ${WRKDIR}/${PORTNAME}-${PORTVERSION}/source/rules.mk \ X ${FILESDIR}/patch-quadra-source-rules.mk X Xmaint-gen-distfile: X @if [ -f ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} ]; then \ X ${ECHO_CMD} "ERROR: the distfile already exists."; \ X ${FALSE}; \ X fi X svn export -r${SVN_REV} ${MASTER_SITES} ${PORTNAME}-${PORTVERSION} X ${TAR} cjf ${DISTDIR}/${DISTNAME}.tar.bz2 ${PORTNAME}-${PORTVERSION} X ${RM} -rf ${PORTNAME}-${PORTVERSION} X X.include 8709cfbddf2fa72e6b594c1b42066a4d echo c - quadra/files mkdir -p quadra/files > /dev/null 2>&1 echo x - quadra/files/patch-quadra-source-rules.mk sed 's/^X//' >quadra/files/patch-quadra-source-rules.mk << '24789a11e8de601d8c51b417b8a1be90' X--- quadra/source/rules.mk.orig 2011-12-18 16:56:14.000000000 +0100 X+++ quadra/source/rules.mk 2011-12-20 23:20:22.000000000 +0100 X@@ -18,7 +18,13 @@ X # X # $Id: rules.mk 684 2008-12-20 07:14:57Z pphaneuf $ X X-source/quadra: LDLIBS+=$(SDL_LIBS) -lpng -lz X+EXT_LIBS := -lpng -lz X+ X+ifeq "$(OSTYPE)" "FreeBSD" # OSTYPE is a standard environment variable within the FreeBSD tcsh X+ EXT_LIBS += -lcompat # needed for the ftime function X+endif X+ X+source/quadra: LDLIBS+=$(SDL_LIBS) $(EXT_LIBS) X source/quadra: $(QUADRA_OBJECTS) $(SDL_MAIN_OBJ) skelton/lib/libugs_s.a X X quadra.res: $(shell cat resources.txt) resources.txt skelton/tools/wadder/wadder 24789a11e8de601d8c51b417b8a1be90 echo x - quadra/files/patch-quadra-skelton-svgalib-video.cpp sed 's/^X//' >quadra/files/patch-quadra-skelton-svgalib-video.cpp << '89fb6c65ff7ecab4a54b644e2660d85a' X--- quadra/skelton/svgalib/video.cpp.orig 2011-12-18 16:56:08.000000000 +0100 X+++ quadra/skelton/svgalib/video.cpp 2011-12-20 22:40:49.000000000 +0100 X@@ -24,7 +24,9 @@ X #ifdef WIN32 X #include X #else X-#include X+ #if !defined __FreeBSD__ /* alloca is part of stdlib in FreeBSD */ X+ #include X+ #endif X #endif X #include "sprite.h" X #include "command.h" 89fb6c65ff7ecab4a54b644e2660d85a echo x - quadra/distinfo sed 's/^X//' >quadra/distinfo << '11dd2c2bb823d7fa57374c4d96bef296' XSHA256 (quadra-1.3.0.tar.bz2) = 502bf29792646ee4f88b03138f22c1c20181d4af6d9cfaffd7ccc9b2b885013a XSIZE (quadra-1.3.0.tar.bz2) = 4615866 11dd2c2bb823d7fa57374c4d96bef296 echo x - quadra/pkg-descr sed 's/^X//' >quadra/pkg-descr << '7ba86339b50aac6a16d592155a9df217' XAn addictive action puzzle game with single player and multiplayer capabilities X(Internet or LAN). X XWWW: http://code.google.com/p/quadra/ 7ba86339b50aac6a16d592155a9df217 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 21:00:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DCDD1065672 for ; Sun, 25 Dec 2011 21: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 1E6F08FC19 for ; Sun, 25 Dec 2011 21:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPL0M5M003101 for ; Sun, 25 Dec 2011 21:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPL0MvJ003100; Sun, 25 Dec 2011 21:00:22 GMT (envelope-from gnats) Resent-Date: Sun, 25 Dec 2011 21:00:22 GMT Resent-Message-Id: <201112252100.pBPL0MvJ003100@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, Jan Beich Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBDB9106564A for ; Sun, 25 Dec 2011 20:59:05 +0000 (UTC) (envelope-from jbeich@tormail.net) Received: from server2.hudsonvalleyhost.com (server2.hudsonvalleyhost.com [66.7.195.77]) by mx1.freebsd.org (Postfix) with ESMTP id 944668FC13 for ; Sun, 25 Dec 2011 20:59:04 +0000 (UTC) Received: from exit2.ipredator.se ([93.182.132.103]:60376 helo=internal.tormail.net) by server2.hudsonvalleyhost.com with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.69) (envelope-from ) id 1Rev9s-0014ei-Cm for FreeBSD-gnats-submit@freebsd.org; Sun, 25 Dec 2011 15:59:04 -0500 Received: from jbeich by internal.tormail.net with local (Exim 4.63) (envelope-from ) id 1Rev9O-000L7K-Dk for FreeBSD-gnats-submit@freebsd.org; Sun, 25 Dec 2011 20:58:35 +0000 Message-Id: <1Rev9O-000L7K-Dk@internal.tormail.net> Date: Mon, 26 Dec 2011 04:56:27 +0800 From: Jan Beich To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/163617: ports-mgmt/portlint: has no clue about dual/multi license defines X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 21:00:23 -0000 >Number: 163617 >Category: ports >Synopsis: ports-mgmt/portlint: has no clue about dual/multi license defines >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 Dec 25 21:00:22 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jan Beich >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: >Description: While portlint understands "dual" and "multi" keywords for LICENSE it fails to recognize expanded defines required by them. As grouping by newlines seems like a readability improvement when many licenses are defined portlint should still check the correct order. >How-To-Repeat: LICENSE = FOO BAR LICENSE_COMB = multi LICENSE_PERMS_FOO = ${_LICENSE_PERMS_DEFAULT} LICENSE_PERMS_BAR = ${_LICENSE_PERMS_DEFAULT} LICENSE_TEXT_FOO = blah foo LICENSE_TEXT_BAR = blah bar LICENSE_NAME_FOO = foo license LICENSE_NAME_BAR = bar license $ portlint FATAL: Makefile: extra item "LICENSE_PERMS_FOO " placed in the LICENSE section. FATAL: Makefile: extra item "LICENSE_PERMS_BAR " placed in the LICENSE section. FATAL: Makefile: extra item "LICENSE_TEXT_FOO " placed in the LICENSE section. FATAL: Makefile: extra item "LICENSE_TEXT_BAR " placed in the LICENSE section. FATAL: Makefile: extra item "LICENSE_NAME_FOO" placed in the LICENSE section. FATAL: Makefile: extra item "LICENSE_NAME_BAR" placed in the LICENSE section. 6 fatal errors and 0 warnings found. Exit 6 # with a newline after LICENSE_COMB $ portlint looks fine. # after retrofitting into "single" type $ portlint FATAL: Makefile: LICENSE_TEXT appears out-of-order. FATAL: Makefile: LICENSE_NAME appears out-of-order. FATAL: Makefile: order must be LICENSE/LICENSE_COMB/LICENSE_GROUPS/LICENSE_NAME/LICENSE_TEXT/LICENSE_FILE/LICENSE_PERMS. 3 fatal errors and 0 warnings found. Exit 3 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 21:00:36 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC72B1065675; Sun, 25 Dec 2011 21:00:36 +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 7EA7A8FC18; Sun, 25 Dec 2011 21:00:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPL0aRi003345; Sun, 25 Dec 2011 21:00:36 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPL0aer003341; Sun, 25 Dec 2011 21:00:36 GMT (envelope-from edwin) Date: Sun, 25 Dec 2011 21:00:36 GMT Message-Id: <201112252100.pBPL0aer003341@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marcus@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163617: ports-mgmt/portlint: has no clue about dual/multi license defines X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 25 Dec 2011 21:00:36 -0000 Synopsis: ports-mgmt/portlint: has no clue about dual/multi license defines Responsible-Changed-From-To: freebsd-ports-bugs->marcus Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 25 21:00:35 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163617 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 25 21:26:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2869106566B; Sun, 25 Dec 2011 21:26:28 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 85D738FC0C; Sun, 25 Dec 2011 21:26:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBPLQSrG030293; Sun, 25 Dec 2011 21:26:28 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBPLQSZN030289; Sun, 25 Dec 2011 21:26:28 GMT (envelope-from pawel) Date: Sun, 25 Dec 2011 21:26:28 GMT Message-Id: <201112252126.pBPLQSZN030289@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/163609: databases/mysql-udf-pregs installs files 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: Sun, 25 Dec 2011 21:26:28 -0000 Synopsis: databases/mysql-udf-pregs installs files in wrong place Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sun Dec 25 21:25:55 UTC 2011 Responsible-Changed-Why: misspelled port name http://www.freebsd.org/cgi/query-pr.cgi?pr=163609 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 00:22:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E41381065673; Mon, 26 Dec 2011 00:22:32 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B9A068FC18; Mon, 26 Dec 2011 00:22:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ0MW9G097076; Mon, 26 Dec 2011 00:22:32 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ0MWOW097072; Mon, 26 Dec 2011 00:22:32 GMT (envelope-from eadler) Date: Mon, 26 Dec 2011 00:22:32 GMT Message-Id: <201112260022.pBQ0MWOW097072@freefall.freebsd.org> To: spam@rm-rf.kiev.ua, mrossi@swin.edu.au, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163217: security/dropbear does not compile if WITH_STATIC is enabled X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 00:22:33 -0000 Synopsis: security/dropbear does not compile if WITH_STATIC is enabled State-Changed-From-To: open->feedback State-Changed-By: eadler State-Changed-When: Mon Dec 26 00:22:32 UTC 2011 State-Changed-Why: still waiting for feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=163217 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 00:38:01 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF1371065677; Mon, 26 Dec 2011 00:38:01 +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 C48358FC0C; Mon, 26 Dec 2011 00:38:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ0c1WW008424; Mon, 26 Dec 2011 00:38:01 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ0c1nA008420; Mon, 26 Dec 2011 00:38:01 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 00:38:01 GMT Message-Id: <201112260038.pBQ0c1nA008420@freefall.freebsd.org> To: wes@bogon.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mi@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/162526: Sigbus in net/minidlna port because read_random_bytes treats size_t as signed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 00:38:02 -0000 Synopsis: Sigbus in net/minidlna port because read_random_bytes treats size_t as signed State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Dec 26 00:37:30 UTC 2011 State-Changed-Why: already committed. Responsible-Changed-From-To: freebsd-ports-bugs->mi Responsible-Changed-By: linimon Responsible-Changed-When: Mon Dec 26 00:37:30 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=162526 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 00:39:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12918106564A; Mon, 26 Dec 2011 00:39:25 +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 DD5BF8FC08; Mon, 26 Dec 2011 00:39:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ0dOOg008511; Mon, 26 Dec 2011 00:39:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ0dOKw008507; Mon, 26 Dec 2011 00:39:24 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 00:39:24 GMT Message-Id: <201112260039.pBQ0dOKw008507@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163513: [PATCH] Fix devel/automoc4 hangs cosmetically. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 00:39:25 -0000 Old Synopsis: [PATCH] Fix automoc4 hangs cosmetically. New Synopsis: [PATCH] Fix devel/automoc4 hangs cosmetically. Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: linimon Responsible-Changed-When: Mon Dec 26 00:38:35 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=163513 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 00:43:50 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 525681065670; Mon, 26 Dec 2011 00:43:50 +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 26BE08FC08; Mon, 26 Dec 2011 00:43:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ0hoDK016612; Mon, 26 Dec 2011 00:43:50 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ0hmBY016608; Mon, 26 Dec 2011 00:43:48 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 00:43:48 GMT Message-Id: <201112260043.pBQ0hmBY016608@freefall.freebsd.org> To: aldis@bsdroot.lv, spamtrap@martinlaabs.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156034: print/lyx-devel spell checking with enchant does not work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 00:43:50 -0000 Synopsis: print/lyx-devel spell checking with enchant does not work State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Mon Dec 26 00:43:10 UTC 2011 State-Changed-Why: To submitter: since this PR was submitted, lyx-devel had been deleted in favor of an update to lyx. Do you still experience this problem? http://www.freebsd.org/cgi/query-pr.cgi?pr=156034 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 00:51:37 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8115E1065675; Mon, 26 Dec 2011 00:51: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 56DF18FC0A; Mon, 26 Dec 2011 00:51:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ0pbf3025503; Mon, 26 Dec 2011 00:51:37 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ0pbax025498; Mon, 26 Dec 2011 00:51:37 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 00:51:37 GMT Message-Id: <201112260051.pBQ0pbax025498@freefall.freebsd.org> To: jaapb@kerguelen.org, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156472: [new port] devel/ocaml-react - OCaml library for reactive programming X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 00:51:37 -0000 Synopsis: [new port] devel/ocaml-react - OCaml library for reactive programming State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Dec 26 00:51:16 UTC 2011 State-Changed-Why: Committed 2011-12-25. http://www.freebsd.org/cgi/query-pr.cgi?pr=156472 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 00:58:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A31A106564A; Mon, 26 Dec 2011 00:58:25 +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 1F8238FC0C; Mon, 26 Dec 2011 00:58:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ0wPCS025788; Mon, 26 Dec 2011 00:58:25 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ0wObQ025784; Mon, 26 Dec 2011 00:58:25 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 00:58:25 GMT Message-Id: <201112260058.pBQ0wObQ025784@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, maho@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163586: suggestion: change the japanese/mozc-el port to use the master mozc-server port for its easy maintenance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 00:58:25 -0000 Old Synopsis: suggestion: change the mozc-el port to use the master mozc-server port for its easy maintenance New Synopsis: suggestion: change the japanese/mozc-el port to use the master mozc-server port for its easy maintenance Responsible-Changed-From-To: freebsd-ports-bugs->maho Responsible-Changed-By: linimon Responsible-Changed-When: Mon Dec 26 00:57:31 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=163586 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 00:59:50 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E9CB1065672; Mon, 26 Dec 2011 00:59:50 +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 28B648FC0C; Mon, 26 Dec 2011 00:59:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ0xoR5025885; Mon, 26 Dec 2011 00:59:50 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ0xolB025881; Mon, 26 Dec 2011 00:59:50 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 00:59:50 GMT Message-Id: <201112260059.pBQ0xolB025881@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163447: audio/pulseaudio fails to build with latest x11 'xcb' 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: Mon, 26 Dec 2011 00:59:50 -0000 Old Synopsis: pulseaudio fails to build with latest x11 'xcb' ports New Synopsis: audio/pulseaudio fails to build with latest x11 'xcb' ports Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Mon Dec 26 00:59:24 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=163447 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 01:57:50 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0154106566B; Mon, 26 Dec 2011 01:57:50 +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 B542B8FC08; Mon, 26 Dec 2011 01:57:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ1voHb081406; Mon, 26 Dec 2011 01:57:50 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ1voYO081402; Mon, 26 Dec 2011 01:57:50 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 01:57:50 GMT Message-Id: <201112260157.pBQ1voYO081402@freefall.freebsd.org> To: aldis@bsdroot.lv, spamtrap@martinlaabs.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156034: print/lyx-devel spell checking with enchant does not work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 01:57:51 -0000 Synopsis: print/lyx-devel spell checking with enchant does not work State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Dec 26 01:57:39 UTC 2011 State-Changed-Why: Submitter's email address bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=156034 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 02:18:28 2011 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 54C941065672; Mon, 26 Dec 2011 02:18:28 +0000 (UTC) (envelope-from jnlinn@gmail.com) Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id BCBC88FC12; Mon, 26 Dec 2011 02:18:27 +0000 (UTC) Received: by eaaf13 with SMTP id f13so13731484eaa.13 for ; Sun, 25 Dec 2011 18:18:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=P0h8BkKOtyMZY0XbroL5RKct5TmJdLk6GbQZtEFQFG8=; b=lFMuE9eI91LSgb5UoyBaJId617fLCaRu4jloT+ebQFThQGa0J7DO4ioJ3Jn/SRRLBQ EPPGUb5W0fcfuDPHu8v22+xApQBcg3EBBHthkvVkKBEBkw7x3WbiLcS1CxS3uP6nNHl6 p9VcCtGDvck8Cv1GLXlRnDvzDlqiWdVqhMbLc= MIME-Version: 1.0 Received: by 10.204.151.209 with SMTP id d17mr6022361bkw.52.1324865906543; Sun, 25 Dec 2011 18:18:26 -0800 (PST) Sender: jnlinn@gmail.com Received: by 10.204.97.132 with HTTP; Sun, 25 Dec 2011 18:18:26 -0800 (PST) In-Reply-To: <201112251707.pBPH7Zno084266@freefall.freebsd.org> References: <201112251707.pBPH7Zno084266@freefall.freebsd.org> Date: Mon, 26 Dec 2011 10:18:26 +0800 X-Google-Sender-Auth: sxGTnza64fhxHDc-a6XDx-fU-ow Message-ID: From: Jui-Nan Lin To: eadler@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: komarov@valerka.net, freebsd-ports-bugs@freebsd.org Subject: Re: ports/163150: [patch][update] net/scribe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 02:18:28 -0000 Hello, Please commit it, thanks! On Mon, Dec 26, 2011 at 1:07 AM, wrote: > Synopsis: [patch][update] net/scribe > > State-Changed-From-To: feedback->open > State-Changed-By: eadler > State-Changed-When: Sun Dec 25 17:07:34 UTC 2011 > State-Changed-Why: > maintainer timeout > > http://www.freebsd.org/cgi/query-pr.cgi?pr=163150 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 02:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7B6A1065672 for ; Mon, 26 Dec 2011 02: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 07B1B8FC19 for ; Mon, 26 Dec 2011 02:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ2o8o5028105 for ; Mon, 26 Dec 2011 02:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ2o8ki028104; Mon, 26 Dec 2011 02:50:08 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 02:50:08 GMT Resent-Message-Id: <201112260250.pBQ2o8ki028104@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 Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 65DBE106564A for ; Mon, 26 Dec 2011 02:43:09 +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 1C5078FC14 for ; Mon, 26 Dec 2011 02:43:09 +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 8B88611464 for ; Mon, 26 Dec 2011 11:43:06 +0900 (JST) Received: from [IPv6:2001:3e0:4ec:a011:907:df8f:6d02:e326] (unknown [IPv6:2001:3e0:4ec:a011:907:df8f:6d02:e326]) by ae-osaka.co.jp (Postfix) with ESMTPSA id 6360911463 for ; Mon, 26 Dec 2011 11:43:06 +0900 (JST) Message-Id: <4EF7DF39.8090801@airport.fm> Date: Mon, 26 Dec 2011 11:43:05 +0900 From: Takefu To: freebsd-gnats-submit@FreeBSD.org In-Reply-To: <201112260215.pBQ2FGrQ008795@unbound.local.ae-osaka.co.jp> References: <201112260215.pBQ2FGrQ008795@unbound.local.ae-osaka.co.jp> Cc: Subject: ports/163621: devel/p5-POE-Quickie: Update to 0.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, 26 Dec 2011 02:50:09 -0000 >Number: 163621 >Category: ports >Synopsis: [MAINTAINER] devel/p5-POE-Quickie: Update to 0.18 >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 Dec 26 02:50:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.2-RELEASE-p5 amd64 >Organization: FOX Amateur Radio Club >Environment: >Description: - Depend on POE 1.350. In previous versions, sig_child would not be delivered in some cases, causing a test failure. >How-To-Repeat: >Fix: --- p5-POE-Quickie.patch begins here --- diff -ruN /usr/ports/devel/p5-POE-Quickie/Makefile devel/p5-POE-Quickie/Makefile --- /usr/ports/devel/p5-POE-Quickie/Makefile 2011-06-16 13:29:53.000000000 +0900 +++ devel/p5-POE-Quickie/Makefile 2011-12-26 11:05:27.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= POE-Quickie -PORTVERSION= 0.17 +PORTVERSION= 0.18 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,13 +14,13 @@ MAINTAINER= takefu@airport.fm COMMENT= A lazy way to wrap blocking code and programs -BUILD_DEPENDS= p5-POE>=0:${PORTSDIR}/devel/p5-POE -RUN_DEPENDS= p5-POE>=0:${PORTSDIR}/devel/p5-POE - LICENSE= GPLv1 ART10 LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE +BUILD_DEPENDS= p5-POE>=0:${PORTSDIR}/devel/p5-POE +RUN_DEPENDS= p5-POE>=0:${PORTSDIR}/devel/p5-POE + OPTIONS= Capture "Enable p5-Capture-Tiny support" off .include diff -ruN /usr/ports/devel/p5-POE-Quickie/distinfo devel/p5-POE-Quickie/distinfo --- /usr/ports/devel/p5-POE-Quickie/distinfo 2011-06-16 13:29:53.000000000 +0900 +++ devel/p5-POE-Quickie/distinfo 2011-12-26 11:05:43.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (POE-Quickie-0.17.tar.gz) = 4b5006206367d6403854fe8315ee685034fff834b99af252a3e99bad9ff0403b -SIZE (POE-Quickie-0.17.tar.gz) = 19361 +SHA256 (POE-Quickie-0.18.tar.gz) = 25b888a59c2c740dd780a8c58d1c3fdd62df63f176fe88366f624e34f18803ed +SIZE (POE-Quickie-0.18.tar.gz) = 19540 --- p5-POE-Quickie.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 02:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8E581065673 for ; Mon, 26 Dec 2011 02: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 523298FC1B for ; Mon, 26 Dec 2011 02:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ2o9CY028114 for ; Mon, 26 Dec 2011 02:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ2o9AA028113; Mon, 26 Dec 2011 02:50:09 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 02:50:09 GMT Resent-Message-Id: <201112260250.pBQ2o9AA028113@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 Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66683106564A for ; Mon, 26 Dec 2011 02:45:24 +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 17CB08FC0C for ; Mon, 26 Dec 2011 02:45:24 +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 6744B1144E for ; Mon, 26 Dec 2011 11:45:20 +0900 (JST) Received: from [IPv6:2001:3e0:4ec:a011:907:df8f:6d02:e326] (unknown [IPv6:2001:3e0:4ec:a011:907:df8f:6d02:e326]) by ae-osaka.co.jp (Postfix) with ESMTPSA id E7B1B1144B for ; Mon, 26 Dec 2011 11:45:18 +0900 (JST) Message-Id: <4EF7DFBE.4030907@airport.fm> Date: Mon, 26 Dec 2011 11:45:18 +0900 From: Takefu To: freebsd-gnats-submit@FreeBSD.org In-Reply-To: <201112260223.pBQ2N3xx013924@unbound.local.ae-osaka.co.jp> References: <201112260223.pBQ2N3xx013924@unbound.local.ae-osaka.co.jp> Cc: Subject: ports/163622: [MAINTAINER] japanese/jacode.pl: Update to 2.13.4.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: Mon, 26 Dec 2011 02:50:09 -0000 >Number: 163622 >Category: ports >Synopsis: [MAINTAINER] japanese/jacode.pl: Update to 2.13.4.10 >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 Dec 26 02:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.2-RELEASE-p5 amd64 >Organization: FOX Amateur Radio Club >Environment: >Description: - Update to 2.13.4.10 rewrite octal escapes to hexadecimal. check scalar(keys %associative_array). improve &jcode'getcode >How-To-Repeat: >Fix: --- jacode.pl.patch begins here --- diff -ruN /usr/ports/japanese/jacode.pl/Makefile japanese/jacode.pl/Makefile --- /usr/ports/japanese/jacode.pl/Makefile 2011-06-21 08:30:28.000000000 +0900 +++ japanese/jacode.pl/Makefile 2011-12-26 11:21:50.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= jacode.pl -PORTVERSION= 2.13.4.9 +PORTVERSION= 2.13.4.10 CATEGORIES= japanese perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:INA/${PORTNAME:S|.pl||} @@ -15,13 +15,13 @@ MAINTAINER= takefu@airport.fm COMMENT= Perl library for Japanese character code conversion +LICENSE= GPLv1 ART10 +LICENSE_COMB= dual + USE_PERL5_RUN= yes PLIST_FILES= ${SITE_PERL_REL}/${PORTNAME} NO_BUILD= yes -LICENSE= GPLv1 ART10 -LICENSE_COMB= dual - pre-install: @cd ${WRKSRC}; ${PERL} ${WRKSRC}/test.pl diff -ruN /usr/ports/japanese/jacode.pl/distinfo japanese/jacode.pl/distinfo --- /usr/ports/japanese/jacode.pl/distinfo 2011-05-31 00:12:45.000000000 +0900 +++ japanese/jacode.pl/distinfo 2011-12-26 11:20:17.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (jacode-2.13.4.9.tar.gz) = 6a53976fbc7f2abcba6dbba6203366912a9a9b297548cc22f4a5ed12fa99c08c -SIZE (jacode-2.13.4.9.tar.gz) = 285542 +SHA256 (jacode-2.13.4.10.tar.gz) = 051ae8d11805a1673942373c386a41d00c9e51e9ef9a297a9a85d74a90c24105 +SIZE (jacode-2.13.4.10.tar.gz) = 291038 --- jacode.pl.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 02:50:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB0A2106566C; Mon, 26 Dec 2011 02:50: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 B2ECA8FC0C; Mon, 26 Dec 2011 02:50:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ2oJnI028442; Mon, 26 Dec 2011 02:50:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ2oJ0Q028433; Mon, 26 Dec 2011 02:50:19 GMT (envelope-from edwin) Date: Mon, 26 Dec 2011 02:50:19 GMT Message-Id: <201112260250.pBQ2oJ0Q028433@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163621: [MAINTAINER] devel/p5-POE-Quickie: Update to 0.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, 26 Dec 2011 02:50:20 -0000 Synopsis: [MAINTAINER] devel/p5-POE-Quickie: Update to 0.18 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 26 02:50:19 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163621 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 03:17:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFA0B106566B; Mon, 26 Dec 2011 03:17:26 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 857148FC1A; Mon, 26 Dec 2011 03:17:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ3HQXr055155; Mon, 26 Dec 2011 03:17:26 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ3HPF5055149; Mon, 26 Dec 2011 03:17:25 GMT (envelope-from eadler) Date: Mon, 26 Dec 2011 03:17:25 GMT Message-Id: <201112260317.pBQ3HPF5055149@freefall.freebsd.org> To: jnlin@csie.nctu.edu.tw, komarov@valerka.net, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163150: [patch][update] net/scribe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 03:17:26 -0000 Synopsis: [patch][update] net/scribe State-Changed-From-To: open->feedback State-Changed-By: eadler State-Changed-When: Mon Dec 26 03:17:24 UTC 2011 State-Changed-Why: gmake[3]: *** No rule to make target en-cpp/scribe.cpp', needed by scribe.o. Stop. -- fails to compile http://www.freebsd.org/cgi/query-pr.cgi?pr=163150 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 05:05:53 2011 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 C54E71065675 for ; Mon, 26 Dec 2011 05:05:53 +0000 (UTC) (envelope-from jbeich@tormail.net) Received: from server2.hudsonvalleyhost.com (server2.hudsonvalleyhost.com [66.7.195.77]) by mx1.freebsd.org (Postfix) with ESMTP id 93AC38FC12 for ; Mon, 26 Dec 2011 05:05:53 +0000 (UTC) Received: from rainbowwarrior.torservers.net ([77.247.181.164]:64890 helo=internal.tormail.net) by server2.hudsonvalleyhost.com with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.69) (envelope-from ) id 1Rf2Sp-002ooy-S2; Sun, 25 Dec 2011 23:47:09 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.net; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:Subject:Cc:To:From; bh=F4iX3Bfy8rTN5Lj5RYR1EbklE/3xj4Wq6erFYNuZx28=; b=NxMynTxIWLsIAoRC3EY2EFio+3bqpdEAbT6Y0abmHgyBfV08sGs4U/YvyZ3Lrt44wbOIeVuj77dDXqPkWwMD/abxGufFxLdWZJRv5vfyH9p4ieRSwQ6cZ82xzAhZ+5h16WZzLaAMYW5h+Eh32lF0IfhsVYYYdsmGM0ci0q22TrE=; Received: from jbeich by internal.tormail.net with local (Exim 4.63) (envelope-from ) id 1Rf2Sf-00039B-Rb; Mon, 26 Dec 2011 04:46:59 +0000 From: Jan Beich To: eadler@FreeBSD.org Date: Mon, 26 Dec 2011 04:45:31 +0000 References: <201112251742.pBPHgw4M023333@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1Rf2Sf-00039B-Rb@internal.tormail.net> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server2.hudsonvalleyhost.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tormail.net X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-ports-bugs@FreeBSD.org, kaiwang27@gmail.com Subject: Re: ports/159313: sysutils/uhidd: uhidd-devd.conf.sample doesn't work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 05:05:53 -0000 eadler@FreeBSD.org writes: > State-Changed-From-To: feedback->closed > State-Changed-By: eadler > State-Changed-When: Sun Dec 25 17:42:58 UTC 2011 > State-Changed-Why: > wait until the new version is released Is there a release in sight? For example, while r173 fixes one issue r171 introduces another, e.g. $ uhidd -d -vvv -o -c /dev/null /dev/ugen4.2 ugen4.2[0]-> HID interface ugen4.2[0]-> Report descriptor size = 60 ugen4.2[0]-> Kernel driver is active ugen4.2[0]-> Abort attach since kernel driver is active ugen4.2[1]-> HID interface ugen4.2[1]-> Report descriptor size = 86 ugen4.2[1]-> Kernel driver is active ugen4.2[1]-> Abort attach since kernel driver is active uhidd[12408]: terminated From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 05:28:01 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50AA110656D4; Mon, 26 Dec 2011 05:28:01 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 284A98FC15; Mon, 26 Dec 2011 05:28:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ5S0hX078572; Mon, 26 Dec 2011 05:28:00 GMT (envelope-from stephen@freefall.freebsd.org) Received: (from stephen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ5S0px078568; Mon, 26 Dec 2011 05:28:00 GMT (envelope-from stephen) Date: Mon, 26 Dec 2011 05:28:00 GMT Message-Id: <201112260528.pBQ5S0px078568@freefall.freebsd.org> To: stephen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stephen@FreeBSD.org From: stephen@FreeBSD.org Cc: Subject: Re: ports/162896: games/yamsweeper crashs by segmentation fault under amd64 environment X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 05:28:01 -0000 Synopsis: games/yamsweeper crashs by segmentation fault under amd64 environment Responsible-Changed-From-To: freebsd-ports-bugs->stephen Responsible-Changed-By: stephen Responsible-Changed-When: Mon Dec 26 05:27:32 UTC 2011 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=162896 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 05:49:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DB42106564A; Mon, 26 Dec 2011 05:49:02 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D7A198FC15; Mon, 26 Dec 2011 05:49:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ5n1GD097711; Mon, 26 Dec 2011 05:49:01 GMT (envelope-from stephen@freefall.freebsd.org) Received: (from stephen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ5n1Na097706; Mon, 26 Dec 2011 05:49:01 GMT (envelope-from stephen) Date: Mon, 26 Dec 2011 05:49:01 GMT Message-Id: <201112260549.pBQ5n1Na097706@freefall.freebsd.org> To: pmn@bakarika.net, stephen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: stephen@FreeBSD.org Cc: Subject: Re: ports/161455: multimedia/transcode should depend on ffmpeg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 05:49:02 -0000 Synopsis: multimedia/transcode should depend on ffmpeg State-Changed-From-To: open->feedback State-Changed-By: stephen State-Changed-When: Mon Dec 26 05:46:34 UTC 2011 State-Changed-Why: cyberbotx@cyberbotx.com is the maintainer, and he needs to be informed of this PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=161455 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 06:00:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E29CA106564A for ; Mon, 26 Dec 2011 06:00:28 +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 B59D68FC0A for ; Mon, 26 Dec 2011 06:00:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ60S3N006409 for ; Mon, 26 Dec 2011 06:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ60SP8006407; Mon, 26 Dec 2011 06:00:28 GMT (envelope-from gnats) Date: Mon, 26 Dec 2011 06:00:28 GMT Message-Id: <201112260600.pBQ60SP8006407@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Stephen Montgomery-Smith Cc: Subject: Re: ports/161455: multimedia/transcode should depend on ffmpeg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stephen Montgomery-Smith List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2011 06:00:29 -0000 The following reply was made to PR ports/161455; it has been noted by GNATS. From: Stephen Montgomery-Smith To: bug-followup@FreeBSD.org, pmn@bakarika.net, cyberbotx@cyberbotx.com Cc: Subject: Re: ports/161455: multimedia/transcode should depend on ffmpeg Date: Sun, 25 Dec 2011 23:52:11 -0600 The maintainer of this port is cyberbotx@cyberbotx.com, but somehow the automatic tool that should have sent him an email and asked for his feedback didn't operate. So I have done it manually. It seems to me that the port already contains a dependency between multimedia/transcode and multimedia/ffmpeg. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 06:10:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEF3410656EA for ; Mon, 26 Dec 2011 06:10: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 5FC128FC1A for ; Mon, 26 Dec 2011 06:10:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ6AK2U015123 for ; Mon, 26 Dec 2011 06:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ6AKjh015122; Mon, 26 Dec 2011 06:10:20 GMT (envelope-from gnats) Date: Mon, 26 Dec 2011 06:10:20 GMT Message-Id: <201112260610.pBQ6AKjh015122@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Stephen Montgomery-Smith Cc: Subject: Re: ports/163584: net/xorp fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stephen Montgomery-Smith List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2011 06:10:20 -0000 The following reply was made to PR ports/163584; it has been noted by GNATS. From: Stephen Montgomery-Smith To: bug-followup@FreeBSD.org, acc@hexadecagram.org Cc: Subject: Re: ports/163584: net/xorp fails to build Date: Mon, 26 Dec 2011 00:01:17 -0600 I was unable to reproduce this fault. Which options did you have set when you built it? Getting rid of these kinds of errors is quite easy to do. But it would be a kind of bandaid fix. I notice that the source web site has version 1.8.4. (Even the xorp-devel port is very out of date.) What really needs to happen is that someone needs to take maintainership of this port, and update it. This needs to be done by someone with a vested interest in keeping this software alive. If you are willing to take maintainership, email me or someone else who can give it to you. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 06:46:31 2011 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 D1EF0106575E for ; Mon, 26 Dec 2011 06:46:31 +0000 (UTC) (envelope-from cyberbotx@cyberbotx.com) Received: from qmta12.westchester.pa.mail.comcast.net (qmta12.westchester.pa.mail.comcast.net [76.96.59.227]) by mx1.freebsd.org (Postfix) with ESMTP id 940EE8FC13 for ; Mon, 26 Dec 2011 06:46:31 +0000 (UTC) Received: from omta17.westchester.pa.mail.comcast.net ([76.96.62.89]) by qmta12.westchester.pa.mail.comcast.net with comcast id DiZF1i0011vXlb85CiZFkl; Mon, 26 Dec 2011 06:33:15 +0000 Received: from kirby.cyberbotx.com ([69.244.146.119]) by omta17.westchester.pa.mail.comcast.net with comcast id DiZB1i0062anbQt3diZEan; Mon, 26 Dec 2011 06:33:15 +0000 Message-ID: <4EF81526.3010402@cyberbotx.com> Date: Mon, 26 Dec 2011 01:33:10 -0500 From: Naram Qashat User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:8.0) Gecko/20111108 Thunderbird/8.0 MIME-Version: 1.0 To: Stephen Montgomery-Smith References: <201112260600.pBQ60SP8006407@freefall.freebsd.org> In-Reply-To: <201112260600.pBQ60SP8006407@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/161455: multimedia/transcode should depend on ffmpeg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 06:46:31 -0000 If I understand the bug report properly, then yes, transcode used to not work with ffmpeg-devel (which I assume is at 0.8.x, I haven't looked), but version 1.1.6 included compatibility with that version of ffmpeg, and the port is now up to version 1.1.7 of transcode, so I believe the bug in this report no longer exists. Thanks, Naram Qashat On 12/26/11 01:00, Stephen Montgomery-Smith wrote: > The following reply was made to PR ports/161455; it has been noted by GNATS. > > From: Stephen Montgomery-Smith > To: bug-followup@FreeBSD.org, pmn@bakarika.net, cyberbotx@cyberbotx.com > Cc: > Subject: Re: ports/161455: multimedia/transcode should depend on ffmpeg > Date: Sun, 25 Dec 2011 23:52:11 -0600 > > The maintainer of this port is cyberbotx@cyberbotx.com, but somehow the > automatic tool that should have sent him an email and asked for his > feedback didn't operate. So I have done it manually. > > It seems to me that the port already contains a dependency between > multimedia/transcode and multimedia/ffmpeg. > _______________________________________________ > 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" > From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 07:20:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09BEB1065675 for ; Mon, 26 Dec 2011 07: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 DA0578FC0C for ; Mon, 26 Dec 2011 07:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ7K8tD084500 for ; Mon, 26 Dec 2011 07:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ7K8Cl084499; Mon, 26 Dec 2011 07:20:08 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 07:20:08 GMT Resent-Message-Id: <201112260720.pBQ7K8Cl084499@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, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADDFC106566B for ; Mon, 26 Dec 2011 07:12:27 +0000 (UTC) (envelope-from gasol@aqua.pixnet.net) Received: from epaper.pixnet.net (srvnat.pixnet.tw [60.199.247.250]) by mx1.freebsd.org (Postfix) with ESMTP id 827BC8FC15 for ; Mon, 26 Dec 2011 07:12:26 +0000 (UTC) Message-Id: <201112260712.pBQ7COu8053885@aqua> Date: Mon, 26 Dec 2011 15:12:24 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163624: [NEW PORT] databases/php5-pdo_cassandra: PDO driver for Apache Cassandra X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 07:20:09 -0000 >Number: 163624 >Category: ports >Synopsis: [NEW PORT] databases/php5-pdo_cassandra: PDO driver for Apache Cassandra >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 Dec 26 07:20:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD aqua 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: PDO driver for Apache Cassandra Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store. Cassandra brings together the distributed systems technologies from Dynamo and the data model from Google's BigTable. Like Dynamo, Cassandra is eventually consistent. Like BigTable, Cassandra provides a ColumnFamily-based data model richer than typical key/value systems. WWW: http://code.google.com/a/apache-extras.org/p/cassandra-pdo/ Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- php5-pdo_cassandra-0.2.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: # # php5-pdo_cassandra # php5-pdo_cassandra/Makefile # php5-pdo_cassandra/distinfo # php5-pdo_cassandra/pkg-descr # echo c - php5-pdo_cassandra mkdir -p php5-pdo_cassandra > /dev/null 2>&1 echo x - php5-pdo_cassandra/Makefile sed 's/^X//' >php5-pdo_cassandra/Makefile << 'ec83e92b6fe4309120490a4cbc0ae513' X# New ports collection makefile for: php5-pdo_cassandra X# Date created: 2011-08-03 X# Whom: Gasol Wu X# X# $FreeBSD$ X# X XPORTNAME= pdo_cassandra XPORTVERSION= 0.2.1 XCATEGORIES= databases XMASTER_SITES= https://github.com/${GITHUB_USER}/php-${PORTNAME}/tarball/${GITREVISION}/ XPKGNAMEPREFIX= php5- XDISTNAME= ${GITHUB_USER}-php-${PORTNAME}-${GITTAG}-11-g${GITREVISION} X XMAINTAINER= gasol.wu@gmail.com XCOMMENT= PDO driver for Apache Cassandra X XLIB_DEPENDS= boost_iostreams:${PORTSDIR}/devel/boost-libs \ X thrift:${PORTSDIR}/devel/thrift X XGITREVISION= 8ae48dd XGITTAG= 0.8-support XGITHUB_USER= mkoppanen XFETCH_ARGS= -pRr XWRKSRC= ${WRKDIR}/${GITHUB_USER}-php-${PORTNAME}-${GITREVISION} X XUSE_PHP= pdo XUSE_PHPEXT= yes XDEFAULT_PHP_VER=5 XIGNORE_WITH_PHP=4 52 X X.include ec83e92b6fe4309120490a4cbc0ae513 echo x - php5-pdo_cassandra/distinfo sed 's/^X//' >php5-pdo_cassandra/distinfo << '1bda59f7696bcddbca19419e2faed0a2' XSHA256 (mkoppanen-php-pdo_cassandra-0.8-support-11-g8ae48dd.tar.gz) = e4745e220d6c310fa21c8892204a1cf57968427e249291ca3dabdfb5b378e87d XSIZE (mkoppanen-php-pdo_cassandra-0.8-support-11-g8ae48dd.tar.gz) = 32643 1bda59f7696bcddbca19419e2faed0a2 echo x - php5-pdo_cassandra/pkg-descr sed 's/^X//' >php5-pdo_cassandra/pkg-descr << '2c4267e51e06e80d48a7fb8e0358bec0' XPDO driver for Apache Cassandra X XCassandra is a highly scalable, eventually consistent, distributed, Xstructured key-value store. Cassandra brings together the distributed Xsystems technologies from Dynamo and the data model from Google's XBigTable. Like Dynamo, Cassandra is eventually consistent. Like XBigTable, Cassandra provides a ColumnFamily-based data model richer Xthan typical key/value systems. X XWWW: http://code.google.com/a/apache-extras.org/p/cassandra-pdo/ 2c4267e51e06e80d48a7fb8e0358bec0 exit --- php5-pdo_cassandra-0.2.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 09:07:53 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CED8B1065672; Mon, 26 Dec 2011 09:07:53 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A58298FC0A; Mon, 26 Dec 2011 09:07:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQ97r8Y010313; Mon, 26 Dec 2011 09:07:53 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQ97rwI010309; Mon, 26 Dec 2011 09:07:53 GMT (envelope-from culot) Date: Mon, 26 Dec 2011 09:07:53 GMT Message-Id: <201112260907.pBQ97rwI010309@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/163622: [MAINTAINER] japanese/jacode.pl: Update to 2.13.4.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: Mon, 26 Dec 2011 09:07:53 -0000 Synopsis: [MAINTAINER] japanese/jacode.pl: Update to 2.13.4.10 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Mon Dec 26 09:07:53 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163622 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 11:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BF8D106564A for ; Mon, 26 Dec 2011 11: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 3873D8FC1E for ; Mon, 26 Dec 2011 11:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQBACvC024634 for ; Mon, 26 Dec 2011 11:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQBACVV024633; Mon, 26 Dec 2011 11:10:12 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 11:10:12 GMT Resent-Message-Id: <201112261110.pBQBACVV024633@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, Dmitriy Limonov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D129106564A for ; Mon, 26 Dec 2011 11:04:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E5F6D8FC15 for ; Mon, 26 Dec 2011 11:04:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBQB4ZgP086529 for ; Mon, 26 Dec 2011 11:04:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBQB4Zfc086503; Mon, 26 Dec 2011 11:04:35 GMT (envelope-from nobody) Message-Id: <201112261104.pBQB4Zfc086503@red.freebsd.org> Date: Mon, 26 Dec 2011 11:04:35 GMT From: Dmitriy Limonov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163626: [Update] net-p2p/ncdc to 1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 11:10:12 -0000 >Number: 163626 >Category: ports >Synopsis: [Update] net-p2p/ncdc to 1.6 >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 Dec 26 11:10:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Dmitriy Limonov >Release: FreeBSD 8.2-RELEASE-p5 amd64 >Organization: >Environment: FreeBSD excluzive.ws 8.2-RELEASE-p5 FreeBSD 8.2-RELEASE-p5 #0: Sun Dec 25 09:12:20 MSK 2011 earl@excluzive.ws:/usr/obj/usr/src/sys/EXCLUZIVE amd64 >Description: Update ncdc to version 1.6 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Naur ncdc.orig/Makefile ncdc/Makefile --- ncdc.orig/Makefile 2011-12-25 11:26:30.000000000 +0000 +++ ncdc/Makefile 2011-12-26 10:33:31.634985706 +0000 @@ -6,7 +6,7 @@ # PORTNAME= ncdc -PORTVERSION= 1.5 +PORTVERSION= 1.6 CATEGORIES= net-p2p MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://dev.yorhel.nl/download/ @@ -15,18 +15,35 @@ MAINTAINER= earl1k@mail.ru COMMENT= Lightweight direct connect client with ncurses interface -LIB_DEPENDS= gdbm:${PORTSDIR}/databases/gdbm \ +LIB_DEPENDS= sqlite3:${PORTSDIR}/databases/sqlite3 \ xml2:${PORTSDIR}/textproc/libxml2 +OPTIONS= GDBM "Build ncdc-db-upgrade" off + USE_GNOME= glib20 USE_GMAKE= yes GNU_CONFIGURE= yes MAKEFILE= GNUmakefile -MAN1= ncdc.1 ncdc-gen-cert.1 +MAN1= ncdc.1 ncdc-gen-cert.1 ncdc-db-upgrade.1 PLIST_FILES= bin/ncdc bin/ncdc-gen-cert #force base compiler,linker flags to avoid linking to ncurses from ports CFLAGS+= -I/usr/include -I${LOCALBASE}/include LDFLAGS+= -L/usr/lib -L${LOCALBASE}/lib +.include + +.if defined(WITH_GDBM) +LIB_DEPENDS+= gdbm:${PORTSDIR}/databases/gdbm +PLIST_FILES+= bin/ncdc-db-upgrade +.else +post-patch: + @${REINPLACE_CMD} \ + -e '/#include /d' \ + ${WRKSRC}/src/fl_local.c + @${REINPLACE_CMD} \ + -e '/have_gdbm=yes/d' \ + ${WRKSRC}/configure +.endif + .include diff -Naur ncdc.orig/distinfo ncdc/distinfo --- ncdc.orig/distinfo 2011-12-25 11:26:30.000000000 +0000 +++ ncdc/distinfo 2011-12-26 08:12:25.285875314 +0000 @@ -1,2 +1,2 @@ -SHA256 (ncdc-1.5.tar.gz) = d6bd0e6a9e4852a4bbf4249954d65863b1f9dcc0064eb9923f3a1e95e9c1fd03 -SIZE (ncdc-1.5.tar.gz) = 282706 +SHA256 (ncdc-1.6.tar.gz) = 13d898455c5892364ff0769be76cc5fb188a801b08ba3a646e0ecf217db6ddfc +SIZE (ncdc-1.6.tar.gz) = 304918 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 11:11:52 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B03B10656D5; Mon, 26 Dec 2011 11:11:52 +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 010F38FC0C; Mon, 26 Dec 2011 11:11:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQBBpdU032655; Mon, 26 Dec 2011 11:11:51 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQBBpWm032646; Mon, 26 Dec 2011 11:11:51 GMT (envelope-from edwin) Date: Mon, 26 Dec 2011 11:11:51 GMT Message-Id: <201112261111.pBQBBpWm032646@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/163626: [Update] net-p2p/ncdc to 1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 11:11:52 -0000 Synopsis: [Update] net-p2p/ncdc to 1.6 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Mon Dec 26 11:11:51 UTC 2011 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163626 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 12:00:31 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1BF910656A3 for ; Mon, 26 Dec 2011 12:00:31 +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 069878FC18 for ; Mon, 26 Dec 2011 12:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQC0TpA074207 for ; Mon, 26 Dec 2011 12:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQC0TbT074206; Mon, 26 Dec 2011 12:00:29 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 12:00:29 GMT Resent-Message-Id: <201112261200.pBQC0TbT074206@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, Grzegorz Blach Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AD8C1065672 for ; Mon, 26 Dec 2011 11:52:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 097A38FC12 for ; Mon, 26 Dec 2011 11:52:25 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBQBqOXh060781 for ; Mon, 26 Dec 2011 11:52:24 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBQBqO62060779; Mon, 26 Dec 2011 11:52:24 GMT (envelope-from nobody) Message-Id: <201112261152.pBQBqO62060779@red.freebsd.org> Date: Mon, 26 Dec 2011 11:52:24 GMT From: Grzegorz Blach To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163627: mail/rss2email crash after py-html2text upgraded to 3.200.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, 26 Dec 2011 12:00:31 -0000 >Number: 163627 >Category: ports >Synopsis: mail/rss2email crash after py-html2text upgraded to 3.200.1 >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: Mon Dec 26 12:00:29 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Grzegorz Blach >Release: 8.2 i386 >Organization: >Environment: FreeBSD ip-10-117-59-81 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Aug 4 15:39:43 UTC 2011 root@ip-10-17-5-252:/usr/obj/i386/usr/src/sys/XEN i386 >Description: After I updated textproc/py-html2text, I try to fetch new feeds, but rss2email is crashing with this message: === rss2email encountered a problem with this feed === === See the rss2email FAQ at http://www.allthingsrss.com/rss2email/ for assistance === === If this occurs repeatedly, send this to lindsey@allthingsrss.com === E: could not parse http://bash.org.pl/rss Traceback (most recent call last): File "/usr/local/share/rss2email/rss2email.py", line 677, in run name = h2t.unescape(getName(r, entry)) AttributeError: 'module' object has no attribute 'unescape' rss2email 2.70 feedparser 5.0.1 html2text 3.200.1 Python 2.7.2 (default, Dec 13 2011, 15:41:09) [GCC 4.2.1 20070719 [FreeBSD]] === END HERE === >How-To-Repeat: install rss2email-2.70 & py-html2text-3.200.1 try to fetch any feed: : r2e new user@example.com : r2e add http://bash.org.pl/rss : r2e run >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 12:00:47 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E93DE10658EC; Mon, 26 Dec 2011 12:00:47 +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 BF1868FC14; Mon, 26 Dec 2011 12:00:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQC0lTY074633; Mon, 26 Dec 2011 12:00:47 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQC0lqh074624; Mon, 26 Dec 2011 12:00:47 GMT (envelope-from edwin) Date: Mon, 26 Dec 2011 12:00:47 GMT Message-Id: <201112261200.pBQC0lqh074624@freefall.freebsd.org> To: magik@roorback.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163627: mail/rss2email crash after py-html2text upgraded to 3.200.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, 26 Dec 2011 12:00:48 -0000 Synopsis: mail/rss2email crash after py-html2text upgraded to 3.200.1 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Dec 26 12:00:46 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163627 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 12:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70D501065670 for ; Mon, 26 Dec 2011 12: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 5805A8FC17 for ; Mon, 26 Dec 2011 12:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQCAADG083151 for ; Mon, 26 Dec 2011 12:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQCAAAL083150; Mon, 26 Dec 2011 12:10:10 GMT (envelope-from gnats) Date: Mon, 26 Dec 2011 12:10:10 GMT Message-Id: <201112261210.pBQCAAAL083150@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163627: mail/rss2email crash after py-html2text upgraded to 3.200.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: Mon, 26 Dec 2011 12:10:10 -0000 The following reply was made to PR ports/163627; it has been noted by GNATS. From: Edwin Groothuis To: chifeng@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/163627: mail/rss2email crash after py-html2text upgraded to 3.200.1 Date: Mon, 26 Dec 2011 12:00:43 UT Maintainer of mail/rss2email, Please note that PR ports/163627 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/163627 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 12:20:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E43E106566B for ; Mon, 26 Dec 2011 12: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 04DE78FC0A for ; Mon, 26 Dec 2011 12:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQCKBb5093151 for ; Mon, 26 Dec 2011 12:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQCKB4U093150; Mon, 26 Dec 2011 12:20:11 GMT (envelope-from gnats) Date: Mon, 26 Dec 2011 12:20:11 GMT Message-Id: <201112261220.pBQCKB4U093150@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: =?ISO-8859-1?Q?Otac=EDlio?= Cc: Subject: Re: ports/163594: [patch] devel/flexdock Update to 1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-1?Q?Otac=EDlio?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2011 12:20:12 -0000 The following reply was made to PR ports/163594; it has been noted by GNATS. From: =?ISO-8859-1?Q?Otac=EDlio?= To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163594: [patch] devel/flexdock Update to 1.1 Date: Mon, 26 Dec 2011 08:44:13 -0300 Hello. I aprove the patch. Thanks a lot. On 24/12/2011 20:00, Edwin Groothuis wrote: > Maintainer of devel/flexdock, > > Please note that PR ports/163594 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/163594 > From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 12:41:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6030F106564A; Mon, 26 Dec 2011 12:41:15 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 365C88FC17; Mon, 26 Dec 2011 12:41:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQCfFHJ020209; Mon, 26 Dec 2011 12:41:15 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQCfFE5020201; Mon, 26 Dec 2011 12:41:15 GMT (envelope-from pawel) Date: Mon, 26 Dec 2011 12:41:15 GMT Message-Id: <201112261241.pBQCfFE5020201@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/163473: net-mgmt/collectd5 port update: new KNOBS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 12:41:15 -0000 Synopsis: net-mgmt/collectd5 port update: new KNOBS Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Mon Dec 26 12:41:14 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163473 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 12:41:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3D651065675; Mon, 26 Dec 2011 12:41:26 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AA8068FC13; Mon, 26 Dec 2011 12:41:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQCfQab020727; Mon, 26 Dec 2011 12:41:26 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQCfQ1Y020722; Mon, 26 Dec 2011 12:41:26 GMT (envelope-from pawel) Date: Mon, 26 Dec 2011 12:41:26 GMT Message-Id: <201112261241.pBQCfQ1Y020722@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/163475: net-mgmt/collectd port update with new KNOBS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 12:41:26 -0000 Synopsis: net-mgmt/collectd port update with new KNOBS Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Mon Dec 26 12:41:26 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163475 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 14:49:54 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 218AB106566B; Mon, 26 Dec 2011 14:49:54 +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 EAB868FC15; Mon, 26 Dec 2011 14:49:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQEnrX0030816; Mon, 26 Dec 2011 14:49:53 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQEnr6x030812; Mon, 26 Dec 2011 14:49:53 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 14:49:53 GMT Message-Id: <201112261449.pBQEnr6x030812@freefall.freebsd.org> To: otacilio.neto@bsd.com.br, rfarmer@predatorlabs.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163594: [patch] devel/flexdock Update to 1.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, 26 Dec 2011 14:49:54 -0000 Synopsis: [patch] devel/flexdock Update to 1.1 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Mon Dec 26 14:49:48 UTC 2011 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=163594 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 14:50:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 161E51065672 for ; Mon, 26 Dec 2011 14:50: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 E3D7B8FC13 for ; Mon, 26 Dec 2011 14:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQEoD8l030880 for ; Mon, 26 Dec 2011 14:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQEoDa8030879; Mon, 26 Dec 2011 14:50:13 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 14:50:13 GMT Resent-Message-Id: <201112261450.pBQEoDa8030879@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 56CED106566B for ; Mon, 26 Dec 2011 14:44:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 43FF28FC14 for ; Mon, 26 Dec 2011 14:44:30 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBQEiUnf009034 for ; Mon, 26 Dec 2011 14:44:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBQEiUYN009032; Mon, 26 Dec 2011 14:44:30 GMT (envelope-from nobody) Message-Id: <201112261444.pBQEiUYN009032@red.freebsd.org> Date: Mon, 26 Dec 2011 14:44:30 GMT From: Pawel Pekala To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163628: x11-themes/gtk-equinox-engine update to version 1.50 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 14:50:14 -0000 >Number: 163628 >Category: ports >Synopsis: x11-themes/gtk-equinox-engine update to version 1.50 >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 Dec 26 14:50:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: FreeBSD 8.2-STABLE >Organization: >Environment: FreeBSD blaviken.slowicza.org 8.2-STABLE FreeBSD 8.2-STABLE #1: Sun Jul 3 15:11:21 CEST 2011 corn@blaviken.slowicza.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: - Update port to version 1.50 - Remove bits for 6.x, not supported anymore - Use bsd.port.options.mk instead bsd.port.pre.mk - Themes are now in separate tarball >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/x11-themes/gtk-equinox-engine/Makefile gtk-equinox-engine/Makefile --- /usr/ports/x11-themes/gtk-equinox-engine/Makefile 2010-11-14 23:14:41.000000000 +0100 +++ gtk-equinox-engine/Makefile 2011-12-26 13:19:55.000000000 +0100 @@ -6,12 +6,13 @@ # PORTNAME= equinox -PORTVERSION= 1.30.2 +PORTVERSION= 1.50 CATEGORIES= x11-themes MASTER_SITES= http://gnome-look.org/CONTENT/content-files/ PKGNAMEPREFIX= gtk- PKGNAMESUFFIX= -engine -DISTNAME= 121881-equinox-1.30 +DISTFILES= 121881-${PORTNAME}-${PORTVERSION}.tar.gz \ + 140449-${PORTNAME}-themes-${PORTVERSION}.tar.gz MAINTAINER= dsh@bamus.cz COMMENT= Equinox GTK+ 2.x engine and themes @@ -19,35 +20,27 @@ BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gtk-engines-2.pc:${PORTSDIR}/x11-themes/gtk-engines2 RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gtk-engines-2.pc:${PORTSDIR}/x11-themes/gtk-engines2 -USE_BZIP2= yes USE_GNOME= gtk20 GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/equinox-1.30 +WRKSRC= ${WRKDIR}/equinox-${PORTVERSION} DATADIR= ${PREFIX}/share/themes -SUBDIRS= Equinox "Equinox Classic" "Equinox Classic Glass" \ - "Equinox Evolution" "Equinox Evolution Light" \ - "Equinox Evolution Rounded" "Equinox Evolution Squared" \ - "Equinox Glass" "Equinox Light" "Equinox Light Glass" \ - "Equinox Wide" +SUBDIRS= "Equinox Evolution" "Equinox Evolution Dawn" \ + "Equinox Evolution Dawn" "Equinox Evolution Dusk" \ + "Equinox Evolution Light" "Equinox Evolution Midnight" \ + "Equinox Evolution Rounded" "Equinox Evolution Squared" +EXAMPLES= "Equinox Evolution.crx" "Equinox Evolution Dawn.crx" \ + "Equinox Evolution Dusk.crx" "Equinox Evolution Midnight.crx" OPTIONS= ANIMATION "Enable animation support" on -.include +.include .if defined(WITH_ANIMATION) CONFIGURE_ARGS+= --enable-animation .endif -.if ${OSVERSION} < 700000 -BROKEN= fails to install on 6.X -.endif - -post-extract: - @cd ${WRKDIR} && ${TAR} zxf equinox-gtk-engine.tar.gz - @cd ${WRKDIR} && ${TAR} zxf equinox-themes.tar.gz - post-patch: @${FIND} ${WRKDIR} -name 'gtkrc' -exec \ ${REINPLACE_CMD} -e 's!^include "apps/nautilus\.rc"!#&!' {} + @@ -62,7 +55,7 @@ .endfor .if !defined(NOPORTEXAMPLES) ${MKDIR} ${EXAMPLESDIR} -.for i in "Equinox Evolution.crx" userChrome.css +.for i in ${EXAMPLES} ${INSTALL_DATA} ${WRKDIR}/$i ${EXAMPLESDIR} .endfor .endif @@ -71,4 +64,4 @@ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif -.include +.include diff -urN /usr/ports/x11-themes/gtk-equinox-engine/distinfo gtk-equinox-engine/distinfo --- /usr/ports/x11-themes/gtk-equinox-engine/distinfo 2010-10-30 23:22:50.000000000 +0200 +++ gtk-equinox-engine/distinfo 2011-12-25 15:52:23.000000000 +0100 @@ -1,2 +1,4 @@ -SHA256 (121881-equinox-1.30.tar.bz2) = 1fea28bb08e89c63bdcb9ba8ee612b4e8fd9bea56a715efe6d7d8bcd7848013f -SIZE (121881-equinox-1.30.tar.bz2) = 616171 +SHA256 (121881-equinox-1.50.tar.gz) = 0cf8b8cc841e0da7d4a08ab5a70d3bb330fd76bdcb03165a47aaddcd47e02227 +SIZE (121881-equinox-1.50.tar.gz) = 360957 +SHA256 (140449-equinox-themes-1.50.tar.gz) = 32b3cedfbc27e466289aa8a0b6d1f3f964a553956d94bf267bd42c749691823c +SIZE (140449-equinox-themes-1.50.tar.gz) = 507470 diff -urN /usr/ports/x11-themes/gtk-equinox-engine/pkg-plist gtk-equinox-engine/pkg-plist --- /usr/ports/x11-themes/gtk-equinox-engine/pkg-plist 2010-10-30 23:22:50.000000000 +0200 +++ gtk-equinox-engine/pkg-plist 2011-12-25 16:43:18.000000000 +0100 @@ -1,260 +1,247 @@ lib/gtk-2.0/%%GTK2_VERSION%%/engines/libequinox.la lib/gtk-2.0/%%GTK2_VERSION%%/engines/libequinox.so -%%DATADIR%%/Equinox Classic Glass/ChangeLog -%%DATADIR%%/Equinox Classic Glass/metacity-1/button_close.png -%%DATADIR%%/Equinox Classic Glass/metacity-1/button_max.png -%%DATADIR%%/Equinox Classic Glass/metacity-1/button_menu.png -%%DATADIR%%/Equinox Classic Glass/metacity-1/button_min.png -%%DATADIR%%/Equinox Classic Glass/metacity-1/dialog_close.png -%%DATADIR%%/Equinox Classic Glass/metacity-1/dialog_max.png -%%DATADIR%%/Equinox Classic Glass/metacity-1/dialog_min.png -%%DATADIR%%/Equinox Classic Glass/metacity-1/metacity-theme-1.xml -%%DATADIR%%/Equinox Classic/ChangeLog -%%DATADIR%%/Equinox Classic/metacity-1/button_close.png -%%DATADIR%%/Equinox Classic/metacity-1/button_max.png -%%DATADIR%%/Equinox Classic/metacity-1/button_menu.png -%%DATADIR%%/Equinox Classic/metacity-1/button_min.png -%%DATADIR%%/Equinox Classic/metacity-1/dialog_close.png -%%DATADIR%%/Equinox Classic/metacity-1/dialog_max.png -%%DATADIR%%/Equinox Classic/metacity-1/dialog_min.png -%%DATADIR%%/Equinox Classic/metacity-1/metacity-theme-1.xml -%%DATADIR%%/Equinox Evolution Light/ChangeLog +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Equinox Evolution.crx +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Equinox Evolution Dawn.crx +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Equinox Evolution Dusk.crx +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Equinox Evolution Midnight.crx +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/globalmenu.rc +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/gnome-system-monitor.rc +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/google-chrome.rc +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/gnome-terminal.rc +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/nautilus-elementary.rc +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/ubuntuone.rc +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/nm-applet.gtkrc +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/nautilus.rc +%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/gedit.rc +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/left_slider_normal.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/blank.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/mode_normal.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/panel_bg.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/handle-nautilus.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/breadcrumb_prelight.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/right_slider_normal.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/breadcrumb_normal.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/arrow.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/mode_prelight.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/mode_pressed.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/images/resize_grip.png +%%DATADIR%%/Equinox Evolution/gtk-2.0/gtkrc +%%DATADIR%%/Equinox Evolution/README +%%DATADIR%%/Equinox Evolution/index.theme +%%DATADIR%%/Equinox Evolution/ChangeLog +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/globalmenu.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/gnome-system-monitor.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/google-chrome.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/gnome-terminal.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/nautilus-elementary.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/rhythmbox.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/ubuntuone.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/banshee.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/nautilus.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps/gedit.rc +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/left_slider_normal.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/blank.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/mode_normal.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/panel_bg_global.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/panel_bg.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/handle-nautilus.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/breadcrumb_prelight.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/right_slider_normal.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/breadcrumb_normal.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/arrow.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/mode_prelight.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/mode_pressed.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images/resize_grip.png +%%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/gtkrc +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/button_prelight.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/min_inactive.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/metacity-theme-1.xml +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/max.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/button_normal.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/menu.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/button_inactive.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/max_inactive.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/close_inactive.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/menu_inactive.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/button_pressed.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/close.png +%%DATADIR%%/Equinox Evolution Dawn/metacity-1/min.png +%%DATADIR%%/Equinox Evolution Dawn/README +%%DATADIR%%/Equinox Evolution Dawn/index.theme +%%DATADIR%%/Equinox Evolution Dawn/ChangeLog +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/globalmenu.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/softwarecenter.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/gnome-system-monitor.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/google-chrome.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/gnome-terminal.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/nautilus-elementary.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/ubuntuone.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/banshee.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/nautilus.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps/gedit.rc +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/left_slider_normal.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/blank.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/mode_normal.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/panel_bg.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/handle-nautilus.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/breadcrumb_prelight.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/right_slider_normal.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/breadcrumb_normal.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/arrow.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/mode_prelight.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/mode_pressed.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images/resize_grip.png +%%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/gtkrc +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/button_prelight.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/min_inactive.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/metacity-theme-1.xml +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/max.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/button_normal.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/menu.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/button_inactive.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/max_inactive.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/close_inactive.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/menu_inactive.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/button_pressed.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/close.png +%%DATADIR%%/Equinox Evolution Dusk/metacity-1/min.png +%%DATADIR%%/Equinox Evolution Dusk/README +%%DATADIR%%/Equinox Evolution Dusk/index.theme +%%DATADIR%%/Equinox Evolution Dusk/ChangeLog +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/globalmenu.rc %%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/gnome-system-monitor.rc +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/nautilus-elmentary.rc +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/google-chrome.rc %%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/gnome-terminal.rc +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/nautilus-elementary.rc +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/ubuntuone.rc %%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/nautilus.rc -%%DATADIR%%/Equinox Evolution Light/gtk-2.0/gtkrc -%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/arrow.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps/gedit.rc +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/left_slider_normal.png %%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/blank.png -%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/handle-nautilus.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/mode_normal.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/panel_bg_global.png %%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/panel_bg.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/handle-nautilus.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/breadcrumb_prelight.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/right_slider_normal.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/breadcrumb_normal.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/arrow.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/mode_prelight.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/mode_pressed.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/images/resize_grip.png +%%DATADIR%%/Equinox Evolution Light/gtk-2.0/gtkrc +%%DATADIR%%/Equinox Evolution Light/README %%DATADIR%%/Equinox Evolution Light/index.theme -%%DATADIR%%/Equinox Evolution Rounded/ChangeLog -%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_inactive.png -%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_normal.png +%%DATADIR%%/Equinox Evolution Light/ChangeLog +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/fixes/fixes.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/globalmenu.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/softwarecenter.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/gnome-system-monitor.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/google-chrome.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/gnome-panel.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/gnome-terminal.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/nautilus-elementary.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/ubuntuone.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/banshee.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/nautilus.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps/gedit.rc +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/left_slider_normal.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/blank.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/mode_normal.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/panel_bg_global.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/mode_prelight_global.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/panel_bg.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/handle-nautilus.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/breadcrumb_prelight.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/right_slider_normal.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/mode_normal_global.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/breadcrumb_normal.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/arrow.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/mode_prelight.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/mode_pressed_global.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/mode_pressed.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images/resize_grip.png +%%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/gtkrc +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/button_prelight.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/min_inactive.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/metacity-theme-1.xml +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/max.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/button_normal.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/menu.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/button_inactive.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/max_inactive.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/close_inactive.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/menu_inactive.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/button_pressed.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/close.png +%%DATADIR%%/Equinox Evolution Midnight/metacity-1/min.png +%%DATADIR%%/Equinox Evolution Midnight/README +%%DATADIR%%/Equinox Evolution Midnight/index.theme +%%DATADIR%%/Equinox Evolution Midnight/ChangeLog %%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_prelight.png -%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_pressed.png -%%DATADIR%%/Equinox Evolution Rounded/metacity-1/close.png -%%DATADIR%%/Equinox Evolution Rounded/metacity-1/close_inactive.png +%%DATADIR%%/Equinox Evolution Rounded/metacity-1/min_inactive.png +%%DATADIR%%/Equinox Evolution Rounded/metacity-1/metacity-theme-1.xml %%DATADIR%%/Equinox Evolution Rounded/metacity-1/max.png -%%DATADIR%%/Equinox Evolution Rounded/metacity-1/max_inactive.png +%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_normal.png %%DATADIR%%/Equinox Evolution Rounded/metacity-1/menu.png +%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_inactive.png +%%DATADIR%%/Equinox Evolution Rounded/metacity-1/max_inactive.png +%%DATADIR%%/Equinox Evolution Rounded/metacity-1/close_inactive.png %%DATADIR%%/Equinox Evolution Rounded/metacity-1/menu_inactive.png -%%DATADIR%%/Equinox Evolution Rounded/metacity-1/metacity-theme-1.xml +%%DATADIR%%/Equinox Evolution Rounded/metacity-1/button_pressed.png +%%DATADIR%%/Equinox Evolution Rounded/metacity-1/close.png %%DATADIR%%/Equinox Evolution Rounded/metacity-1/min.png -%%DATADIR%%/Equinox Evolution Rounded/metacity-1/min_inactive.png -%%DATADIR%%/Equinox Evolution Squared/ChangeLog -%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_inactive.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_normal.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_prelight.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_pressed.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_inactive.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_normal.png +%%DATADIR%%/Equinox Evolution Rounded/ChangeLog %%DATADIR%%/Equinox Evolution Squared/metacity-1/button_prelight.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_pressed.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/close.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/close_inactive.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_pressed.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/min_inactive.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/metacity-theme-1.xml %%DATADIR%%/Equinox Evolution Squared/metacity-1/max.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/max_inactive.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_normal.png %%DATADIR%%/Equinox Evolution Squared/metacity-1/menu.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_inactive.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_normal.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_inactive.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/max_inactive.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/close_inactive.png %%DATADIR%%/Equinox Evolution Squared/metacity-1/menu_inactive.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/metacity-theme-1.xml +%%DATADIR%%/Equinox Evolution Squared/metacity-1/button_pressed.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/button2_prelight.png +%%DATADIR%%/Equinox Evolution Squared/metacity-1/close.png %%DATADIR%%/Equinox Evolution Squared/metacity-1/min.png -%%DATADIR%%/Equinox Evolution Squared/metacity-1/min_inactive.png -%%DATADIR%%/Equinox Evolution/ChangeLog -%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/gnome-system-monitor.rc -%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/gnome-terminal.rc -%%DATADIR%%/Equinox Evolution/gtk-2.0/apps/nautilus.rc -%%DATADIR%%/Equinox Evolution/gtk-2.0/gtkrc -%%DATADIR%%/Equinox Evolution/gtk-2.0/images/arrow.png -%%DATADIR%%/Equinox Evolution/gtk-2.0/images/blank.png -%%DATADIR%%/Equinox Evolution/gtk-2.0/images/handle-nautilus.png -%%DATADIR%%/Equinox Evolution/gtk-2.0/images/panel_bg.png -%%DATADIR%%/Equinox Evolution/index.theme -%%DATADIR%%/Equinox Glass/ChangeLog -%%DATADIR%%/Equinox Glass/gtk-2.0/apps/gnome-system-monitor.rc -%%DATADIR%%/Equinox Glass/gtk-2.0/apps/gnome-terminal.rc -%%DATADIR%%/Equinox Glass/gtk-2.0/apps/nautilus.rc -%%DATADIR%%/Equinox Glass/gtk-2.0/gtkrc -%%DATADIR%%/Equinox Glass/gtk-2.0/images/arrow.png -%%DATADIR%%/Equinox Glass/gtk-2.0/images/blank.png -%%DATADIR%%/Equinox Glass/gtk-2.0/images/handle-nautilus.png -%%DATADIR%%/Equinox Glass/gtk-2.0/images/panel_bg.png -%%DATADIR%%/Equinox Glass/index.theme -%%DATADIR%%/Equinox Glass/metacity-1/active_close.png -%%DATADIR%%/Equinox Glass/metacity-1/active_close_on.png -%%DATADIR%%/Equinox Glass/metacity-1/active_close_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/active_max.png -%%DATADIR%%/Equinox Glass/metacity-1/active_max_on.png -%%DATADIR%%/Equinox Glass/metacity-1/active_max_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/active_menu.png -%%DATADIR%%/Equinox Glass/metacity-1/active_menu_on.png -%%DATADIR%%/Equinox Glass/metacity-1/active_menu_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/active_min.png -%%DATADIR%%/Equinox Glass/metacity-1/active_min_on.png -%%DATADIR%%/Equinox Glass/metacity-1/active_min_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_close.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_close_on.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_close_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_max.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_max_on.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_max_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_min.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_min_on.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_active_min_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_close.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_close_on.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_close_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_max.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_max_on.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_max_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_min.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_min_on.png -%%DATADIR%%/Equinox Glass/metacity-1/dialog_inactive_min_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_close.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_close_on.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_close_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_max.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_max_on.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_max_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_menu.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_menu_on.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_menu_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_min.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_min_on.png -%%DATADIR%%/Equinox Glass/metacity-1/inactive_min_pressed.png -%%DATADIR%%/Equinox Glass/metacity-1/metacity-theme-1.xml -%%DATADIR%%/Equinox Light Glass/ChangeLog -%%DATADIR%%/Equinox Light Glass/metacity-1/button_close.png -%%DATADIR%%/Equinox Light Glass/metacity-1/button_max.png -%%DATADIR%%/Equinox Light Glass/metacity-1/button_menu.png -%%DATADIR%%/Equinox Light Glass/metacity-1/button_min.png -%%DATADIR%%/Equinox Light Glass/metacity-1/dialog_close.png -%%DATADIR%%/Equinox Light Glass/metacity-1/dialog_max.png -%%DATADIR%%/Equinox Light Glass/metacity-1/dialog_min.png -%%DATADIR%%/Equinox Light Glass/metacity-1/metacity-theme-1.xml -%%DATADIR%%/Equinox Light/ChangeLog -%%DATADIR%%/Equinox Light/gtk-2.0/apps/gnome-system-monitor.rc -%%DATADIR%%/Equinox Light/gtk-2.0/apps/gnome-terminal.rc -%%DATADIR%%/Equinox Light/gtk-2.0/apps/nautilus.rc -%%DATADIR%%/Equinox Light/gtk-2.0/gtkrc -%%DATADIR%%/Equinox Light/gtk-2.0/images/arrow.png -%%DATADIR%%/Equinox Light/gtk-2.0/images/blank.png -%%DATADIR%%/Equinox Light/gtk-2.0/images/handle-nautilus.png -%%DATADIR%%/Equinox Light/gtk-2.0/images/panel_bg.png -%%DATADIR%%/Equinox Light/index.theme -%%DATADIR%%/Equinox Light/metacity-1/button_close.png -%%DATADIR%%/Equinox Light/metacity-1/button_max.png -%%DATADIR%%/Equinox Light/metacity-1/button_menu.png -%%DATADIR%%/Equinox Light/metacity-1/button_min.png -%%DATADIR%%/Equinox Light/metacity-1/dialog_close.png -%%DATADIR%%/Equinox Light/metacity-1/dialog_max.png -%%DATADIR%%/Equinox Light/metacity-1/dialog_min.png -%%DATADIR%%/Equinox Light/metacity-1/metacity-theme-1.xml -%%DATADIR%%/Equinox Wide/ChangeLog -%%DATADIR%%/Equinox Wide/gtk-2.0/apps/gnome-system-monitor.rc -%%DATADIR%%/Equinox Wide/gtk-2.0/apps/gnome-terminal.rc -%%DATADIR%%/Equinox Wide/gtk-2.0/apps/nautilus.rc -%%DATADIR%%/Equinox Wide/gtk-2.0/gtkrc -%%DATADIR%%/Equinox Wide/gtk-2.0/images/arrow.png -%%DATADIR%%/Equinox Wide/gtk-2.0/images/blank.png -%%DATADIR%%/Equinox Wide/gtk-2.0/images/handle-nautilus.png -%%DATADIR%%/Equinox Wide/gtk-2.0/images/panel_bg.png -%%DATADIR%%/Equinox Wide/index.theme -%%DATADIR%%/Equinox/ChangeLog -%%DATADIR%%/Equinox/gtk-2.0/apps/gnome-system-monitor.rc -%%DATADIR%%/Equinox/gtk-2.0/apps/gnome-terminal.rc -%%DATADIR%%/Equinox/gtk-2.0/apps/nautilus.rc -%%DATADIR%%/Equinox/gtk-2.0/gtkrc -%%DATADIR%%/Equinox/gtk-2.0/images/arrow.png -%%DATADIR%%/Equinox/gtk-2.0/images/blank.png -%%DATADIR%%/Equinox/gtk-2.0/images/handle-nautilus.png -%%DATADIR%%/Equinox/gtk-2.0/images/panel_bg.png -%%DATADIR%%/Equinox/index.theme -%%DATADIR%%/Equinox/metacity-1/active_close.png -%%DATADIR%%/Equinox/metacity-1/active_close_on.png -%%DATADIR%%/Equinox/metacity-1/active_close_pressed.png -%%DATADIR%%/Equinox/metacity-1/active_max.png -%%DATADIR%%/Equinox/metacity-1/active_max_on.png -%%DATADIR%%/Equinox/metacity-1/active_max_pressed.png -%%DATADIR%%/Equinox/metacity-1/active_menu.png -%%DATADIR%%/Equinox/metacity-1/active_menu_on.png -%%DATADIR%%/Equinox/metacity-1/active_menu_pressed.png -%%DATADIR%%/Equinox/metacity-1/active_min.png -%%DATADIR%%/Equinox/metacity-1/active_min_on.png -%%DATADIR%%/Equinox/metacity-1/active_min_pressed.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_close.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_close_on.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_close_pressed.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_max.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_max_on.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_max_pressed.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_min.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_min_on.png -%%DATADIR%%/Equinox/metacity-1/dialog_active_min_pressed.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_close.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_close_on.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_close_pressed.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_max.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_max_on.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_max_pressed.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_min.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_min_on.png -%%DATADIR%%/Equinox/metacity-1/dialog_inactive_min_pressed.png -%%DATADIR%%/Equinox/metacity-1/inactive_close.png -%%DATADIR%%/Equinox/metacity-1/inactive_close_on.png -%%DATADIR%%/Equinox/metacity-1/inactive_close_pressed.png -%%DATADIR%%/Equinox/metacity-1/inactive_max.png -%%DATADIR%%/Equinox/metacity-1/inactive_max_on.png -%%DATADIR%%/Equinox/metacity-1/inactive_max_pressed.png -%%DATADIR%%/Equinox/metacity-1/inactive_menu.png -%%DATADIR%%/Equinox/metacity-1/inactive_menu_on.png -%%DATADIR%%/Equinox/metacity-1/inactive_menu_pressed.png -%%DATADIR%%/Equinox/metacity-1/inactive_min.png -%%DATADIR%%/Equinox/metacity-1/inactive_min_on.png -%%DATADIR%%/Equinox/metacity-1/inactive_min_pressed.png -%%DATADIR%%/Equinox/metacity-1/metacity-theme-1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Equinox Evolution.crx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/userChrome.css -%%PORTDOCS%%%%DOCSDIR%%/README -@dirrm %%DATADIR%%/Equinox/gtk-2.0/apps -@dirrm %%DATADIR%%/Equinox/gtk-2.0/images -@dirrm %%DATADIR%%/Equinox/gtk-2.0 -@dirrm %%DATADIR%%/Equinox/metacity-1 -@dirrm %%DATADIR%%/Equinox -@dirrm %%DATADIR%%/Equinox Classic/metacity-1 -@dirrm %%DATADIR%%/Equinox Classic -@dirrm %%DATADIR%%/Equinox Classic Glass/metacity-1 -@dirrm %%DATADIR%%/Equinox Classic Glass -@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0/apps -@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0/images -@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0 -@dirrm %%DATADIR%%/Equinox Evolution -@dirrm %%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps +%%DATADIR%%/Equinox Evolution Squared/ChangeLog +@dirrm %%DATADIR%%/Equinox Evolution Squared/metacity-1 +@dirrm %%DATADIR%%/Equinox Evolution Squared +@dirrm %%DATADIR%%/Equinox Evolution Rounded/metacity-1 +@dirrm %%DATADIR%%/Equinox Evolution Rounded +@dirrm %%DATADIR%%/Equinox Evolution Midnight/metacity-1 +@dirrm %%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/images +@dirrm %%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/fixes +@dirrm %%DATADIR%%/Equinox Evolution Midnight/gtk-2.0/apps +@dirrm %%DATADIR%%/Equinox Evolution Midnight/gtk-2.0 +@dirrm %%DATADIR%%/Equinox Evolution Midnight @dirrm %%DATADIR%%/Equinox Evolution Light/gtk-2.0/images +@dirrm %%DATADIR%%/Equinox Evolution Light/gtk-2.0/apps @dirrm %%DATADIR%%/Equinox Evolution Light/gtk-2.0 @dirrm %%DATADIR%%/Equinox Evolution Light -@dirrm %%DATADIR%%/Equinox Evolution Rounded/metacity-1 -@dirrm %%DATADIR%%/Equinox Evolution Rounded -@dirrm %%DATADIR%%/Equinox Evolution Squared/metacity-1 -@dirrm %%DATADIR%%/Equinox Evolution Squared -@dirrm %%DATADIR%%/Equinox Glass/gtk-2.0/apps -@dirrm %%DATADIR%%/Equinox Glass/gtk-2.0/images -@dirrm %%DATADIR%%/Equinox Glass/gtk-2.0 -@dirrm %%DATADIR%%/Equinox Glass/metacity-1 -@dirrm %%DATADIR%%/Equinox Glass -@dirrm %%DATADIR%%/Equinox Light/gtk-2.0/apps -@dirrm %%DATADIR%%/Equinox Light/gtk-2.0/images -@dirrm %%DATADIR%%/Equinox Light/gtk-2.0 -@dirrm %%DATADIR%%/Equinox Light/metacity-1 -@dirrm %%DATADIR%%/Equinox Light -@dirrm %%DATADIR%%/Equinox Light Glass/metacity-1 -@dirrm %%DATADIR%%/Equinox Light Glass -@dirrm %%DATADIR%%/Equinox Wide/gtk-2.0/apps -@dirrm %%DATADIR%%/Equinox Wide/gtk-2.0/images -@dirrm %%DATADIR%%/Equinox Wide/gtk-2.0 -@dirrm %%DATADIR%%/Equinox Wide -@dirrmtry %%DATADIR%% +@dirrm %%DATADIR%%/Equinox Evolution Dusk/metacity-1 +@dirrm %%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/images +@dirrm %%DATADIR%%/Equinox Evolution Dusk/gtk-2.0/apps +@dirrm %%DATADIR%%/Equinox Evolution Dusk/gtk-2.0 +@dirrm %%DATADIR%%/Equinox Evolution Dusk +@dirrm %%DATADIR%%/Equinox Evolution Dawn/metacity-1 +@dirrm %%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/images +@dirrm %%DATADIR%%/Equinox Evolution Dawn/gtk-2.0/apps +@dirrm %%DATADIR%%/Equinox Evolution Dawn/gtk-2.0 +@dirrm %%DATADIR%%/Equinox Evolution Dawn +@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0/images +@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0/apps +@dirrm %%DATADIR%%/Equinox Evolution/gtk-2.0 +@dirrm %%DATADIR%%/Equinox Evolution +@dirrm %%DATADIR%% %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +%%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrmtry lib/gtk-2.0/%%GTK2_VERSION%%/engines @dirrmtry lib/gtk-2.0/%%GTK2_VERSION%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 14:50:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73C4E1065670; Mon, 26 Dec 2011 14:50: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 498C38FC15; Mon, 26 Dec 2011 14:50:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQEoPG5031284; Mon, 26 Dec 2011 14:50:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQEoP9W031274; Mon, 26 Dec 2011 14:50:25 GMT (envelope-from edwin) Date: Mon, 26 Dec 2011 14:50:25 GMT Message-Id: <201112261450.pBQEoP9W031274@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163628: x11-themes/gtk-equinox-engine update to version 1.50 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 14:50:25 -0000 Synopsis: x11-themes/gtk-equinox-engine update to version 1.50 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 26 14:50:24 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163628 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 14:52:33 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 410D31065675; Mon, 26 Dec 2011 14:52:33 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 172E28FC14; Mon, 26 Dec 2011 14:52:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQEqW4E039188; Mon, 26 Dec 2011 14:52:32 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQEqVSu039184; Mon, 26 Dec 2011 14:52:31 GMT (envelope-from eadler) Date: Mon, 26 Dec 2011 14:52:31 GMT Message-Id: <201112261452.pBQEqVSu039184@freefall.freebsd.org> To: acc@hexadecagram.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163584: net/xorp fails 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: Mon, 26 Dec 2011 14:52:33 -0000 Synopsis: net/xorp fails to build State-Changed-From-To: open->feedback State-Changed-By: eadler State-Changed-When: Mon Dec 26 14:52:30 UTC 2011 State-Changed-Why: per stephen http://www.freebsd.org/cgi/query-pr.cgi?pr=163584 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 16:15:03 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E4211065673; Mon, 26 Dec 2011 16:15:03 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DDE4A8FC15; Mon, 26 Dec 2011 16:15:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQGF27b012569; Mon, 26 Dec 2011 16:15:02 GMT (envelope-from stephen@freefall.freebsd.org) Received: (from stephen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQGF2uR012565; Mon, 26 Dec 2011 16:15:02 GMT (envelope-from stephen) Date: Mon, 26 Dec 2011 16:15:02 GMT Message-Id: <201112261615.pBQGF2uR012565@freefall.freebsd.org> To: cyberbotx@cyberbotx.com, stephen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stephen@FreeBSD.org From: stephen@FreeBSD.org Cc: Subject: Re: ports/161455: multimedia/transcode should depend on ffmpeg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 16:15:03 -0000 Synopsis: multimedia/transcode should depend on ffmpeg Responsible-Changed-From-To: freebsd-ports-bugs->stephen Responsible-Changed-By: stephen Responsible-Changed-When: Mon Dec 26 16:14:07 UTC 2011 Responsible-Changed-Why: So followups go to me and I can act on them. http://www.freebsd.org/cgi/query-pr.cgi?pr=161455 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 16:26:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A5151065672; Mon, 26 Dec 2011 16:26:32 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D38C8FC12; Mon, 26 Dec 2011 16:26:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQGQWe9021443; Mon, 26 Dec 2011 16:26:32 GMT (envelope-from stephen@freefall.freebsd.org) Received: (from stephen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQGQWCn021439; Mon, 26 Dec 2011 16:26:32 GMT (envelope-from stephen) Date: Mon, 26 Dec 2011 16:26:32 GMT Message-Id: <201112261626.pBQGQWCn021439@freefall.freebsd.org> To: stephen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stephen@FreeBSD.org From: stephen@FreeBSD.org Cc: Subject: Re: ports/163584: net/xorp fails 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: Mon, 26 Dec 2011 16:26:32 -0000 Synopsis: net/xorp fails to build Responsible-Changed-From-To: freebsd-ports-bugs->stephen Responsible-Changed-By: stephen Responsible-Changed-When: Mon Dec 26 16:25:30 UTC 2011 Responsible-Changed-Why: So I will receive any feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=163584 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 16:59:27 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 763A1106566C; Mon, 26 Dec 2011 16:59:27 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 48BE68FC08; Mon, 26 Dec 2011 16:59:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQGxR0f049326; Mon, 26 Dec 2011 16:59:27 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQGxRTl049322; Mon, 26 Dec 2011 16:59:27 GMT (envelope-from pawel) Date: Mon, 26 Dec 2011 16:59:27 GMT Message-Id: <201112261659.pBQGxRTl049322@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/163626: [Update] net-p2p/ncdc to 1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 16:59:27 -0000 Synopsis: [Update] net-p2p/ncdc to 1.6 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Mon Dec 26 16:59:26 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163626 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 17:00:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC39B1065677 for ; Mon, 26 Dec 2011 17: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 88B2B8FC1E for ; Mon, 26 Dec 2011 17:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQH0Phq049409 for ; Mon, 26 Dec 2011 17:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQH0PTY049408; Mon, 26 Dec 2011 17:00:25 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 17:00:25 GMT Resent-Message-Id: <201112261700.pBQH0PTY049408@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, Sergey Kandaurov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 391A81065670 for ; Mon, 26 Dec 2011 16:50:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 0B9448FC13 for ; Mon, 26 Dec 2011 16:50:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBQGoYi7021197 for ; Mon, 26 Dec 2011 16:50:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBQGoYIh021196; Mon, 26 Dec 2011 16:50:34 GMT (envelope-from nobody) Message-Id: <201112261650.pBQGoYIh021196@red.freebsd.org> Date: Mon, 26 Dec 2011 16:50:34 GMT From: Sergey Kandaurov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163630: misc/compat8x mentions nonexisting COMPAT_FREEBSD8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 17:00:25 -0000 >Number: 163630 >Category: ports >Synopsis: misc/compat8x mentions nonexisting COMPAT_FREEBSD8 >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 Dec 26 17:00:25 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sergey Kandaurov >Release: FreeBSD 9.x >Organization: >Environment: >Description: >From compat8x/pkg-message: * Do not forget to add COMPAT_FREEBSD8 into * * your kernel configuration (enabled by default). * There is no such options available. >How-To-Repeat: >Fix: Remove compat8x/pkg-message file entirely. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 17:00:38 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5C33106564A; Mon, 26 Dec 2011 17:00:38 +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 777B78FC1C; Mon, 26 Dec 2011 17:00:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQH0cHT049688; Mon, 26 Dec 2011 17:00:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQH0cqZ049680; Mon, 26 Dec 2011 17:00:38 GMT (envelope-from edwin) Date: Mon, 26 Dec 2011 17:00:38 GMT Message-Id: <201112261700.pBQH0cqZ049680@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, garga@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163630: misc/compat8x mentions nonexisting COMPAT_FREEBSD8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 17:00:38 -0000 Synopsis: misc/compat8x mentions nonexisting COMPAT_FREEBSD8 Responsible-Changed-From-To: freebsd-ports-bugs->garga Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 26 17:00:37 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163630 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 17:40:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9497D1065670 for ; Mon, 26 Dec 2011 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 4E7F88FC0A for ; Mon, 26 Dec 2011 17:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQHeAfw087312 for ; Mon, 26 Dec 2011 17:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQHeAVu087309; Mon, 26 Dec 2011 17:40:10 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 17:40:10 GMT Resent-Message-Id: <201112261740.pBQHeAVu087309@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 E2D5C1065701 for ; Mon, 26 Dec 2011 17:38:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CEF028FC15 for ; Mon, 26 Dec 2011 17:38:01 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBQHc17j011999 for ; Mon, 26 Dec 2011 17:38:01 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBQHc14A011998; Mon, 26 Dec 2011 17:38:01 GMT (envelope-from nobody) Message-Id: <201112261738.pBQHc14A011998@red.freebsd.org> Date: Mon, 26 Dec 2011 17:38:01 GMT From: Nicole Reid To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163631: Update: www/subsonic to 4.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 17:40:10 -0000 >Number: 163631 >Category: ports >Synopsis: Update: www/subsonic to 4.6 >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 Dec 26 17:40:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Nicole Reid >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN www/subsonic-4.5/Makefile www/subsonic/Makefile --- www/subsonic-4.5/Makefile 2011-12-26 12:24:14.758694483 -0500 +++ www/subsonic/Makefile 2011-12-26 12:24:48.810695087 -0500 @@ -6,7 +6,7 @@ # PORTNAME= subsonic -PORTVERSION= 4.5 +PORTVERSION= 4.6 CATEGORIES= www java MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-war diff -ruN www/subsonic-4.5/distinfo www/subsonic/distinfo --- www/subsonic-4.5/distinfo 2011-12-26 12:24:14.758694483 -0500 +++ www/subsonic/distinfo 2011-12-26 12:25:20.487695166 -0500 @@ -1,2 +1,2 @@ -SHA256 (subsonic-4.5-war.zip) = ff5ee8011c174ac5531f8751875dfe2cdd99ebb447c643726c2bce8b522f11bb -SIZE (subsonic-4.5-war.zip) = 18311536 +SHA256 (subsonic-4.6-war.zip) = e292e47b1435bfc4f021308d191accf04a0b56f2ea2f916f6d73ba652cf836d7 +SIZE (subsonic-4.6-war.zip) = 18335267 diff -ruN www/subsonic-4.5/pkg-descr www/subsonic/pkg-descr --- www/subsonic-4.5/pkg-descr 2011-12-26 12:24:14.757695334 -0500 +++ www/subsonic/pkg-descr 2011-12-26 12:32:41.302694559 -0500 @@ -3,4 +3,6 @@ or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living -room. +room. + +WWW: http://www.subsonic.org >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 19:00:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8284106564A for ; Mon, 26 Dec 2011 19: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 915AF8FC18 for ; Mon, 26 Dec 2011 19:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQJ0LBB058800 for ; Mon, 26 Dec 2011 19:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQJ0Lx7058798; Mon, 26 Dec 2011 19:00:21 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 19:00:21 GMT Resent-Message-Id: <201112261900.pBQJ0Lx7058798@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, Mark Foster Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C184F106564A for ; Mon, 26 Dec 2011 18:52:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AB4958FC08 for ; Mon, 26 Dec 2011 18:52:04 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBQIq4PT035565 for ; Mon, 26 Dec 2011 18:52:04 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBQIq4dh035564; Mon, 26 Dec 2011 18:52:04 GMT (envelope-from nobody) Message-Id: <201112261852.pBQIq4dh035564@red.freebsd.org> Date: Mon, 26 Dec 2011 18:52:04 GMT From: Mark Foster To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163632: update audio/firefly to fix itunes 10.5.2 compatibility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 19:00:22 -0000 >Number: 163632 >Category: ports >Synopsis: update audio/firefly to fix itunes 10.5.2 compatibility >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 Dec 26 19:00:21 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Mark Foster >Release: 8 >Organization: >Environment: >Description: Included patch fixes a problem with itunes 10.5.2 >How-To-Repeat: >Fix: apply patch Patch attached with submission follows: diff -ruN firefly/Makefile firefly_new/Makefile --- firefly/Makefile 2011-09-23 15:20:59.000000000 -0700 +++ firefly_new/Makefile 2011-12-25 18:19:20.000000000 -0800 @@ -6,7 +6,7 @@ PORTNAME= firefly PORTVERSION= 1696 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= http://nightlies.fireflymediaserver.org/nightlies/svn-${PORTVERSION}/ \ http://www.magnesium.net/~mdf/distfiles/ diff -ruN firefly/files/patch-out-daap.c firefly_new/files/patch-out-daap.c --- firefly/files/patch-out-daap.c 1969-12-31 16:00:00.000000000 -0800 +++ firefly_new/files/patch-out-daap.c 2011-12-18 20:22:05.000000000 -0800 @@ -0,0 +1,25 @@ +@DPATCH@ +--- src/plugins/out-daap.c 2007-10-13 15:10:06.000000000 -0700 ++++ src/plugins/out-daap.c.new 2011-10-16 18:08:53.207764000 -0700 +@@ -1392,11 +1393,9 @@ + + size = sizeof(servername); + pi_server_name(servername,&size); +- // supports_update = conf_get_int("daap","supports_update",1); ++ supports_update = pi_conf_get_int("daap","supports_update",1); + + actual_length=139 + (int) strlen(servername); +- if(!supports_update) +- actual_length -= 9; + + if(actual_length > sizeof(server_info)) { + pi_log(E_FATAL,"Server name too long.\n"); +@@ -1434,6 +1433,8 @@ + current += dmap_add_int(current,"msdc",1); /* 12 */ + + if(supports_update) ++ current += dmap_add_char(current,"msup",1); /* 9 */ ++ else + current += dmap_add_char(current,"msup",0); /* 9 */ + + out_daap_output_start(pwsc,ppi,actual_length); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 19:21:47 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70AC2106564A; Mon, 26 Dec 2011 19:21:47 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 441A78FC12; Mon, 26 Dec 2011 19:21:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQJLlJj085871; Mon, 26 Dec 2011 19:21:47 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQJLlXK085867; Mon, 26 Dec 2011 19:21:47 GMT (envelope-from pawel) Date: Mon, 26 Dec 2011 19:21:47 GMT Message-Id: <201112261921.pBQJLlXK085867@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/160313: New port:databases/pg_reorg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 19:21:47 -0000 Synopsis: New port:databases/pg_reorg Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Mon Dec 26 19:21:46 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=160313 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 19:55:59 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FE1A106566B; Mon, 26 Dec 2011 19:55:59 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5182E8FC13; Mon, 26 Dec 2011 19:55:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQJtxOq013644; Mon, 26 Dec 2011 19:55:59 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQJtwiS013640; Mon, 26 Dec 2011 19:55:58 GMT (envelope-from rm) Date: Mon, 26 Dec 2011 19:55:58 GMT Message-Id: <201112261955.pBQJtwiS013640@freefall.freebsd.org> To: otacilio.neto@bsd.com.br, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/163594: [patch] devel/flexdock Update to 1.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, 26 Dec 2011 19:55:59 -0000 Synopsis: [patch] devel/flexdock Update to 1.1 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Mon Dec 26 19:55:58 UTC 2011 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163594 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 20:00:27 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3702C106564A for ; Mon, 26 Dec 2011 20: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 2153D8FC14 for ; Mon, 26 Dec 2011 20:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQK0QAc013863 for ; Mon, 26 Dec 2011 20:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQK0Q9J013862; Mon, 26 Dec 2011 20:00:26 GMT (envelope-from gnats) Date: Mon, 26 Dec 2011 20:00:26 GMT Message-Id: <201112262000.pBQK0Q9J013862@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Aldis Berjoza Cc: Subject: Re: ports/163612: [Patch] Update www/xxxterm to version 1.9.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Aldis Berjoza List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2011 20:00:27 -0000 The following reply was made to PR ports/163612; it has been noted by GNATS. From: Aldis Berjoza To: bug-followup@FreeBSD.org, h.skuhra@gmail.com Cc: Subject: Re: ports/163612: [Patch] Update www/xxxterm to version 1.9.0 Date: Mon, 26 Dec 2011 21:53:17 +0200 --Sig_/gIOURzDFphrHIfCdzyczqPQ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Approve patch --=20 Aldis Berjoza http://www.bsdroot.lv/ --Sig_/gIOURzDFphrHIfCdzyczqPQ Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iQEcBAEBAgAGBQJO+NDFAAoJECrA2xnMujn6o3wIAMRDFsHndUxx4LKWykARFNh7 PrUp5DDQdCOMcb3y2T4uqbWgcxSZXBXFJiNGabVyzfXYOz1S2cE0dstZ7FKHm5fo 5GDocEy45VcnPFFw5V79GSqEbpdrP97L2Zk+tRFa85BslsHR3neSFSIGmm6u0T+7 6+11ypHNEn7TjzZYPvguV78GgziANIc3bxUarJE2gu23L2ppUriR+SjRTUx98JvF JU/fGi5dU+73H/wUu/Wr3qIvnUV2YySregjQvNYL28rh2EMTtKOPkLXi70vr+uGK EcsH8C51n20Uh3EeSDIRFMZfN6iFQnBMH3655VOVjB0uv3zFWEhmP/utOgXKfjM= =2YdX -----END PGP SIGNATURE----- --Sig_/gIOURzDFphrHIfCdzyczqPQ-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 20:13:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D617F106566C; Mon, 26 Dec 2011 20:13: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 A6C578FC1B; Mon, 26 Dec 2011 20:13:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQKDEcE030910; Mon, 26 Dec 2011 20:13:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQKDE6X030905; Mon, 26 Dec 2011 20:13:14 GMT (envelope-from linimon) Date: Mon, 26 Dec 2011 20:13:14 GMT Message-Id: <201112262013.pBQKDE6X030905@freefall.freebsd.org> To: graudeejs@gmail.com, h.skuhra@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163612: [Patch] Update www/xxxterm to version 1.9.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, 26 Dec 2011 20:13:14 -0000 Synopsis: [Patch] Update www/xxxterm to version 1.9.0 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Mon Dec 26 20:13:07 UTC 2011 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=163612 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 20:17:54 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9602A106564A; Mon, 26 Dec 2011 20:17:54 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 645FC8FC0C; Mon, 26 Dec 2011 20:17:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQKHss8032572; Mon, 26 Dec 2011 20:17:54 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQKHs4v032568; Mon, 26 Dec 2011 20:17:54 GMT (envelope-from rm) Date: Mon, 26 Dec 2011 20:17:54 GMT Message-Id: <201112262017.pBQKHs4v032568@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/163631: Update: www/subsonic to 4.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 20:17:54 -0000 Synopsis: Update: www/subsonic to 4.6 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Mon Dec 26 20:17:53 UTC 2011 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163631 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 20:20:04 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CDF51065675 for ; Mon, 26 Dec 2011 20:20: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 D4BF48FC14 for ; Mon, 26 Dec 2011 20:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQKK364032876 for ; Mon, 26 Dec 2011 20:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQKK3bi032875; Mon, 26 Dec 2011 20:20:03 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 20:20:03 GMT Resent-Message-Id: <201112262020.pBQKK3bi032875@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 Ginzburg Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D529106566C for ; Mon, 26 Dec 2011 20:16:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 587D58FC08 for ; Mon, 26 Dec 2011 20:16:27 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBQKGQqo093012 for ; Mon, 26 Dec 2011 20:16:26 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBQKGQYA093011; Mon, 26 Dec 2011 20:16:26 GMT (envelope-from nobody) Message-Id: <201112262016.pBQKGQYA093011@red.freebsd.org> Date: Mon, 26 Dec 2011 20:16:26 GMT From: Oleg Ginzburg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163633: new port: sysutils/ioping X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 20:20:04 -0000 >Number: 163633 >Category: ports >Synopsis: new port: sysutils/ioping >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 Dec 26 20:20:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Oleg Ginzburg >Release: 9.0-PRERELEASE >Organization: >Environment: >Description: This tool lets you monitor I/O latency in real time WWW: http://code.google.com/p/ioping/ >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: # # ioping # ioping/pkg-descr # ioping/distinfo # ioping/Makefile # echo c - ioping mkdir -p ioping > /dev/null 2>&1 echo x - ioping/pkg-descr sed 's/^X//' >ioping/pkg-descr << 'f1859fd5d891986b421770a408d8e27e' XThis tool lets you monitor I/O latency in real time X XWWW: http://code.google.com/p/ioping/ f1859fd5d891986b421770a408d8e27e echo x - ioping/distinfo sed 's/^X//' >ioping/distinfo << '9546d327902fe8356d969cc9bc41d500' XSHA256 (ioping-0.6.tar.gz) = 1d14469b1bfa9243f992be784cc0e3cd86c66bb7edc1b83e22360075c5435ceb XSIZE (ioping-0.6.tar.gz) = 6957 9546d327902fe8356d969cc9bc41d500 echo x - ioping/Makefile sed 's/^X//' >ioping/Makefile << '12960abc2f6e3148ca4a3eb61d9cebc6' X# New ports collection makefile for: ioping X# Date created: 2011-12-27 X# Whom: Oleg Ginzburg X# X# $FreeBSD: $ X# X XPORTNAME= ioping XPORTVERSION= 0.6 XCATEGORIES= sysutils XMASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} X XMAINTAINER= olevole@olevole.ru XCOMMENT= Simple disk I/0 latency measuring tool X XMAN1= ioping.1 XPLIST_FILES= bin/ioping X Xdo-build: X cd ${WRKSRC}; \ X ${CC} ${CFLAGS} -DVERSION=\"${PORTVERSION}\" ioping.c -o ioping X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/ioping ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/ioping.1 ${MANPREFIX}/man/man1 X X.include 12960abc2f6e3148ca4a3eb61d9cebc6 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 20:20:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 931A4106564A; Mon, 26 Dec 2011 20: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 653B18FC17; Mon, 26 Dec 2011 20:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQKKFrY033307; Mon, 26 Dec 2011 20:20:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQKKF7w033301; Mon, 26 Dec 2011 20:20:15 GMT (envelope-from edwin) Date: Mon, 26 Dec 2011 20:20:15 GMT Message-Id: <201112262020.pBQKKF7w033301@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/163633: new port: sysutils/ioping X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 20:20:15 -0000 Synopsis: new port: sysutils/ioping Class-Changed-From-To: sw-bug->change-request Class-Changed-By: edwin Class-Changed-When: Mon Dec 26 20:20:14 UTC 2011 Class-Changed-Why: Fix category (new ports should be change-requests) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163633 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 20:35:02 2011 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 6BACB1065672; Mon, 26 Dec 2011 20:35:02 +0000 (UTC) (envelope-from info@martinlaabs.de) Received: from relay02.alfahosting-server.de (relay02.alfahosting-server.de [80.86.191.77]) by mx1.freebsd.org (Postfix) with ESMTP id 1A13F8FC0A; Mon, 26 Dec 2011 20:35:01 +0000 (UTC) Received: by relay02.alfahosting-server.de (Postfix, from userid 1001) id 06BE032C08E5; Mon, 26 Dec 2011 21:20:13 +0100 (CET) X-Spam-DCC: : X-Spam-Level: X-Spam-Status: No, score=0.0 required=7.0 tests=BAYES_50 autolearn=disabled version=3.2.5 Received: from alfa3018.alfahosting-server.de (alfa3018.alfahosting-server.de [109.237.140.30]) by relay02.alfahosting-server.de (Postfix) with ESMTP id B2EB532C01E5; Mon, 26 Dec 2011 21:20:11 +0100 (CET) Received: from pc.martinlaabs.de (p54B351AB.dip.t-dialin.net [84.179.81.171]) by alfa3018.alfahosting-server.de (Postfix) with ESMTPSA id 28683515C752; Mon, 26 Dec 2011 21:20:11 +0100 (CET) Message-ID: <4EF8D6F7.5040100@martinlaabs.de> Date: Mon, 26 Dec 2011 21:20:07 +0100 From: Martin Laabs User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:8.0) Gecko/20111118 Thunderbird/8.0 MIME-Version: 1.0 To: linimon@FreeBSD.org References: <201112260043.pBQ0hmBY016608@freefall.freebsd.org> In-Reply-To: <201112260043.pBQ0hmBY016608@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Status: No X-Virus-Checker-Version: clamassassin 1.2.4 with ClamAV 0.97.3/14193/Mon Dec 26 00:22:59 2011 Cc: freebsd-ports-bugs@FreeBSD.org, aldis@bsdroot.lv, spamtrap@martinlaabs.de Subject: Re: ports/156034: print/lyx-devel spell checking with enchant does not work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 20:35:02 -0000 Hello, On 26.12.2011 01:43, linimon@FreeBSD.org wrote: > Synopsis: print/lyx-devel spell checking with enchant does not work > > State-Changed-From-To: feedback->open > State-Changed-By: linimon > State-Changed-When: Mon Dec 26 00:43:10 UTC 2011 > State-Changed-Why: > To submitter: since this PR was submitted, lyx-devel had been deleted > in favor of an update to lyx. Do you still experience this problem? Yes. Still the same problem here with enchant spell checker enabled in the make config dialog. Greetings, Martin Laabs From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 20:50:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8A37106566C for ; Mon, 26 Dec 2011 20: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 A75A98FC14 for ; Mon, 26 Dec 2011 20:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQKoDfN060519 for ; Mon, 26 Dec 2011 20:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQKoD4H060518; Mon, 26 Dec 2011 20:50:13 GMT (envelope-from gnats) Date: Mon, 26 Dec 2011 20:50:13 GMT Message-Id: <201112262050.pBQKoD4H060518@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ruslan Mahmatkhanov Cc: Subject: Re: ports/163295: [PATCH] databases/cassandra: update to 1.0.6 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, 26 Dec 2011 20:50:13 -0000 The following reply was made to PR ports/163295; it has been noted by GNATS. From: Ruslan Mahmatkhanov To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163295: [PATCH] databases/cassandra: update to 1.0.6 Date: Tue, 27 Dec 2011 00:43:26 +0400 Please note, that python part of this update is depends on ports/163292. So this patch may be committed only after ports/163292. -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 20:50:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27CA61065670 for ; Mon, 26 Dec 2011 20:50: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 F3CBD8FC16 for ; Mon, 26 Dec 2011 20:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQKoD30060528 for ; Mon, 26 Dec 2011 20:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQKoDwX060527; Mon, 26 Dec 2011 20:50:13 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 20:50:13 GMT Resent-Message-Id: <201112262050.pBQKoDwX060527@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, Fabian Keil Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFB9C1065672 for ; Mon, 26 Dec 2011 20:48:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 6A7618FC17 for ; Mon, 26 Dec 2011 20:48:01 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBQKm1CX046489 for ; Mon, 26 Dec 2011 20:48:01 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBQKm1wJ046488; Mon, 26 Dec 2011 20:48:01 GMT (envelope-from nobody) Message-Id: <201112262048.pBQKm1wJ046488@red.freebsd.org> Date: Mon, 26 Dec 2011 20:48:01 GMT From: Fabian Keil To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163634: [MAINTAINER-UPDATE] from www/privoxy 3.0.18 to 3.0.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 20:50:14 -0000 >Number: 163634 >Category: ports >Synopsis: [MAINTAINER-UPDATE] from www/privoxy 3.0.18 to 3.0.19 >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 Dec 26 20:50:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Fabian Keil >Release: HEAD >Organization: >Environment: FreeBSD r500.local 10.0-CURRENT FreeBSD 10.0-CURRENT #386: Sat Dec 24 13:19:40 CET 2011 fk@r500.local:/usr/obj/usr/src/sys/ZOEY amd64 >Description: The attached patch updates www/privoxy from 3.0.18 to 3.0.19. The announcement is available at: http://www.privoxy.org/announce.txt Quoting the important part: ##### - Bug fixes: - Prevent a segmentation fault when de-chunking buffered content. It could be triggered by malicious web servers if Privoxy was configured to filter the content and running on a platform where SIZE_T_MAX isn't larger than UINT_MAX, which probably includes most 32-bit systems. On those platforms, all Privoxy versions before 3.0.19 appear to be affected. To be on the safe side, this bug should be presumed to allow code execution as proving that it doesn't seems unrealistic. - Do not expect a response from the SOCKS4/4A server until it got something to respond to. This regression was introduced in 3.0.18 and prevented the SOCKS4/4A negotiation from working. Reported by qqqqqw in #3459781. ###### >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN .zfs/snapshot/2011-12-25/www/privoxy/Makefile www/privoxy/Makefile --- .zfs/snapshot/2011-12-25/www/privoxy/Makefile 2011-11-28 15:51:56.522890199 +0100 +++ www/privoxy/Makefile 2011-12-26 19:59:34.702548380 +0100 @@ -6,7 +6,7 @@ # PORTNAME= privoxy -PORTVERSION= 3.0.18 +PORTVERSION= 3.0.19 CATEGORIES= www ipv6 MASTER_SITES= SF/ijbswa/Sources/${PORTVERSION}%20%28stable%29 DISTNAME= privoxy-${PORTVERSION}-stable-src diff -ruN .zfs/snapshot/2011-12-25/www/privoxy/distinfo www/privoxy/distinfo --- .zfs/snapshot/2011-12-25/www/privoxy/distinfo 2011-11-20 14:10:52.963476223 +0100 +++ www/privoxy/distinfo 2011-12-26 20:00:15.987546054 +0100 @@ -1,2 +1,2 @@ -SHA256 (privoxy-3.0.18-stable-src.tar.gz) = 81203c60d7862a531cc0438d740abc66a07d9c91a2df24357b36ba38d3104e27 -SIZE (privoxy-3.0.18-stable-src.tar.gz) = 1720020 +SHA256 (privoxy-3.0.19-stable-src.tar.gz) = 816e627b31caa3d9e71d0a8b83ac9ea7dcbeaaafef3c9a9c792696aa56255232 +SIZE (privoxy-3.0.19-stable-src.tar.gz) = 1722316 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 21:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A58C106568E; Mon, 26 Dec 2011 21:10:12 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F00E08FC17; Mon, 26 Dec 2011 21:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQLABsp077709; Mon, 26 Dec 2011 21:10:11 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQLAAcn077659; Mon, 26 Dec 2011 21:10:10 GMT (envelope-from pawel) Date: Mon, 26 Dec 2011 21:10:10 GMT Message-Id: <201112262110.pBQLAAcn077659@freefall.freebsd.org> To: emss@free.fr, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/158935: [PATCH] print/lpr-wrapper: update to 0.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 21:10:12 -0000 Synopsis: [PATCH] print/lpr-wrapper: update to 0.7 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Mon Dec 26 21:10:09 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=158935 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 21:40:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 230A71065679; Mon, 26 Dec 2011 21:40:25 +0000 (UTC) (envelope-from bf@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E9C8E8FC15; Mon, 26 Dec 2011 21:40:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQLeOZu007872; Mon, 26 Dec 2011 21:40:24 GMT (envelope-from bf@freefall.freebsd.org) Received: (from bf@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQLeOkw007864; Mon, 26 Dec 2011 21:40:24 GMT (envelope-from bf) Date: Mon, 26 Dec 2011 21:40:24 GMT Message-Id: <201112262140.pBQLeOkw007864@freefall.freebsd.org> To: bf@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bf@FreeBSD.org From: bf@FreeBSD.org Cc: Subject: Re: ports/163634: [MAINTAINER-UPDATE] from www/privoxy 3.0.18 to 3.0.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 21:40:25 -0000 Synopsis: [MAINTAINER-UPDATE] from www/privoxy 3.0.18 to 3.0.19 Responsible-Changed-From-To: freebsd-ports-bugs->bf Responsible-Changed-By: bf Responsible-Changed-When: Mon Dec 26 21:40:24 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163634 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 21:46:46 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FBFD106566B; Mon, 26 Dec 2011 21:46:46 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E473D8FC0A; Mon, 26 Dec 2011 21:46:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQLkjl9015628; Mon, 26 Dec 2011 21:46:45 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQLkjir015624; Mon, 26 Dec 2011 21:46:45 GMT (envelope-from eadler) Date: Mon, 26 Dec 2011 21:46:45 GMT Message-Id: <201112262146.pBQLkjir015624@freefall.freebsd.org> To: jaapb@kerguelen.org, eadler@FreeBSD.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163314: [maintainer update] www/ocsigen to version 2.0.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, 26 Dec 2011 21:46:46 -0000 Synopsis: [maintainer update] www/ocsigen to version 2.0.2 State-Changed-From-To: open->analyzed State-Changed-By: eadler State-Changed-When: Mon Dec 26 21:46:06 UTC 2011 State-Changed-Why: depends on a few other ports (see 'fix') Responsible-Changed-From-To: eadler->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Mon Dec 26 21:46:06 UTC 2011 Responsible-Changed-Why: depends on a few other ports (see 'fix') http://www.freebsd.org/cgi/query-pr.cgi?pr=163314 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 21:46:53 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 115D71065675; Mon, 26 Dec 2011 21:46:53 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D7A648FC12; Mon, 26 Dec 2011 21:46:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQLkqCh015722; Mon, 26 Dec 2011 21:46:52 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQLkqWP015718; Mon, 26 Dec 2011 21:46:52 GMT (envelope-from jgh) Date: Mon, 26 Dec 2011 21:46:52 GMT Message-Id: <201112262146.pBQLkqWP015718@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/163633: new port: sysutils/ioping X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 26 Dec 2011 21:46:53 -0000 Synopsis: new port: sysutils/ioping Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Mon Dec 26 21:46:52 UTC 2011 Responsible-Changed-Why: I'll take this http://www.freebsd.org/cgi/query-pr.cgi?pr=163633 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 21:56:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A2AC1065672; Mon, 26 Dec 2011 21:56:28 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0BD108FC12; Mon, 26 Dec 2011 21:56:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQLuRjR024371; Mon, 26 Dec 2011 21:56:27 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQLuR1H024367; Mon, 26 Dec 2011 21:56:27 GMT (envelope-from pawel) Date: Mon, 26 Dec 2011 21:56:27 GMT Message-Id: <201112262156.pBQLuR1H024367@freefall.freebsd.org> To: graudeejs@gmail.com, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/163612: [Patch] Update www/xxxterm to version 1.9.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, 26 Dec 2011 21:56:28 -0000 Synopsis: [Patch] Update www/xxxterm to version 1.9.0 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Mon Dec 26 21:56:27 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163612 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 22:00:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C11DA10656A3 for ; Mon, 26 Dec 2011 22: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 7F20D8FC12 for ; Mon, 26 Dec 2011 22:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQM0L6p024512 for ; Mon, 26 Dec 2011 22:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQM0LR4024508; Mon, 26 Dec 2011 22:00:21 GMT (envelope-from gnats) Resent-Date: Mon, 26 Dec 2011 22:00:21 GMT Resent-Message-Id: <201112262200.pBQM0LR4024508@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 709431065675 for ; Mon, 26 Dec 2011 21:55:33 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 2AB2A8FC08 for ; Mon, 26 Dec 2011 21:55:33 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id pBQLtS0Q080499 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 26 Dec 2011 16:55:28 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id pBQLtRQp016828; Mon, 26 Dec 2011 16:55:27 -0500 (EST) (envelope-from steve) Message-Id: <201112262155.pBQLtRQp016828@meatwad.mouf.net> Date: Mon, 26 Dec 2011 16:55:27 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: melifaro@ipfw.ru Subject: ports/163635: [PATCH] net/opal3: Fix build on 10-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: Mon, 26 Dec 2011 22:00:21 -0000 >Number: 163635 >Category: ports >Synopsis: [PATCH] net/opal3: Fix build on 10-CURRENT >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: Mon Dec 26 22:00:20 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #8: Mon Dec 19 15:53:28 EST 2011 >Description: The attached patch fixes the issue with building net/opal3 on 10-CURRENT. It's basically just a more correct version of the existing patch. This is marked serious since it blocks building x11/gnome2 on 10-CURRENT. Also pet portlint while here. Not PORTREVISION bump since the build output remains the same. Added file(s): - files/patch-spandsp_fax.cpp - files/patch-spandsp_if.cpp Removed file(s): - files/patch-spandsp_if.h Port maintainer (melifaro@ipfw.ru) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- opal3-3.6.6_13.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/opal3/Makefile,v retrieving revision 1.109 diff -u -u -r1.109 Makefile --- Makefile 21 Dec 2011 08:48:28 -0000 1.109 +++ Makefile 26 Dec 2011 21:50:49 -0000 @@ -11,11 +11,12 @@ CATEGORIES= net MASTER_SITES= SF/opalvoip/v3.6%20Lalande/Stable%205 DISTNAME= opal-${PORTVERSION} -LICENSE= MPL MAINTAINER= melifaro@ipfw.ru COMMENT= VoIP abstraction library +LICENSE= MPL + LIB_DEPENDS= pt-2.6.[4-9]:${PORTSDIR}/devel/ptlib26 CONFLICTS= opal-2.* Index: files/patch-spandsp_fax.cpp =================================================================== RCS file: files/patch-spandsp_fax.cpp diff -N files/patch-spandsp_fax.cpp --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-spandsp_fax.cpp 26 Dec 2011 21:50:49 -0000 @@ -0,0 +1,10 @@ +--- plugins/fax/fax_spandsp/spandsp_fax.cpp.orig 2011-12-26 21:02:09.000000000 +0000 ++++ plugins/fax/fax_spandsp/spandsp_fax.cpp 2011-12-26 21:01:38.000000000 +0000 +@@ -42,6 +42,7 @@ + * + */ + ++#define __STDC_LIMIT_MACROS + #include + + extern "C" { Index: files/patch-spandsp_if.cpp =================================================================== RCS file: files/patch-spandsp_if.cpp diff -N files/patch-spandsp_if.cpp --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-spandsp_if.cpp 26 Dec 2011 21:50:49 -0000 @@ -0,0 +1,10 @@ +--- plugins/fax/fax_spandsp/spandsp_util/spandsp_if.cpp.orig 2011-12-26 21:04:48.000000000 +0000 ++++ plugins/fax/fax_spandsp/spandsp_util/spandsp_if.cpp 2011-12-26 21:05:21.000000000 +0000 +@@ -23,6 +23,7 @@ + * $Id: spandsp_if.cpp,v 1.7 2007/07/24 04:39:44 csoutheren Exp $ + */ + ++#define __STDC_LIMIT_MACROS + #include "spandsp_if.h" + + #include Index: files/patch-spandsp_if.h =================================================================== RCS file: files/patch-spandsp_if.h diff -N files/patch-spandsp_if.h --- files/patch-spandsp_if.h 27 Sep 2009 15:52:55 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,14 +0,0 @@ ---- plugins/fax/fax_spandsp/spandsp_util/spandsp_if.h.orig 2009-08-30 02:52:53.000000000 +0400 -+++ plugins/fax/fax_spandsp/spandsp_util/spandsp_if.h 2009-08-30 02:53:00.000000000 +0400 -@@ -24,6 +24,11 @@ - */ - - extern "C" { -+#undef __cplusplus -+#undef _MACHINE__STDINT_H_ -+#include -+#define __cplusplus -+ - #include "spandsp.h" - }; - --- opal3-3.6.6_13.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 26 22:00:35 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38D161065680; Mon, 26 Dec 2011 22:00:35 +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 0AAB58FC13; Mon, 26 Dec 2011 22:00:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBQM0Yd5024900; Mon, 26 Dec 2011 22:00:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBQM0Yu5024896; Mon, 26 Dec 2011 22:00:34 GMT (envelope-from edwin) Date: Mon, 26 Dec 2011 22:00:34 GMT Message-Id: <201112262200.pBQM0Yu5024896@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163635: [PATCH] net/opal3: Fix build on 10-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: Mon, 26 Dec 2011 22:00:35 -0000 Synopsis: [PATCH] net/opal3: Fix build on 10-CURRENT Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 26 22:00:34 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163635 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 01:29:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1FDF106564A; Tue, 27 Dec 2011 01:29:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 73C8D8FC08; Tue, 27 Dec 2011 01:29:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR1T92s020391; Tue, 27 Dec 2011 01:29:09 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR1T9Sv020387; Tue, 27 Dec 2011 01:29:09 GMT (envelope-from eadler) Date: Tue, 27 Dec 2011 01:29:09 GMT Message-Id: <201112270129.pBR1T9Sv020387@freefall.freebsd.org> To: eadler@FreeBSD.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/163600: [maintainer] [patch] graphics/xmlgraphics-commons Update to svn r1222519 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 01:29:09 -0000 Synopsis: [maintainer] [patch] graphics/xmlgraphics-commons Update to svn r1222519 Responsible-Changed-From-To: eadler->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Tue Dec 27 01:29:09 UTC 2011 Responsible-Changed-Why: wow, I took too many PRs, and I won't have time to work on all of them :( http://www.freebsd.org/cgi/query-pr.cgi?pr=163600 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 01:29:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F11C106564A; Tue, 27 Dec 2011 01:29:12 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0128B8FC0C; Tue, 27 Dec 2011 01:29:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR1TBh1020460; Tue, 27 Dec 2011 01:29:11 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR1TBTX020456; Tue, 27 Dec 2011 01:29:11 GMT (envelope-from eadler) Date: Tue, 27 Dec 2011 01:29:11 GMT Message-Id: <201112270129.pBR1TBTX020456@freefall.freebsd.org> To: eadler@FreeBSD.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/161690: New port: games/prboom-plus Port of ID Software's Doom X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 01:29:12 -0000 Synopsis: New port: games/prboom-plus Port of ID Software's Doom Responsible-Changed-From-To: eadler->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Tue Dec 27 01:29:11 UTC 2011 Responsible-Changed-Why: wow, I took too many PRs, and I won't have time to work on all of them :( http://www.freebsd.org/cgi/query-pr.cgi?pr=161690 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 01:29:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B65D2106564A; Tue, 27 Dec 2011 01:29:14 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 890698FC13; Tue, 27 Dec 2011 01:29:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR1TErv020531; Tue, 27 Dec 2011 01:29:14 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR1TEWF020527; Tue, 27 Dec 2011 01:29:14 GMT (envelope-from eadler) Date: Tue, 27 Dec 2011 01:29:14 GMT Message-Id: <201112270129.pBR1TEWF020527@freefall.freebsd.org> To: eadler@FreeBSD.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/160861: New port: security/racoon-tool Manage setkey and racoon easily X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 01:29:14 -0000 Synopsis: New port: security/racoon-tool Manage setkey and racoon easily Responsible-Changed-From-To: eadler->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Tue Dec 27 01:29:14 UTC 2011 Responsible-Changed-Why: wow, I took too many PRs, and I won't have time to work on all of them :( http://www.freebsd.org/cgi/query-pr.cgi?pr=160861 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 01:29:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41FB7106564A; Tue, 27 Dec 2011 01:29:17 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 141EC8FC16; Tue, 27 Dec 2011 01:29:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR1TGx4020599; Tue, 27 Dec 2011 01:29:16 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR1TGp8020595; Tue, 27 Dec 2011 01:29:16 GMT (envelope-from eadler) Date: Tue, 27 Dec 2011 01:29:16 GMT Message-Id: <201112270129.pBR1TGp8020595@freefall.freebsd.org> To: eadler@FreeBSD.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/158983: [NEW PORT] devel/pecl-dtrace: PHP DTrace provider X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 01:29:17 -0000 Synopsis: [NEW PORT] devel/pecl-dtrace: PHP DTrace provider Responsible-Changed-From-To: eadler->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Tue Dec 27 01:29:16 UTC 2011 Responsible-Changed-Why: wow, I took too many PRs, and I won't have time to work on all of them :( http://www.freebsd.org/cgi/query-pr.cgi?pr=158983 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 01:29:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5418106566B; Tue, 27 Dec 2011 01:29:19 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9653F8FC17; Tue, 27 Dec 2011 01:29:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR1TJGG020667; Tue, 27 Dec 2011 01:29:19 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR1TJJ9020663; Tue, 27 Dec 2011 01:29:19 GMT (envelope-from eadler) Date: Tue, 27 Dec 2011 01:29:19 GMT Message-Id: <201112270129.pBR1TJJ9020663@freefall.freebsd.org> To: eadler@FreeBSD.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/159378: [NEW PORT] lang/php-plua: PLua is a PHP extension which with the Lua interpreter embed in X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 01:29:19 -0000 Synopsis: [NEW PORT] lang/php-plua: PLua is a PHP extension which with the Lua interpreter embed in Responsible-Changed-From-To: eadler->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Tue Dec 27 01:29:19 UTC 2011 Responsible-Changed-Why: wow, I took too many PRs, and I won't have time to work on all of them :( http://www.freebsd.org/cgi/query-pr.cgi?pr=159378 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 01:29:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 487CA1065688; Tue, 27 Dec 2011 01:29:22 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B9938FC1B; Tue, 27 Dec 2011 01:29:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR1TLG1020737; Tue, 27 Dec 2011 01:29:21 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR1TLKv020733; Tue, 27 Dec 2011 01:29:21 GMT (envelope-from eadler) Date: Tue, 27 Dec 2011 01:29:21 GMT Message-Id: <201112270129.pBR1TLKv020733@freefall.freebsd.org> To: eadler@FreeBSD.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/154401: New port: www/jetty7 - newer fork by Eclipse/Codehaus X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 01:29:22 -0000 Synopsis: New port: www/jetty7 - newer fork by Eclipse/Codehaus Responsible-Changed-From-To: eadler->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Tue Dec 27 01:29:21 UTC 2011 Responsible-Changed-Why: wow, I took too many PRs, and I won't have time to work on all of them :( http://www.freebsd.org/cgi/query-pr.cgi?pr=154401 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 01:29:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D76821065672; Tue, 27 Dec 2011 01:29:24 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A90A68FC16; Tue, 27 Dec 2011 01:29:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR1TOZw020806; Tue, 27 Dec 2011 01:29:24 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR1TOAR020802; Tue, 27 Dec 2011 01:29:24 GMT (envelope-from eadler) Date: Tue, 27 Dec 2011 01:29:24 GMT Message-Id: <201112270129.pBR1TOAR020802@freefall.freebsd.org> To: eadler@FreeBSD.org, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/157301: [New port] net-mgmt/zbxlog: Syslog server receives messages and send them to Zabbix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 01:29:24 -0000 Synopsis: [New port] net-mgmt/zbxlog: Syslog server receives messages and send them to Zabbix Responsible-Changed-From-To: eadler->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Tue Dec 27 01:29:24 UTC 2011 Responsible-Changed-Why: wow, I took too many PRs, and I won't have time to work on all of them :( http://www.freebsd.org/cgi/query-pr.cgi?pr=157301 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 01:38:48 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 092EC1065673; Tue, 27 Dec 2011 01:38:48 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D02188FC1D; Tue, 27 Dec 2011 01:38:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR1cltZ031321; Tue, 27 Dec 2011 01:38:47 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR1clWD031317; Tue, 27 Dec 2011 01:38:47 GMT (envelope-from jgh) Date: Tue, 27 Dec 2011 01:38:47 GMT Message-Id: <201112270138.pBR1clWD031317@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/154401: New port: www/jetty7 - newer fork by Eclipse/Codehaus X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 01:38:48 -0000 Synopsis: New port: www/jetty7 - newer fork by Eclipse/Codehaus Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Tue Dec 27 01:38:47 UTC 2011 Responsible-Changed-Why: I'll take this http://www.freebsd.org/cgi/query-pr.cgi?pr=154401 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 02:07:36 2011 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 5C73F106564A for ; Tue, 27 Dec 2011 02:07:36 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-lpp01m010-f54.google.com (mail-lpp01m010-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id D2A108FC08 for ; Tue, 27 Dec 2011 02:07:35 +0000 (UTC) Received: by lahl5 with SMTP id l5so6218662lah.13 for ; Mon, 26 Dec 2011 18:07:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:content-type :content-transfer-encoding; bh=1oM7KuaaFNrfQQz7XuoDSRj7T3AB61runuCTfGr7uF8=; b=BoraZccXBlQlc21IQSa7b/Gh2I+gtxW1hjuOAaU2Y2T/P4hG7xG0q4qlnOhIDJmPnd uKKPryAzPyKQ4mirnXvMYJzkUgHLJopAELj2cPHKZc4zeztnul3p4mLDV2ndlvQfeG6v jVO4LEmxCv7Rf+pQAiup6+B0ulSWTg14Scqbg= Received: by 10.152.104.6 with SMTP id ga6mr20823066lab.45.1324949943131; Mon, 26 Dec 2011 17:39:03 -0800 (PST) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.152.129.8 with HTTP; Mon, 26 Dec 2011 17:38:32 -0800 (PST) In-Reply-To: <201112251828.pBPISHxE062029@freefall.freebsd.org> References: <201112251828.pBPISHxE062029@freefall.freebsd.org> From: Eitan Adler Date: Mon, 26 Dec 2011 20:38:32 -0500 X-Google-Sender-Auth: kLmwMT4BJxtjW896W7glBisyXqc Message-ID: To: robcrossfield@gmail.com, freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: ports/158781: New port: games/drcreep Platform Puzzle Game X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 02:07:36 -0000 Thanks for making those changes - they improved the port a lot. We are not yet done though The port fails to build in tinderbox: cd /work/a/ports/games/drcreep/work/head && c++ -DFREEBSD -o drcreep -O2 -fno-strict-aliasing -pipe =C2=A0`/usr/local/bin/sdl-config --cflags --libs` -I./src src/*.cpp src/graphics/*.cpp src/graphics/scale/*.cpp src/castle/*.cpp src/castle/objects/*.cpp src/vic-ii/*.cpp src/resid-0.16/*.cpp src/sound/*.cpp -lcompatsrc/stdafx.cpp: In function 'std::vector, std::allocator >, std::allocator, std::allocator > > > directoryList(std::string, std::string, bool)':src/stdafx.cpp:408: error: invalid conversion from 'int (*)(const dirent*)' to 'int (*)(dirent*)'src/stdafx.cpp:408: error: =C2=A0 initializing argument 3 of 'int scandir(const char*, dirent***, int (*)(dirent*), int (*)(const void*, const void*))'*** Error code 1 While here: - in pkg-plist you could swap share/drcreep with %%DATADIR%% - we don't include maintainer names in pkg-descr - WWW must be the last line in pkg-descr After these issues are worked out we are read to commit it! On Sun, Dec 25, 2011 at 1:28 PM, wrote: > Synopsis: New port: games/drcreep Platform Puzzle Game > > Responsible-Changed-From-To: freebsd-ports-bugs->eadler > Responsible-Changed-By: eadler > Responsible-Changed-When: Sun Dec 25 18:28:17 UTC 2011 > Responsible-Changed-Why: > I'll take it. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D158781 > --=20 Eitan Adler Ports committer X11, Bugbusting teams From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 02:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F4F51065670 for ; Tue, 27 Dec 2011 02: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 4A0808FC0A for ; Tue, 27 Dec 2011 02:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR2AAD5057292 for ; Tue, 27 Dec 2011 02:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR2AAOX057291; Tue, 27 Dec 2011 02:10:10 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 02:10:10 GMT Resent-Message-Id: <201112270210.pBR2AAOX057291@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, Anthony Chavez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1160D106566C for ; Tue, 27 Dec 2011 02:08:28 +0000 (UTC) (envelope-from acc@hexadecagram.org) Received: from mail.itproficiency.com (hexadecagram.org [166.70.126.65]) by mx1.freebsd.org (Postfix) with ESMTP id B4DA78FC1A for ; Tue, 27 Dec 2011 02:08:27 +0000 (UTC) Received: from mail (mail.hexadecagram.org [192.168.133.11]) by mail.itproficiency.com (Postfix) with ESMTP id 00615B02FC9 for ; Mon, 26 Dec 2011 19:08:26 -0700 (MST) Received: from mail.itproficiency.com ([192.168.133.11]) by mail (mail.itproficiency.com [192.168.133.11]) (amavisd-new, port 10024) with LMTP id 64M5EWMouoF2 for ; Mon, 26 Dec 2011 19:08:04 -0700 (MST) Received: from metis.hexadecagram.org (mail.hexadecagram.org [192.168.133.11]) by mail.itproficiency.com (Postfix) with ESMTPS id D6EF3B02FC8 for ; Mon, 26 Dec 2011 19:08:03 -0700 (MST) Received: (from acc@localhost) by metis.hexadecagram.org (8.14.5/8.14.5/Submit) id pBR283ST049909; Mon, 26 Dec 2011 19:08:03 -0700 (MST) (envelope-from acc) Message-Id: <201112270208.pBR283ST049909@metis.hexadecagram.org> Date: Mon, 26 Dec 2011 19:08:03 -0700 (MST) From: Anthony Chavez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163636: net/opal fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anthony Chavez List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2011 02:10:10 -0000 >Number: 163636 >Category: ports >Synopsis: net/opal fails to build >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: Tue Dec 27 02:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Anthony Chavez >Release: FreeBSD 8.2-STABLE i386 >Organization: >Environment: System: FreeBSD metis.hexadecagram.org 8.2-STABLE FreeBSD 8.2-STABLE #0: Thu Nov 10 16:13:27 MST 2011 root@metis.hexadecagram.org:/usr/obj/usr/src/sys/METIS i386 >Description: When attempting to build net/opal, the following error is produced: c++ -O1 -I/usr/ports/devel/pwlib/work/ptlib_v1_12_0/include -I/usr/local/include -D_REENTRANT -pthread -fno-exceptions -O1 -I/usr/ports/devel/pwlib/work/ptlib_v1_12_0/include -I/usr/local/include -Wall -DNDEBUG -DPTRACING -I/usr/ports/net/opal/work/opal-2.2.11/include -I/usr/local/include/ffmpeg -DPTRACING -I/usr/local/share/pwlib//include -Os -O2 -pipe -fPIC -fno-strict-aliasing -O1 -I/usr/ports/devel/pwlib/work/ptlib_v1_12_0/include -I/usr/local/include -O1 -I/usr/ports/devel/pwlib/work/ptlib_v1_12_0/include -I/usr/local/include -c /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx -o /usr/ports/net/opal/work/opal-2.2.11/lib/obj_r/h263codec.o In file included from /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:63: /usr/local/include/ffmpeg/avcodec.h:547: warning: attribute ignored in declaration of 'enum AVLPCType' /usr/local/include/ffmpeg/avcodec.h:547: warning: attribute for 'enum AVLPCType' must follow the 'enum' keyword /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx: In member function 'BOOL Opal_H263_YUV420P::OpenCodec()': /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:642: error: 'struct AVCodecContext' has no member named 'error_resilience' /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:642: error: 'FF_ER_CAREFULL' was not declared in this scope /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx: In member function 'virtual BOOL Opal_H263_YUV420P::ConvertFrames(const RTP_DataFrame&, RTP_DataFrameList&)': /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:695: error: 'CODEC_FLAG_RFC2190' was not declared in this scope /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx: In member function 'BOOL Opal_YUV420P_H263::OpenCodec()': /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:847: warning: 'mb_qmin' is deprecated (declared at /usr/local/include/ffmpeg/avcodec.h:1884) /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:847: warning: 'mb_qmin' is deprecated (declared at /usr/local/include/ffmpeg/avcodec.h:1884) /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:848: warning: 'mb_qmax' is deprecated (declared at /usr/local/include/ffmpeg/avcodec.h:1891) /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:848: warning: 'mb_qmax' is deprecated (declared at /usr/local/include/ffmpeg/avcodec.h:1891) /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:864: error: 'struct AVCodecContext' has no member named 'frame_rate_base' /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:865: error: 'struct AVCodecContext' has no member named 'frame_rate' /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:872: error: 'CODEC_FLAG_H263P_AIC' was not declared in this scope /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:874: error: 'CODEC_FLAG_RFC2190' was not declared in this scope /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:876: error: 'struct AVCodecContext' has no member named 'rtp_mode' /usr/ports/net/opal/work/opal-2.2.11/src/codec/h263codec.cxx:878: error: invalid conversion from 'void (*)(void*, int, void*, int, void*)' to 'void (*)(AVCodecContext*, void*, int, int)' gmake[1]: *** [/usr/ports/net/opal/work/opal-2.2.11/lib/obj_r/h263codec.o] Error 1 gmake[1]: Leaving directory `/usr/ports/net/opal/work/opal-2.2.11' gmake: *** [optshared] Error 2 *** Error code 1 Stop in /usr/ports/net/opal. *** Error code 1 Stop in /usr/ports/net/opal. >How-To-Repeat: sudo portmaster net/opal >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 02:10:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73BE1106564A; Tue, 27 Dec 2011 02:10: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 46FB08FC15; Tue, 27 Dec 2011 02:10:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR2ALvR057632; Tue, 27 Dec 2011 02:10:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR2ALGc057621; Tue, 27 Dec 2011 02:10:21 GMT (envelope-from edwin) Date: Tue, 27 Dec 2011 02:10:21 GMT Message-Id: <201112270210.pBR2ALGc057621@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163636: net/opal fails 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: Tue, 27 Dec 2011 02:10:21 -0000 Synopsis: net/opal fails to build Responsible-Changed-From-To: freebsd-ports-bugs->mi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 27 02:10:20 UTC 2011 Responsible-Changed-Why: mi@aldan.algebra.com => mi@ (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163636 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 02:20:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD71E106564A for ; Tue, 27 Dec 2011 02:20: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 A01428FC12 for ; Tue, 27 Dec 2011 02:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR2KDaU067567 for ; Tue, 27 Dec 2011 02:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR2KDbA067566; Tue, 27 Dec 2011 02:20:13 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 02:20:13 GMT Resent-Message-Id: <201112270220.pBR2KDbA067566@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, Stephon Chen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 469C1106566B for ; Tue, 27 Dec 2011 02:10:51 +0000 (UTC) (envelope-from stephon@empty-1-101.pixnet.net) Received: from epaper.pixnet.net (srvnat.pixnet.tw [60.199.247.250]) by mx1.freebsd.org (Postfix) with ESMTP id 172448FC14 for ; Tue, 27 Dec 2011 02:10:50 +0000 (UTC) Message-Id: <201112270151.pBR1peAh056411@empty-1-101> Date: Tue, 27 Dec 2011 09:51:40 +0800 (CST) From: Stephon Chen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: komarov@valerka.net Subject: ports/163637: [PATCH] devel/p5-Thrift: update to 0.7.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, 27 Dec 2011 02:20:14 -0000 >Number: 163637 >Category: ports >Synopsis: [PATCH] devel/p5-Thrift: update to 0.7.0 >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 Dec 27 02:20:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Stephon Chen >Release: FreeBSD 8.2-RELEASE-p3 amd64 >Organization: PIXNET >Environment: System: FreeBSD empty-1-101 8.2-RELEASE-p3 FreeBSD 8.2-RELEASE-p3 #0: Tue Sep 27 18:45:57 UTC 2011 >Description: - Update to 0.7.0 Port maintainer (komarov@valerka.net) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Thrift-0.7.0,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Thrift/Makefile /.amd_mnt/10.4.1.1/vol/home/admin/stephon/ports/devel/p5-Thrift/Makefile --- /usr/ports/devel/p5-Thrift/Makefile 2011-12-27 05:16:40.000000000 +0800 +++ /.amd_mnt/10.4.1.1/vol/home/admin/stephon/ports/devel/p5-Thrift/Makefile 2011-12-27 09:43:56.888825000 +0800 @@ -2,17 +2,17 @@ # Date created: 27 September 2007 # Whom: Sergey Skvortsov # -# $FreeBSD: ports/devel/p5-Thrift/Makefile,v 1.9 2011/12/26 21:16:40 scheidell Exp $ +# $FreeBSD: ports/devel/p5-Thrift/Makefile,v 1.8 2011/08/11 22:37:12 skv Exp $ # PORTNAME= Thrift -PORTVERSION= 0.6.1 +PORTVERSION= 0.7.0 PORTEPOCH= 1 CATEGORIES= devel perl5 PKGNAMEPREFIX= p5- DISTFILES= -MAINTAINER= komarov@valerka.net +MAINTAINER= skv@FreeBSD.org COMMENT= Perl interface to Thrift RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Bit/Vector.pm:${PORTSDIR}/math/p5-Bit-Vector --- p5-Thrift-0.7.0,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 02:20:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47B54106566C; Tue, 27 Dec 2011 02:20:24 +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 18EDE8FC15; Tue, 27 Dec 2011 02:20:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR2KNkW068094; Tue, 27 Dec 2011 02:20:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR2KNDO068090; Tue, 27 Dec 2011 02:20:23 GMT (envelope-from edwin) Date: Tue, 27 Dec 2011 02:20:23 GMT Message-Id: <201112270220.pBR2KNDO068090@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163637: [PATCH] devel/p5-Thrift: update to 0.7.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, 27 Dec 2011 02:20:24 -0000 Synopsis: [PATCH] devel/p5-Thrift: update to 0.7.0 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 27 02:20:23 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163637 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 03:55:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D1C0106564A; Tue, 27 Dec 2011 03:55:13 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E400D8FC0C; Tue, 27 Dec 2011 03:55:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR3tCGr058251; Tue, 27 Dec 2011 03:55:12 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR3tCkI058247; Tue, 27 Dec 2011 03:55:12 GMT (envelope-from rm) Date: Tue, 27 Dec 2011 03:55:12 GMT Message-Id: <201112270355.pBR3tCkI058247@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/163600: [maintainer] [patch] graphics/xmlgraphics-commons Update to svn r1222519 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 03:55:13 -0000 Synopsis: [maintainer] [patch] graphics/xmlgraphics-commons Update to svn r1222519 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Dec 27 03:55:12 UTC 2011 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163600 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 04:14:35 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C4E5106564A; Tue, 27 Dec 2011 04:14:35 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 329398FC12; Tue, 27 Dec 2011 04:14:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR4EZvo076554; Tue, 27 Dec 2011 04:14:35 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR4EZPD076550; Tue, 27 Dec 2011 04:14:35 GMT (envelope-from rm) Date: Tue, 27 Dec 2011 04:14:35 GMT Message-Id: <201112270414.pBR4EZPD076550@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/161938: New port www/pyLoad a fast, lightweight and full featured download manager X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 04:14:35 -0000 Synopsis: New port www/pyLoad a fast, lightweight and full featured download manager Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Dec 27 04:14:34 UTC 2011 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=161938 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 04:18:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59D531065676; Tue, 27 Dec 2011 04:18:02 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 304ED8FC1A; Tue, 27 Dec 2011 04:18:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR4I1Bp077033; Tue, 27 Dec 2011 04:18:01 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR4I1UB077029; Tue, 27 Dec 2011 04:18:01 GMT (envelope-from rm) Date: Tue, 27 Dec 2011 04:18:01 GMT Message-Id: <201112270418.pBR4I1UB077029@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/163632: update audio/firefly to fix itunes 10.5.2 compatibility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 04:18:02 -0000 Synopsis: update audio/firefly to fix itunes 10.5.2 compatibility Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Dec 27 04:18:01 UTC 2011 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163632 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 04:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA9A01065670 for ; Tue, 27 Dec 2011 04: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 A86A28FC12 for ; Tue, 27 Dec 2011 04:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR4oBMh005756 for ; Tue, 27 Dec 2011 04:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR4oB6x005755; Tue, 27 Dec 2011 04:50:11 GMT (envelope-from gnats) Date: Tue, 27 Dec 2011 04:50:11 GMT Message-Id: <201112270450.pBR4oB6x005755@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ruslan Mahmatkhanov Cc: Subject: Re: ports/158904: [PATCH] finance/openerp-web: update to 6.0.2 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: Tue, 27 Dec 2011 04:50:11 -0000 The following reply was made to PR ports/158904; it has been noted by GNATS. From: Ruslan Mahmatkhanov To: bug-followup@FreeBSD.org Cc: Jin-Sih Lin Subject: Re: ports/158904: [PATCH] finance/openerp-web: update to 6.0.2 Date: Tue, 27 Dec 2011 08:41:35 +0400 Hello. 6.0.3 version is available. Would you please update the diff to this version? -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 06:47:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49464106564A; Tue, 27 Dec 2011 06:47:18 +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 1EDF28FC08; Tue, 27 Dec 2011 06:47:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR6lI26022833; Tue, 27 Dec 2011 06:47:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR6lHbR022829; Tue, 27 Dec 2011 06:47:17 GMT (envelope-from linimon) Date: Tue, 27 Dec 2011 06:47:17 GMT Message-Id: <201112270647.pBR6lHbR022829@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/150086: [NEW PORT] net-im/tkabber-plugins-devel: External Plugins for Tkabber X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 06:47:18 -0000 Synopsis: [NEW PORT] net-im/tkabber-plugins-devel: External Plugins for Tkabber Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: linimon Responsible-Changed-When: Tue Dec 27 06:45:34 UTC 2011 Responsible-Changed-Why: Attempt to de-confuse GNATS. http://www.freebsd.org/cgi/query-pr.cgi?pr=150086 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 07:15:49 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37EB21065672; Tue, 27 Dec 2011 07:15:49 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0E5AD8FC15; Tue, 27 Dec 2011 07:15:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR7Fmkf051036; Tue, 27 Dec 2011 07:15:48 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR7FmlF051032; Tue, 27 Dec 2011 07:15:48 GMT (envelope-from rm) Date: Tue, 27 Dec 2011 07:15:48 GMT Message-Id: <201112270715.pBR7FmlF051032@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/160579: [PATCH] audio/firefly: portlint(1) fixes and more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 07:15:49 -0000 Synopsis: [PATCH] audio/firefly: portlint(1) fixes and more Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Dec 27 07:15:48 UTC 2011 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=160579 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 09:10:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EEE91065679 for ; Tue, 27 Dec 2011 09: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 0391E8FC15 for ; Tue, 27 Dec 2011 09:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBR9AEY1077412 for ; Tue, 27 Dec 2011 09:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBR9AELX077411; Tue, 27 Dec 2011 09:10:14 GMT (envelope-from gnats) Date: Tue, 27 Dec 2011 09:10:14 GMT Message-Id: <201112270910.pBR9AELX077411@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tsurutani Naoki Cc: Subject: Re: ports/161139: restore sysutils/gpart X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tsurutani Naoki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2011 09:10:15 -0000 The following reply was made to PR ports/161139; it has been noted by GNATS. From: Tsurutani Naoki To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/161139: restore sysutils/gpart Date: Tue, 27 Dec 2011 18:02:49 +0900 sysutils/testdisk will work instead. I have no objection to close this PR and remove this port. --- Tsurutani Naoki turutani@scphys.kyoto-u.ac.jp From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 10:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D6C6106566B for ; Tue, 27 Dec 2011 10: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 183158FC17 for ; Tue, 27 Dec 2011 10:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRAA9nA032061 for ; Tue, 27 Dec 2011 10:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRAA93Q032060; Tue, 27 Dec 2011 10:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 10:10:09 GMT Resent-Message-Id: <201112271010.pBRAA93Q032060@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 Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBDC5106566B for ; Tue, 27 Dec 2011 10:05:04 +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 7101D8FC15 for ; Tue, 27 Dec 2011 10:05:04 +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 D352211443; Tue, 27 Dec 2011 19:05:02 +0900 (JST) Received: from [IPv6:2001:3e0:4ec:a011:1d24:bd9:5ccd:2e9] (unknown [IPv6:2001:3e0:4ec:a011:1d24:bd9:5ccd:2e9]) by ae-osaka.co.jp (Postfix) with ESMTPSA id B54D511440; Tue, 27 Dec 2011 19:05:02 +0900 (JST) Message-Id: <4EF9984E.50304@airport.fm> Date: Tue, 27 Dec 2011 19:05:02 +0900 From: Takefu To: freebsd-gnats-submit@FreeBSD.org In-Reply-To: <201112270956.pBR9uanA028044@unbound.local.ae-osaka.co.jp> References: <201112270956.pBR9uanA028044@unbound.local.ae-osaka.co.jp> Cc: bc979@lafn.org Subject: ports/163639: [PATCH] mail/qpopper: use RC_SUBR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 10:10:10 -0000 >Number: 163639 >Category: ports >Synopsis: [PATCH] mail/qpopper: use RC_SUBR >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 Dec 27 10:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.2-RELEASE-p5 amd64 >Organization: FOX Amateur Radio Club >Environment: >Description: - add USE_RC_SUBR with WITH_STANDALONE_MODE - fix pkg-desc Port maintainer (bc979@lafn.org) is cc'd. >How-To-Repeat: >Fix: --- qpopper.patch begins here --- diff -ruN /usr/ports/mail/qpopper/Makefile mail/qpopper/Makefile --- /usr/ports/mail/qpopper/Makefile 2011-07-18 16:22:38.000000000 +0900 +++ mail/qpopper/Makefile 2011-12-27 18:40:41.000000000 +0900 @@ -119,6 +119,7 @@ # without inetd. .if defined(WITH_STANDALONE_MODE) CONFIGURE_ARGS+= --enable-standalone +USE_RC_SUBR= ${PORTNAME} .endif # The default is to build without SSL/TLS support. diff -ruN /usr/ports/mail/qpopper/files/qpopper.in mail/qpopper/files/qpopper.in --- /usr/ports/mail/qpopper/files/qpopper.in 1970-01-01 09:00:00.000000000 +0900 +++ mail/qpopper/files/qpopper.in 2011-12-27 18:42:27.000000000 +0900 @@ -0,0 +1,26 @@ +#!/bin/sh +# +# $FreeBSD$ + +# PROVIDE: qpopper +# REQUIRE: NETWORKING SERVERS +# BEFORE: DAEMON +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable qpopper: +# qpopper_enable="YES" +# + +qpopper_enable=${qpopper_enable-"NO"} +qpopper_flags=${qpopper_flags-""} + +. /etc/rc.subr + +name=qpopper +rcvar=`set_rcvar` +command=%%PREFIX%%/libexec/qpopper +command_args="${qpopper_flags}" + +load_rc_config $name +run_rc_command "$1" diff -ruN /usr/ports/mail/qpopper/pkg-descr mail/qpopper/pkg-descr --- /usr/ports/mail/qpopper/pkg-descr 2010-07-21 16:56:52.000000000 +0900 +++ mail/qpopper/pkg-descr 2011-12-27 18:55:25.000000000 +0900 @@ -1,8 +1,6 @@ -This is a POP 3 server useful for dealing with remote mail reader clients -such as Eudora. One of the 4.1a2 patches has been included so that -home-dir-misc actually works. The option and patch for IPv6 have been removed -as it they are not up to date for 4.0.9. +Qpopper is the most widely-used server for the POP3 protocol +(this allows users to access their mail using any POP3 client). Don't forget to edit /etc/inetd.conf to enable the server after installation. -WWW: http://www.eudora.com/products/unsupported/qpopper/index.html +WWW: http://www.eudora.com/products/unsupported/qpopper/ --- qpopper.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 10:10:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EF7E1065672; Tue, 27 Dec 2011 10:10: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 0547C8FC08; Tue, 27 Dec 2011 10:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRAALU2032328; Tue, 27 Dec 2011 10:10:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRAALjV032324; Tue, 27 Dec 2011 10:10:21 GMT (envelope-from edwin) Date: Tue, 27 Dec 2011 10:10:21 GMT Message-Id: <201112271010.pBRAALjV032324@freefall.freebsd.org> To: takefu@airport.fm, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163639: [PATCH] mail/qpopper: use RC_SUBR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 10:10:22 -0000 Synopsis: [PATCH] mail/qpopper: use RC_SUBR State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Dec 27 10:10:21 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163639 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 10:20:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48A03106564A for ; Tue, 27 Dec 2011 10: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 378C38FC0A for ; Tue, 27 Dec 2011 10:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRAKDWh044203 for ; Tue, 27 Dec 2011 10:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRAKDt4044202; Tue, 27 Dec 2011 10:20:13 GMT (envelope-from gnats) Date: Tue, 27 Dec 2011 10:20:13 GMT Message-Id: <201112271020.pBRAKDt4044202@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163639: [PATCH] mail/qpopper: use RC_SUBR 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, 27 Dec 2011 10:20:13 -0000 The following reply was made to PR ports/163639; it has been noted by GNATS. From: Edwin Groothuis To: bc979@lafn.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/163639: [PATCH] mail/qpopper: use RC_SUBR Date: Tue, 27 Dec 2011 10:10:19 UT Maintainer of mail/qpopper, Please note that PR ports/163639 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/163639 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 11:10:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 638991065675 for ; Tue, 27 Dec 2011 11: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 3F2D78FC17 for ; Tue, 27 Dec 2011 11:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRBAEhd088822 for ; Tue, 27 Dec 2011 11:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRBAEe2088821; Tue, 27 Dec 2011 11:10:14 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 11:10:14 GMT Resent-Message-Id: <201112271110.pBRBAEe2088821@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 Rees Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B9A54106564A for ; Tue, 27 Dec 2011 11:08:50 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8DDC48FC14 for ; Tue, 27 Dec 2011 11:08:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRB8oUL088709 for ; Tue, 27 Dec 2011 11:08:50 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRB8o9U088708; Tue, 27 Dec 2011 11:08:50 GMT (envelope-from crees) Message-Id: <201112271108.pBRB8o9U088708@freefall.freebsd.org> Date: Tue, 27 Dec 2011 11:08:50 GMT From: Chris Rees To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163640: bsd.licenses.mk: Add code to support standard licenses X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Chris Rees List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2011 11:10:14 -0000 >Number: 163640 >Category: ports >Synopsis: bsd.licenses.mk: Add code to support standard licenses >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 Dec 27 11:10:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Chris Rees >Release: FreeBSD 8.2-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 8.2-STABLE FreeBSD 8.2-STABLE #5 r227907: Wed Nov 23 21:55:50 UTC 2011 simon@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=374446+0+current/cvs-ports As described, LICENSE= 'some known license' leaves us with a dummy file in /usr/local/share/licenses/${PKGNAME} that suggests that we fetch the license ourselves from the Internet. This patch checks in _LICENSE_STORE for a matching license and uses that if it exists >How-To-Repeat: >Fix: Try it out by applying, and drop some licenses into ${PORTSDIR}/Templates/licenses with the same filename as the LICENSE variable. --- licenses.patch begins here --- ? Templates/licenses Index: Mk/bsd.licenses.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.licenses.mk,v retrieving revision 1.8 diff -u -r1.8 bsd.licenses.mk --- Mk/bsd.licenses.mk 31 Mar 2011 03:37:14 -0000 1.8 +++ Mk/bsd.licenses.mk 27 Dec 2011 11:03:29 -0000 @@ -141,6 +141,7 @@ # # _LICENSE_DIR - Directory to install licenses # _LICENSE_DIR_REL - Same as above, without ${PREFIX} +# _LICENSE_STORE - Store for known license files # _LICENSE_CATALOG - License catalog (make include file) to be created (dst) # _LICENSE_CATALOG_TMP - Same as above, but in WRKDIR (src) # _LICENSE_REPORT - License summary, shows licenses and how they are combined (dst) @@ -151,6 +152,7 @@ _LICENSE_DIR?= ${PREFIX}/share/licenses/${PKGNAME} _LICENSE_DIR_REL?= share/licenses/${PKGNAME} +_LICENSE_STORE?= ${PORTSDIR}/Templates/licenses _LICENSE_CATALOG?= ${_LICENSE_DIR}/catalog.mk _LICENSE_CATALOG_TMP?= ${WRKDIR}/.license-catalog.mk _LICENSE_REPORT?= ${_LICENSE_DIR}/LICENSE @@ -228,9 +230,13 @@ # Check for LICENSE_FILE or at least LICENSE_TEXT (which simulates it) . if !defined(LICENSE_FILE) . if !defined(LICENSE_TEXT) -# XXX Until we have a license pool under /usr/ports/Licenses use this +. if exists(${_LICENSE_STORE}/${lic}) +_LICENSE_FILE= ${_LICENSE_STORE}/${lic} +. else +# No license file in /usr/ports/Templates/licenses _LICENSE_TEXT= The license: ${_LICENSE} (${_LICENSE_NAME}) is standard, please read from the web. _LICENSE_FILE= ${WRKDIR}/${lic} +. endif . else _LICENSE_ERROR?= defining LICENSE_TEXT is not allowed for known licenses . endif --- licenses.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 14:10:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD7631065675 for ; Tue, 27 Dec 2011 14: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 17AC08FC19 for ; Tue, 27 Dec 2011 14:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBREAA1A055774 for ; Tue, 27 Dec 2011 14:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBREAA4v055773; Tue, 27 Dec 2011 14:10:10 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 14:10:10 GMT Resent-Message-Id: <201112271410.pBREAA4v055773@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, Kuan-Chung Chiu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27429106564A for ; Tue, 27 Dec 2011 14:04:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 0B0288FC13 for ; Tue, 27 Dec 2011 14:04:56 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBRE4tWE038250 for ; Tue, 27 Dec 2011 14:04:55 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBRE4tin038249; Tue, 27 Dec 2011 14:04:55 GMT (envelope-from nobody) Message-Id: <201112271404.pBRE4tin038249@red.freebsd.org> Date: Tue, 27 Dec 2011 14:04:55 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163642: [New Port] converters/gbsdconv: GUI for bsdconv X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 14:10:11 -0000 >Number: 163642 >Category: ports >Synopsis: [New Port] converters/gbsdconv: GUI for bsdconv >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 Dec 27 14:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: >Organization: N/A >Environment: >Description: Add port for gbsdconv: GUI for bsdconv. Features: Auto choose the best from mutiple conversion Text conversion File name conversion File content conversion Meta tag conversion WWW: https://github.com/buganini/gbsdconv >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: # # gbsdconv/ # gbsdconv/pkg-descr # gbsdconv/distinfo # gbsdconv/Makefile # gbsdconv/pkg-plist # echo c - gbsdconv/ mkdir -p gbsdconv/ > /dev/null 2>&1 echo x - gbsdconv/pkg-descr sed 's/^X//' >gbsdconv/pkg-descr << 'eb1ec2a2728012eecf7c1b41ecdc609a' XGUI for bsdconv. X XFeatures: X Auto choose the best from mutiple conversion X Text conversion X File name conversion X File content conversion X Meta tag conversion X XWWW: https://github.com/buganini/gbsdconv eb1ec2a2728012eecf7c1b41ecdc609a echo x - gbsdconv/distinfo sed 's/^X//' >gbsdconv/distinfo << 'd5de3689e838637435e7265c6c487324' XSHA256 (buganini-gbsdconv-0.2-0-g6de84a5.tar.gz) = 55c7e0c66382f4a8719167eaa207be5c1a618dfb3445ef3b26815710c7b3d37b XSIZE (buganini-gbsdconv-0.2-0-g6de84a5.tar.gz) = 13076 d5de3689e838637435e7265c6c487324 echo x - gbsdconv/Makefile sed 's/^X//' >gbsdconv/Makefile << '3192de94413bbdaa7b1928cd69b7c436' X# New ports collection makefile for: gbsdconv X# Date created: 22 Dec, 2011 X# Whom: buganini@gmail.com X# X# $FreeBSD$ X# X XPORTNAME= gbsdconv XPORTVERSION= 0.2 XCATEGORIES= converters python XMASTER_SITES= https://github.com/buganini/${PORTNAME}/tarball/${PORTVERSION}/ XDISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} X XMAINTAINER= buganini@gmail.com XCOMMENT= GUI for bsdconv X XLICENSE= BSD X XRUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsdconv>=7.1:${PORTSDIR}/converters/py-bsdconv \ X ${LOCALBASE}/lib/libtag_c.so:${PORTSDIR}/audio/taglib \ X g-ir-scanner:${PORTSDIR}/devel/gobject-introspection X XGITVERSION= 6de84a5 XFETCH_ARGS= -pRr XWRKSRC= ${WRKDIR}/buganini-${PORTNAME}-${GITVERSION} XNO_BUILD= yes X XUSE_GNOME+= gtk30 XUSE_PYTHON= yes X Xpost-patch: X @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/gbsdconv X Xdo-install: X ${MKDIR} ${PREFIX}/share/gbsdconv X ${INSTALL_DATA} ${WRKSRC}/gbsdconv.xml ${PREFIX}/share/gbsdconv/ X ${INSTALL_DATA} ${WRKSRC}/gbsdconv.png ${PREFIX}/share/gbsdconv/ X ${INSTALL_SCRIPT} ${WRKSRC}/gbsdconv ${PREFIX}/bin X X.include 3192de94413bbdaa7b1928cd69b7c436 echo x - gbsdconv/pkg-plist sed 's/^X//' >gbsdconv/pkg-plist << '99b5fcd7ecc5f112bfc63cd03e153d6c' Xbin/gbsdconv X%%DATADIR%%/gbsdconv.png X%%DATADIR%%/gbsdconv.xml X@dirrm %%DATADIR%% 99b5fcd7ecc5f112bfc63cd03e153d6c exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 14:15:30 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4428F1065678; Tue, 27 Dec 2011 14:15:30 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 287778FC16; Tue, 27 Dec 2011 14:15:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBREFUII065193; Tue, 27 Dec 2011 14:15:30 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBREFTEo065189; Tue, 27 Dec 2011 14:15:29 GMT (envelope-from scheidell) Date: Tue, 27 Dec 2011 14:15:29 GMT Message-Id: <201112271415.pBREFTEo065189@freefall.freebsd.org> To: erik@bz.bzflag.bz, scheidell@FreeBSD.org, scheidell@FreeBSD.org, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163205: graphics/gauche-gl won't build with gauche 0.9.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: Tue, 27 Dec 2011 14:15:30 -0000 Synopsis: graphics/gauche-gl won't build with gauche 0.9.2 State-Changed-From-To: feedback->open State-Changed-By: scheidell State-Changed-When: Tue Dec 27 14:09:25 UTC 2011 State-Changed-Why: Back to the pool. There are too many inconsistancies in gauche- and gaughe-gl. Suggest you look at update to newest gauche, 0.5.1. STILL, HOWEVER, this and main gauche should have consistant use of /usr/local/share/gauche/ vs ../gauche-0.9/0.9.2. same with libs. this makefile is a START, but since I don't know where and how the applications themselves look for libs, I will not try to see if tinderbox will compile it. use this as a STARTING POINT, pay careful attention to MASTER_SITES (looks like it changed) BUILD_DEPENTS (you might need a minimum version to support new file trees) USE_LDCONFIG DATADIR (SITELIBDIR), gauche 0.9.2 wants it gauche-config --sitelibdir don't need the post patch (looks like upstream fixed) pay attention to pkg-plist. so, my starter patch: pcvs diff -Nu Makefile | less socket: Protocol not supported Index: Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/gauche-gl/Makefile,v retrieving revision 1.30 diff -u -u -r1.30 Makefile --- Makefile 18 Dec 2011 21:45:39 -0000 1.30 +++ Makefile 27 Dec 2011 14:11:49 -0000 @@ -6,10 +6,9 @@ # PORTNAME= gl -PORTVERSION= 0.4.4 -PORTREVISION= 1 +PORTVERSION= 0.5.1 CATEGORIES= graphics scheme -MASTER_SITES= SF/gauche/Gauche-gl/${PORTVERSION} +MASTER_SITES= SF/gauche/Gauche-gl/ PKGNAMEPREFIX= gauche- DISTNAME= Gauche-${PORTNAME}-${PORTVERSION} EXTRACT_SUFX= .tgz @@ -17,27 +16,27 @@ MAINTAINER= erik@bz.bzflag.bz COMMENT= OpenGL binding for Gauche -BUILD_DEPENDS= gosh:${PORTSDIR}/lang/gauche -RUN_DEPENDS= ${BUILD_DEPENDS} - -BROKEN= does not build +BUILD_DEPENDS= gauche>=0.9.2:${PORTSDIR}/lang/gauche +RUN_DEPENDS= gauche>=0.9.2:${PORTSDIR}/lang/gauche +# before you touch this above, see: portlint and error if you set build_depends = run_depends USE_GL= glut GNU_CONFIGURE= yes +VERSION= `gauche-config -V` +USE_LDCONFIG= lib/gauche/${VERSION}/${CONFIGURE_TARGET} MAKE_JOBS_UNSAFE= yes EXAMPLESDIR= ${PREFIX}/share/examples/gauche/${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/gauche/${PORTNAME} -PLIST_SUB= VERSION="`gauche-config -V`" \ - TARGET="${CONFIGURE_TARGET}" +SITELIBDIR= `gauche-config --sitelibdir | ${SED} -e 's|${PREFIX}||'` +PLIST_SUB= VERSION="${VERSION}" \ + TARGET="${CONFIGURE_TARGET}" \ + SITELIBDIR="${SITELIBDIR}" .if !defined(NOPORTDOCS) INFO= gauche-gl-refe gauche-gl-refj .endif -post-patch: - ${REINPLACE_CMD} s/VESRION/VERSION/ ${WRKSRC}/src/gen-ptrs.scm - do-install: cd ${WRKSRC}/src; ${MAKE} ${INSTALL_TARGET} cd ${WRKSRC}/lib; ${MAKE} ${INSTALL_TARGET} Responsible-Changed-From-To: scheidell->freebsd-ports-bugs Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Dec 27 14:09:25 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=163205 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 14:30:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB4A8106564A for ; Tue, 27 Dec 2011 14:30: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 993548FC14 for ; Tue, 27 Dec 2011 14:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBREUHNu074665 for ; Tue, 27 Dec 2011 14:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBREUHtZ074664; Tue, 27 Dec 2011 14:30:17 GMT (envelope-from gnats) Date: Tue, 27 Dec 2011 14:30:17 GMT Message-Id: <201112271430.pBREUHtZ074664@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/157107: conflict between mail/p5-Mail-SPF and mail/libspf2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2011 14:30:17 -0000 The following reply was made to PR ports/157107; it has been noted by GNATS. From: Michael Scheidell To: "'bug-followup@FreeBSD.org'" , "'mickael.maillot@gmail.com'" Cc: Subject: Re: ports/157107: conflict between mail/p5-Mail-SPF and mail/libspf2 Date: Tue, 27 Dec 2011 14:22:50 +0000 Your patch got corrupted, could you try to upload it again, and someone wil= l look at it? --=20 Michael Scheidell, CTO o: 561-999-5000 d: 561-948-2259 > | SECNAP Network Security Corporation=20 * Best Mobile Solutions Product of 2011 * Best Intrusion Prevention Product * Hot Company Finalist 2011 * Best Email Security Product * Certified SNORT Integrator ______________________________________________________________________ This email has been scanned and certified safe by SpammerTrap(r). For Information please see http://www.spammertrap.com/ ______________________________________________________________________ From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 14:38:49 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B63B106566B; Tue, 27 Dec 2011 14:38:49 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 002C98FC14; Tue, 27 Dec 2011 14:38:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBREcmBD084716; Tue, 27 Dec 2011 14:38:48 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBREcmXb084712; Tue, 27 Dec 2011 14:38:48 GMT (envelope-from scheidell) Date: Tue, 27 Dec 2011 14:38:48 GMT Message-Id: <201112271438.pBREcmXb084712@freefall.freebsd.org> To: systemoperator@gmail.com, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, systemoperator@gmail.com From: scheidell@FreeBSD.org Cc: Subject: Re: ports/155941: net/nepenthes: mwserv library support is not included in nepenthes.conf config file for net/nepenthes honeypot 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: Tue, 27 Dec 2011 14:38:49 -0000 Synopsis: net/nepenthes: mwserv library support is not included in nepenthes.conf config file for net/nepenthes honeypot port Responsible-Changed-From-To: freebsd-ports-bugs->systemoperator@gmail.com Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Dec 27 14:38:16 UTC 2011 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=155941 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 14:53:37 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 460A21065670; Tue, 27 Dec 2011 14:53:37 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1BD9D8FC18; Tue, 27 Dec 2011 14:53:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRErabR001698; Tue, 27 Dec 2011 14:53:36 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBREranX001694; Tue, 27 Dec 2011 14:53:36 GMT (envelope-from scheidell) Date: Tue, 27 Dec 2011 14:53:36 GMT Message-Id: <201112271453.pBREranX001694@freefall.freebsd.org> To: spam@rm-rf.kiev.ua, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163217: security/dropbear does not compile if WITH_STATIC is enabled X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 14:53:37 -0000 Synopsis: security/dropbear does not compile if WITH_STATIC is enabled Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Dec 27 14:52:45 UTC 2011 Responsible-Changed-Why: Alex: do you want someone to commit this patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=163217 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 14:55:59 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C709106564A; Tue, 27 Dec 2011 14:55:59 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 61F6C8FC12; Tue, 27 Dec 2011 14:55:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBREtxe9001804; Tue, 27 Dec 2011 14:55:59 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBREtxUm001800; Tue, 27 Dec 2011 14:55:59 GMT (envelope-from scheidell) Date: Tue, 27 Dec 2011 14:55:59 GMT Message-Id: <201112271455.pBREtxUm001800@freefall.freebsd.org> To: dan@langille.org, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163247: sysutils/bacula-bat 5.2.2 porte doesn't install libbacfind.so X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 14:55:59 -0000 Synopsis: sysutils/bacula-bat 5.2.2 porte doesn't install libbacfind.so Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Dec 27 14:55:01 UTC 2011 Responsible-Changed-Why: Dan: Do you want me to take this and see if I can't make pkg-plist happy also? If so, I'll send you patches first before committing them http://www.freebsd.org/cgi/query-pr.cgi?pr=163247 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 14:58:00 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F8B01065676; Tue, 27 Dec 2011 14:58:00 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 256EE8FC15; Tue, 27 Dec 2011 14:58:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBREvxtk001880; Tue, 27 Dec 2011 14:57:59 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBREvxRm001876; Tue, 27 Dec 2011 14:57:59 GMT (envelope-from scheidell) Date: Tue, 27 Dec 2011 14:57:59 GMT Message-Id: <201112271457.pBREvxRm001876@freefall.freebsd.org> To: michael.grunewald@laposte.net, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163275: [patch] lang/ocaml: install expunge script with right permissions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 14:58:00 -0000 Synopsis: [patch] lang/ocaml: install expunge script with right permissions Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Dec 27 14:56:59 UTC 2011 Responsible-Changed-Why: Michael: do you want these patches committed? Normal maintainer timeout has happened, let me know in the next couple of days, ok? commit? not commit? alternate patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=163275 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 15:02:28 2011 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 49340106564A; Tue, 27 Dec 2011 15:02:28 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id EF2B68FC13; Tue, 27 Dec 2011 15:02:27 +0000 (UTC) Received: by iadj38 with SMTP id j38so24986380iad.13 for ; Tue, 27 Dec 2011 07:02:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=FZUswF+H02u2Dbp48lDcETMWE8WsH62XI6yL8hC+Nso=; b=D62dVk6p980YlWqEkmdrzYbDtGt2ZReBOOWIz+TBmyeo0mAxPrMHwcUF62HgifcS4v EmScCufxYsrg4IKbmiKTTngz+jhhlyx/aZRwbpvSy7o60M9IU/IwMCRu3Vw0RvqPkYj8 dUDjFHyh7BY57br0NwPjNi5daewdVqjfQ9td4= Received: by 10.50.88.170 with SMTP id bh10mr31345820igb.8.1324998147277; Tue, 27 Dec 2011 07:02:27 -0800 (PST) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.231.207.7 with HTTP; Tue, 27 Dec 2011 07:01:55 -0800 (PST) In-Reply-To: <201112271453.pBREranX001694@freefall.freebsd.org> References: <201112271453.pBREranX001694@freefall.freebsd.org> From: Chris Rees Date: Tue, 27 Dec 2011 15:01:55 +0000 X-Google-Sender-Auth: 2eMiWAaSaupV2vdJt2sJxC8Eci8 Message-ID: To: scheidell@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-ports-bugs@freebsd.org, spam@rm-rf.kiev.ua, bug-followup@freebsd.org Subject: Re: ports/163217: security/dropbear does not compile if WITH_STATIC is enabled X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 15:02:28 -0000 On 27 December 2011 14:53, wrote: > Synopsis: security/dropbear does not compile if WITH_STATIC is enabled > > Responsible-Changed-From-To: freebsd-ports-bugs->scheidell > Responsible-Changed-By: scheidell > Responsible-Changed-When: Tue Dec 27 14:52:45 UTC 2011 > Responsible-Changed-Why: > Alex: =A0do you want someone to commit this patch? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D163217 Please don't add a PORTEPOCH for this... there's no need! Chris From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 15:03:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BE111065673; Tue, 27 Dec 2011 15:03:32 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 120868FC08; Tue, 27 Dec 2011 15:03:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRF3Vh4010438; Tue, 27 Dec 2011 15:03:31 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRF3Vmh010434; Tue, 27 Dec 2011 15:03:31 GMT (envelope-from scheidell) Date: Tue, 27 Dec 2011 15:03:31 GMT Message-Id: <201112271503.pBRF3Vmh010434@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163457: Patch: Update sysutils/arcconf to 7.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 15:03:32 -0000 Synopsis: Patch: Update sysutils/arcconf to 7.30 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Dec 27 15:02:59 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163457 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 15:13:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA3B2106564A; Tue, 27 Dec 2011 15:13:11 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 902F38FC08; Tue, 27 Dec 2011 15:13:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRFDBu3019033; Tue, 27 Dec 2011 15:13:11 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRFDBX2019029; Tue, 27 Dec 2011 15:13:11 GMT (envelope-from scheidell) Date: Tue, 27 Dec 2011 15:13:11 GMT Message-Id: <201112271513.pBRFDBX2019029@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163564: [maintainer] [patch] mail/mimedefang fix rc.d 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: Tue, 27 Dec 2011 15:13:11 -0000 Synopsis: [maintainer] [patch] mail/mimedefang fix rc.d script Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Dec 27 15:12:49 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163564 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 16:10:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60758106564A for ; Tue, 27 Dec 2011 16: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 3C8688FC0A for ; Tue, 27 Dec 2011 16:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRGABfP065268 for ; Tue, 27 Dec 2011 16:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRGAB6n065267; Tue, 27 Dec 2011 16:10:11 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 16:10:11 GMT Resent-Message-Id: <201112271610.pBRGAB6n065267@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, Rainer Hurling Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A32AE106566B for ; Tue, 27 Dec 2011 16:07:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 76D548FC14 for ; Tue, 27 Dec 2011 16:07:49 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBRG7mwE054169 for ; Tue, 27 Dec 2011 16:07:48 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBRG7mUh054168; Tue, 27 Dec 2011 16:07:48 GMT (envelope-from nobody) Message-Id: <201112271607.pBRG7mUh054168@red.freebsd.org> Date: Tue, 27 Dec 2011 16:07:48 GMT From: Rainer Hurling To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163643: [patch] astro/wmspaceweather: URL changed + two minor items X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 16:10:11 -0000 >Number: 163643 >Category: ports >Synopsis: [patch] astro/wmspaceweather: URL changed + two minor items >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 Dec 27 16:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Rainer Hurling >Release: FreeBSD 10.0-CURRENT (amd64) >Organization: >Environment: FreeBSD xxx.xxx.xxx 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r228906: Tue Dec 27 09:08:58 CET 2011 xxx@xxx.xxx.xxx:/usr/obj/usr/src/sys/XXX amd64 >Description: (1) Main problem is, that the distfiles URL is not valid any more. Added two replacements. (2) Because Perl5 will lost its builtin CTime function in the near future, added a dependency for devel/p5-Time-modules and link to it in wmSpaceWeather/GetKp. (3) Added license information. >How-To-Repeat: Try to install astro/wmspaceweather. >Fix: The applied patch should solve the above-mentioned three items. Patch attached with submission follows: diff -Naur wmspaceweather.orig/Makefile wmspaceweather/Makefile --- wmspaceweather.orig/Makefile 2009-11-22 20:49:28.000000000 +0100 +++ wmspaceweather/Makefile 2011-12-27 16:47:27.000000000 +0100 @@ -6,14 +6,19 @@ PORTNAME= wmspaceweather PORTVERSION= 1.04 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= astro windowmaker -MASTER_SITES= http://dockapps.org/files/15/22/ +MASTER_SITES= https://api.opensuse.org/public/source/openSUSE:Factory/WindowMaker-applets/ \ + ftp://ftp.canadatux.org/linux/windowmaker/ DISTNAME= wmSpaceWeather-${PORTVERSION} MAINTAINER= xride@FreeBSD.org COMMENT= A DockApp that shows the weather at geosynchronous orbit +LICENSE= GPLv2 + +RUN_DEPENDS= ${SITE_PERL}/Time/CTime.pm:${PORTSDIR}/devel/p5-Time-modules + WRKSRC= ${WRKDIR}/${DISTNAME}/wmSpaceWeather # distfile is actually just a tar with suffix .tar.gz: diff -Naur wmspaceweather.orig/distinfo wmspaceweather/distinfo --- wmspaceweather.orig/distinfo 2011-03-19 13:27:41.000000000 +0100 +++ wmspaceweather/distinfo 2011-12-27 14:16:14.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (wmSpaceWeather-1.04.tar.gz) = e616dd40237e3585e0fb7f9a37f44bb5c7c4fc1e1c9cfd2643ffb26d6706b9b3 -SIZE (wmSpaceWeather-1.04.tar.gz) = 143360 +SHA256 (wmSpaceWeather-1.04.tar.gz) = 107343c2e3d1fc2dd40f74ed9684f218d0f19e2358bc3813c6bc943bfd48eac0 +SIZE (wmSpaceWeather-1.04.tar.gz) = 36760 diff -Naur wmspaceweather.orig/files/patch-ab wmspaceweather/files/patch-ab --- wmspaceweather.orig/files/patch-ab 2004-05-17 04:56:00.000000000 +0200 +++ wmspaceweather/files/patch-ab 2011-12-27 15:39:27.000000000 +0100 @@ -1,5 +1,14 @@ ---- GetKp.orig Fri Apr 16 15:08:21 1999 -+++ GetKp Tue Apr 13 20:06:19 2004 +--- GetKp.orig 1999-02-12 06:42:01.000000000 +0100 ++++ GetKp 2011-12-27 15:38:56.000000000 +0100 +@@ -5,7 +5,7 @@ + # + + +- require "ctime.pl"; ++ use Time::CTime; + + + ($Year, $Month, $Day) = &year_month_day(); @@ -19,7 +19,7 @@ } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 16:10:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D17B106566B; Tue, 27 Dec 2011 16:10: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 72F8D8FC0C; Tue, 27 Dec 2011 16:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRGAMh3065610; Tue, 27 Dec 2011 16:10:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRGAM6X065601; Tue, 27 Dec 2011 16:10:22 GMT (envelope-from edwin) Date: Tue, 27 Dec 2011 16:10:22 GMT Message-Id: <201112271610.pBRGAM6X065601@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, xride@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163643: [patch] astro/wmspaceweather: URL changed + two minor items X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 16:10:22 -0000 Synopsis: [patch] astro/wmspaceweather: URL changed + two minor items Responsible-Changed-From-To: freebsd-ports-bugs->xride Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 27 16:10:21 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163643 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 16:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDDA11065673 for ; Tue, 27 Dec 2011 16: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 C89FB8FC16 for ; Tue, 27 Dec 2011 16:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRGKA5g075324 for ; Tue, 27 Dec 2011 16:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRGKAKx075323; Tue, 27 Dec 2011 16:20:10 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 16:20:10 GMT Resent-Message-Id: <201112271620.pBRGKAKx075323@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, Mihail Timofeev <9267096@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B9B71065672 for ; Tue, 27 Dec 2011 16:11:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4A61A8FC0A for ; Tue, 27 Dec 2011 16:11:04 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBRGB4gA054393 for ; Tue, 27 Dec 2011 16:11:04 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBRGB3B8054388; Tue, 27 Dec 2011 16:11:03 GMT (envelope-from nobody) Message-Id: <201112271611.pBRGB3B8054388@red.freebsd.org> Date: Tue, 27 Dec 2011 16:11:03 GMT From: Mihail Timofeev <9267096@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163644: [New Port] russian/wordpress: russian WordPress localization X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 16:20:11 -0000 >Number: 163644 >Category: ports >Synopsis: [New Port] russian/wordpress: russian WordPress localization >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 Dec 27 16:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Mihail Timofeev >Release: >Organization: >Environment: >Description: A state-of-the-art semantic personal publishing platform. russian WordPress localization >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: # # wordpress # wordpress/Makefile # wordpress/distinfo # wordpress/pkg-descr # wordpress/pkg-message # echo c - wordpress mkdir -p wordpress > /dev/null 2>&1 echo x - wordpress/Makefile sed 's/^X//' >wordpress/Makefile << '79d7728d3a21a0916568322ec2cffe1d' X# New ports collection makefile for: wordpress X# Date created: 2011-12-27 X# Whom: Mihail Timofeev <9267096@gmail.com> X# (based on wordpress by Elvis Chiang) X# X# $FreeBSD$ X# X XPORTNAME= wordpress XPORTVERSION= 3.3 XCATEGORIES= russian www XMASTER_SITES= http://ru.wordpress.org/ XPKGNAMESUFFIX= -ru XDISTNAME= ${PORTNAME}-${PORTVERSION}${PKGNAMESUFFIX}_RU X XMAINTAINER= 9267096@gmail.com XCOMMENT= A state-of-the-art semantic personal publishing platform X XLICENSE= GPLv2 XLICENSE_FILE= ${WRKSRC}/license.txt X XCONFLICTS_INSTALL= wordpress-3.* ja-wordpress-ja-3.* de-wordpress-de-3.* X XNO_BUILD= yes XUSE_PHP= gd mysql pcre tokenizer xml XWANT_PHP_WEB= yes XWRKSRC= ${WRKDIR}/${PORTNAME} X XPLIST= ${WRKDIR}/pkg-plist XPORTDOCS= license.txt readme.html X Xpre-everything:: X @${ECHO_CMD} "If you want to upgrade, you must read upgrade document." X @${ECHO_CMD} "" X @sleep 2 X Xpre-install: X cd ${WRKSRC}/ && \ X (${FIND} -s * -type f | ${SED} -e 's|^|%%WWWDIR%%/|'; \ X ${FIND} -d . -type d | ${SED} -e 's|^\.|@dirrm %%WWWDIR%%|') > ${PLIST} X if [ ! -f ${WRKSRC}/wp-config-sample.php ]; then ${CP} \ X ${WRKSRC}/wp-config.php.sample ${WRKSRC}/wp-config.php; fi X Xdo-install: X ${INSTALL} -d -g ${WWWGRP} -m 755 -o ${WWWOWN} ${WWWDIR}/ X ${CP} -R ${WRKSRC}/ ${WWWDIR}/ X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR}/ X cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ X.endif X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include 79d7728d3a21a0916568322ec2cffe1d echo x - wordpress/distinfo sed 's/^X//' >wordpress/distinfo << '4f0fddb3832f430049a5831a63178094' XSHA256 (wordpress-3.3-ru_RU.tar.gz) = 5f73e6697e7bfd640215d9b2f9c6fa6013f5476b3da38a0f9570baa9b63fef67 XSIZE (wordpress-3.3-ru_RU.tar.gz) = 4323874 4f0fddb3832f430049a5831a63178094 echo x - wordpress/pkg-descr sed 's/^X//' >wordpress/pkg-descr << '9f80cc220f90140be29ad9c2670b4402' XWordPress is a state-of-the-art semantic personal publishing platform Xwith a focus on aesthetics, web standards, and usability. X XMore simply, Wordpress is what you use when you want to work Xwith your blogging software, not fight it. X XWWW: http://ru.wordpress.org/ 9f80cc220f90140be29ad9c2670b4402 echo x - wordpress/pkg-message sed 's/^X//' >wordpress/pkg-message << 'b9bace0ea65324a42cfef33be6ae315f' X **** NOTE **** XBefore the first use of WordPress, copy wp-config-sample.php to wp-config.php Xin ${WWWDIR} and modify it to fit your MySQL. XMaybe you need 'mysqladmin create wordpress' first. XIf you are upgrading from 1.x or 2.x to 3.x, please run Xhttp://your.site/wordpress/wp-admin/upgrade.php to upgrade to WordPress 3.x b9bace0ea65324a42cfef33be6ae315f exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 17:00:31 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3DC81065673 for ; Tue, 27 Dec 2011 17: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 C80208FC24 for ; Tue, 27 Dec 2011 17:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRH0UVn011689 for ; Tue, 27 Dec 2011 17:00:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRH0UxP011688; Tue, 27 Dec 2011 17:00:30 GMT (envelope-from gnats) Date: Tue, 27 Dec 2011 17:00:30 GMT Message-Id: <201112271700.pBRH0UxP011688@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Buganini Cc: Subject: Re: ports/163642: [New Port] converters/gbsdconv: GUI for bsdconv X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Buganini List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2011 17:00:31 -0000 The following reply was made to PR ports/163642; it has been noted by GNATS. From: Buganini To: bug-followup@FreeBSD.org, buganini@gmail.com Cc: Subject: Re: ports/163642: [New Port] converters/gbsdconv: GUI for bsdconv Date: Wed, 28 Dec 2011 00:53:36 +0800 new shar: http://www.cnmc.tw/~buganini/gbsdconv.shar.txt chages: use LIB_DEPENDS for taglib From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 17:00:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CFC3106564A for ; Tue, 27 Dec 2011 17:00:32 +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 E0C108FC1E for ; Tue, 27 Dec 2011 17:00:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRH0V83011701 for ; Tue, 27 Dec 2011 17:00:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRH0VqF011700; Tue, 27 Dec 2011 17:00:31 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 17:00:31 GMT Resent-Message-Id: <201112271700.pBRH0VqF011700@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, UMENO Takashi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80757106566C for ; Tue, 27 Dec 2011 16:54:36 +0000 (UTC) (envelope-from umeno@belldandy.unnumbered.net) Received: from belldandy.unnumbered.net (gateway.unnumbered.net [61.197.240.129]) by mx1.freebsd.org (Postfix) with ESMTP id 2A5768FC17 for ; Tue, 27 Dec 2011 16:54:35 +0000 (UTC) Received: from belldandy.unnumbered.net (localhost [127.0.0.1]) by belldandy.unnumbered.net (8.14.5/8.14.5) with ESMTP id pBRGsXba056311 for ; Wed, 28 Dec 2011 01:54:33 +0900 (JST) (envelope-from umeno@belldandy.unnumbered.net) Received: (from umeno@localhost) by belldandy.unnumbered.net (8.14.5/8.14.5/Submit) id pBRGsXSZ056308; Wed, 28 Dec 2011 01:54:33 +0900 (JST) (envelope-from umeno) Message-Id: <201112271654.pBRGsXSZ056308@belldandy.unnumbered.net> Date: Wed, 28 Dec 2011 01:54:33 +0900 (JST) From: UMENO Takashi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163645: Maintainer Update: games/ninix-aya to 4.3.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: UMENO Takashi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2011 17:00:32 -0000 >Number: 163645 >Category: ports >Synopsis: Maintainer Update: games/ninix-aya to 4.3.7 >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 Dec 27 17:00:30 UTC 2011 >Closed-Date: >Last-Modified: >Originator: UMENO Takashi >Release: FreeBSD 8.2-STABLE i386 >Organization: indivisual >Environment: System: FreeBSD belldandy.unnumbered.net 8.2-STABLE FreeBSD 8.2-STABLE #1: Fri Dec 23 17:16:26 JST 2011 root@belldandy.unnumbered.net:/usr/obj/usr/src/sys/ZFS i386 >Description: Maintainer Update: games/ninix-aya to 4.3.7 >How-To-Repeat: N/A >Fix: diff -urN ninix-aya.orig/Makefile ninix-aya/Makefile --- ninix-aya.orig/Makefile 2011-12-16 20:02:15.000000000 +0900 +++ ninix-aya/Makefile 2011-12-28 01:49:26.000000000 +0900 @@ -6,10 +6,10 @@ # PORTNAME= ninix-aya -PORTVERSION= 4.3.6 +PORTVERSION= 4.3.7 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} -MASTER_SITE_SUBDIR= ninix-aya/54144 +MASTER_SITE_SUBDIR= ninix-aya/54300 EXTRACT_SUFX= .tgz MAINTAINER= umeno@rr.iij4u.or.jp diff -urN ninix-aya.orig/distinfo ninix-aya/distinfo --- ninix-aya.orig/distinfo 2011-12-16 20:02:15.000000000 +0900 +++ ninix-aya/distinfo 2011-12-28 01:49:55.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (ninix-aya-4.3.6.tgz) = 01863f7c75c199d358768c9dbd2f374f32f96c719a84c64873c11735acda46f7 -SIZE (ninix-aya-4.3.6.tgz) = 319427 +SHA256 (ninix-aya-4.3.7.tgz) = 8a5e0853cfffdb2a1c7e5d4981649812fb10012af3bc67375b7348063c1f2c9e +SIZE (ninix-aya-4.3.7.tgz) = 320306 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 17:28:41 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4576F1065744; Tue, 27 Dec 2011 17:28:41 +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 1C22B8FC0A; Tue, 27 Dec 2011 17:28:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRHSext038561; Tue, 27 Dec 2011 17:28:41 GMT (envelope-from lwhsu@freefall.freebsd.org) Received: (from lwhsu@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRHSe1c038557; Tue, 27 Dec 2011 17:28:40 GMT (envelope-from lwhsu) Date: Tue, 27 Dec 2011 17:28:40 GMT Message-Id: <201112271728.pBRHSe1c038557@freefall.freebsd.org> To: buganini@gmail.com, lwhsu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: lwhsu@FreeBSD.org Cc: Subject: Re: ports/163642: [New Port] converters/gbsdconv: GUI for bsdconv X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 17:28:41 -0000 Synopsis: [New Port] converters/gbsdconv: GUI for bsdconv State-Changed-From-To: open->closed State-Changed-By: lwhsu State-Changed-When: Tue Dec 27 17:28:40 UTC 2011 State-Changed-Why: New port added. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=163642 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 17:30:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C0D01065676 for ; Tue, 27 Dec 2011 17:30: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 2A9D58FC1C for ; Tue, 27 Dec 2011 17:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRHUH6B038816 for ; Tue, 27 Dec 2011 17:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRHUHPM038811; Tue, 27 Dec 2011 17:30:17 GMT (envelope-from gnats) Date: Tue, 27 Dec 2011 17:30:17 GMT Message-Id: <201112271730.pBRHUHPM038811@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/163642: 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, 27 Dec 2011 17:30:17 -0000 The following reply was made to PR ports/163642; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163642: commit references a PR Date: Tue, 27 Dec 2011 17:28:37 +0000 (UTC) lwhsu 2011-12-27 17:28:24 UTC FreeBSD ports repository Modified files: converters Makefile Added files: converters/gbsdconv Makefile distinfo pkg-descr pkg-plist Log: Add gbsdconv 0.2, GUI for bsdconv. PR: ports/163642 Submitted by: buganini@gmail.com Revision Changes Path 1.199 +1 -0 ports/converters/Makefile 1.1 +40 -0 ports/converters/gbsdconv/Makefile (new) 1.1 +2 -0 ports/converters/gbsdconv/distinfo (new) 1.1 +10 -0 ports/converters/gbsdconv/pkg-descr (new) 1.1 +4 -0 ports/converters/gbsdconv/pkg-plist (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 Tue Dec 27 17:39:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00E9A1065670; Tue, 27 Dec 2011 17:39:23 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CBC898FC08; Tue, 27 Dec 2011 17:39:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRHdMkL049186; Tue, 27 Dec 2011 17:39:22 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRHdMEi049182; Tue, 27 Dec 2011 17:39:22 GMT (envelope-from culot) Date: Tue, 27 Dec 2011 17:39:22 GMT Message-Id: <201112271739.pBRHdMEi049182@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/163645: Maintainer Update: games/ninix-aya to 4.3.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 17:39:23 -0000 Synopsis: Maintainer Update: games/ninix-aya to 4.3.7 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Tue Dec 27 17:39:22 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163645 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 17:50:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80DBA106564A for ; Tue, 27 Dec 2011 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 7C5A78FC16 for ; Tue, 27 Dec 2011 17:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRHo9EN057948 for ; Tue, 27 Dec 2011 17:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRHo9fr057947; Tue, 27 Dec 2011 17:50:09 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 17:50:09 GMT Resent-Message-Id: <201112271750.pBRHo9fr057947@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, Rainer Hurling Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF731106564A for ; Tue, 27 Dec 2011 17:46:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BDBBD8FC13 for ; Tue, 27 Dec 2011 17:46:55 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBRHktjY033108 for ; Tue, 27 Dec 2011 17:46:55 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBRHktUm033107; Tue, 27 Dec 2011 17:46:55 GMT (envelope-from nobody) Message-Id: <201112271746.pBRHktUm033107@red.freebsd.org> Date: Tue, 27 Dec 2011 17:46:55 GMT From: Rainer Hurling To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163647: [patch] sysutils/xosview: does not build on 10-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: Tue, 27 Dec 2011 17:50:10 -0000 >Number: 163647 >Category: ports >Synopsis: [patch] sysutils/xosview: does not build on 10-CURRENT >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 Dec 27 17:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Rainer Hurling >Release: FreeBSD 10.0-CURRENT (amd64) >Organization: >Environment: FreeBSD xxx.xxx.xxx 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r228906: Tue Dec 27 09:08:58 CET 2011 xxx@xxx.xxx.xxx:/usr/obj/usr/src/sys/XXX amd64 >Description: xosview does not compile on FreeBSD 10-CURRENT, because it is identified as version 1 instead of 10 in configure script. >How-To-Repeat: Try to build sysutils/xosview on 10-CURRENT. >Fix: The applied patch should solve this issue. Patch attached with submission follows: diff -Naur xosview.orig/files/patch-configure xosview/files/patch-configure --- xosview.orig/files/patch-configure 2010-03-31 02:37:07.000000000 +0200 +++ xosview/files/patch-configure 2011-12-27 18:24:36.000000000 +0100 @@ -1,11 +1,20 @@ ---- configure.orig Sat Jun 1 23:56:10 2002 -+++ configure Sat Jun 1 23:56:23 2002 -@@ -4852,7 +4852,7 @@ +--- configure.orig 2006-02-18 05:34:12.000000000 +0100 ++++ configure 2011-12-27 18:24:08.000000000 +0100 +@@ -5071,7 +5071,7 @@ + echo host_dir is $host_dir + host_os=netbsd ;; + +-freebsd[0123]*) ++freebsd[0123].*) + EXTRALIBS="-lkvm $XPMLIB $DEVSTATLIB" + INSTALL_ARGS='-s -g kmem -m 02555' + NetMeter_Default_Setting=True +@@ -5085,7 +5085,7 @@ host_dir=bsd host_os=freebsd ;; -freebsd[4]*) -+freebsd[456789]*) ++freebsd[4567891]*) EXTRALIBS="-lkvm $XPMLIB $DEVSTATLIB" INSTALL_ARGS='-s -g kmem -m 02555' NetMeter_Default_Setting=True >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 17:50:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 828E7106564A; Tue, 27 Dec 2011 17:50: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 58F258FC1A; Tue, 27 Dec 2011 17:50:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRHoJFH058197; Tue, 27 Dec 2011 17:50:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRHoJnJ058188; Tue, 27 Dec 2011 17:50:19 GMT (envelope-from edwin) Date: Tue, 27 Dec 2011 17:50:19 GMT Message-Id: <201112271750.pBRHoJnJ058188@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163647: [patch] sysutils/xosview: does not build on 10-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: Tue, 27 Dec 2011 17:50:19 -0000 Synopsis: [patch] sysutils/xosview: does not build on 10-CURRENT Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 27 17:50:18 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163647 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 20:16:07 2011 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 1F23A106566B; Tue, 27 Dec 2011 20:16:07 +0000 (UTC) (envelope-from dan@langille.org) Received: from nyi.unixathome.org (nyi.unixathome.org [64.147.113.42]) by mx1.freebsd.org (Postfix) with ESMTP id DF7158FC0A; Tue, 27 Dec 2011 20:16:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by nyi.unixathome.org (Postfix) with ESMTP id 8A70E50893; Tue, 27 Dec 2011 19:56:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at unixathome.org Received: from nyi.unixathome.org ([127.0.0.1]) by localhost (nyi.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zHMI61zO0k92; Tue, 27 Dec 2011 19:56:08 +0000 (UTC) Received: from smtp-auth.unixathome.org (smtp-auth.unixathome.org [10.4.7.7]) (Authenticated sender: hidden) by nyi.unixathome.org (Postfix) with ESMTPSA id 2D3275084A ; Tue, 27 Dec 2011 19:56:08 +0000 (UTC) Mime-Version: 1.0 (Apple Message framework v1251.1) Content-Type: text/plain; charset=us-ascii From: Dan Langille In-Reply-To: <201112271455.pBREtxUm001800@freefall.freebsd.org> Date: Tue, 27 Dec 2011 14:56:07 -0500 Content-Transfer-Encoding: 7bit Message-Id: <55140CCF-B4CA-4770-AE1B-F04E7401DB52@langille.org> References: <201112271455.pBREtxUm001800@freefall.freebsd.org> To: scheidell@FreeBSD.org X-Mailer: Apple Mail (2.1251.1) Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/163247: sysutils/bacula-bat 5.2.2 porte doesn't install libbacfind.so X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 20:16:07 -0000 Thank you, please proceed. :) -- Dan Langille - http://langille.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 20:30:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F4B01065670 for ; Tue, 27 Dec 2011 20: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 5ABA48FC15 for ; Tue, 27 Dec 2011 20:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRKU8AE002135 for ; Tue, 27 Dec 2011 20:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRKU8oS002134; Tue, 27 Dec 2011 20:30:08 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 20:30:08 GMT Resent-Message-Id: <201112272030.pBRKU8oS002134@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 Panyushkin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18FBF106564A for ; Tue, 27 Dec 2011 20:21:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 064588FC12 for ; Tue, 27 Dec 2011 20:21:04 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBRKL3CV097698 for ; Tue, 27 Dec 2011 20:21:03 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBRKL3CB097697; Tue, 27 Dec 2011 20:21:03 GMT (envelope-from nobody) Message-Id: <201112272021.pBRKL3CB097697@red.freebsd.org> Date: Tue, 27 Dec 2011 20:21:03 GMT From: Alexander Panyushkin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163648: kdelibs-4.7.3_1 stop during assembly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 20:30:08 -0000 >Number: 163648 >Category: ports >Synopsis: kdelibs-4.7.3_1 stop during assembly >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: Tue Dec 27 20:30:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Panyushkin >Release: FreeBSD 9.0-PRERELEASE >Organization: >Environment: FreeBSD 9.0-PRERELEASE #0: Sat Dec 17 00:52:19 EET 2011 root@scorpion.kiev.ua:/usr/obj/usr/src/sys/Kernel amd64 >Description: during the update kdelibs build stops >How-To-Repeat: portmaster kdelibs >Fix: Patch attached with submission follows: ===> Vulnerability check disabled, database not found ===> License check disabled, port has not defined LICENSE ===> Extracting for kdelibs-4.7.3_1 => SHA256 Checksum OK for KDE/kdelibs-4.7.3.tar.bz2. ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/perl5.14.2 - found /bin/mkdir -p /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/build ===> Patching for kdelibs-4.7.3_1 ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/perl5.14.2 - found ===> Applying FreeBSD patches for kdelibs-4.7.3_1 /usr/bin/sed -i.bak -e 's,/usr/local,/usr/local,g' /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/kde3support/kdeui/k3sconfi/ports/x11/kdelibs4/work/kdelibs-4.7.3/kdecore/network/k3socks.cpp /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/kdecore/keirs.cpp /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/kdeui/dialogs/kcupsoptionswidget_p.cpp /tmp/usr/ports/x11/kdelibs4/w.3/kdeui/kernel/start-session-bus.sh /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/kio/kssl/kopenssl.cpp /tmp/usr/ports/x1/kdelibs-4.7.3/kio/kio/ksambashare.cpp /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/kjsembed/qtonly/FindQJSInternal.cmake /usr/bin/sed -i.bak -e 's|/usr/X11R6|/usr/local|g' /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/kdeui/colors/kcolordialog. /usr/bin/sed -i.bak -e '/find_package/s,PATHS,PATHS /usr/local/kde4/lib/cmake/KdepimLibs,' /tmp/usr/ports/x11/kdelibs4/work/make/modules/FindKdepimLibs.cmake /usr/bin/sed -i.bak -e '/find_package/s,PATHS,PATHS /usr/local/kde4/lib/cmake/KDE4Workspace,' /tmp/usr/ports/x11/kdelibs4/wo3/cmake/modules/FindKDE4Workspace.cmake ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/libhspell.a - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/share/ontology/core/rdf.ontology - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/share/xml/docbook/4.2/docbookx.dtd - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/share/xsl/docbook/html/docbook.xsl - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/libdata/pkgconfig/sm.pc - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/libdata/pkgconfig/xcursor.pc - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/libdata/pkgconfig/xext.pc - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/libdata/pkgconfig/xfixes.pc - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/libdata/pkgconfig/xtst.pc - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtDBus.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtDeclarative.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/designer-qt4 - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtGui.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/moc-qt4 - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtNetwork.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtOpenGL.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libphonon.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/qmake-qt4 - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQt3Support.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtTest.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/rcc - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtScript.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtSql.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtSvg.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/uic-qt4 - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtWebKit.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/lib/qt4/libQtXml.so - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/perl5.14.2 - found ===> kdelibs-4.7.3_1 depends on executable: pkg-config - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/automoc4 - found ===> kdelibs-4.7.3_1 depends on package: kde4-shared-mime-info>=1 - found ===> kdelibs-4.7.3_1 depends on file: /usr/local/bin/cmake - found ===> kdelibs-4.7.3_1 depends on executable: gs - found ===> kdelibs-4.7.3_1 depends on shared library: searchclient.0 - found ===> kdelibs-4.7.3_1 depends on shared library: soprano.4 - found ===> kdelibs-4.7.3_1 depends on shared library: IlmImf.6 - found ===> kdelibs-4.7.3_1 depends on shared library: aspell.16 - found ===> kdelibs-4.7.3_1 depends on shared library: jasper.4 - found ===> kdelibs-4.7.3_1 depends on shared library: pcre.0 - found ===> kdelibs-4.7.3_1 depends on shared library: avahi-core.7 - found ===> kdelibs-4.7.3_1 depends on shared library: enchant.1 - found ===> kdelibs-4.7.3_1 depends on shared library: gif.5 - found ===> kdelibs-4.7.3_1 depends on shared library: png.6 - found ===> kdelibs-4.7.3_1 depends on shared library: jpeg.11 - found ===> kdelibs-4.7.3_1 depends on shared library: hal.1 - found ===> kdelibs-4.7.3_1 depends on shared library: qca.2 - found ===> kdelibs-4.7.3_1 depends on shared library: HUpnp.1 - found ===> kdelibs-4.7.3_1 depends on shared library: attica.0 - found ===> kdelibs-4.7.3_1 depends on shared library: polkit-qt-core-1.1 - found ===> kdelibs-4.7.3_1 depends on shared library: smbclient.0 - found ===> kdelibs-4.7.3_1 depends on shared library: dbusmenu-qt.2 - found ===> kdelibs-4.7.3_1 depends on shared library: dns_sd - found ===> kdelibs-4.7.3_1 depends on shared library: fam.0 - found ===> kdelibs-4.7.3_1 depends on shared library: intl - found ===> kdelibs-4.7.3_1 depends on shared library: xml2.5 - found ===> kdelibs-4.7.3_1 depends on shared library: xslt.2 - found ===> Configuring for kdelibs-4.7.3_1 /usr/bin/sed -i.bak -e 's|/usr/local|/usr/local|g' -e 's|/usr/X11R6|/usr/local|g' /tmp/usr/ports/x11/kdelibs4/work/kdelibs-ules/*.cmake /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/ConfigureChecks.cmake /tmp/usr/ports/x11/kdelibs4/work/kdelibs-oxygen.sh /usr/bin/sed -i.bak -e 's|/usr/include|/usr/local/include|g' /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/cmake/modules/Fi /usr/bin/sed -i.bak -e 's|soprano/cmake|cmake/Modules|g' /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/cmake/modules/FindSo /usr/bin/sed -i.bak -e '/macro_bool_to_01/ s|^.*X11_Xscreensaver.*$|set(HAVE_XSCREENSAVER 0)|' /tmp/usr/ports/x11/kdelibs4/w.3/CMakeLists.txt /bin/mkdir -p /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/build -- The C compiler identification is Clang -- The CXX compiler identification is Clang -- Check for working C compiler: /usr/bin/clang -- Check for working C compiler: /usr/bin/clang -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/clang++ -- Check for working CXX compiler: /usr/bin/clang++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Looking for Q_WS_X11 -- Looking for Q_WS_X11 - found -- Looking for Q_WS_WIN -- Looking for Q_WS_WIN - not found. -- Looking for Q_WS_QWS -- Looking for Q_WS_QWS - not found. -- Looking for Q_WS_MAC -- Looking for Q_WS_MAC - not found. -- Found Qt-Version 4.7.4 (using /usr/local/bin/qmake-qt4) -- Looking for XOpenDisplay in /usr/local/lib/libX11.so;/usr/local/lib/libXext.so;/usr/local/lib/libXft.so;/usr/local/lib/libal/lib/libXdmcp.so;/usr/local/lib/libXpm.so -- Looking for XOpenDisplay in /usr/local/lib/libX11.so;/usr/local/lib/libXext.so;/usr/local/lib/libXft.so;/usr/local/lib/libal/lib/libXdmcp.so;/usr/local/lib/libXpm.so - found -- Looking for gethostbyname -- Looking for gethostbyname - found -- Looking for connect -- Looking for connect - found -- Looking for remove -- Looking for remove - found -- Looking for shmat -- Looking for shmat - found -- Looking for IceConnectionNumber in ICE -- Looking for IceConnectionNumber in ICE - found -- Found X11: /usr/local/lib/libX11.so -- Looking for include files CMAKE_HAVE_PTHREAD_H -- Looking for include files CMAKE_HAVE_PTHREAD_H - found -- Found Threads: TRUE -- Looking for _POSIX_TIMERS -- Looking for _POSIX_TIMERS - found -- Found Automoc4: /usr/local/bin/automoc4 -- Found Perl: /usr/bin/perl -- Building kdelibs... -- Found Phonon: /usr/local/include/qt4 -- Performing Test _OFFT_IS_64BIT -- Performing Test _OFFT_IS_64BIT - Success -- Found the KDE4 kconfig_compiler preprocessor: /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/build/bin/./kconfig_compiler. -- Found automoc4: /usr/local/bin/automoc4 -- Found ZLIB: /usr/lib/libz.so (found version "1.2.5") -- Found Strigi: /usr/local/lib/libstreams.so -- Found LibAttica: /usr/local/lib/libattica.so (found version "0.2.9", required is "0.1.90") -- Found OpenSSL: /usr/lib/libssl.so -- Looking for dgettext -- Looking for dgettext - not found -- Found Libintl: /usr/local/include -- Found Soprano: /usr/local/include (found version "2.7.3", required is "2.5.60") -- Found SharedDesktopOntologies: /usr/local/share/ontology (found version "0.8.1", required is "0.6.50") -- Found QCA2: /usr/local/lib/libqca.so -- Found DBusMenuQt: /usr/local/lib/libdbusmenu-qt.so -- Looking for include files HAVE_STDIO_H -- Looking for include files HAVE_STDIO_H - found -- Looking for include files HAVE_STDLIB_H -- Looking for include files HAVE_STDLIB_H - found -- Looking for include files HAVE_STRING_H -- Looking for include files HAVE_STRING_H - found -- Looking for include files HAVE_STRINGS_H -- Looking for include files HAVE_STRINGS_H - found -- Looking for include files HAVE_MALLOC_H -- Looking for include files HAVE_MALLOC_H - not found. -- Looking for include files TIME_WITH_SYS_TIME -- Looking for include files TIME_WITH_SYS_TIME - found -- Looking for include files HAVE_CRT_EXTERNS_H -- Looking for include files HAVE_CRT_EXTERNS_H - not found. -- Looking for include files HAVE_ALLOCA_H -- Looking for include files HAVE_ALLOCA_H - not found. -- Looking for include files HAVE_FSTAB_H -- Looking for include files HAVE_FSTAB_H - found -- Looking for include files HAVE_LIMITS_H -- Looking for include files HAVE_LIMITS_H - found -- Looking for include files HAVE_MNTENT_H -- Looking for include files HAVE_MNTENT_H - not found. -- Looking for include files HAVE_SYSENT_H -- Looking for include files HAVE_SYSENT_H - not found. -- Looking for include files HAVE_SYS_MMAN_H -- Looking for include files HAVE_SYS_MMAN_H - found -- Looking for include files HAVE_SYS_STAT_H -- Looking for include files HAVE_SYS_STAT_H - found -- Looking for include files HAVE_SYS_UCRED_H -- Looking for include files HAVE_SYS_UCRED_H - found -- Looking for include files HAVE_SYS_TYPES_H -- Looking for include files HAVE_SYS_TYPES_H - found -- Looking for include files HAVE_SYS_SELECT_H -- Looking for include files HAVE_SYS_SELECT_H - found -- Looking for include files HAVE_SYS_PARAM_H -- Looking for include files HAVE_SYS_PARAM_H - found -- Looking for include files HAVE_SYS_MNTTAB_H -- Looking for include files HAVE_SYS_MNTTAB_H - not found. -- Looking for include files HAVE_SYS_MNTENT_H -- Looking for include files HAVE_SYS_MNTENT_H - not found. -- Looking for include files HAVE_SYS_MOUNT_H -- Looking for include files HAVE_SYS_MOUNT_H - found -- Looking for include files HAVE_UNISTD_H -- Looking for include files HAVE_UNISTD_H - found -- Looking for include files HAVE_STDINT_H -- Looking for include files HAVE_STDINT_H - found -- Looking for include files HAVE_NETINET_IN_H -- Looking for include files HAVE_NETINET_IN_H - found -- Looking for include files HAVE_PATHS_H -- Looking for include files HAVE_PATHS_H - found -- Looking for include files HAVE_ERRNO_H -- Looking for include files HAVE_ERRNO_H - found -- Looking for include files HAVE_SYS_TIME_H -- Looking for include files HAVE_SYS_TIME_H - found -- Looking for include files HAVE_VALGRIND_MEMCHECK_H -- Looking for include files HAVE_VALGRIND_MEMCHECK_H - not found. -- Looking for include files HAVE_CRTDBG_H -- Looking for include files HAVE_CRTDBG_H - not found. -- Looking for include files HAVE_LANGINFO_H -- Looking for include files HAVE_LANGINFO_H - found -- Looking for include files HAVE_ARPA_NAMESER_COMPAT_H -- Looking for include files HAVE_ARPA_NAMESER_COMPAT_H - found -- Looking for include files HAVE_ARPA_NAMESER8_COMPAT_H -- Looking for include files HAVE_ARPA_NAMESER8_COMPAT_H - not found. -- Looking for strcmp -- Looking for strcmp - found -- Looking for strrchr -- Looking for strrchr - found -- Looking for strtoll -- Looking for strtoll - found -- Looking for S_ISSOCK -- Looking for S_ISSOCK - found -- Looking for vsnprintf -- Looking for vsnprintf - found -- Looking for posix_madvise -- Looking for posix_madvise - found -- Looking for getgrouplist -- Looking for getgrouplist - found -- Looking for backtrace -- Looking for backtrace - not found -- Looking for getpagesize -- Looking for getpagesize - found -- Looking for fdatasync -- Looking for fdatasync - not found -- Looking for mmap -- Looking for mmap - found -- Looking for readdir_r -- Looking for readdir_r - found -- Looking for sendfile -- Looking for sendfile - found -- Looking for srandom -- Looking for srandom - found -- Looking for _NSGetEnviron -- Looking for _NSGetEnviron - not found -- Looking for gettimeofday -- Looking for gettimeofday - found -- Looking for volmgt_running in volmgt -- Looking for volmgt_running in volmgt - not found -- Looking for res_init in resolv -- Looking for res_init in resolv - not found -- Looking for __res_init in resolv -- Looking for __res_init in resolv - not found -- Looking for include files HAVE_LIBUTIL_H -- Looking for include files HAVE_LIBUTIL_H - found -- Looking for include files HAVE_UTIL_H -- Looking for include files HAVE_UTIL_H - not found. -- Looking for include files HAVE_TERMIOS_H -- Looking for include files HAVE_TERMIOS_H - found -- Looking for include files HAVE_TERMIO_H -- Looking for include files HAVE_TERMIO_H - not found. -- Looking for include files HAVE_PTY_H -- Looking for include files HAVE_PTY_H - not found. -- Looking for include files HAVE_SYS_STROPTS_H -- Looking for include files HAVE_SYS_STROPTS_H - not found. -- Looking for include files HAVE_SYS_FILIO_H -- Looking for include files HAVE_SYS_FILIO_H - found -- Looking for addToUtmp in utempter -- Looking for addToUtmp in utempter - found -- Looking for include files HAVE_UTEMPTER_H -- Looking for include files HAVE_UTEMPTER_H - found -- Looking for openpty -- Looking for openpty - not found -- Looking for openpty in util -- Looking for openpty in util - found -- Looking for ptsname -- Looking for ptsname - found -- Looking for getmntinfo -- Looking for getmntinfo - found -- Looking for initgroups -- Looking for initgroups - found -- Looking for mkstemps -- Looking for mkstemps - found -- Looking for mkstemp -- Looking for mkstemp - found -- Looking for mkdtemp -- Looking for mkdtemp - found -- Looking for random -- Looking for random - found -- Looking for strlcpy -- Looking for strlcpy - found -- Looking for strlcat -- Looking for strlcat - found -- Looking for __CORRECT_ISO_CPP_STRING_H_PROTO -- Looking for __CORRECT_ISO_CPP_STRING_H_PROTO - not found. -- Looking for strcasestr -- Looking for strcasestr - found -- Performing Test HAVE_STRCASESTR_PROTO -- Performing Test HAVE_STRCASESTR_PROTO - Success -- Looking for setenv -- Looking for setenv - found -- Looking for seteuid -- Looking for seteuid - found -- Looking for setmntent -- Looking for setmntent - not found -- Looking for unsetenv -- Looking for unsetenv - found -- Looking for usleep -- Looking for usleep - found -- Performing Test HAVE_MKSTEMPS_PROTO -- Performing Test HAVE_MKSTEMPS_PROTO - Success -- Performing Test HAVE_MKDTEMP_PROTO -- Performing Test HAVE_MKDTEMP_PROTO - Success -- Performing Test HAVE_MKSTEMP_PROTO -- Performing Test HAVE_MKSTEMP_PROTO - Success -- Performing Test HAVE_STRLCAT_PROTO -- Performing Test HAVE_STRLCAT_PROTO - Success -- Performing Test HAVE_STRLCPY_PROTO -- Performing Test HAVE_STRLCPY_PROTO - Success -- Performing Test HAVE_RANDOM_PROTO -- Performing Test HAVE_RANDOM_PROTO - Success -- Performing Test HAVE_RES_INIT_PROTO -- Performing Test HAVE_RES_INIT_PROTO - Success -- Performing Test HAVE_SETENV_PROTO -- Performing Test HAVE_SETENV_PROTO - Success -- Performing Test HAVE_SRANDOM_PROTO -- Performing Test HAVE_SRANDOM_PROTO - Success -- Performing Test HAVE_UNSETENV_PROTO -- Performing Test HAVE_UNSETENV_PROTO - Success -- Performing Test HAVE_USLEEP_PROTO -- Performing Test HAVE_USLEEP_PROTO - Success -- Performing Test HAVE_INITGROUPS_PROTO -- Performing Test HAVE_INITGROUPS_PROTO - Success -- Performing Test HAVE_SETREUID_PROTO -- Performing Test HAVE_SETREUID_PROTO - Success -- Performing Test HAVE_SETEUID_PROTO -- Performing Test HAVE_SETEUID_PROTO - Success -- Performing Test HAVE_TRUNC -- Performing Test HAVE_TRUNC - Success -- Performing Test GETMNTINFO_USES_STATVFS -- Performing Test GETMNTINFO_USES_STATVFS - Failed -- Performing Test HAVE_DIRENT_D_TYPE -- Performing Test HAVE_DIRENT_D_TYPE - Success -- Looking for gethostbyname in nsl -- Looking for gethostbyname in nsl - not found -- Looking for connect in socket -- Looking for connect in socket - not found -- Found FAM: /usr/local/include -- Looking for include files SYS_INOTIFY_H_FOUND -- Looking for include files SYS_INOTIFY_H_FOUND - not found. -- Performing Test HAVE_QSSLSOCKET -- Performing Test HAVE_QSSLSOCKET - Success -- Looking for include files HAVE_NET_IF_H -- Looking for include files HAVE_NET_IF_H - found -- Looking for include files HAVE_STROPTS_H -- Looking for include files HAVE_STROPTS_H - not found. -- Looking for inet_pton -- Looking for inet_pton - found -- Looking for inet_ntop -- Looking for inet_ntop - found -- Looking for getprotobyname_r -- Looking for getprotobyname_r - found -- Looking for poll -- Looking for poll - found -- Looking for getservbyname_r -- Looking for getservbyname_r - found -- Looking for getservbyport_r -- Looking for getservbyport_r - found -- Looking for gethostbyname2 -- Looking for gethostbyname2 - found -- Looking for gethostbyname2_r -- Looking for gethostbyname2_r - found -- Looking for gethostbyname -- Looking for gethostbyname - found -- Looking for gethostbyname_r -- Looking for gethostbyname_r - found -- Looking for if_nametoindex -- Looking for if_nametoindex - found -- Performing Test HAVE_GETSERVBYNAME_R_PROTO -- Performing Test HAVE_GETSERVBYNAME_R_PROTO - Success -- Looking for freeaddrinfo -- Looking for freeaddrinfo - found -- Looking for getnameinfo -- Looking for getnameinfo - found -- Looking for getaddrinfo -- Looking for getaddrinfo - found -- Looking for res_init -- Looking for res_init - found -- Performing Test HAVE_STRUCT_SOCKADDR_SA_LEN -- Performing Test HAVE_STRUCT_SOCKADDR_SA_LEN - Success -- Performing Test HAVE_GAI_STRERROR_PROTO -- Performing Test HAVE_GAI_STRERROR_PROTO - Success -- Looking for stddef.h -- Looking for stddef.h - found -- Check size of struct addrinfo -- Check size of struct addrinfo - done -- Check size of struct sockaddr_in6 -- Check size of struct sockaddr_in6 - failed -- Check size of time_t -- Check size of time_t - done -- Performing Test HAVE_STRUCT_TM_TM_ZONE -- Performing Test HAVE_STRUCT_TM_TM_ZONE - Success -- Performing Test HAVE_TM_GMTOFF -- Performing Test HAVE_TM_GMTOFF - Success -- Found BZip2: /usr/lib/libbz2.so -- Looking for BZ2_bzCompressInit in /usr/lib/libbz2.so -- Looking for BZ2_bzCompressInit in /usr/lib/libbz2.so - found -- Looking for lzma_auto_decoder in /usr/lib/liblzma.so -- Looking for lzma_auto_decoder in /usr/lib/liblzma.so - found -- Looking for lzma_easy_encoder in /usr/lib/liblzma.so -- Looking for lzma_easy_encoder in /usr/lib/liblzma.so - found -- Looking for lzma_lzma_preset in /usr/lib/liblzma.so -- Looking for lzma_lzma_preset in /usr/lib/liblzma.so - found -- Found LIBLZMA: /usr/include -- No backend for KAuth was explicitly specified: probing system to find the best one available -- Found PolkitQt-1: /usr/local/lib/cmake/PolkitQt-1/PolkitQt-1Config.cmake WARNING: Installation prefix does not match PolicyKit install prefixes. You probably will need to move files installed in POLLL_DIR and by dbus_add_activation_system_service to the prefix -- Building PolkitQt-1 KAuth backend -- Found Qt-Version 4.7.4 (using /usr/local/bin/qmake-qt4) -- Found X11: /usr/local/lib/libX11.so -- Looking for setpriority -- Looking for setpriority - found -- Looking for getpeereid -- Looking for getpeereid - found -- Check size of struct ucred -- Check size of struct ucred - failed -- Looking for pthread_attr_get_np in pthread -- Looking for pthread_attr_get_np in pthread - found -- Looking for pthread_getattr_np in pthread -- Looking for pthread_getattr_np in pthread - not found -- Looking for include files HAVE_FLOAT_H -- Looking for include files HAVE_FLOAT_H - found -- Looking for include files HAVE_SYS_TIMEB_H -- Looking for include files HAVE_SYS_TIMEB_H - found -- Looking for include files HAVE_IEEEFP_H -- Looking for include files HAVE_IEEEFP_H - found -- Looking for include files HAVE_PTHREAD_NP_H -- Looking for include files HAVE_PTHREAD_NP_H - found -- Looking for include files HAVE_MEMCHECK_H -- Looking for include files HAVE_MEMCHECK_H - not found. -- Looking for _finite -- Looking for _finite - not found -- Looking for finite -- Looking for finite - found -- Looking for posix_memalign -- Looking for posix_memalign - found -- Looking for isnan -- Looking for isnan - found -- Looking for isinf -- Looking for isinf - found -- Found PCRE: /usr/local/include -- Looking for PCRE_CONFIG_UTF8 -- Looking for PCRE_CONFIG_UTF8 - found -- Looking for PCRE_CONFIG_STACKRECURSE -- Looking for PCRE_CONFIG_STACKRECURSE - found -- Performing Test HAVE_X86_MMX -- Performing Test HAVE_X86_MMX - Success -- Performing Test HAVE_X86_SSE -- Performing Test HAVE_X86_SSE - Success -- Performing Test HAVE_X86_SSE2 -- Performing Test HAVE_X86_SSE2 - Success -- Performing Test HAVE_X86_3DNOW -- Performing Test HAVE_X86_3DNOW - Success -- Performing Test HAVE_PPC_ALTIVEC -- Performing Test HAVE_PPC_ALTIVEC - Failed -- Found HUpnp: /usr/local/include -- Building Solid UPnP backend. -- Could NOT find UDev (missing: UDEV_INCLUDE_DIR UDEV_LIBS) -- Building Solid HAL backend. -- Building Solid UPower backend. -- Building Solid fstab backend. -- Found Flex: /usr/bin/flex -- Found LibXslt: /usr/local/lib/libxslt.so -- Found LibXml2: /usr/local/lib/libxml2.so -- Found DocBookXML: /usr/local/share/xml/docbook/4.2 -- Found DocBookXSL: /usr/local/share/xsl/docbook -- Looking for posix_fadvise -- Looking for posix_fadvise - not found -- Found SharedMimeInfo: /usr/local/bin/update-mime-database (found version "0.90", required is "0.60") -- Looking for __progname -- Looking for __progname - found -- Looking for __progname_full -- Looking for __progname_full - not found -- Looking for include files HAVE_SYS_PSTAT_H -- Looking for include files HAVE_SYS_PSTAT_H - not found. -- Looking for pstat -- Looking for pstat - not found -- Looking for setproctitle -- Looking for setproctitle - found -- Found ASPELL: /usr/local/lib/libaspell.so -- Found HSPELL: /usr/local/lib/libhspell.a -- Found ENCHANT: /usr/local/include/enchant -- Found JPEG: /usr/local/lib/libjpeg.so -- Performing Test GIF_FOUND -- Performing Test GIF_FOUND - Success -- Found GIF: /usr/local/lib/libgif.so -- Found PNG: /usr/local/lib/libpng.so -- Found Jasper: /usr/local/lib/libjasper.so -- Found OPENEXR: /usr/local/lib/libImath.so;/usr/local/lib/libIlmImf.so;/usr/local/lib/libIex.so;/usr/local/lib/libHalf.so;/ibIlmThread.so -- Found Avahi: /usr/local/include -- Adding support for OpenGL applets to libplasma -- Adding support for Phonon to libplasma ----------------------------------------------------------------------------- -- The following external packages were located on your system. -- This installation will have the extra features provided by these packages. ----------------------------------------------------------------------------- * Perl - Needed for building kdelibs * ZLib - Support for gzip compressed files and data streams * Strigi - Desktop indexing and search support * libattica - Support for Get Hot New Stuff * X Rendering Extension (libXrender) - Support for compositing, rendering operations, and alpha-blending * X Sync Extension (libXext) - Efficient operation of KIdleTime * OpenSSL - Support for secure network communications (SSL and TLS) * Libintl - Support for multiple languages * Soprano - Support for the Nepomuk semantic desktop system * Soprano Raptor Parser - Support for the Nepomuk semantic desktop system * Soprano Redland Backend - Support for the Nepomuk semantic desktop system * Shared desktop ontologies - Support for the Nepomuk semantic desktop system * QCA2 - Support for remote plasma widgets * DBusMenuQt - Support for notification area menus via the DBusMenu protocol * BZip2 - Support for BZip2 compressed files and data streams * LZMA/XZ - Support for xz compressed files and data streams * PolkitQt-1 - Support for executing priviledged actions in a controlled way (KAuth) * FAM - File alteration notification support via a separate service * Grantlee - ModelEventLogger code generation (part of the ProxyModel test suite) * PCRE - Perl-compatible regular expressions in KJS * HUPnP - UPnP support for Solid * Flex - Allows the Solid predicate parser to be updated * Bison - Allows the Solid predicate parser to be updated * LibXSLT - Required by the KDE help system to process DocBook XML * LibXML2 - Required by the KDE help system to process DocBook XML * xmllint - Required by the KDE help system to process DocBook XML * DocBook XML - Required by the KDE help system to process DocBook XML * DocBook XSL - Required by the KDE help system to process DocBook XML * shared-mime-info - Allows KDE applications to determine file types * Aspell - Spell checking support via Aspell * HSpell - Spell checking support for Hebrew * Enchant - Spell checking support via Enchant * libjpeg - JPEG image format support * giflib - GIF image format support * libpng - PNG image format support * JasPer - Support for JPEG-2000 images * OpenEXR - Support for OpenEXR images * Avahi - Facilities for service discovery on a local network (DNSSD) ----------------------------------------------------------------------------- -- The following OPTIONAL packages could NOT be located on your system. -- Consider installing them to enable more features from this software. ----------------------------------------------------------------------------- * X Screensaver Extension (libXss) Support for KIdleTime (fallback mode) * LibACL Support for manipulating access control lists STRONGLY RECOMMENDED * UDev UDev support for Solid Allows Solid to use UDev to provide information about devices on Linux * GSSAPI Allows KIO to make use of certain HTTP authentication services A MIT or HEIMDAL flavor of GSSAPI can be used ----------------------------------------------------------------------------- -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: CMAKE_CXX_FLAGS_DEBUG CMAKE_C_FLAGS_DEBUG HUPNP_INCLUDE_PATH -- Build files have been written to: /tmp/usr/ports/x11/kdelibs4/work/kdelibs-4.7.3/build ===> Building for kdelibs-4.7.3_1 Scanning dependencies of target KDECMakeModulesManPage Scanning dependencies of target kdesu_stub Scanning dependencies of target kpac_dhcp_helper Scanning dependencies of target kdefakes [ 0%] Building C object kdesu/CMakeFiles/kdesu_stub.dir/kdesu_stub.o [ 0%] Built target KDECMakeModulesManPage [ 0%] Building C object kdecore/CMakeFiles/kdefakes.dir/fakes.o [ 0%] Building C object kio/misc/kpac/CMakeFiles/kpac_dhcp_helper.dir/kpac_dhcp_helper.o Linking C shared library ../lib/libkdefakes.so clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' Scanning dependencies of target kdeinit4_shutdown [ 0%] Building C object kinit/CMakeFiles/kdeinit4_shutdown.dir/wrapper.o [ 0%] Built target kdefakes Linking C executable ../../../bin/kpac_dhcp_helper clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' Scanning dependencies of target kdeinit4_wrapper Linking C executable ../bin/kdesu_stub clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' [ 1%] Building C object kinit/CMakeFiles/kdeinit4_wrapper.dir/wrapper.o [ 1%] Built target kpac_dhcp_helper Scanning dependencies of target kshell4 Linking C executable ../bin/kdeinit4_shutdown [ 1%] Building C object kinit/CMakeFiles/kshell4.dir/shell.o clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' [ 1%] Built target kdesu_stub Scanning dependencies of target kwrapper4 [ 1%] Building C object kinit/CMakeFiles/kwrapper4.dir/kwrapper.o [ 1%] Built target kdeinit4_shutdown Linking C executable ../bin/kdeinit4_wrapper clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' Scanning dependencies of target start_kdeinit [ 1%] Building C object kinit/CMakeFiles/start_kdeinit.dir/start_kdeinit.o [ 1%] Built target kdeinit4_wrapper Linking C executable ../bin/kshell4 Linking C executable ../bin/kwrapper4 Linking C executable ../bin/start_kdeinit clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' Scanning dependencies of target start_kdeinit_wrapper [ 1%] Building C object kinit/CMakeFiles/start_kdeinit_wrapper.dir/start_kdeinit_wrapper.o clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' [ 1%] Built target kwrapper4 [ 1%] Built target kshell4 Linking C executable ../bin/start_kdeinit_wrapper clang: warning: argument unused during compilation: '-rpath=/usr/lib:/usr/local/lib' [ 1%] Built target start_kdeinit Scanning dependencies of target nepomuk-rcgen_automoc [ 1%] Built target start_kdeinit_wrapper Scanning dependencies of target nepomuk_automoc Scanning dependencies of target nepomukquery_automoc Scanning dependencies of target nepomukutils_automoc [ 1%] Built target nepomuk-rcgen_automoc Generating graphwrapper_p.moc Generating ktagdisplaywidget.moc Generating resourcefiltermodel.moc Generating kedittagsdialog_p.moc Generating nepomukservice.moc Generating nepomukmassupdatejob.moc Generating tagcheckbox.moc Generating ktagcloudwidget.moc Generating resourcemanager.moc Generating nepomukmainmodel.moc Generating tagwidget.moc Generating kmetadatatagcloud.moc [ 1%] Built target nepomuk_automoc >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 21:00:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9259106567A for ; Tue, 27 Dec 2011 21:00:28 +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 94A878FC1A for ; Tue, 27 Dec 2011 21:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRL0O3n030188 for ; Tue, 27 Dec 2011 21:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRL0Oqn030183; Tue, 27 Dec 2011 21:00:24 GMT (envelope-from gnats) Resent-Date: Tue, 27 Dec 2011 21:00:24 GMT Resent-Message-Id: <201112272100.pBRL0Oqn030183@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, Barbara Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 792951065675 for ; Tue, 27 Dec 2011 20:57:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 645048FC17 for ; Tue, 27 Dec 2011 20:57:33 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBRKvWxc068677 for ; Tue, 27 Dec 2011 20:57:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBRKvWU7068676; Tue, 27 Dec 2011 20:57:32 GMT (envelope-from nobody) Message-Id: <201112272057.pBRKvWU7068676@red.freebsd.org> Date: Tue, 27 Dec 2011 20:57:32 GMT From: Barbara To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163649: www/xpi-adblock_plus: update to 2.0.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: Tue, 27 Dec 2011 21:00:28 -0000 >Number: 163649 >Category: ports >Synopsis: www/xpi-adblock_plus: update to 2.0.2 >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 Dec 27 21:00:23 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Barbara >Release: RELENG_8 >Organization: >Environment: FreeBSD satanasso.local.net 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Dec 17 20:05:39 CET 2011 root@satanasso.local.net:/usr/obj/usr/src/sys/SATANASSO i386 >Description: Update adblock_plus to the last available version >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2011-12-23 10:29:59.000000000 +0100 +++ Makefile 2011-12-27 21:52:28.000000000 +0100 @@ -6,8 +6,8 @@ # PORTNAME= adblock_plus -PORTVERSION= 2.0.1 -DISTVERSIONSUFFIX= -fx+tb+fn+sm +PORTVERSION= 2.0.2 +DISTVERSIONSUFFIX= -sm+tb+fx+fn CATEGORIES= www MAINTAINER= ale@FreeBSD.org --- distinfo.orig 2011-12-23 10:29:59.000000000 +0100 +++ distinfo 2011-12-27 21:52:33.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (xpi/adblock_plus-2.0.1-fx+tb+fn+sm.xpi) = 97bb6cba30d7f9e7a38848bcface4b65cc3661b0c1c6734bd003e2f6d264618b -SIZE (xpi/adblock_plus-2.0.1-fx+tb+fn+sm.xpi) = 644152 \ No newline at end of file +SHA256 (xpi/adblock_plus-2.0.2-sm+tb+fx+fn.xpi) = 9860cff5019765cf54bb9af1f2bc165e2991be188b3d8db8738a8063381f8355 +SIZE (xpi/adblock_plus-2.0.2-sm+tb+fx+fn.xpi) = 644196 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 21:00:42 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1755F1065670; Tue, 27 Dec 2011 21:00:42 +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 DCDC88FC13; Tue, 27 Dec 2011 21:00:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRL0f6w030790; Tue, 27 Dec 2011 21:00:41 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRL0fpg030781; Tue, 27 Dec 2011 21:00:41 GMT (envelope-from edwin) Date: Tue, 27 Dec 2011 21:00:41 GMT Message-Id: <201112272100.pBRL0fpg030781@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163649: www/xpi-adblock_plus: update to 2.0.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: Tue, 27 Dec 2011 21:00:42 -0000 Synopsis: www/xpi-adblock_plus: update to 2.0.2 Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 27 21:00:40 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163649 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 27 23:12:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 225CB106564A; Tue, 27 Dec 2011 23:12:32 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E7E868FC0C; Tue, 27 Dec 2011 23:12:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBRNCVOC056325; Tue, 27 Dec 2011 23:12:31 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBRNCVpC056321; Tue, 27 Dec 2011 23:12:31 GMT (envelope-from scheidell) Date: Tue, 27 Dec 2011 23:12:31 GMT Message-Id: <201112272312.pBRNCVpC056321@freefall.freebsd.org> To: spam@rm-rf.kiev.ua, root@42.org, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163539: security/dropbear does not compile with STATIC (patch) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 27 Dec 2011 23:12:32 -0000 Synopsis: security/dropbear does not compile with STATIC (patch) State-Changed-From-To: feedback->closed State-Changed-By: scheidell State-Changed-When: Tue Dec 27 23:11:53 UTC 2011 State-Changed-Why: Duplicate of pr ports/163217 http://www.freebsd.org/cgi/query-pr.cgi?pr=163539 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 01:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE2A41065672 for ; Wed, 28 Dec 2011 01: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 D6AEE8FC12 for ; Wed, 28 Dec 2011 01:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS1oBwc099623 for ; Wed, 28 Dec 2011 01:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS1oBhU099622; Wed, 28 Dec 2011 01:50:11 GMT (envelope-from gnats) Date: Wed, 28 Dec 2011 01:50:11 GMT Message-Id: <201112280150.pBS1oBhU099622@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Doug Hardie Cc: Subject: Re: ports/163639: [PATCH] mail/qpopper: use RC_SUBR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Doug Hardie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 01:50:12 -0000 The following reply was made to PR ports/163639; it has been noted by GNATS. From: Doug Hardie To: bug-followup@FreeBSD.ORG Cc: Subject: Re: ports/163639: [PATCH] mail/qpopper: use RC_SUBR Date: Tue, 27 Dec 2011 17:13:27 -0800 I approve of this patch. On 27 December 2011, at 02:10, Edwin Groothuis wrote: > Maintainer of mail/qpopper, > > Please note that PR ports/163639 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/163639 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 03:12:41 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEFA5106566B; Wed, 28 Dec 2011 03:12: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 917818FC15; Wed, 28 Dec 2011 03:12:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS3CfH0079511; Wed, 28 Dec 2011 03:12:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS3CfdI079507; Wed, 28 Dec 2011 03:12:41 GMT (envelope-from linimon) Date: Wed, 28 Dec 2011 03:12:41 GMT Message-Id: <201112280312.pBS3CfdI079507@freefall.freebsd.org> To: takefu@airport.fm, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163639: [PATCH] mail/qpopper: use RC_SUBR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 03:12:41 -0000 Synopsis: [PATCH] mail/qpopper: use RC_SUBR State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Wed Dec 28 03:12:22 UTC 2011 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=163639 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 04:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58AE5106566B for ; Wed, 28 Dec 2011 04: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 655238FC0C for ; Wed, 28 Dec 2011 04:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS4A8Bh026202 for ; Wed, 28 Dec 2011 04:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS4A8Iw026201; Wed, 28 Dec 2011 04:10:08 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 04:10:08 GMT Resent-Message-Id: <201112280410.pBS4A8Iw026201@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, Mihail Timofeev <9267096@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD55C1065670 for ; Wed, 28 Dec 2011 04:01:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9877B8FC17 for ; Wed, 28 Dec 2011 04:01:40 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS41e0h035633 for ; Wed, 28 Dec 2011 04:01:40 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS41edn035632; Wed, 28 Dec 2011 04:01:40 GMT (envelope-from nobody) Message-Id: <201112280401.pBS41edn035632@red.freebsd.org> Date: Wed, 28 Dec 2011 04:01:40 GMT From: Mihail Timofeev <9267096@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163652: [PATCH] russian/wordpress: add zip shared extension for 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, 28 Dec 2011 04:10:12 -0000 >Number: 163652 >Category: ports >Synopsis: [PATCH] russian/wordpress: add zip shared extension for php >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 Dec 28 04:10:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Mihail Timofeev >Release: >Organization: >Environment: >Description: add zip shared extension for php >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2011-12-28 10:56:01.000000000 +0700 +++ Makefile 2011-12-28 10:56:20.000000000 +0700 @@ -22,7 +22,7 @@ CONFLICTS_INSTALL= wordpress-3.* ja-wordpress-ja-3.* de-wordpress-de-3.* NO_BUILD= yes -USE_PHP= gd mysql pcre tokenizer xml +USE_PHP= gd mysql pcre tokenizer xml zip WANT_PHP_WEB= yes WRKSRC= ${WRKDIR}/${PORTNAME} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 04:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30E1F1065672 for ; Wed, 28 Dec 2011 04: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 08F228FC0C; Wed, 28 Dec 2011 04:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS4UApZ044550; Wed, 28 Dec 2011 04:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS4UAwL044549; Wed, 28 Dec 2011 04:30:10 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 04:30:10 GMT Resent-Message-Id: <201112280430.pBS4UAwL044549@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Cc: d@delphij.net Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Xin LI Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E06E3106564A; Wed, 28 Dec 2011 04:28:32 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CB0798FC0C; Wed, 28 Dec 2011 04:28:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS4SWpK044470; Wed, 28 Dec 2011 04:28:32 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS4SWl1044469; Wed, 28 Dec 2011 04:28:32 GMT (envelope-from delphij) Message-Id: <201112280428.pBS4SWl1044469@freefall.freebsd.org> Date: Wed, 28 Dec 2011 04:28:32 GMT From: Xin LI To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 X-GNATS-Notify: d@delphij.net Cc: gnome@FreeBSD.org, marcus@FreeBSD.org Subject: ports/163653: [PATCH] devel/dbus: use /tmp for socket files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Xin LI List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 04:30:11 -0000 >Number: 163653 >Category: ports >Synopsis: [PATCH] devel/dbus: use /tmp for socket files >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: Wed Dec 28 04:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Xin LI >Release: FreeBSD 8.2-STABLE i386 >Organization: iXsystems, Inc. >Environment: System: FreeBSD freefall.freebsd.org 8.2-STABLE FreeBSD 8.2-STABLE #5 r227907: Wed Nov 23 21:55:50 UTC 2011 simon@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: Currently dbus uses /var/tmp as socket directory, which is not cleaned up upon reboots by defination. The proposed patch changes the default place back to the default /tmp. >How-To-Repeat: Just see /var/tmp accumulating several dbus-* files over time. >Fix: --- dbus.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/dbus/Makefile,v retrieving revision 1.86 diff -u -p -u -r1.86 Makefile --- Makefile 23 Sep 2011 22:21:53 -0000 1.86 +++ Makefile 26 Dec 2011 12:14:06 -0000 @@ -8,7 +8,7 @@ PORTNAME= dbus PORTVERSION= 1.4.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel gnome MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/ @@ -25,7 +25,7 @@ CONFIGURE_ARGS=--localstatedir=/var \ --with-test-socket-dir=${WRKDIR} \ --with-system-pid-file=/var/run/dbus/dbus.pid \ --with-system-socket=/var/run/dbus/system_bus_socket \ - --with-session-socket-dir=/var/tmp \ + --with-session-socket-dir=/tmp \ --disable-doxygen-docs \ --disable-xml-docs CONFIGURE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" --- dbus.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 04:30:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 842D4106566B; Wed, 28 Dec 2011 04:30: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 55A0F8FC15; Wed, 28 Dec 2011 04:30:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS4UMEh045344; Wed, 28 Dec 2011 04:30:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS4UMwH045338; Wed, 28 Dec 2011 04:30:22 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 04:30:22 GMT Message-Id: <201112280430.pBS4UMwH045338@freefall.freebsd.org> To: d@delphij.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163653: [PATCH] devel/dbus: use /tmp for socket 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: Wed, 28 Dec 2011 04:30:22 -0000 Synopsis: [PATCH] devel/dbus: use /tmp for socket files Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 04:30:21 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163653 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 06:40:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CDE8106564A for ; Wed, 28 Dec 2011 06:40: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 16A338FC08 for ; Wed, 28 Dec 2011 06:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS6eGsv071122 for ; Wed, 28 Dec 2011 06:40:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS6eGL8071121; Wed, 28 Dec 2011 06:40:16 GMT (envelope-from gnats) Date: Wed, 28 Dec 2011 06:40:16 GMT Message-Id: <201112280640.pBS6eGL8071121@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mihail Timofeev <9267096@gmail.com> Cc: Subject: Re: ports/163644: [New Port] russian/wordpress: russian WordPress localization X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mihail Timofeev <9267096@gmail.com> List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 06:40:17 -0000 The following reply was made to PR ports/163644; it has been noted by GNATS. From: Mihail Timofeev <9267096@gmail.com> To: bug-followup@FreeBSD.org Cc: 9267096@gmail.com Subject: Re: ports/163644: [New Port] russian/wordpress: russian WordPress localization Date: Wed, 28 Dec 2011 12:08:50 +0600 --14dae93411195cdb0104b520d5cd Content-Type: text/plain; charset=ISO-8859-1 [PATCH] russian/wordpress: add zip shared extension for php --14dae93411195cdb0104b520d5cd Content-Type: text/x-patch; charset=US-ASCII; name="Makefile.diff" Content-Disposition: attachment; filename="Makefile.diff" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gwpy1jj90 LS0tIE1ha2VmaWxlLm9yaWcgICAgICAgMjAxMS0xMi0yOCAxMDo1NjowMS4wMDAwMDAwMDAgKzA3 MDAKKysrIE1ha2VmaWxlICAgIDIwMTEtMTItMjggMTA6NTY6MjAuMDAwMDAwMDAwICswNzAwCkBA IC0yMiw3ICsyMiw3IEBACiBDT05GTElDVFNfSU5TVEFMTD0gICAgIHdvcmRwcmVzcy0zLiogamEt d29yZHByZXNzLWphLTMuKiBkZS13b3JkcHJlc3MtZGUtMy4qCgogTk9fQlVJTEQ9ICAgICAgeWVz Ci1VU0VfUEhQPSAgICAgICBnZCBteXNxbCBwY3JlIHRva2VuaXplciB4bWwKK1VTRV9QSFA9ICAg ICAgIGdkIG15c3FsIHBjcmUgdG9rZW5pemVyIHhtbCB6aXAKIFdBTlRfUEhQX1dFQj0gIHllcwog V1JLU1JDPSAgICAgICAgICAgICAgICAke1dSS0RJUn0vJHtQT1JUTkFNRX0KCg== --14dae93411195cdb0104b520d5cd-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:20:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4294106566B for ; Wed, 28 Dec 2011 07: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 939FE8FC16 for ; Wed, 28 Dec 2011 07:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7K9mI011646 for ; Wed, 28 Dec 2011 07:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7K9Do011645; Wed, 28 Dec 2011 07:20:09 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 07:20:09 GMT Resent-Message-Id: <201112280720.pBS7K9Do011645@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 A2A8D106564A for ; Wed, 28 Dec 2011 07:16:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8D5FA8FC12 for ; Wed, 28 Dec 2011 07:16:49 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS7Gm67085696 for ; Wed, 28 Dec 2011 07:16:48 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS7Gm8e085695; Wed, 28 Dec 2011 07:16:48 GMT (envelope-from nobody) Message-Id: <201112280716.pBS7Gm8e085695@red.freebsd.org> Date: Wed, 28 Dec 2011 07:16:48 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163654: [PATCH] databases/adstudio update to 10.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: Wed, 28 Dec 2011 07:20:09 -0000 >Number: 163654 >Category: ports >Synopsis: [PATCH] databases/adstudio update to 10.0.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: Wed Dec 28 07:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: databases/adstudio/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/adstudio/Makefile,v retrieving revision 1.47 diff -u -r1.47 Makefile --- databases/adstudio/Makefile 5 Dec 2011 22:27:29 -0000 1.47 +++ databases/adstudio/Makefile 27 Dec 2011 17:01:49 -0000 @@ -6,7 +6,7 @@ # PORTNAME= adstudio -PORTVERSION= 10.0.3 +PORTVERSION= 10.0.4 CATEGORIES= databases devel java MASTER_SITES= http://dd1.aquafold.com/download/v${PORTVERSION:R}.0/java/ DISTNAME= ads-java-novm-${PORTVERSION} Index: databases/adstudio/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/adstudio/distinfo,v retrieving revision 1.40 diff -u -r1.40 distinfo --- databases/adstudio/distinfo 5 Dec 2011 22:27:29 -0000 1.40 +++ databases/adstudio/distinfo 25 Dec 2011 12:43:10 -0000 @@ -1,2 +1,2 @@ -SHA256 (ads-java-novm-10.0.3.tar.gz) = 60e9503ca3752c2404a8f32f8d611f4eb98c901c5d2106e4a2b05dbad717a11f -SIZE (ads-java-novm-10.0.3.tar.gz) = 146225894 +SHA256 (ads-java-novm-10.0.4.tar.gz) = 28994eb552242f7d23b24a6a330507645e4902532eba7c48debc9aa9ae8cd046 +SIZE (ads-java-novm-10.0.4.tar.gz) = 146353025 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 187261065673 for ; Wed, 28 Dec 2011 07: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 E441C8FC18 for ; Wed, 28 Dec 2011 07:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7K9Fg011655 for ; Wed, 28 Dec 2011 07:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7K90m011654; Wed, 28 Dec 2011 07:20:09 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 07:20:09 GMT Resent-Message-Id: <201112280720.pBS7K90m011654@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 3CABD106566C for ; Wed, 28 Dec 2011 07:18:17 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1B2848FC15 for ; Wed, 28 Dec 2011 07:18:17 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS7IGKx085820 for ; Wed, 28 Dec 2011 07:18:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS7IG4w085819; Wed, 28 Dec 2011 07:18:16 GMT (envelope-from nobody) Message-Id: <201112280718.pBS7IG4w085819@red.freebsd.org> Date: Wed, 28 Dec 2011 07:18:16 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163655: [PATCH] games/odamex update to 0.5.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 07:20:10 -0000 >Number: 163655 >Category: ports >Synopsis: [PATCH] games/odamex update to 0.5.6 >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 Dec 28 07:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: games/odamex/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/odamex/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- games/odamex/Makefile 22 Aug 2011 15:23:45 -0000 1.11 +++ games/odamex/Makefile 1 Dec 2011 17:43:02 -0000 @@ -6,8 +6,7 @@ # PORTNAME= odamex -PORTVERSION= 0.4.3 -PORTREVISION= 2 +PORTVERSION= 0.5.6 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/Odamex/${PORTVERSION} DISTNAME= odamex-src-${PORTVERSION} @@ -48,7 +47,7 @@ .endif do-install: -.for f in odamaster odamex odasrv +.for f in odamex odasrv ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin .endfor .if defined(WITH_LAUNCHER) Index: games/odamex/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/odamex/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- games/odamex/distinfo 3 Jul 2011 14:24:32 -0000 1.3 +++ games/odamex/distinfo 30 Nov 2011 19:54:26 -0000 @@ -1,2 +1,2 @@ -SHA256 (odamex-src-0.4.3.tar.bz2) = a958b5e34acd57bdc4a0131c939161d64042bf9efcd71560cd970014c1eb0430 -SIZE (odamex-src-0.4.3.tar.bz2) = 1299002 +SHA256 (odamex-src-0.5.6.tar.bz2) = fc832ac2df2fceeed79b512cd789d0d30c93c46b246f50af973bb867b02a3440 +SIZE (odamex-src-0.5.6.tar.bz2) = 2954090 Index: games/odamex/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/odamex/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- games/odamex/pkg-plist 5 Feb 2008 16:42:35 -0000 1.2 +++ games/odamex/pkg-plist 1 Dec 2011 17:43:07 -0000 @@ -1,5 +1,4 @@ %%LAUNCHER%%bin/odalaunch -bin/odamaster bin/odamex bin/odasrv %%DATADIR%%/odamex.wad Index: games/odamex/files/patch-Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/odamex/files/patch-Makefile,v retrieving revision 1.2 diff -u -r1.2 patch-Makefile --- games/odamex/files/patch-Makefile 31 May 2009 18:34:04 -0000 1.2 +++ games/odamex/files/patch-Makefile 1 Dec 2011 04:34:56 -0000 @@ -1,5 +1,5 @@ ---- ./Makefile.orig 2009-03-08 00:28:16.000000000 -0500 -+++ ./Makefile 2009-05-16 17:15:11.000000000 -0400 +--- Makefile.orig 2011-11-05 05:00:05.000000000 +0100 ++++ Makefile 2011-12-01 05:33:47.415968992 +0100 @@ -3,8 +3,8 @@ OBJDIR = obj # denis - fixme - remove mkdir -p @@ -31,7 +31,7 @@ SDL_CFLAGS = $(shell $(SDL_CFLAGS_COMMAND)) SDL_LFLAGS = $(shell $(SDL_LFLAGS_COMMAND)) $(X11_LFLAGS) endif -@@ -174,7 +174,7 @@ +@@ -177,7 +177,7 @@ TARGETS = $(SERVER_TARGET) $(CLIENT_TARGET) $(MASTER_TARGET) $(WADFILE_TARGET) # denis - fixme - cflags are quite messy, but removing these is a very delicate act, also use -Wall -Werror @@ -40,17 +40,17 @@ LFLAGS = $(LFLAGS_PLATFORM) CFLAGS_RELEASE = $(CFLAGS_PLATFORM) -DNOASM -Icommon -O3 -@@ -210,7 +210,12 @@ +@@ -213,7 +213,12 @@ # denis - end fixme # All --all: $(SERVER_TARGET) $(CLIENT_TARGET) $(MASTER_TARGET) $(WADFILE_TARGET) -+all: $(SERVER_TARGET) $(CLIENT_TARGET) $(MASTER_TARGET) $(WADFILE_TARGET) launcher +-all: $(SERVER_TARGET) $(CLIENT_TARGET) $(WADFILE_TARGET) ++all: $(SERVER_TARGET) $(CLIENT_TARGET) $(WADFILE_TARGET) launcher + +launcher: +ifdef WITH_LAUNCHER + $(MAKE) -C odalaunch odalaunch +endif - # Common for server - $(OBJDIR)/$(COMMON_DIR)/server_%.o: $(COMMON_DIR)/%.cpp $(COMMON_HEADERS) $(SERVER_HEADERS) + # Textscreen + $(OBJDIR)/$(TEXTSCREEN_DIR)/%.o: $(TEXTSCREEN_DIR)/%.cpp $(TEXTSCREEN_HEADERS) $(COMMON_HEADERS) Index: games/odamex/files/patch-client__src__d_main.cpp =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/odamex/files/patch-client__src__d_main.cpp,v retrieving revision 1.2 diff -u -r1.2 patch-client__src__d_main.cpp --- games/odamex/files/patch-client__src__d_main.cpp 31 May 2009 18:34:04 -0000 1.2 +++ games/odamex/files/patch-client__src__d_main.cpp 1 Dec 2011 04:35:01 -0000 @@ -1,11 +1,11 @@ ---- ./client/src/d_main.cpp.orig 2009-03-08 00:28:16.000000000 -0500 -+++ ./client/src/d_main.cpp 2009-05-16 18:23:51.000000000 -0400 -@@ -807,6 +807,8 @@ - AddSearchDir(dirs, Args.CheckValue("-waddir"), separator); - AddSearchDir(dirs, getenv("DOOMWADDIR"), separator); - AddSearchDir(dirs, getenv("DOOMWADPATH"), separator); -+ AddSearchDir(dirs, "%%DATADIR%%", separator); -+ AddSearchDir(dirs, "%%DMDIR%%", separator); - AddSearchDir(dirs, getenv("HOME"), separator); +--- client/src/d_main.cpp.orig 2011-11-05 05:00:05.000000000 +0100 ++++ client/src/d_main.cpp 2011-12-01 05:33:47.422967926 +0100 +@@ -843,6 +843,8 @@ + D_AddSearchDir(dirs, Args.CheckValue("-waddir"), separator); + D_AddSearchDir(dirs, getenv("DOOMWADDIR"), separator); + D_AddSearchDir(dirs, getenv("DOOMWADPATH"), separator); ++ D_AddSearchDir(dirs, "/usr/local/share/odamex", separator); ++ D_AddSearchDir(dirs, "/usr/local/share/doom", separator); + D_AddSearchDir(dirs, getenv("HOME"), separator); + D_AddSearchDir(dirs, waddirs.cstring(), separator); - dirs.erase(std::unique(dirs.begin(), dirs.end()), dirs.end()); Index: games/odamex/files/patch-odalaunch__Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/odamex/files/patch-odalaunch__Makefile,v retrieving revision 1.2 diff -u -r1.2 patch-odalaunch__Makefile --- games/odamex/files/patch-odalaunch__Makefile 31 May 2009 18:34:04 -0000 1.2 +++ games/odamex/files/patch-odalaunch__Makefile 1 Dec 2011 04:35:48 -0000 @@ -1,8 +1,8 @@ ---- ./odalaunch/Makefile.orig 2009-03-08 00:28:10.000000000 -0500 -+++ ./odalaunch/Makefile 2009-05-16 18:32:01.000000000 -0400 -@@ -11,11 +11,11 @@ - - HEADERS = src/*.h +--- odalaunch/Makefile.orig 2011-11-05 05:00:03.000000000 +0100 ++++ odalaunch/Makefile 2011-12-01 05:33:47.418968116 +0100 +@@ -23,11 +23,11 @@ + -I./res \ + -I../odalpapi -CC = g++ -LD = g++ @@ -14,5 +14,5 @@ +WXCONFIG = $(WX_CONFIG) +WXRC = $(WXRC_CMD) - # Sometimes wx-config will uee the lowest version available, which is what + # Sometimes wx-config will use the lowest version available, which is what # we do no want! -- GhostlyDeath Index: games/odamex/files/patch-server__src__d_main.cpp =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/odamex/files/patch-server__src__d_main.cpp,v retrieving revision 1.1 diff -u -r1.1 patch-server__src__d_main.cpp --- games/odamex/files/patch-server__src__d_main.cpp 31 May 2009 18:34:04 -0000 1.1 +++ games/odamex/files/patch-server__src__d_main.cpp 1 Dec 2011 04:35:06 -0000 @@ -1,11 +1,11 @@ ---- ./server/src/d_main.cpp.orig 2009-03-08 00:28:11.000000000 -0500 -+++ ./server/src/d_main.cpp 2009-05-18 16:40:24.000000000 -0400 -@@ -597,6 +597,8 @@ - AddSearchDir(dirs, Args.CheckValue("-waddir"), separator); - AddSearchDir(dirs, getenv("DOOMWADDIR"), separator); - AddSearchDir(dirs, getenv("DOOMWADPATH"), separator); -+ AddSearchDir(dirs, "%%DATADIR%%", separator); -+ AddSearchDir(dirs, "%%DMDIR%%", separator); - AddSearchDir(dirs, getenv("HOME"), separator); +--- server/src/d_main.cpp.orig 2011-11-05 04:59:48.000000000 +0100 ++++ server/src/d_main.cpp 2011-12-01 05:33:47.423967844 +0100 +@@ -627,6 +627,8 @@ + D_AddSearchDir(dirs, Args.CheckValue("-waddir"), separator); + D_AddSearchDir(dirs, getenv("DOOMWADDIR"), separator); + D_AddSearchDir(dirs, getenv("DOOMWADPATH"), separator); ++ D_AddSearchDir(dirs, "/usr/local/share/odamex", separator); ++ D_AddSearchDir(dirs, "/usr/local/share/doom", separator); + D_AddSearchDir(dirs, getenv("HOME"), separator); + D_AddSearchDir(dirs, waddirs.cstring(), separator); - dirs.erase(std::unique(dirs.begin(), dirs.end()), dirs.end()); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:20:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29EF4106566C; Wed, 28 Dec 2011 07:20: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 F06DB8FC12; Wed, 28 Dec 2011 07:20:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7KJ01011814; Wed, 28 Dec 2011 07:20:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7KJkC011809; Wed, 28 Dec 2011 07:20:19 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 07:20:19 GMT Message-Id: <201112280720.pBS7KJkC011809@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163654: [PATCH] databases/adstudio update to 10.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: Wed, 28 Dec 2011 07:20:20 -0000 Synopsis: [PATCH] databases/adstudio update to 10.0.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 07:20:19 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163654 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:20:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D8C5106566C; Wed, 28 Dec 2011 07:20: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 20AFF8FC15; Wed, 28 Dec 2011 07:20:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7KPEe012053; Wed, 28 Dec 2011 07:20:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7KOAO012045; Wed, 28 Dec 2011 07:20:24 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 07:20:24 GMT Message-Id: <201112280720.pBS7KOAO012045@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163655: [PATCH] games/odamex update to 0.5.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 07:20:25 -0000 Synopsis: [PATCH] games/odamex update to 0.5.6 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 07:20:24 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163655 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 381281065673 for ; Wed, 28 Dec 2011 07:30: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 0F96B8FC18 for ; Wed, 28 Dec 2011 07:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7UGlS036770 for ; Wed, 28 Dec 2011 07:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7UG1P036767; Wed, 28 Dec 2011 07:30:16 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 07:30:16 GMT Resent-Message-Id: <201112280730.pBS7UG1P036767@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 35B681065670 for ; Wed, 28 Dec 2011 07:20:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 063958FC13 for ; Wed, 28 Dec 2011 07:20:36 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS7KZK6086047 for ; Wed, 28 Dec 2011 07:20:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS7KZcB086046; Wed, 28 Dec 2011 07:20:35 GMT (envelope-from nobody) Message-Id: <201112280720.pBS7KZcB086046@red.freebsd.org> Date: Wed, 28 Dec 2011 07:20:35 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163656: [PATCH] games/robocode update to 1.7.3.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: Wed, 28 Dec 2011 07:30:17 -0000 >Number: 163656 >Category: ports >Synopsis: [PATCH] games/robocode update to 1.7.3.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: Wed Dec 28 07:30:16 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: games/robocode/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/robocode/Makefile,v retrieving revision 1.40 diff -u -r1.40 Makefile --- games/robocode/Makefile 22 Dec 2010 17:06:36 -0000 1.40 +++ games/robocode/Makefile 11 Dec 2011 14:48:27 -0000 @@ -6,7 +6,7 @@ # PORTNAME= robocode -PORTVERSION= 1.7.2.2 +PORTVERSION= 1.7.3.4 CATEGORIES= games java MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-setup Index: games/robocode/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/robocode/distinfo,v retrieving revision 1.21 diff -u -r1.21 distinfo --- games/robocode/distinfo 10 Nov 2010 16:05:01 -0000 1.21 +++ games/robocode/distinfo 11 Dec 2011 14:48:42 -0000 @@ -1,2 +1,2 @@ -SHA256 (robocode-1.7.2.2-setup.jar) = 6ec4277307245e99cbfde4a2e4ad91ccb906829787d24d9264afc41b7e11fc3a -SIZE (robocode-1.7.2.2-setup.jar) = 4963154 +SHA256 (robocode-1.7.3.4-setup.jar) = bac8c20865bdea74311b8ba9a8ba3824f550d5059e48fcbc3d30271f0f5d4954 +SIZE (robocode-1.7.3.4-setup.jar) = 5090232 Index: games/robocode/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/robocode/pkg-plist,v retrieving revision 1.19 diff -u -r1.19 pkg-plist --- games/robocode/pkg-plist 10 Nov 2010 16:05:01 -0000 1.19 +++ games/robocode/pkg-plist 1 Dec 2011 04:17:04 -0000 @@ -145,7 +145,7 @@ %%DATADIR%%/javadoc/serialized-form.html %%DATADIR%%/javadoc/stylesheet.css %%DATADIR%%/libs/codesize-1.1.jar -%%DATADIR%%/libs/picocontainer-2.6.jar +%%DATADIR%%/libs/picocontainer-2.8.jar %%DATADIR%%/libs/robocode.battle-%%PORTVERSION%%.jar %%DATADIR%%/libs/robocode.core-%%PORTVERSION%%.jar %%DATADIR%%/libs/robocode.host-%%PORTVERSION%%.jar @@ -185,7 +185,6 @@ %%DATADIR%%/robots/sample/RamFire.java %%DATADIR%%/robots/sample/RamFire.properties %%DATADIR%%/robots/sample/SittingDuck.class -%%DATADIR%%/robots/sample/SittingDuck.data/count.dat %%DATADIR%%/robots/sample/SittingDuck.java %%DATADIR%%/robots/sample/SittingDuck.properties %%DATADIR%%/robots/sample/SpinBot.class @@ -242,7 +241,6 @@ @dirrm %%DATADIR%%/templates @dirrm %%DATADIR%%/robots/sampleteam @dirrm %%DATADIR%%/robots/sampleex -@dirrm %%DATADIR%%/robots/sample/SittingDuck.data @dirrm %%DATADIR%%/robots/sample @dirrm %%DATADIR%%/robots @dirrm %%DATADIR%%/license >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88FB5106566B for ; Wed, 28 Dec 2011 07:30: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 5F1AF8FC08 for ; Wed, 28 Dec 2011 07:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7UH6Z036798 for ; Wed, 28 Dec 2011 07:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7UH8K036793; Wed, 28 Dec 2011 07:30:17 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 07:30:17 GMT Resent-Message-Id: <201112280730.pBS7UH8K036793@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 1E1DB1065670 for ; Wed, 28 Dec 2011 07:21:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id F29E38FC14 for ; Wed, 28 Dec 2011 07:21:31 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS7LV10086188 for ; Wed, 28 Dec 2011 07:21:31 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS7LVno086184; Wed, 28 Dec 2011 07:21:31 GMT (envelope-from nobody) Message-Id: <201112280721.pBS7LVno086184@red.freebsd.org> Date: Wed, 28 Dec 2011 07:21:31 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163657: [PATCH] games/uhexen2 update to 1.5.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, 28 Dec 2011 07:30:17 -0000 >Number: 163657 >Category: ports >Synopsis: [PATCH] games/uhexen2 update to 1.5.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: Wed Dec 28 07:30:17 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: games/uhexen2/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/uhexen2/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- games/uhexen2/Makefile 9 Aug 2011 13:19:48 -0000 1.11 +++ games/uhexen2/Makefile 12 Dec 2011 19:01:01 -0000 @@ -6,10 +6,9 @@ # PORTNAME= uhexen2 -PORTVERSION= 1.4.3 -PORTREVISION= 1 +PORTVERSION= 1.5.1 CATEGORIES= games -MASTER_SITES= SF/${PORTNAME}/Hammer%20of%20Thyrion/${PORTVERSION} +MASTER_SITES= SF/${PORTNAME}/Hammer%20of%20Thyrion/${PORTVERSION}/Source DISTNAME= hexen2source-${PORTVERSION} EXTRACT_SUFX= .tgz DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -18,6 +17,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Hexen II source port supporting Linux/FreeBSD/Unix/Windows +LIB_DEPENDS= mad.2:${PORTSDIR}/audio/libmad + LICENSE_= GPLv2 GPLv3 LICENSE_COMB= dual @@ -30,7 +31,7 @@ OPTIONS= DEMO "Install demo version of the game data" off \ HEXEN2 "Build Hexen II clients and servers" on \ HW "Build HexenWorld clients and servers" on \ - LAUNCHER_GTK1 "Build graphical (GTK1) game launcher" off \ + LAUNCHER_GTK1 "Build graphical (GTK1) game launcher" on \ LAUNCHER_GTK2 "Build graphical (GTK2) game launcher" off \ X86_ASM "Enable use of optimized x86 assembly code" on @@ -43,15 +44,16 @@ .endif .if defined(WITH_DEMO) -DISTFILES+= hexen2demo-${PORTVERSION}-linux-i586${EXTRACT_SUFX} +MASTER_SITES+= SF/${PORTNAME}/Hammer%20of%20Thyrion/${PORTVERSION}/Linux-demo-version:demo +DISTFILES+= hexen2demo-${PORTVERSION}-linux-i586${EXTRACT_SUFX}:demo MAKE_ENV+= DEMO=yes PLIST_SUB+= DEMO="" \ FULL="@comment " UH2_DATA= default.cfg hexen.rc pak0.pak progs.dat UH2_DATADIR= ${WRKDIR}/hexen2demo-${PORTVERSION} .else -MASTER_SITES+= SF/${PORTNAME}/Hexen2%20GameData/gamedata-1.19a:data -DISTFILES+= gamedata-all-1.19a${EXTRACT_SUFX}:data +MASTER_SITES+= SF/${PORTNAME}/Hexen2%20GameData/gamedata-1.20:data +DISTFILES+= gamedata-all-1.20${EXTRACT_SUFX}:data PLIST_SUB+= DEMO="@comment " \ FULL="" SUB_FILES+= pkg-message @@ -62,8 +64,8 @@ .if defined(WITH_HEXEN2) MAKE_ENV+= BUILD_HEXEN2=yes PLIST_SUB+= HEXEN2="" -UH2_BIN+= hexen2/glhexen2 \ - hexen2/hexen2 +UH2_BIN+= engine/hexen2/glhexen2 \ + engine/hexen2/hexen2 .else PLIST_SUB+= HEXEN2="@comment " .endif @@ -75,9 +77,9 @@ . endif MAKE_ENV+= BUILD_HW=yes PLIST_SUB+= HW="" -UH2_BIN+= hexenworld/Client/glhwcl hexenworld/Master/hwmaster \ - hexenworld/Server/hwsv \ - hexenworld/Client/hwcl +UH2_BIN+= engine/hexenworld/client/glhwcl \ + engine/hexenworld/server/hwsv \ + engine/hexenworld/client/hwcl .else PLIST_SUB+= HW="@comment " .endif @@ -106,12 +108,6 @@ post-extract: @${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC} -post-patch: -.for f in hexen2/common.c hexenworld/Client/common.c - @${REINPLACE_CMD} -e 's|host_parms\.basedir|"${DATADIR}"|' \ - ${WRKSRC}/${f} -.endfor - do-install: .for f in ${UH2_BIN} ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin @@ -121,8 +117,7 @@ ${INSTALL_DATA} ${UH2_DATADIR}/data1/${f} ${DATADIR}/data1 .endfor .if !defined(WITH_DEMO) - ${INSTALL_DATA} ${WRKDIR}/patchdata/data1/* ${DATADIR}/data1 - ${INSTALL_DATA} ${WRKDIR}/update_* ${DATADIR} + ${INSTALL_DATA} ${WRKDIR}/patchdat/data1/* ${DATADIR}/data1 ${CP} -R ${WRKDIR}/portals ${DATADIR} .endif .if defined(WITH_HW) Index: games/uhexen2/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/uhexen2/distinfo,v retrieving revision 1.4 diff -u -r1.4 distinfo --- games/uhexen2/distinfo 3 Jul 2011 14:25:11 -0000 1.4 +++ games/uhexen2/distinfo 12 Dec 2011 18:09:33 -0000 @@ -1,8 +1,8 @@ -SHA256 (uhexen2/hexen2source-1.4.3.tgz) = bbb9ffb5380b57be7dd7fecbbd9bba71846f2f17d5614b670e1df13710f7af0d -SIZE (uhexen2/hexen2source-1.4.3.tgz) = 2173736 -SHA256 (uhexen2/gamedata-all-1.19a.tgz) = b9b9561b4155bfe3f8005315a7f8f95a567c2ebbcb2a950ad05dcb1702ac68de -SIZE (uhexen2/gamedata-all-1.19a.tgz) = 3703488 +SHA256 (uhexen2/hexen2source-1.5.1.tgz) = da805bb45d54bb0a65df36cbbeba494c055ff7dbfbbdb3f2acd835778c0ccc0b +SIZE (uhexen2/hexen2source-1.5.1.tgz) = 2133252 +SHA256 (uhexen2/gamedata-all-1.20.tgz) = aabc82d364c0f6fd89a51262db1dc2d76e7d1066bd79b2eb76909a55e4d99e73 +SIZE (uhexen2/gamedata-all-1.20.tgz) = 3807819 SHA256 (uhexen2/hexenworld-pakfiles-0.15.tgz) = 49462cdf984deee7350d03c7d192d1c34d682647ffc9d06de4308e0a7c71c4d9 SIZE (uhexen2/hexenworld-pakfiles-0.15.tgz) = 4948641 -SHA256 (uhexen2/hexen2demo-1.4.3-linux-i586.tgz) = d0e07793524a16675f42a973536a19b3baf15ace2abbbbd979e2870c3e99e192 -SIZE (uhexen2/hexen2demo-1.4.3-linux-i586.tgz) = 18830708 +SHA256 (uhexen2/hexen2demo-1.5.1-linux-i586.tgz) = 3a86f0cdeed6ec8a1be2565db418941ac9af450c1f95d475c340338b2035f737 +SIZE (uhexen2/hexen2demo-1.5.1-linux-i586.tgz) = 19516960 Index: games/uhexen2/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/uhexen2/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- games/uhexen2/pkg-plist 21 Apr 2008 21:00:24 -0000 1.3 +++ games/uhexen2/pkg-plist 12 Dec 2011 17:58:42 -0000 @@ -4,11 +4,11 @@ %%LAUNCHER_GTK2%%bin/h2launcher.gtk2 %%HEXEN2%%bin/hexen2 %%HW%%bin/hwcl -%%HW%%bin/hwmaster %%HW%%bin/hwsv %%PORTDOCS%%%%DOCSDIR%%/ABOUT %%PORTDOCS%%%%DOCSDIR%%/BUGS %%PORTDOCS%%%%DOCSDIR%%/CHANGES +%%PORTDOCS%%%%DOCSDIR%%/CHANGES.old %%PORTDOCS%%%%DOCSDIR%%/COMPILE %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/Features @@ -16,10 +16,12 @@ %%PORTDOCS%%%%DOCSDIR%%/README.3dfx %%PORTDOCS%%%%DOCSDIR%%/README.AoT %%PORTDOCS%%%%DOCSDIR%%/README.demo +%%PORTDOCS%%%%DOCSDIR%%/README.dos %%PORTDOCS%%%%DOCSDIR%%/README.hwcl %%PORTDOCS%%%%DOCSDIR%%/README.hwmaster %%PORTDOCS%%%%DOCSDIR%%/README.hwsv %%PORTDOCS%%%%DOCSDIR%%/README.launcher +%%PORTDOCS%%%%DOCSDIR%%/README.music %%PORTDOCS%%%%DOCSDIR%%/README.win32 %%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.2.3 %%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.2.4a @@ -28,13 +30,15 @@ %%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.4.1 %%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.4.2 %%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.4.3 +%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.5.0 +%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.5.1 %%PORTDOCS%%%%DOCSDIR%%/SrcNotes.txt %%PORTDOCS%%%%DOCSDIR%%/TODO %%DATADIR%%/data1/default.cfg %%DATADIR%%/data1/hexen.rc %%DEMO%%%%DATADIR%%/data1/pak0.pak -%%FULL%%%%DATADIR%%/data1/data1pak0.xd -%%FULL%%%%DATADIR%%/data1/data1pak1.xd +%%FULL%%%%DATADIR%%/data1/data1pk0.xd3 +%%FULL%%%%DATADIR%%/data1/data1pk1.xd3 %%DATADIR%%/data1/progs.dat %%FULL%%%%DATADIR%%/data1/progs2.dat %%FULL%%%%DATADIR%%/data1/strings.txt @@ -43,6 +47,7 @@ %%HW%%%%DATADIR%%/hw/pak4.pak %%FULL%%%%HW%%%%DATADIR%%/hw/pak4_readme.txt %%HW%%%%DATADIR%%/hw/strings.txt +%%FULL%%%%HW%%%%DATADIR%%/hw/strings.txt.demo %%FULL%%%%DATADIR%%/portals/default.cfg %%FULL%%%%DATADIR%%/portals/hexen.rc %%FULL%%%%DATADIR%%/portals/infolist.txt @@ -50,10 +55,13 @@ %%FULL%%%%DATADIR%%/portals/progs.dat %%FULL%%%%DATADIR%%/portals/puzzles.txt %%FULL%%%%DATADIR%%/portals/strings.txt -%%FULL%%%%DATADIR%%/update_loki.dat -%%FULL%%%%DATADIR%%/update_loki.sh -%%FULL%%%%DATADIR%%/update_xdelta.sh +%%FULL%%%%DATADIR%%/portals/maps/README.txt +%%FULL%%%%DATADIR%%/portals/maps/tibet2.ent +%%FULL%%%%DATADIR%%/portals/maps/tibet2.txt +%%FULL%%%%DATADIR%%/portals/maps/tibet9.ent +%%FULL%%%%DATADIR%%/portals/maps/tibet9.txt %%PORTDOCS%%@dirrm %%DOCSDIR%% +%%FULL%%@dirrm %%DATADIR%%/portals/maps %%FULL%%@dirrm %%DATADIR%%/portals %%HW%%@dirrm %%DATADIR%%/hw @dirrm %%DATADIR%%/data1 Index: games/uhexen2/files/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/uhexen2/files/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- games/uhexen2/files/Makefile 23 Apr 2008 03:08:51 -0000 1.3 +++ games/uhexen2/files/Makefile 11 Dec 2011 13:35:27 -0000 @@ -6,11 +6,11 @@ all: ifeq ($(BUILD_HEXEN2),yes) - $(MAKE) -C hexen2 h2 clean - $(MAKE) -C hexen2 glh2 clean + $(MAKE) -C engine/hexen2 h2 clean + $(MAKE) -C engine/hexen2 glh2 clean endif ifeq ($(BUILD_HW),yes) - cd hexenworld && ./build.sh + cd engine/hexenworld && ./build.sh endif ifeq ($(BUILD_LAUNCHER_GTK1),yes) $(MAKE) -C launcher GTK1=yes Index: games/uhexen2/files/patch-hexen2__Makefile =================================================================== RCS file: games/uhexen2/files/patch-hexen2__Makefile diff -N games/uhexen2/files/patch-hexen2__Makefile --- games/uhexen2/files/patch-hexen2__Makefile 21 Apr 2008 21:00:24 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,27 +0,0 @@ ---- ./hexen2/Makefile.orig 2008-04-03 20:37:23.000000000 -0300 -+++ ./hexen2/Makefile 2008-04-21 15:15:19.000000000 -0300 -@@ -120,13 +120,13 @@ - USE_SDLAUDIO=yes - USE_MIDI=yes - USE_CDAUDIO=yes --USE_SDLCD=no -+USE_SDLCD=yes - WITH_SPLASHES=yes - LINK_DIRECTX=no - OPT_EXTRA=yes - LINK_GL_LIBS=no - USE_3DFXGAMMA=yes --USE_X86_ASM=yes -+USE_X86_ASM?=no - COMPILE_32BITS=no - - # include the common dirty stuff -@@ -179,7 +179,7 @@ - - else - --CFLAGS := $(CPUFLAGS) -O2 -Wall -ffast-math -fexpensive-optimizations -+CFLAGS := $(CFLAGS) $(CPUFLAGS) -O2 -Wall -ffast-math -fexpensive-optimizations - - ifdef NO_UNIT_AT_A_TIME - CFLAGS := $(CFLAGS) $(call check_gcc,-fno-unit-at-a-time,) Index: games/uhexen2/files/patch-hexenworld__Client__Makefile =================================================================== RCS file: games/uhexen2/files/patch-hexenworld__Client__Makefile diff -N games/uhexen2/files/patch-hexenworld__Client__Makefile --- games/uhexen2/files/patch-hexenworld__Client__Makefile 21 Apr 2008 21:00:24 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,27 +0,0 @@ ---- ./hexenworld/Client/Makefile.orig 2008-04-03 20:37:25.000000000 -0300 -+++ ./hexenworld/Client/Makefile 2008-04-21 15:15:19.000000000 -0300 -@@ -115,13 +115,13 @@ - USE_SDLAUDIO=yes - USE_MIDI=yes - USE_CDAUDIO=yes --USE_SDLCD=no -+USE_SDLCD=yes - WITH_SPLASHES=yes - LINK_DIRECTX=no - OPT_EXTRA=yes - LINK_GL_LIBS=no - USE_3DFXGAMMA=yes --USE_X86_ASM=yes -+USE_X86_ASM?=no - COMPILE_32BITS=no - - # include the common dirty stuff -@@ -167,7 +167,7 @@ - - else - --CFLAGS := $(CPUFLAGS) -O2 -Wall -ffast-math -fexpensive-optimizations -+CFLAGS := $(CFLAGS) $(CPUFLAGS) -O2 -Wall -ffast-math -fexpensive-optimizations - - ifdef NO_UNIT_AT_A_TIME - CFLAGS := $(CFLAGS) $(call check_gcc,-fno-unit-at-a-time,) Index: games/uhexen2/files/patch-hexenworld__Master__Makefile =================================================================== RCS file: games/uhexen2/files/patch-hexenworld__Master__Makefile diff -N games/uhexen2/files/patch-hexenworld__Master__Makefile --- games/uhexen2/files/patch-hexenworld__Master__Makefile 21 Oct 2007 17:51:02 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- hexenworld/Master/Makefile.orig Thu Jul 12 14:41:20 2007 -+++ hexenworld/Master/Makefile Mon Oct 8 15:58:40 2007 -@@ -41,7 +41,7 @@ - - else - --CFLAGS := $(CPUFLAGS) -O2 -Wall -+CFLAGS := $(CFLAGS) $(CPUFLAGS) -O2 -Wall - - ifdef NO_UNIT_AT_A_TIME - CFLAGS := $(CFLAGS) $(call check_gcc,-fno-unit-at-a-time,) Index: games/uhexen2/files/patch-hexenworld__Server__Makefile =================================================================== RCS file: games/uhexen2/files/patch-hexenworld__Server__Makefile diff -N games/uhexen2/files/patch-hexenworld__Server__Makefile --- games/uhexen2/files/patch-hexenworld__Server__Makefile 21 Oct 2007 17:51:02 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- hexenworld/Server/Makefile.orig Thu Jul 12 14:41:20 2007 -+++ hexenworld/Server/Makefile Mon Oct 8 16:01:34 2007 -@@ -64,7 +64,7 @@ - - else - --CFLAGS := $(CPUFLAGS) -O2 -Wall -ffast-math -fexpensive-optimizations -+CFLAGS := $(CFLAGS) $(CPUFLAGS) -O2 -Wall -ffast-math -fexpensive-optimizations - - ifdef NO_UNIT_AT_A_TIME - CFLAGS := $(CFLAGS) $(call check_gcc,-fno-unit-at-a-time,) Index: games/uhexen2/files/patch-hexenworld__build.sh =================================================================== RCS file: games/uhexen2/files/patch-hexenworld__build.sh diff -N games/uhexen2/files/patch-hexenworld__build.sh --- games/uhexen2/files/patch-hexenworld__build.sh 23 Apr 2008 03:08:51 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,13 +0,0 @@ ---- hexenworld/build.sh.orig 2007-10-18 13:55:49.000000000 -0300 -+++ hexenworld/build.sh 2008-04-22 22:52:13.000000000 -0300 -@@ -41,8 +41,9 @@ - - echo "" && echo "Building hexenworld client (software renderer)" - $MAKE_CMD -C Client hw || exit 1 -+$MAKE_CMD -s -C Client clean - - echo "" && echo "Building hexenworld client (opengl renderer)" --$MAKE_CMD -s -C Client clean - $MAKE_CMD -C Client glhw || exit 1 -+$MAKE_CMD -s -C Client clean - Index: games/uhexen2/files/patch-launcher__Makefile =================================================================== RCS file: games/uhexen2/files/patch-launcher__Makefile diff -N games/uhexen2/files/patch-launcher__Makefile --- games/uhexen2/files/patch-launcher__Makefile 21 Apr 2008 21:00:24 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- launcher/Makefile.orig 2007-10-25 06:06:52.000000000 -0300 -+++ launcher/Makefile 2008-04-21 17:28:38.000000000 -0300 -@@ -116,7 +116,7 @@ - ALL_OBJECTS := $(LAUNCHER_OBJS) $(GUI_OBJS) $(XPATCH_OBJS) \ - $(LIBXDELTA_OBJS) $(LIBEDSIO_OBJS) $(LAUNCHER_MAIN) - --$(BINARY): $(LAUNCHER_OBJS) $(LAUNCHER_MAIN) $(GUI_OBJS) $(XPATCH_OBJS) -+$(BINARY): $(ALL_OBJECTS) - @rm -f $(BINARY) - $(LINKER) -o $(BINARY) $(ALL_OBJECTS) $(LDFLAGS) - >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03BF31065678 for ; Wed, 28 Dec 2011 07:30: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 CF5DD8FC12 for ; Wed, 28 Dec 2011 07:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7UHEA036821 for ; Wed, 28 Dec 2011 07:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7UHbQ036818; Wed, 28 Dec 2011 07:30:17 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 07:30:17 GMT Resent-Message-Id: <201112280730.pBS7UHbQ036818@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 418F7106564A for ; Wed, 28 Dec 2011 07:22:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 22D698FC12 for ; Wed, 28 Dec 2011 07:22:43 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS7MgOC087001 for ; Wed, 28 Dec 2011 07:22:42 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS7MgAR086996; Wed, 28 Dec 2011 07:22:42 GMT (envelope-from nobody) Message-Id: <201112280722.pBS7MgAR086996@red.freebsd.org> Date: Wed, 28 Dec 2011 07:22:42 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163658: [PATCH] java/jlint update to 3.1.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, 28 Dec 2011 07:30:18 -0000 >Number: 163658 >Category: ports >Synopsis: [PATCH] java/jlint update to 3.1.2 >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 Dec 28 07:30:17 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: java/jlint/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/java/jlint/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- java/jlint/Makefile 22 Aug 2009 00:24:27 -0000 1.14 +++ java/jlint/Makefile 27 Dec 2011 17:17:03 -0000 @@ -6,13 +6,17 @@ # PORTNAME= jlint -PORTVERSION= 3.1 +PORTVERSION= 3.1.2 CATEGORIES= java devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Java program analyzer and checker +PLIST_FILES= bin/jlint \ + bin/jlint.sh \ + bin/antic + .if !defined(NOPORTDOCS) PORTDOCS= manual.pdf .endif Index: java/jlint/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/java/jlint/distinfo,v retrieving revision 1.8 diff -u -r1.8 distinfo --- java/jlint/distinfo 20 Mar 2011 12:49:52 -0000 1.8 +++ java/jlint/distinfo 25 Dec 2011 20:00:17 -0000 @@ -1,2 +1,2 @@ -SHA256 (jlint-3.1.tar.gz) = 9f4bae0eee83bd3d9d2b87a47fa3938870e28cdef798b7b4f671a620f67e370b -SIZE (jlint-3.1.tar.gz) = 268888 +SHA256 (jlint-3.1.2.tar.gz) = e36a25250e31c4caa99818b7f651d400c26eb05c41cf9b824f1c3de2de8206f5 +SIZE (jlint-3.1.2.tar.gz) = 269056 Index: java/jlint/pkg-plist =================================================================== RCS file: java/jlint/pkg-plist diff -N java/jlint/pkg-plist --- java/jlint/pkg-plist 3 Nov 2004 12:39:23 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,3 +0,0 @@ -bin/jlint -bin/jlint.sh -bin/antic Index: java/jlint/files/patch-jlint.cc =================================================================== RCS file: java/jlint/files/patch-jlint.cc diff -N java/jlint/files/patch-jlint.cc --- java/jlint/files/patch-jlint.cc 6 Jul 2007 06:47:41 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,29 +0,0 @@ ---- jlint.cc.orig 2007-07-06 08:26:42.000000000 +0000 -+++ jlint.cc 2007-07-06 08:29:08.000000000 +0000 -@@ -151,7 +151,7 @@ - if (compound_message != NULL - && ((loop_id != 0 - && ((code != msg_loop && code != msg_sync_loop) -- || (int)parameter[2] != loop_id)) -+ || (long)parameter[2] != loop_id)) - || (loop_id == 0 && code != msg_wait_path))) - { - if (!message_node::find(compound_message)) { -@@ -226,7 +226,7 @@ - name.as_asciz()); - break; - case 'd': // integer -- dst += sprintf(dst, "%d", (int)parameter[index]); -+ dst += sprintf(dst, "%d", (long)parameter[index]); - break; - default: - assert(false/*bad message parameter format*/); -@@ -262,7 +262,7 @@ - compound_message = strdup(his_buf); - first = last = new message_node(msg_buf); - if (code != msg_wait) { -- loop_id = (int)parameter[2]; -+ loop_id = (long)parameter[2]; - } - } else if (!message_node::find(his_buf)) { - fprintf(stdout, "%s\n", msg_buf); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EF1E106566C for ; Wed, 28 Dec 2011 07:30: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 4C4258FC1A for ; Wed, 28 Dec 2011 07:30:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7UImI036843 for ; Wed, 28 Dec 2011 07:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7UIQN036840; Wed, 28 Dec 2011 07:30:18 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 07:30:18 GMT Resent-Message-Id: <201112280730.pBS7UIQN036840@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 5494F106566B for ; Wed, 28 Dec 2011 07:23:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3FDEF8FC14 for ; Wed, 28 Dec 2011 07:23:53 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS7NrAH095374 for ; Wed, 28 Dec 2011 07:23:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS7Nrrg095354; Wed, 28 Dec 2011 07:23:53 GMT (envelope-from nobody) Message-Id: <201112280723.pBS7Nrrg095354@red.freebsd.org> Date: Wed, 28 Dec 2011 07:23:53 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163659: [PATCH] lang/squirrel update to 2.2.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: Wed, 28 Dec 2011 07:30:18 -0000 >Number: 163659 >Category: ports >Synopsis: [PATCH] lang/squirrel update to 2.2.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: Wed Dec 28 07:30:17 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: lang/squirrel/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/lang/squirrel/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- lang/squirrel/Makefile 18 Jul 2010 21:35:08 -0000 1.10 +++ lang/squirrel/Makefile 25 Dec 2011 20:27:26 -0000 @@ -6,7 +6,7 @@ # PORTNAME= squirrel -PORTVERSION= 2.2.4 +PORTVERSION= 2.2.5 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}2/${PORTNAME}%20${PORTVERSION}%20stable DISTNAME= ${PORTNAME}_${DISTVERSION}_stable Index: lang/squirrel/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/lang/squirrel/distinfo,v retrieving revision 1.7 diff -u -r1.7 distinfo --- lang/squirrel/distinfo 3 Jul 2011 13:45:32 -0000 1.7 +++ lang/squirrel/distinfo 25 Dec 2011 20:27:36 -0000 @@ -1,2 +1,2 @@ -SHA256 (squirrel_2.2.4_stable.tar.gz) = 936ca05469ab19f16a730685ef4ad1ca5a3838195765d47935a4ba9052d8b2d4 -SIZE (squirrel_2.2.4_stable.tar.gz) = 419567 +SHA256 (squirrel_2.2.5_stable.tar.gz) = 8667e181ac2e0428d60d74a4fae6b5c15b8ed0f0933253cc7cf1aaa847d0ee25 +SIZE (squirrel_2.2.5_stable.tar.gz) = 420352 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E34831065672 for ; Wed, 28 Dec 2011 07:30: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 BAC108FC1C for ; Wed, 28 Dec 2011 07:30:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7UIqE036868 for ; Wed, 28 Dec 2011 07:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7UIjq036867; Wed, 28 Dec 2011 07:30:18 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 07:30:18 GMT Resent-Message-Id: <201112280730.pBS7UIjq036867@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 BDD59106564A for ; Wed, 28 Dec 2011 07:24:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A810A8FC0C for ; Wed, 28 Dec 2011 07:24:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS7OxhP003395 for ; Wed, 28 Dec 2011 07:24:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS7Ox9A003394; Wed, 28 Dec 2011 07:24:59 GMT (envelope-from nobody) Message-Id: <201112280724.pBS7Ox9A003394@red.freebsd.org> Date: Wed, 28 Dec 2011 07:24:59 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163660: [PATCH] math/fricas update to 1.1.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: Wed, 28 Dec 2011 07:30:19 -0000 >Number: 163660 >Category: ports >Synopsis: [PATCH] math/fricas update to 1.1.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: Wed Dec 28 07:30:18 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: math/fricas/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/math/fricas/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- math/fricas/Makefile 9 Dec 2011 12:54:44 -0000 1.14 +++ math/fricas/Makefile 28 Dec 2011 00:32:45 -0000 @@ -6,8 +6,7 @@ # PORTNAME= fricas -PORTVERSION= 1.1.4 -PORTREVISION= 2 +PORTVERSION= 1.1.5 CATEGORIES= math MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-full @@ -25,6 +24,7 @@ USE_XORG= x11 ice sm xpm USE_ICONV= yes USE_GETTEXT= yes +USE_LDCONFIG= ${PREFIX}/lib/fricas/target/${CONFIGURE_TARGET}/lib STRIP= #nothing, these binaries fail if stripped WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} Index: math/fricas/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/math/fricas/distinfo,v retrieving revision 1.10 diff -u -r1.10 distinfo --- math/fricas/distinfo 19 Nov 2011 15:57:27 -0000 1.10 +++ math/fricas/distinfo 25 Dec 2011 21:06:23 -0000 @@ -1,2 +1,2 @@ -SHA256 (fricas-1.1.4-full.tar.bz2) = 5a4d15b5bbe2ce421ddc2d0be4d232c0157f63904c5c612fddebd859ec1b803d -SIZE (fricas-1.1.4-full.tar.bz2) = 9618078 +SHA256 (fricas-1.1.5-full.tar.bz2) = c2e01a0c78a49c1c09bde358f5410285890b93eecd535afe1caca9b551858efd +SIZE (fricas-1.1.5-full.tar.bz2) = 9668339 Index: math/fricas/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/math/fricas/pkg-plist,v retrieving revision 1.10 diff -u -r1.10 pkg-plist --- math/fricas/pkg-plist 19 Nov 2011 15:57:27 -0000 1.10 +++ math/fricas/pkg-plist 26 Dec 2011 06:39:39 -0000 @@ -206,6 +206,7 @@ lib/fricas/target/%%GNU_HOST%%/algebra/ELEMFUN-.fasl lib/fricas/target/%%GNU_HOST%%/algebra/ELEMFUN.fasl lib/fricas/target/%%GNU_HOST%%/algebra/ELFUTS.fasl +lib/fricas/target/%%GNU_HOST%%/algebra/ELINSOL.fasl lib/fricas/target/%%GNU_HOST%%/algebra/ELTAB.fasl lib/fricas/target/%%GNU_HOST%%/algebra/ELTAGG-.fasl lib/fricas/target/%%GNU_HOST%%/algebra/ELTAGG.fasl @@ -538,6 +539,8 @@ lib/fricas/target/%%GNU_HOST%%/algebra/KERNEL2.fasl lib/fricas/target/%%GNU_HOST%%/algebra/KERNEL.fasl lib/fricas/target/%%GNU_HOST%%/algebra/KOERCE.fasl +lib/fricas/target/%%GNU_HOST%%/algebra/KOERCEF.fasl +lib/fricas/target/%%GNU_HOST%%/algebra/KONVERF.fasl lib/fricas/target/%%GNU_HOST%%/algebra/KONVERT.fasl lib/fricas/target/%%GNU_HOST%%/algebra/KOVACIC.fasl lib/fricas/target/%%GNU_HOST%%/algebra/LALG-.fasl @@ -962,6 +965,7 @@ lib/fricas/target/%%GNU_HOST%%/algebra/SCACHE.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SCENE.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SCIFS.fasl +lib/fricas/target/%%GNU_HOST%%/algebra/SCNP.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SCONF.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SCPKG.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SCRT.fasl @@ -1010,15 +1014,18 @@ lib/fricas/target/%%GNU_HOST%%/algebra/SOLVERAD.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SOLVESER.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SOLVETRA.fasl +lib/fricas/target/%%GNU_HOST%%/algebra/SORD.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SOREXPV.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SORTPAK.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SPACE3.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SPACEC.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SPECOUT.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SPFCAT.fasl +lib/fricas/target/%%GNU_HOST%%/algebra/SPFUTS.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SPLNODE.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SPLTREE.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SPTCAT.fasl +lib/fricas/target/%%GNU_HOST%%/algebra/SPTCAT-.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SQMATRIX.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SRAGG-.fasl lib/fricas/target/%%GNU_HOST%%/algebra/SRAGG.fasl @@ -1109,6 +1116,7 @@ lib/fricas/target/%%GNU_HOST%%/algebra/TWOFACT.fasl lib/fricas/target/%%GNU_HOST%%/algebra/TYPED.fasl lib/fricas/target/%%GNU_HOST%%/algebra/TYPE.fasl +lib/fricas/target/%%GNU_HOST%%/algebra/U32MAT.fasl lib/fricas/target/%%GNU_HOST%%/algebra/U32VEC.fasl lib/fricas/target/%%GNU_HOST%%/algebra/UDPO.fasl lib/fricas/target/%%GNU_HOST%%/algebra/UDVO.fasl @@ -2720,6 +2728,7 @@ lib/fricas/target/%%GNU_HOST%%/src/algebra/opalg.spad.pamphlet lib/fricas/target/%%GNU_HOST%%/src/algebra/openmath.spad.pamphlet lib/fricas/target/%%GNU_HOST%%/src/algebra/op.spad.pamphlet +lib/fricas/target/%%GNU_HOST%%/src/algebra/ordinal.spad.pamphlet lib/fricas/target/%%GNU_HOST%%/src/algebra/ore.spad.pamphlet lib/fricas/target/%%GNU_HOST%%/src/algebra/outform.spad.pamphlet lib/fricas/target/%%GNU_HOST%%/src/algebra/out.spad.pamphlet >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80DF5106564A for ; Wed, 28 Dec 2011 07:30: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 58A328FC1E for ; Wed, 28 Dec 2011 07:30:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7UJHN036901 for ; Wed, 28 Dec 2011 07:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7UJsd036897; Wed, 28 Dec 2011 07:30:19 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 07:30:19 GMT Resent-Message-Id: <201112280730.pBS7UJsd036897@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 9DE53106566C for ; Wed, 28 Dec 2011 07:26:17 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 893A98FC0A for ; Wed, 28 Dec 2011 07:26:17 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS7QHvu003499 for ; Wed, 28 Dec 2011 07:26:17 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS7QH3W003498; Wed, 28 Dec 2011 07:26:17 GMT (envelope-from nobody) Message-Id: <201112280726.pBS7QH3W003498@red.freebsd.org> Date: Wed, 28 Dec 2011 07:26:17 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163661: [PATCH] multimedia/photofilmstrip update to 1.5.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, 28 Dec 2011 07:30:19 -0000 >Number: 163661 >Category: ports >Synopsis: [PATCH] multimedia/photofilmstrip update to 1.5.0 >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 Dec 28 07:30:18 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: multimedia/photofilmstrip/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/multimedia/photofilmstrip/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- multimedia/photofilmstrip/Makefile 31 Aug 2011 18:23:57 -0000 1.6 +++ multimedia/photofilmstrip/Makefile 25 Dec 2011 21:33:15 -0000 @@ -7,7 +7,7 @@ # PORTNAME= photofilmstrip -PORTVERSION= 1.4.4 +PORTVERSION= 1.5.0 CATEGORIES= multimedia python MASTER_SITES= SF/photostoryx/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Index: multimedia/photofilmstrip/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/multimedia/photofilmstrip/distinfo,v retrieving revision 1.4 diff -u -r1.4 distinfo --- multimedia/photofilmstrip/distinfo 31 Aug 2011 18:23:57 -0000 1.4 +++ multimedia/photofilmstrip/distinfo 25 Dec 2011 21:34:13 -0000 @@ -1,2 +1,2 @@ -SHA256 (photofilmstrip-1.4.4.tar.gz) = dabd1066562cc222aa917cccb42298d8161a880f6f2e640274e67c87c0072d37 -SIZE (photofilmstrip-1.4.4.tar.gz) = 21917656 +SHA256 (photofilmstrip-1.5.0.tar.gz) = b931bc3c049a3782e6da9b740d37d6650672e220d9e0b943c5cef38728b945c8 +SIZE (photofilmstrip-1.5.0.tar.gz) = 21924699 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E69671065670; Wed, 28 Dec 2011 07:30: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 B8C178FC15; Wed, 28 Dec 2011 07:30:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7USHJ037429; Wed, 28 Dec 2011 07:30:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7UShQ037416; Wed, 28 Dec 2011 07:30:28 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 07:30:28 GMT Message-Id: <201112280730.pBS7UShQ037416@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163656: [PATCH] games/robocode update to 1.7.3.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: Wed, 28 Dec 2011 07:30:29 -0000 Synopsis: [PATCH] games/robocode update to 1.7.3.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 07:30:27 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163656 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:40 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 351E8106566C; Wed, 28 Dec 2011 07:30:40 +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 076168FC0C; Wed, 28 Dec 2011 07:30:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7UdB1038138; Wed, 28 Dec 2011 07:30:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7Ud72038129; Wed, 28 Dec 2011 07:30:39 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 07:30:39 GMT Message-Id: <201112280730.pBS7Ud72038129@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163657: [PATCH] games/uhexen2 update to 1.5.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, 28 Dec 2011 07:30:40 -0000 Synopsis: [PATCH] games/uhexen2 update to 1.5.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 07:30:39 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163657 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:30:51 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B377106567E; Wed, 28 Dec 2011 07:30:51 +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 2DCB78FC21; Wed, 28 Dec 2011 07:30:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7Up6J038725; Wed, 28 Dec 2011 07:30:51 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7UpMU038714; Wed, 28 Dec 2011 07:30:51 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 07:30:51 GMT Message-Id: <201112280730.pBS7UpMU038714@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163658: [PATCH] java/jlint update to 3.1.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, 28 Dec 2011 07:30:51 -0000 Synopsis: [PATCH] java/jlint update to 3.1.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 07:30:50 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163658 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:31:03 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15E8A106566B; Wed, 28 Dec 2011 07:31:03 +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 DCDE28FC0C; Wed, 28 Dec 2011 07:31:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7V29Q039217; Wed, 28 Dec 2011 07:31:02 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7V20Q039210; Wed, 28 Dec 2011 07:31:02 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 07:31:02 GMT Message-Id: <201112280731.pBS7V20Q039210@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163659: [PATCH] lang/squirrel update to 2.2.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: Wed, 28 Dec 2011 07:31:03 -0000 Synopsis: [PATCH] lang/squirrel update to 2.2.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 07:31:01 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163659 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:31:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2021B1065678; Wed, 28 Dec 2011 07:31: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 E69168FC12; Wed, 28 Dec 2011 07:31:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7VElg039710; Wed, 28 Dec 2011 07:31:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7VECK039699; Wed, 28 Dec 2011 07:31:14 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 07:31:14 GMT Message-Id: <201112280731.pBS7VECK039699@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163660: [PATCH] math/fricas update to 1.1.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: Wed, 28 Dec 2011 07:31:15 -0000 Synopsis: [PATCH] math/fricas update to 1.1.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 07:31:13 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163660 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 07:31:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6AE7106564A; Wed, 28 Dec 2011 07:31: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 78F668FC19; Wed, 28 Dec 2011 07:31:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS7VPGN040237; Wed, 28 Dec 2011 07:31:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS7VPth040226; Wed, 28 Dec 2011 07:31:25 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 07:31:25 GMT Message-Id: <201112280731.pBS7VPth040226@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163661: [PATCH] multimedia/photofilmstrip update to 1.5.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, 28 Dec 2011 07:31:25 -0000 Synopsis: [PATCH] multimedia/photofilmstrip update to 1.5.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 07:31:24 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163661 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 08:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EA2C106566C for ; Wed, 28 Dec 2011 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 E1CC48FC1A for ; Wed, 28 Dec 2011 08:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS8K9UM092126 for ; Wed, 28 Dec 2011 08:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS8K9MW092125; Wed, 28 Dec 2011 08:20:09 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 08:20:09 GMT Resent-Message-Id: <201112280820.pBS8K9MW092125@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, Anthony Chavez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7562C106567E for ; Wed, 28 Dec 2011 08:11:56 +0000 (UTC) (envelope-from acc@hexadecagram.org) Received: from mail.itproficiency.com (hexadecagram.org [166.70.126.65]) by mx1.freebsd.org (Postfix) with ESMTP id 2F6658FC19 for ; Wed, 28 Dec 2011 08:11:55 +0000 (UTC) Received: from mail (mail.hexadecagram.org [192.168.133.11]) by mail.itproficiency.com (Postfix) with ESMTP id 43C23B02FC9 for ; Wed, 28 Dec 2011 01:11:55 -0700 (MST) Received: from mail.itproficiency.com ([192.168.133.11]) by mail (mail.itproficiency.com [192.168.133.11]) (amavisd-new, port 10024) with LMTP id vxrSjPuUplyZ for ; Wed, 28 Dec 2011 01:11:33 -0700 (MST) Received: from metis.hexadecagram.org (mail.hexadecagram.org [192.168.133.11]) by mail.itproficiency.com (Postfix) with ESMTPS id 90D8CB02FC8 for ; Wed, 28 Dec 2011 01:11:31 -0700 (MST) Received: (from acc@localhost) by metis.hexadecagram.org (8.14.5/8.14.5/Submit) id pBS8BVMk010296; Wed, 28 Dec 2011 01:11:31 -0700 (MST) (envelope-from acc) Message-Id: <201112280811.pBS8BVMk010296@metis.hexadecagram.org> Date: Wed, 28 Dec 2011 01:11:31 -0700 (MST) From: Anthony Chavez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163662: devel/kdebindings4-smoke-smokeqt fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anthony Chavez List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 08:20:10 -0000 >Number: 163662 >Category: ports >Synopsis: devel/kdebindings4-smoke-smokeqt fails to build >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 Dec 28 08:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Anthony Chavez >Release: FreeBSD 8.2-STABLE i386 >Organization: >Environment: System: FreeBSD metis.hexadecagram.org 8.2-STABLE FreeBSD 8.2-STABLE #0: Thu Nov 10 16:13:27 MST 2011 root@metis.hexadecagram.org:/usr/obj/usr/src/sys/METIS i386 >Description: I am able to install a binary package, but attempting to build devel/kdebindings4-smoke-smokeqt from ports produces the following error: [ 23%] Building CXX object qtscript/CMakeFiles/smokeqtscript.dir/x_1.cpp.o In file included from /usr/ports/devel/kdebindings4-smoke-smokeqt/work/smokeqt-4.7.3/qtscript/qtscript_includes.h:15, from /usr/ports/devel/kdebindings4-smoke-smokeqt/work/smokeqt-4.7.3/qtscript/x_1.cpp:3: /usr/local/include/qdatetime.h:51: error: function definition does not declare parameters /usr/local/include/qdatetime.h:123: error: function definition does not declare parameters /usr/local/include/qdatetime.h:184: error: function definition does not declare parameters /usr/local/include/qdatetime.h:241: error: expected initializer before '&' token /usr/local/include/qdatetime.h:242: error: expected initializer before '&' token /usr/local/include/qdatetime.h:243: error: expected initializer before '&' token /usr/local/include/qdatetime.h:244: error: expected initializer before '&' token /usr/local/include/qdatetime.h:245: error: expected initializer before '&' token /usr/local/include/qdatetime.h:246: error: expected initializer before '&' token /usr/ports/devel/kdebindings4-smoke-smokeqt/work/smokeqt-4.7.3/qtscript/x_1.cpp: In member function 'void __smokeqtscript::x_QScriptValue::x_48(Smoke::StackItem*)': /usr/ports/devel/kdebindings4-smoke-smokeqt/work/smokeqt-4.7.3/qtscript/x_1.cpp:2394: error: variable 'QDateTime xret' has initializer but incomplete type /usr/ports/devel/kdebindings4-smoke-smokeqt/work/smokeqt-4.7.3/qtscript/x_1.cpp:2394: error: invalid use of incomplete type 'struct QDateTime' /usr/local/include/qt4/QtCore/qmetatype.h:298: error: forward declaration of 'struct QDateTime' /usr/ports/devel/kdebindings4-smoke-smokeqt/work/smokeqt-4.7.3/qtscript/x_1.cpp:2395: error: invalid use of incomplete type 'struct QDateTime' /usr/local/include/qt4/QtCore/qmetatype.h:298: error: forward declaration of 'struct QDateTime' *** Error code 1 1 error *** Error code 2 Generating SMOKE sources... preparing SMOKE data [qtxmlpatterns] writing out smokedata.cpp [qtxmlpatterns] writing out x_*.cpp [qtxmlpatterns] Done. Scanning dependencies of target smokeqtxmlpatterns [ 24%] Building CXX object qtxmlpatterns/CMakeFiles/smokeqtxmlpatterns.dir/x_1.cpp.o [ 25%] Building CXX object qtxmlpatterns/CMakeFiles/smokeqtxmlpatterns.dir/smokedata.cpp.o Linking CXX shared library libsmokeqtxmlpatterns.so [ 25%] Built target smokeqtxmlpatterns Generating SMOKE sources... preparing SMOKE data [qtgui] writing out smokedata.cpp [qtgui] writing out x_*.cpp [qtgui] Done. Scanning dependencies of target smokeqtgui [ 25%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_1.cpp.o [ 26%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/smokedata.cpp.o [ 27%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_2.cpp.o [ 28%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_3.cpp.o [ 28%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_4.cpp.o [ 29%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_5.cpp.o [ 30%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_6.cpp.o [ 30%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_7.cpp.o [ 31%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_8.cpp.o [ 32%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_9.cpp.o [ 32%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_10.cpp.o [ 33%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_11.cpp.o [ 34%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_12.cpp.o [ 34%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_13.cpp.o [ 35%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_14.cpp.o [ 36%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_15.cpp.o [ 36%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_16.cpp.o [ 38%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_18.cpp.o [ 37%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_17.cpp.o [ 38%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_19.cpp.o [ 39%] Building CXX object qtgui/CMakeFiles/smokeqtgui.dir/x_20.cpp.o Linking CXX shared library libsmokeqtgui.so [ 39%] Built target smokeqtgui 1 error *** Error code 2 1 error *** Error code 1 Stop in /usr/ports/devel/kdebindings4-smoke-smokeqt. >How-To-Repeat: sudo portmaster devel/kdebindings4-smoke-smokeqt >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 08:20:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20C64106564A; Wed, 28 Dec 2011 08:20: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 E6D798FC15; Wed, 28 Dec 2011 08:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS8KLNs092365; Wed, 28 Dec 2011 08:20:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS8KLWb092361; Wed, 28 Dec 2011 08:20:21 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 08:20:21 GMT Message-Id: <201112280820.pBS8KLWb092361@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163662: devel/kdebindings4-smoke-smokeqt fails 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, 28 Dec 2011 08:20:22 -0000 Synopsis: devel/kdebindings4-smoke-smokeqt fails to build Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 08:20:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163662 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 09:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9AD7B1065675 for ; Wed, 28 Dec 2011 09: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 77EDF8FC1C for ; Wed, 28 Dec 2011 09:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBS9oBb1076240 for ; Wed, 28 Dec 2011 09:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBS9oBrS076239; Wed, 28 Dec 2011 09:50:11 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 09:50:11 GMT Resent-Message-Id: <201112280950.pBS9oBrS076239@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, Gehm Ekkehard Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6010C1065672 for ; Wed, 28 Dec 2011 09:49:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 357E78FC14 for ; Wed, 28 Dec 2011 09:49:30 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBS9nTxw062785 for ; Wed, 28 Dec 2011 09:49:29 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBS9nT1r062780; Wed, 28 Dec 2011 09:49:29 GMT (envelope-from nobody) Message-Id: <201112280949.pBS9nT1r062780@red.freebsd.org> Date: Wed, 28 Dec 2011 09:49:29 GMT From: Gehm Ekkehard To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163663: Amanda 3.3.0 is the Latest Stable 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: Wed, 28 Dec 2011 09:50:11 -0000 >Number: 163663 >Category: ports >Synopsis: Amanda 3.3.0 is the Latest Stable Release >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 Dec 28 09:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Gehm Ekkehard >Release: FreeBSD 8.2-RELEASE-p4 >Organization: >Environment: FreeBSD satan.doom.de 8.2-RELEASE-p4 FreeBSD 8.2-RELEASE-p4 #1: Wed Oct 5 08:13:41 CEST 2011 root@satan.doom.de:/usr/obj/usr/src/sys/SATAN amd64 >Description: The Amanda port should be updated to 3.3.0. Port Version is 3.2.3 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 10:04:44 2011 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 29B871065680 for ; Wed, 28 Dec 2011 10:04:44 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-vx0-f182.google.com (mail-vx0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id D33288FC15 for ; Wed, 28 Dec 2011 10:04:43 +0000 (UTC) Received: by vcbfk1 with SMTP id fk1so16892336vcb.13 for ; Wed, 28 Dec 2011 02:04:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=Won09+RiWYo0livhL/9kZWCeI8TFgqDvg3OafPQ9OnM=; b=K4LL39C2MFATNyeMcTqgumYL4NBfeSMdpqC6C3Ub/aMu8TDe+M/NIjPhillJcs8mtR agjUSlr/MmbaLipB+MxHF3Mapo8DzCm4RvR22g8ShRfNAXQ9vu29pqriO41eFlMi05rL eBM8gtD2rw7j58yeMlICGcDfJ0FOnjwF6TrEQ= Received: by 10.220.155.5 with SMTP id q5mr18190029vcw.4.1325065301543; Wed, 28 Dec 2011 01:41:41 -0800 (PST) Received: from freebsd.ifr.lan (public.nbs-system.com. [82.234.123.117]) by mx.google.com with ESMTPS id eu8sm20554187vdc.16.2011.12.28.01.41.39 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Dec 2011 01:41:40 -0800 (PST) Sender: s bz Date: Wed, 28 Dec 2011 11:41:34 +0100 From: Sofian Brabez To: "Sergey A. Osokin" Message-ID: <20111228104134.GA9853@freebsd.ifr.lan> References: <201111231140.pANBeIwL023939@freefall.freebsd.org> <20111125153510.GF50347@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LQksG6bCIzRHxTLp" Content-Disposition: inline In-Reply-To: <20111125153510.GF50347@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/162783: [PATCH] www/nginx: add third party module NAXSI X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 10:04:44 -0000 --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Sergey, I've updated the patches against wwww/nginx [1] and www/nginx-devel [2] for the 0.42 version released and also made some changes regarding your request modifications. Thank you too. Regards [1] http://people.freebsd.org/~sbz/nginx-naxsi/nginx-naxsi-0.42.diff [2] http://people.freebsd.org/~sbz/nginx-naxsi/nginx-devel-naxsi-0.42.diff On Fri, Nov 25, 2011 at 03:35:10PM +0000, Sergey A. Osokin wrote: > Could you please resend you patch with following modifications: >=20 > 1) downstairs description of new module, right after memc in OPTIONS; > 2) remove needless changes for xrid_header module; > 3) do make makesum cause it looks like you are just add two strings into = distinfo file; > 4) also add some logic for directories of your "security" module (i.e. ${= ETCDIR}/bla-bla-bla >=20 > Thank you. -- Sofian Brabez --LQksG6bCIzRHxTLp Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iEYEARECAAYFAk768l0ACgkQc2NR9CSH5X6mUgCgygV1ay/oZhmCSbWUCxoUjNvW SKIAn2pZwz1rXCHGHxy3UI4ep3A6rqPT =WIR0 -----END PGP SIGNATURE----- --LQksG6bCIzRHxTLp-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 11:39:43 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6C38106564A; Wed, 28 Dec 2011 11:39:43 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8DC218FC15; Wed, 28 Dec 2011 11:39:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSBdh5e089542; Wed, 28 Dec 2011 11:39:43 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSBdhVj089538; Wed, 28 Dec 2011 11:39:43 GMT (envelope-from crees) Date: Wed, 28 Dec 2011 11:39:43 GMT Message-Id: <201112281139.pBSBdhVj089538@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/163663: misc/amanda-server is outdated - 3.3.0 is the Latest Stable 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: Wed, 28 Dec 2011 11:39:43 -0000 Synopsis: misc/amanda-server is outdated - 3.3.0 is the Latest Stable Release Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: crees Responsible-Changed-When: Wed Dec 28 11:39:43 UTC 2011 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=163663 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 12:30:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54ED9106567D for ; Wed, 28 Dec 2011 12: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 2A6C68FC17 for ; Wed, 28 Dec 2011 12:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSCUDOL033967 for ; Wed, 28 Dec 2011 12:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSCUDYc033965; Wed, 28 Dec 2011 12:30:13 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 12:30:13 GMT Resent-Message-Id: <201112281230.pBSCUDYc033965@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, Marin Atanasov Nikolov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2B2D106566B for ; Wed, 28 Dec 2011 12:22:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E09BD8FC0A for ; Wed, 28 Dec 2011 12:22:53 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSCMrDP029544 for ; Wed, 28 Dec 2011 12:22:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSCMrHM029538; Wed, 28 Dec 2011 12:22:53 GMT (envelope-from nobody) Message-Id: <201112281222.pBSCMrHM029538@red.freebsd.org> Date: Wed, 28 Dec 2011 12:22:53 GMT From: Marin Atanasov Nikolov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163665: [New Port]: devel/gerrit - Web based code review and project management for Git based projects. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 12:30:13 -0000 >Number: 163665 >Category: ports >Synopsis: [New Port]: devel/gerrit - Web based code review and project management for Git based projects. >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 Dec 28 12:30:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Marin Atanasov Nikolov >Release: FreeBSD 9.0-BETA3 >Organization: unix-heaven.org >Environment: FreeBSD xxx 9.0-BETA3 FreeBSD 9.0-BETA3 #1: Fri Sep 30 11:24:43 EEST 2011 root@xxx:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please add devel/gerrit to the Ports Tree Gerrit is a Web based code review and project management for Git based projects. More information about Gerrit can be found in the link below: - http://code.google.com/p/gerrit/ >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: # # gerrit/ # gerrit/files # gerrit/files/gerrit.in # gerrit/distinfo # gerrit/pkg-descr # gerrit/Makefile # gerrit/pkg-message # echo c - gerrit/ mkdir -p gerrit/ > /dev/null 2>&1 echo c - gerrit/files mkdir -p gerrit/files > /dev/null 2>&1 echo x - gerrit/files/gerrit.in sed 's/^X//' >gerrit/files/gerrit.in << 'b569a99ce9cdf207e625f5953051f0e2' X#!/bin/sh X# X# $FreeBSD$ X# X# PROVIDE: gerrit X# REQUIRE: LOGIN X# KEYWORD: shutdown X X# X# Add the following line to /etc/rc.conf to enable the Gerrit daeamon: X# X# gerrit_enable="YES" X# X X. /etc/rc.subr X Xname="gerrit" Xrcvar=`set_rcvar` X Xload_rc_config "${name}" X X: ${gerrit_enable="NO"} X: ${gerrit_home="%%GERRIT_HOME%%"} X: ${gerrit_args=""} X: ${gerrit_java_home="%%JAVA_HOME%%"} X: ${gerrit_user="%%GERRIT_USER%%"} X: ${gerrit_group="%%GERRIT_GROUP%%"} X: ${gerrit_site="%%GERRIT_HOME%%/%%GERRIT_SITE%%"} X Xcommand="${gerrit_site}/bin/gerrit.sh" Xjava_cmd="${gerrit_java_home}/bin/java" Xprocname="GerritCodeReview" Xrequired_files="${java_cmd}" X Xstart_precmd="gerrit_prestart" Xstart_cmd="gerrit_start" Xstop_cmd="gerrit_stop" X Xgerrit_prestart() { X if [ ! -d "${gerrit_home}" ]; then X install -d -o "${gerrit_user}" -g "${gerrit_group}" -m 750 "${gerrit_home}" X fi X # initialize Gerrit if the site directory is missing X if [ ! -d "${gerrit_site}" ]; then X echo "No Gerrit site found. Will initialize Gerrit first..." X /usr/bin/su - ${gerrit_user} -c "${java_cmd} -jar %%DATADIR%%/gerrit.war init -d ${gerrit_site}" X fi X} X Xgerrit_start() { X ${command} start X} X Xgerrit_stop() { X ${command} stop X} X Xrun_rc_command "$1" b569a99ce9cdf207e625f5953051f0e2 echo x - gerrit/distinfo sed 's/^X//' >gerrit/distinfo << '7f430d1a381ed94f04f4ea10bdf8ca6d' XSHA256 (gerrit/2.2.1/gerrit-2.2.1.war) = 8af3c50c8bc8ad6facb3ccdbd40af613a7de0d31b15d5a192538973a44fea10f XSIZE (gerrit/2.2.1/gerrit-2.2.1.war) = 18674518 7f430d1a381ed94f04f4ea10bdf8ca6d echo x - gerrit/pkg-descr sed 's/^X//' >gerrit/pkg-descr << '0944e35f52a5a785666aa92c205925af' XGerrit is a web based code review system, facilitating online Xcode reviews for projects using the Git version control system. X XGerrit makes reviews easier by showing changes in a side-by-side display, Xand allowing inline comments to be added by any reviewer. X XGerrit simplifies Git based project maintainership by permitting any Xauthorized user to submit changes to the master Git repository, Xrather than requiring all approved changes to be merged in by hand by the Xproject maintainer. This functionality enables a more centralized usage of Git. X XWWW: http://code.google.com/p/gerrit/ 0944e35f52a5a785666aa92c205925af echo x - gerrit/Makefile sed 's/^X//' >gerrit/Makefile << '5ad51afa2b040ef4b37ada3f1c8666c7' X# New ports collection makefile for: gerrit X# Date created: 2011-12-27 X# Whom: Marin Atanasov Nikolov X# X# $FreeBSD$ X# X XPORTNAME= gerrit XPORTVERSION= 2.2.1 XCATEGORIES= devel java XMASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} XEXTRACT_SUFX= .war XDIST_SUBDIR= ${PORTNAME}/${PORTVERSION} XEXTRACT_ONLY= X XMAINTAINER= dnaeon@gmail.com XCOMMENT= Web based code review and project management for Git based projects. X XRUN_DEPENDS+= bash:${PORTSDIR}/shells/bash X XUSE_JAVA= yes XJAVA_VERSION= 1.5+ X XFETCH_ARGS= -Fpr XNO_BUILD= yes X XUSE_RC_SUBR= gerrit X XGERRIT_HOME?= ${PREFIX}/gerrit XGERRIT_USER?= gerrit XGERRIT_GROUP?= gerrit XGERRIT_SITE?= review_site X XUSERS= ${GERRIT_USER} XGROUPS= ${GERRIT_GROUP} X XPLIST_FILES= %%DATADIR%%/${PORTNAME}${EXTRACT_SUFX} XPLIST_DIRS= %%DATADIR%% XPLIST_DIRSTRY= gerrit XSUB_LIST+= GERRIT_HOME=${GERRIT_HOME} GERRIT_USER=${GERRIT_USER} GERRIT_GROUP=${GERRIT_GROUP} GERRIT_SITE=${GERRIT_SITE} JAVA_HOME=${JAVA_HOME} X X.include X Xdo-install: X ${MKDIR} "${DATADIR}" X ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} ${DATADIR}/${PORTNAME}${EXTRACT_SUFX} X Xpost-install: X @${ECHO_CMD} X @${CAT} ${PKGMESSAGE} X @${ECHO_CMD} X X.include 5ad51afa2b040ef4b37ada3f1c8666c7 echo x - gerrit/pkg-message sed 's/^X//' >gerrit/pkg-message << 'd9042c883cd1a0fda3161465a6fc88c3' XGerrit has been installed. X XTo enable Gerrit during boot-time add the following line to /etc/rc.conf: X X gerrit_enable="YES" X XFor more information on Gerrit, please check the online documentation: X XWWW: http://gerrit-documentation.googlecode.com/svn/Documentation/2.2.0/index.html d9042c883cd1a0fda3161465a6fc88c3 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 12:40:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73FA91065670 for ; Wed, 28 Dec 2011 12: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 303A88FC22 for ; Wed, 28 Dec 2011 12:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSCeA3O045566 for ; Wed, 28 Dec 2011 12:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSCeAd2045565; Wed, 28 Dec 2011 12:40:10 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 12:40:10 GMT Resent-Message-Id: <201112281240.pBSCeAd2045565@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, Marin Atanasov Nikolov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B14481065672 for ; Wed, 28 Dec 2011 12:31:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A09918FC15 for ; Wed, 28 Dec 2011 12:31:47 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSCVl5f046146 for ; Wed, 28 Dec 2011 12:31:47 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSCVlEW046145; Wed, 28 Dec 2011 12:31:47 GMT (envelope-from nobody) Message-Id: <201112281231.pBSCVlEW046145@red.freebsd.org> Date: Wed, 28 Dec 2011 12:31:47 GMT From: Marin Atanasov Nikolov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163666: [PATCH] Add user "gerrit" to UIDs and 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: Wed, 28 Dec 2011 12:40:10 -0000 >Number: 163666 >Category: ports >Synopsis: [PATCH] Add user "gerrit" to UIDs and GIDs >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 Dec 28 12:40:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Marin Atanasov Nikolov >Release: FreeBSD 9.0-BETA3 >Organization: unix-heaven.org >Environment: FreeBSD xxx 9.0-BETA3 FreeBSD 9.0-BETA3 #1: Fri Sep 30 11:24:43 EEST 2011 root@xxx:/usr/obj/usr/src/sys/GENERIC amd64 >Description: In order to get devel/gerrit into the ports tree we need to have the "gerrit" user added to UIDs and GIDs file first. Please have a look at ports/163665 for adding devel/gerrit to the Ports Tree. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ports.orig/GIDs ports/GIDs --- ports.orig/GIDs 2011-12-27 14:40:16.000000000 +0200 +++ ports/GIDs 2011-12-27 14:41:43.000000000 +0200 @@ -175,6 +175,7 @@ openxpki:*:777: puppet:*:814: jenkins:*:818: +gerrit:*:819: openacs:*:820: dotlrn:*:821: netdisco:*:840: diff -ruN ports.orig/UIDs ports/UIDs --- ports.orig/UIDs 2011-12-27 14:40:11.000000000 +0200 +++ ports/UIDs 2011-12-27 14:41:03.000000000 +0200 @@ -181,6 +181,7 @@ openxpki:*:777:777::0:0:OpenXPKI Owner:/nonexistent:/usr/sbin/nologin puppet:*:814:814::0:0:Puppet Daemon:/nonexistent:/usr/sbin/nologin jenkins:*:818:818::0:0:Jenkins CI:/usr/local/jenkins:/usr/sbin/nologin +gerrit:*:819:819::0:0:Gerrit Daemon User:/usr/local/gerrit:/usr/local/bin/bash openacs:*:820:820::0:0:OpenACS Daemon User:/nonexistent:/usr/sbin/nologin dotlrn:*:821:821::0:0:.LRN Daemon User:/nonexistent:/usr/sbin/nologin netdisco:*:840:840::0:0:netdisco daemon:/nonexistent:/usr/sbin/nologin >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 12:40:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 380771065670; Wed, 28 Dec 2011 12:40:32 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0E0EC8FC22; Wed, 28 Dec 2011 12:40:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSCeVY7047181; Wed, 28 Dec 2011 12:40:31 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSCeVNB047172; Wed, 28 Dec 2011 12:40:31 GMT (envelope-from crees) Date: Wed, 28 Dec 2011 12:40:31 GMT Message-Id: <201112281240.pBSCeVNB047172@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/163665: [New Port]: devel/gerrit - Web based code review and project management for Git based projects. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 12:40:32 -0000 Synopsis: [New Port]: devel/gerrit - Web based code review and project management for Git based projects. Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: crees Responsible-Changed-When: Wed Dec 28 12:40:31 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163665 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 13:00:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E75E1065670 for ; Wed, 28 Dec 2011 13: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 EE4688FC12 for ; Wed, 28 Dec 2011 13:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSD0NwY062731 for ; Wed, 28 Dec 2011 13:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSD0Nvf062730; Wed, 28 Dec 2011 13:00:23 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 13:00:23 GMT Resent-Message-Id: <201112281300.pBSD0Nvf062730@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, Jakub Lach Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 524E2106564A for ; Wed, 28 Dec 2011 12:54:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 415748FC14 for ; Wed, 28 Dec 2011 12:54:20 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSCsJPS095573 for ; Wed, 28 Dec 2011 12:54:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSCsJnj095558; Wed, 28 Dec 2011 12:54:19 GMT (envelope-from nobody) Message-Id: <201112281254.pBSCsJnj095558@red.freebsd.org> Date: Wed, 28 Dec 2011 12:54:19 GMT From: Jakub Lach To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163667: [maintainer-update] unbreak x11-wm/mcwm for gcc46 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 13:00:24 -0000 >Number: 163667 >Category: ports >Synopsis: [maintainer-update] unbreak x11-wm/mcwm for gcc46 >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 Dec 28 13:00:23 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jakub Lach >Release: 9.0-PRERELEASE #0 r228926 >Organization: >Environment: >Description: Easing the life for those forcing gcc46. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -rupN /usr/ports/x11-wm/mcw.orig/files/patch-Makefile /usr/ports/x11-wm/mcwm/files/patch-Makefile --- /usr/ports/x11-wm/mcw.orig/files/patch-Makefile 2011-12-28 13:28:03.000000000 +0100 +++ /usr/ports/x11-wm/mcwm/files/patch-Makefile 2011-12-28 13:33:49.000000000 +0100 @@ -10,7 +10,7 @@ - -lxcb-atom #-ldmalloc +CFLAGS+=-g -std=c99 -Wall -Wextra -I${LOCALBASE}/include +LDFLAGS+=-L${LOCALBASE}/lib -lxcb -lxcb-randr -lxcb-keysyms -lxcb-icccm \ -+ -lxcb-atom ++ -lxcb-atom -lxcb-property RM=/bin/rm -PREFIX=/usr/local >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 13:10:29 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23CB4106566C; Wed, 28 Dec 2011 13:10:29 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EE4708FC0C; Wed, 28 Dec 2011 13:10:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSDAST0072755; Wed, 28 Dec 2011 13:10:28 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSDASF5072746; Wed, 28 Dec 2011 13:10:28 GMT (envelope-from crees) Date: Wed, 28 Dec 2011 13:10:28 GMT Message-Id: <201112281310.pBSDASF5072746@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/163667: [maintainer-update] unbreak x11-wm/mcwm for gcc46 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 13:10:29 -0000 Synopsis: [maintainer-update] unbreak x11-wm/mcwm for gcc46 Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: crees Responsible-Changed-When: Wed Dec 28 13:10:28 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163667 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 13:50:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DF3A106566C for ; Wed, 28 Dec 2011 13:50: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 4A2DA8FC18 for ; Wed, 28 Dec 2011 13:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSDoCeB009383 for ; Wed, 28 Dec 2011 13:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSDoCCw009382; Wed, 28 Dec 2011 13:50:12 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 13:50:12 GMT Resent-Message-Id: <201112281350.pBSDoCCw009382@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, Volodymyr Kostyrko Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8774C106564A for ; Wed, 28 Dec 2011 13:47:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5C3A58FC0C for ; Wed, 28 Dec 2011 13:47:11 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSDlB46018674 for ; Wed, 28 Dec 2011 13:47:11 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSDlBqD018673; Wed, 28 Dec 2011 13:47:11 GMT (envelope-from nobody) Message-Id: <201112281347.pBSDlBqD018673@red.freebsd.org> Date: Wed, 28 Dec 2011 13:47:11 GMT From: Volodymyr Kostyrko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163669: New: devel/pecl-scream Break the silence operator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 13:50:12 -0000 >Number: 163669 >Category: ports >Synopsis: New: devel/pecl-scream Break the silence operator >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 Dec 28 13:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Volodymyr Kostyrko >Release: RELENG_9 >Organization: >Environment: FreeBSD green.tandem.local 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #0: Mon Dec 26 18:35:06 EET 2011 arcade@green.tandem.local:/usr/obj/usr/src/sys/MINIMAL amd64 >Description: As admin I always hated the evil At Sign (@) in php sources. When something fails you can spend ages testing what's missing and what happens. Now I know what I should do with it. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 14:11:06 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC3221065670; Wed, 28 Dec 2011 14:11: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 C9CAF8FC1D; Wed, 28 Dec 2011 14:11:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSEB2PS031915; Wed, 28 Dec 2011 14:11:02 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSEB2tN031893; Wed, 28 Dec 2011 14:11:02 GMT (envelope-from linimon) Date: Wed, 28 Dec 2011 14:11:02 GMT Message-Id: <201112281411.pBSEB2tN031893@freefall.freebsd.org> To: c.kworr@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163669: New: devel/pecl-scream Break the silence operator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 14:11:06 -0000 Synopsis: New: devel/pecl-scream Break the silence operator State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Wed Dec 28 14:10:27 UTC 2011 State-Changed-Why: No patch was included? http://www.freebsd.org/cgi/query-pr.cgi?pr=163669 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 15:30:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D32A8106567C for ; Wed, 28 Dec 2011 15:30: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 E92DB8FC08 for ; Wed, 28 Dec 2011 15:30:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSFULIN099752 for ; Wed, 28 Dec 2011 15:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSFULHX099749; Wed, 28 Dec 2011 15:30:21 GMT (envelope-from gnats) Date: Wed, 28 Dec 2011 15:30:21 GMT Message-Id: <201112281530.pBSFULHX099749@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Volodymyr Kostyrko Cc: Subject: Re: ports/163669: New: devel/pecl-scream Break the silence operator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Volodymyr Kostyrko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 15:30:23 -0000 The following reply was made to PR ports/163669; it has been noted by GNATS. From: Volodymyr Kostyrko To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163669: New: devel/pecl-scream Break the silence operator Date: Wed, 28 Dec 2011 17:27:01 +0200 This is a multi-part message in MIME format. --------------040007010300040203090100 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 28.12.2011 16:11, linimon@FreeBSD.org wrote: > Synopsis: New: devel/pecl-scream Break the silence operator > > State-Changed-From-To: open->feedback > State-Changed-By: linimon > State-Changed-When: Wed Dec 28 14:10:27 UTC 2011 > State-Changed-Why: > No patch was included? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=163669 Oops, putting it back. -- Sphinx of black quartz judge my vow. --------------040007010300040203090100 Content-Type: text/plain; name="pecl-scream.shar" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="pecl-scream.shar" IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUg YW55dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50 ZXJpbmcgInNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBm aWxlcyBhbmQgZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBk ZWZhdWx0IHBlcm1pc3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJcGVj bC1zY3JlYW0KIwlwZWNsLXNjcmVhbS9NYWtlZmlsZQojCXBlY2wtc2NyZWFtL3BrZy1kZXNj cgojCXBlY2wtc2NyZWFtL2Rpc3RpbmZvCiMKZWNobyBjIC0gcGVjbC1zY3JlYW0KbWtkaXIg LXAgcGVjbC1zY3JlYW0gPiAvZGV2L251bGwgMj4mMQplY2hvIHggLSBwZWNsLXNjcmVhbS9N YWtlZmlsZQpzZWQgJ3MvXlgvLycgPnBlY2wtc2NyZWFtL01ha2VmaWxlIDw8ICdmYjFmNDZi NWQzODU3YmExNGI2ZWE4OWVlMjJiYzJkMicKWCMgRGF0ZSBjcmVhdGVkOgkJCSAgMjAxMS0x Mi0yOApYIyBXaG9tOgkJCQkgIFZvbG9keW15ciBLb3N0eXJrbyA8Yy5rd29yckBnbWFpbC5j b20+ClgjClgjICRGcmVlQlNEJApYIwpYClhQT1JUTkFNRT0Jc2NyZWFtClhESVNUVkVSU0lP Tj0JMC4xLjAKWENBVEVHT1JJRVM9CWRldmVsClhNQVNURVJfU0lURVM9CWh0dHA6Ly9wZWNs LnBocC5uZXQvZ2V0LwpYUEtHTkFNRVBSRUZJWD0JcGVjbC0KWEVYVFJBQ1RfU1VGWD0JLnRn egpYRElTVF9TVUJESVI9CVBFQ0wKWApYTUFJTlRBSU5FUj0JYy5rd29yckBnbWFpbC5jb20K WENPTU1FTlQ9CUJyZWFrIHRoZSBzaWxlbmNlIG9wZXJhdG9yClgKWExJQ0VOU0U9CVBIUDMw MQpYClhVU0VfUEhQPQl5ZXMKWFVTRV9QSFBFWFQ9CXllcwpYClh0ZXN0OiBidWlsZApYCUAo Y2QgJHtXUktTUkN9ICYmICR7TUFLRX0gdGVzdCkKWApYLmluY2x1ZGUgPGJzZC5wb3J0Lm1r PgpmYjFmNDZiNWQzODU3YmExNGI2ZWE4OWVlMjJiYzJkMgplY2hvIHggLSBwZWNsLXNjcmVh bS9wa2ctZGVzY3IKc2VkICdzL15YLy8nID5wZWNsLXNjcmVhbS9wa2ctZGVzY3IgPDwgJzM1 MGY5YzIwZWYyZDFmNmU1ODhlMjEwZmM4ZDAzMjczJwpYVGhlIHNjcmVhbSBleHRlbnNpb24g Z2l2ZXMgdGhlIHBvc3NpYmlsaXR5IHRvIGRpc2FibGUgdGhlIHNpbGVuY2luZyBlcnJvcgpY Y29udHJvbCBvcGVyYXRvciAoYWthIFRoZSBBdCBTaWduOiAnQCcpIHNvIGFsbCBlcnJvcnMg YXJlIGJlaW5nIHJlcG9ydGVkLgpYClhUaGlzIGZlYXR1cmUgaXMgY29udHJvbGxlZCBieSBh biBpbmkgc2V0dGluZy4KWApYV1dXOiBodHRwOi8vcGVjbC5waHAubmV0L3BhY2thZ2Uvc2Ny ZWFtCjM1MGY5YzIwZWYyZDFmNmU1ODhlMjEwZmM4ZDAzMjczCmVjaG8geCAtIHBlY2wtc2Ny ZWFtL2Rpc3RpbmZvCnNlZCAncy9eWC8vJyA+cGVjbC1zY3JlYW0vZGlzdGluZm8gPDwgJzA2 MTgxYjNjMmU1ODAzYTgwN2E2MTNkNDlkMmVkMjczJwpYU0hBMjU2IChQRUNML3NjcmVhbS0w LjEuMC50Z3opID0gNThkY2NiNWIxODRkZWQ3YWVlYTBmYzEzMTVkN2FlOTRmMDdmMDg0MmUw ZGY5NWE1MTk5YzY3ODNjNTBlYmQxNApYU0laRSAoUEVDTC9zY3JlYW0tMC4xLjAudGd6KSA9 IDMwMDIKMDYxODFiM2MyZTU4MDNhODA3YTYxM2Q0OWQyZWQyNzMKZXhpdAoK --------------040007010300040203090100-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 15:30:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE15E106567D for ; Wed, 28 Dec 2011 15:30: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 61DD18FC17 for ; Wed, 28 Dec 2011 15:30:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSFUM7e099783 for ; Wed, 28 Dec 2011 15:30:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSFUMuX099782; Wed, 28 Dec 2011 15:30:22 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 15:30:22 GMT Resent-Message-Id: <201112281530.pBSFUMuX099782@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, "Iouri V. Ivliev" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C07B3106566C for ; Wed, 28 Dec 2011 15:28:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id ADC8D8FC0A for ; Wed, 28 Dec 2011 15:28:55 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSFSsem097525 for ; Wed, 28 Dec 2011 15:28:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSFSsqB097524; Wed, 28 Dec 2011 15:28:54 GMT (envelope-from nobody) Message-Id: <201112281528.pBSFSsqB097524@red.freebsd.org> Date: Wed, 28 Dec 2011 15:28:54 GMT From: "Iouri V. Ivliev" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163671: Update port: graphics/panoglview - 0.2.2 release, UNICODE option is on by default, fixup configure and build when UNICODE is off X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 15:30:23 -0000 >Number: 163671 >Category: ports >Synopsis: Update port: graphics/panoglview - 0.2.2 release, UNICODE option is on by default, fixup configure and build when UNICODE is off >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 Dec 28 15:30:21 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Iouri V. Ivliev >Release: FreeBSD 8.2-STABLE amd64 >Organization: EsterDev, Ltd >Environment: FreeBSD smaug.esterdev.com 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Dec 26 00:31:29 UTC 2011 root@smaug.esterdev.com:/usr/obj/usr/src/sys/SMAUG amd64 >Description: Update panoglview to 0.2.2 release. Change default of UNICODE option to "on". Unfortunately I cannot test this port on powerpc, so it remains broken with "Does not configure on powerpc" reason. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN panoglview.orig/Makefile panoglview/Makefile --- panoglview.orig/Makefile 2011-12-28 07:55:21.000000000 +0400 +++ panoglview/Makefile 2011-12-28 18:29:26.393048945 +0400 @@ -6,21 +6,21 @@ # PORTNAME= panoglview -PORTVERSION= 0.2.1 -PORTREVISION= 4 +PORTVERSION= 0.2.2 CATEGORIES= graphics -MASTER_SITES= SF/hugin/${PORTNAME}/${PORTNAME}-${PORTVERSION} +MASTER_SITES= SF +MASTER_SITE_SUBDIR= hugin/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= ii@any.com.ru COMMENT= Panorama viewer using OpenGL GNU_CONFIGURE= yes -CONFIGURE_ENV= WX_CONFIG_NAME=wxgtk2-${WX_VERSION}-config \ +CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= WX_CONFIG_NAME=${WX_CONFIG} \ PATH="$${PATH}:${LOCALBASE}/bin" -LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -lwx_gtk2_gl-${WX_VERSION} +LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib CFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include CXXFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include -ftemplate-depth-64 -USE_XORG= x11 USE_GMAKE= yes USE_WX= 2.6+ @@ -29,7 +29,7 @@ PLIST_FILES= bin/panoglview -OPTIONS= UNICODE "Use UNICODE version of the wxgtk (NLS broken!)" off +OPTIONS= UNICODE "Use UNICODE version of the wxgtk" on .include @@ -39,10 +39,9 @@ .if defined(WITH_UNICODE) WX_UNICODE= yes -WX_RC= wxrc-gtk2u-${WX_VERSION} CONFIGURE_ARGS+= --with-unicode .else -WX_RC= wxrc-gtk2-${WX_VERSION} +.undef WX_UNICODE CONFIGURE_ARGS+= --without-unicode .endif diff -ruN panoglview.orig/distinfo panoglview/distinfo --- panoglview.orig/distinfo 2011-07-03 18:11:51.000000000 +0400 +++ panoglview/distinfo 2011-12-28 17:42:52.175920356 +0400 @@ -1,2 +1,2 @@ -SHA256 (panoglview-0.2.1.tar.gz) = 28de4375cd3234d87b563e8807925aa0c234f393c9d9f34562aa8913c8ab8fcf -SIZE (panoglview-0.2.1.tar.gz) = 467291 +SHA256 (panoglview-0.2.2.tar.gz) = 0726c5cde08e41c88d9e1002f2743dc7f7d39d553d49605a7cf4b8bb9d47349a +SIZE (panoglview-0.2.2.tar.gz) = 341134 diff -ruN panoglview.orig/files/patch-configure panoglview/files/patch-configure --- panoglview.orig/files/patch-configure 1970-01-01 03:00:00.000000000 +0300 +++ panoglview/files/patch-configure 2011-12-28 18:19:56.537608647 +0400 @@ -0,0 +1,15 @@ +--- configure.orig 2008-07-23 21:14:06.000000000 +0000 ++++ configure 2011-12-28 14:19:01.165970190 +0000 +@@ -3911,11 +3911,7 @@ + " >&2;} + { (exit 1); exit 1; }; } + else +- if test "x$with_unicode" = 'xyes' ; then +- WX_GL_LIBS="`$WX_CONFIG_PATH --gl-libs`" +- else +- WX_GL_LIBS="`$WX_CONFIG_PATH --unicode --gl-libs`" +- fi ++ WX_GL_LIBS="`$WX_CONFIG_WITH_ARGS --gl-libs`" + + fi + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 15:49:45 2011 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 63CF61065675; Wed, 28 Dec 2011 15:49:45 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-ee0-f54.google.com (mail-ee0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id BC7558FC15; Wed, 28 Dec 2011 15:49:44 +0000 (UTC) Received: by eekc50 with SMTP id c50so14955997eek.13 for ; Wed, 28 Dec 2011 07:49:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type; bh=Ys01QZgNHrm5rdLItwtuRp1TPwMUNNTvJWSzJsm8x/8=; b=MGJguQfups5LAZ19SSp3kQ7JIS9nuT1IgTBmC5UU8ALs0qXfn/GNbRfc/09+g6lyFJ PHMScfawcOWWByDaRHxkZnJtvQm5P8wCB9IuAjXwk28alDRlk0+ApXh4BiHkPTs6IFfT tyMHdpXNzL5DnNTYavKYn4IASwVy/EdRkVe8Q= Received: by 10.213.4.138 with SMTP id 10mr9642677ebr.19.1325085515780; Wed, 28 Dec 2011 07:18:35 -0800 (PST) Received: from green.tandem.local (utwig.xim.bz. [91.216.237.46]) by mx.google.com with ESMTPS id t59sm121340143eeh.10.2011.12.28.07.18.33 (version=SSLv3 cipher=OTHER); Wed, 28 Dec 2011 07:18:34 -0800 (PST) Message-ID: <4EFB3348.1030001@gmail.com> Date: Wed, 28 Dec 2011 17:18:32 +0200 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111223 Thunderbird/9.0 MIME-Version: 1.0 To: linimon@FreeBSD.org References: <201112281411.pBSEB2tN031893@freefall.freebsd.org> In-Reply-To: <201112281411.pBSEB2tN031893@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------000109000706060808090209" Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/163669: New: devel/pecl-scream Break the silence operator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 15:49:45 -0000 This is a multi-part message in MIME format. --------------000109000706060808090209 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 28.12.2011 16:11, linimon@FreeBSD.org wrote: > Synopsis: New: devel/pecl-scream Break the silence operator > > State-Changed-From-To: open->feedback > State-Changed-By: linimon > State-Changed-When: Wed Dec 28 14:10:27 UTC 2011 > State-Changed-Why: > No patch was included? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=163669 Oops, butting it back. -- Sphinx of black quartz judge my vow. --------------000109000706060808090209 Content-Type: text/plain; name="pecl-scream.shar" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="pecl-scream.shar" IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUg YW55dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50 ZXJpbmcgInNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBm aWxlcyBhbmQgZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBk ZWZhdWx0IHBlcm1pc3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJcGVj bC1zY3JlYW0KIwlwZWNsLXNjcmVhbS9NYWtlZmlsZQojCXBlY2wtc2NyZWFtL3BrZy1kZXNj cgojCXBlY2wtc2NyZWFtL2Rpc3RpbmZvCiMKZWNobyBjIC0gcGVjbC1zY3JlYW0KbWtkaXIg LXAgcGVjbC1zY3JlYW0gPiAvZGV2L251bGwgMj4mMQplY2hvIHggLSBwZWNsLXNjcmVhbS9N YWtlZmlsZQpzZWQgJ3MvXlgvLycgPnBlY2wtc2NyZWFtL01ha2VmaWxlIDw8ICdmYjFmNDZi NWQzODU3YmExNGI2ZWE4OWVlMjJiYzJkMicKWCMgRGF0ZSBjcmVhdGVkOgkJCSAgMjAxMS0x Mi0yOApYIyBXaG9tOgkJCQkgIFZvbG9keW15ciBLb3N0eXJrbyA8Yy5rd29yckBnbWFpbC5j b20+ClgjClgjICRGcmVlQlNEJApYIwpYClhQT1JUTkFNRT0Jc2NyZWFtClhESVNUVkVSU0lP Tj0JMC4xLjAKWENBVEVHT1JJRVM9CWRldmVsClhNQVNURVJfU0lURVM9CWh0dHA6Ly9wZWNs LnBocC5uZXQvZ2V0LwpYUEtHTkFNRVBSRUZJWD0JcGVjbC0KWEVYVFJBQ1RfU1VGWD0JLnRn egpYRElTVF9TVUJESVI9CVBFQ0wKWApYTUFJTlRBSU5FUj0JYy5rd29yckBnbWFpbC5jb20K WENPTU1FTlQ9CUJyZWFrIHRoZSBzaWxlbmNlIG9wZXJhdG9yClgKWExJQ0VOU0U9CVBIUDMw MQpYClhVU0VfUEhQPQl5ZXMKWFVTRV9QSFBFWFQ9CXllcwpYClh0ZXN0OiBidWlsZApYCUAo Y2QgJHtXUktTUkN9ICYmICR7TUFLRX0gdGVzdCkKWApYLmluY2x1ZGUgPGJzZC5wb3J0Lm1r PgpmYjFmNDZiNWQzODU3YmExNGI2ZWE4OWVlMjJiYzJkMgplY2hvIHggLSBwZWNsLXNjcmVh bS9wa2ctZGVzY3IKc2VkICdzL15YLy8nID5wZWNsLXNjcmVhbS9wa2ctZGVzY3IgPDwgJzM1 MGY5YzIwZWYyZDFmNmU1ODhlMjEwZmM4ZDAzMjczJwpYVGhlIHNjcmVhbSBleHRlbnNpb24g Z2l2ZXMgdGhlIHBvc3NpYmlsaXR5IHRvIGRpc2FibGUgdGhlIHNpbGVuY2luZyBlcnJvcgpY Y29udHJvbCBvcGVyYXRvciAoYWthIFRoZSBBdCBTaWduOiAnQCcpIHNvIGFsbCBlcnJvcnMg YXJlIGJlaW5nIHJlcG9ydGVkLgpYClhUaGlzIGZlYXR1cmUgaXMgY29udHJvbGxlZCBieSBh biBpbmkgc2V0dGluZy4KWApYV1dXOiBodHRwOi8vcGVjbC5waHAubmV0L3BhY2thZ2Uvc2Ny ZWFtCjM1MGY5YzIwZWYyZDFmNmU1ODhlMjEwZmM4ZDAzMjczCmVjaG8geCAtIHBlY2wtc2Ny ZWFtL2Rpc3RpbmZvCnNlZCAncy9eWC8vJyA+cGVjbC1zY3JlYW0vZGlzdGluZm8gPDwgJzA2 MTgxYjNjMmU1ODAzYTgwN2E2MTNkNDlkMmVkMjczJwpYU0hBMjU2IChQRUNML3NjcmVhbS0w LjEuMC50Z3opID0gNThkY2NiNWIxODRkZWQ3YWVlYTBmYzEzMTVkN2FlOTRmMDdmMDg0MmUw ZGY5NWE1MTk5YzY3ODNjNTBlYmQxNApYU0laRSAoUEVDTC9zY3JlYW0tMC4xLjAudGd6KSA9 IDMwMDIKMDYxODFiM2MyZTU4MDNhODA3YTYxM2Q0OWQyZWQyNzMKZXhpdAoK --------------000109000706060808090209-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 16:00:29 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 345C7106566B for ; Wed, 28 Dec 2011 16: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 0742F8FC15 for ; Wed, 28 Dec 2011 16:00:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSG0SlX026822 for ; Wed, 28 Dec 2011 16:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSG0SRZ026821; Wed, 28 Dec 2011 16:00:28 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 16:00:28 GMT Resent-Message-Id: <201112281600.pBSG0SRZ026821@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, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA747106566C for ; Wed, 28 Dec 2011 15:55:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CCFAB8FC14 for ; Wed, 28 Dec 2011 15:55:43 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSFthYc050743 for ; Wed, 28 Dec 2011 15:55:43 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSFthpu050742; Wed, 28 Dec 2011 15:55:43 GMT (envelope-from nobody) Message-Id: <201112281555.pBSFthpu050742@red.freebsd.org> Date: Wed, 28 Dec 2011 15:55:43 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163672: lang/gcc46: make failed for lang/gcc46 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 16:00:29 -0000 >Number: 163672 >Category: ports >Synopsis: lang/gcc46: make failed for lang/gcc46 >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 28 16:00:27 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 >Organization: FU Berlin >Environment: >Description: On FreeBSD 10.0-CURRENT/amd64, CLANG built world and kernel and most ports, I'm incapable of building lang/gcc46 anymore. /etc/make.conf contains only addenda to build world with CLANG, also ports. The /etc/src.conf contains: WITH_CLANG= YES WITH_CLANG_EXTRAS= YES # WITH_BIND_LIBS= YES WITH_BIND_SIGCHASE= YES WITH_BIND_LARGE_FILE= YES # WITH_IDEA= YES #WITH_HESIOD= YES # #WITH_ICONV= YES WITH_BSD_GREP= YES # WITH_LIBCPLUSPLUS= YES # #WITH_OFED= YES This error is quite new, since with the same settings, the last time update of lang/gcc46 performed well on the very same box. On FreeBSD 9.0-PRE/amd64, most recent world compiled today with CLANG, the port lang/gcc46 build well. On the FBSD 10.0-CUR box in question, I use the 10.0-problem fix set via # BUGFIX FreeBSD 10.0 WITH_FBSD10_FIX= YES I also set setenv UNAME_r "9.9-CURRENT" in the shell before building. libtool: link: /usr/ports/lang/gcc46/work/build/./gcc/xgcc -B/usr/ports/lang/gcc46/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd9.9/bin/ -B/usr/local/x86_64-portbld-freebsd9.9/lib/ -isystem /usr/local/x86_64-portbld-freebsd9.9/include -isystem /usr/local/x86_64-portbld-freebsd9.9/sys-include -shared math/.libs/acoshq.o math/.libs/fmodq.o math/.libs/acosq.o math/.libs/frexpq.o math/.libs/rem_pio2q.o math/.libs/asinhq.o math/.libs/hypotq.o math/.libs/remainderq.o math/.libs/asinq.o math/.libs/rintq.o math/.libs/atan2q.o math/.libs/isinfq.o math/.libs/roundq.o math/.libs/atanhq.o math/.libs/isnanq.o math/.libs/scalblnq.o math/.libs/atanq.o math/.libs/j0q.o math/.libs/scalbnq.o math/.libs/cbrtq.o math/.libs/j1q.o math/.libs/signbitq.o math/.libs/ceilq.o math/.libs/jnq.o math/.libs/sincos_table.o math/.libs/complex.o math/.libs/ldexpq.o math/.libs/sincosq.o math/.libs/copysignq.o math/.libs/lgammaq.o math/.libs/sincosq_kernel.o math/.libs/coshq.o math/.libs/llroundq.o math/.libs/sinhq.o math/.libs/cosq.o math/.libs/log10q.o math/.libs/sinq.o math/.libs/cosq_kernel.o math/.libs/log1pq.o math/.libs/sinq_kernel.o math/.libs/erfq.o math/.libs/logq.o math/.libs/sqrtq.o math/.libs/expm1q.o math/.libs/lroundq.o math/.libs/tanhq.o math/.libs/expq.o math/.libs/modfq.o math/.libs/tanq.o math/.libs/fabsq.o math/.libs/nanq.o math/.libs/tgammaq.o math/.libs/finiteq.o math/.libs/nextafterq.o math/.libs/truncq.o math/.libs/floorq.o math/.libs/powq.o math/.libs/fmaq.o math/.libs/cacoshq.o math/.libs/cacosq.o math/.libs/casinhq.o math/.libs/casinq.o math/.libs/catanhq.o math/.libs/catanq.o math/.libs/cimagq.o math/.libs/conjq.o math/.libs/cprojq.o math/.libs/crealq.o math/.libs/fdimq.o math/.libs/fmaxq.o math/.libs/fminq.o math/.libs/ilogbq.o math/.libs/llrintq.o math/.libs/log2q.o math/.libs/lrintq.o math/.libs/nearbyintq.o math/.libs/remquoq.o printf/.libs/addmul_1.o printf/.libs/add_n.o printf/.libs/cmp.o printf/.libs/divrem.o printf/.libs/flt1282mpn.o printf/.libs/fpioconst.o printf/.libs/lshift.o printf/.libs! /mul_1.o printf/.libs/mul_n.o printf/.libs/mul.o printf/.libs/printf_fphex.o printf/.libs/printf_fp.o printf/.libs/quadmath-printf.o printf/.libs/rshift.o printf/.libs/submul_1.o printf/.libs/sub_n.o strtod/.libs/strtoflt128.o strtod/.libs/mpn2flt128.o strtod/.libs/tens_in_limb.o -lm -march=native -Wl,--version-script=../.././../gcc-4.6-20111209/libquadmath/quadmath.map -Wl,-soname -Wl,libquadmath.so.0 -o .libs/libquadmath.so.0 libtool: link: (cd ".libs" && rm -f "libquadmath.so" && ln -s "libquadmath.so.0" "libquadmath.so") libtool: link: (cd ".libs" && rm -f "libquadmath.so" && ln -s "libquadmath.so.0" "libquadmath.so") libtool: link: /usr/local/x86_64-portbld-freebsd9.9/bin/ar rc .libs/libquadmath.a math/acoshq.o math/fmodq.o math/acosq.o math/frexpq.o math/rem_pio2q.o math/asinhq.o math/hypotq.o math/remainderq.o math/asinq.o math/rintq.o math/atan2q.o math/isinfq.o math/roundq.o math/atanhq.o math/isnanq.o math/scalblnq.o math/atanq.o math/j0q.o math/scalbnq.o math/cbrtq.o math/j1q.o math/signbitq.o math/ceilq.o math/jnq.o math/sincos_table.o math/complex.o math/ldexpq.o math/sincosq.o math/copysignq.o math/lgammaq.o math/sincosq_kernel.o math/coshq.o math/llroundq.o math/sinhq.o math/cosq.o math/log10q.o math/sinq.o math/cosq_kernel.o math/log1pq.o math/sinq_kernel.o math/erfq.o math/logq.o math/sqrtq.o math/expm1q.o math/lroundq.o math/tanhq.o math/expq.o math/modfq.o math/tanq.o math/fabsq.o math/nanq.o math/tgammaq.o math/finiteq.o math/nextafterq.o math/truncq.o math/floorq.o math/powq.o math/fmaq.o math/cacoshq.o math/cacosq.o math/casinhq.o math/casinq.o math/catanhq.o math/catanq .o math/cimagq.o math/conjq.o math/cprojq.o math/crealq.o math/fdimq.o math/fmaxq.o math/fminq.o math/ilogbq.o math/llrintq.o math/log2q.o math/lrintq.o math/nearbyintq.o math/remquoq.o printf/addmul_1.o printf/add_n.o printf/cmp.o printf/divrem.o printf/flt1282mpn.o printf/fpioconst.o printf/lshift.o printf/mul_1.o printf/mul_n.o printf/mul.o printf/printf_fphex.o printf/printf_fp.o printf/quadmath-printf.o printf/rshift.o printf/submul_1.o printf/sub_n.o strtod/strtoflt128.o strtod/mpn2flt128.o strtod/tens_in_limb.o libtool: link: /usr/local/x86_64-portbld-freebsd9.9/bin/ranlib .libs/libquadmath.a libtool: link: ( cd ".libs" && rm -f "libquadmath.la" && ln -s "../libquadmath.la" "libquadmath.la" ) gmake[3]: Leaving directory `/usr/ports/lang/gcc46/work/build/x86_64-portbld-freebsd9.9/libquadmath' gmake[2]: Leaving directory `/usr/ports/lang/gcc46/work/build/x86_64-portbld-freebsd9.9/libquadmath' gmake[1]: Leaving directory `/usr/ports/lang/gcc46/work/build' gmake: *** [bootstrap-lean] Error 2 *** Error code 1 Stop in /usr/ports/lang/gcc46. *** Error code 1 Stop in /usr/ports/lang/gcc46. ===>>> make failed for lang/gcc46 ===>>> Aborting update ===>>> Update for lang/gcc46 failed ===>>> Aborting update Terminated Well, after the first fail run, I deleted gcc46 and tried installing again, but failed also. After performing a rebuild of gettext, gmake and gawk as well as binutils, as they were in the past often problematic in FreeBSD 10 and the installation tools, I performed after that with the same settings a portmaster -f lang/gcc46. Everything expect gcc46 built well, the gcc46 build fails again and seems to be the same error: libtool: link: /usr/ports/lang/gcc46/work/build/./gcc/xgcc -B/usr/ports/lang/gcc46/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd9.9/bin/ -B/usr/local/x86_64-portbld-freebsd9.9/lib/ -isystem /usr/local/x86_64-portbld-freebsd9.9/include -isystem /usr/local/x86_64-portbld-freebsd9.9/sys-include -shared math/.libs/acoshq.o math/.libs/fmodq.o math/.libs/acosq.o math/.libs/frexpq.o math/.libs/rem_pio2q.o math/.libs/asinhq.o math/.libs/hypotq.o math/.libs/remainderq.o math/.libs/asinq.o math/.libs/rintq.o math/.libs/atan2q.o math/.libs/isinfq.o math/.libs/roundq.o math/.libs/atanhq.o math/.libs/isnanq.o math/.libs/scalblnq.o math/.libs/atanq.o math/.libs/j0q.o math/.libs/scalbnq.o math/.libs/cbrtq.o math/.libs/j1q.o math/.libs/signbitq.o math/.libs/ceilq.o math/.libs/jnq.o math/.libs/sincos_table.o math/.libs/complex.o math/.libs/ldexpq.o math/.libs/sincosq.o math/.libs/copysignq.o math/.libs/lgammaq.o math/.libs/sincosq_kernel.o math/.libs/coshq.o math/.libs/llroundq.o math/.libs/sinhq.o math/.libs/cosq.o math/.libs/log10q.o math/.libs/sinq.o math/.libs/cosq_kernel.o math/.libs/log1pq.o math/.libs/sinq_kernel.o math/.libs/erfq.o math/.libs/logq.o math/.libs/sqrtq.o math/.libs/expm1q.o math/.libs/lroundq.o math/.libs/tanhq.o math/.libs/expq.o math/.libs/modfq.o math/.libs/tanq.o math/.libs/fabsq.o math/.libs/nanq.o math/.libs/tgammaq.o math/.libs/finiteq.o math/.libs/nextafterq.o math/.libs/truncq.o math/.libs/floorq.o math/.libs/powq.o math/.libs/fmaq.o math/.libs/cacoshq.o math/.libs/cacosq.o math/.libs/casinhq.o math/.libs/casinq.o math/.libs/catanhq.o math/.libs/catanq.o math/.libs/cimagq.o math/.libs/conjq.o math/.libs/cprojq.o math/.libs/crealq.o math/.libs/fdimq.o math/.libs/fmaxq.o math/.libs/fminq.o math/.libs/ilogbq.o math/.libs/llrintq.o math/.libs/log2q.o math/.libs/lrintq.o math/.libs/nearbyintq.o math/.libs/remquoq.o printf/.libs/addmul_1.o printf/.libs/add_n.o printf/.libs/cmp.o printf/.libs/divrem.o printf/.libs/flt1282mpn.o printf/.libs/fpioconst.o printf/.libs/lshift.o printf/.libs! /mul_1.o printf/.libs/mul_n.o printf/.libs/mul.o printf/.libs/printf_fphex.o printf/.libs/printf_fp.o printf/.libs/quadmath-printf.o printf/.libs/rshift.o printf/.libs/submul_1.o printf/.libs/sub_n.o strtod/.libs/strtoflt128.o strtod/.libs/mpn2flt128.o strtod/.libs/tens_in_limb.o -lm -march=native -Wl,--version-script=../.././../gcc-4.6-20111209/libquadmath/quadmath.map -Wl,-soname -Wl,libquadmath.so.0 -o .libs/libquadmath.so.0 libtool: link: (cd ".libs" && rm -f "libquadmath.so" && ln -s "libquadmath.so.0" "libquadmath.so") libtool: link: (cd ".libs" && rm -f "libquadmath.so" && ln -s "libquadmath.so.0" "libquadmath.so") libtool: link: /usr/local/x86_64-portbld-freebsd9.9/bin/ar rc .libs/libquadmath.a math/acoshq.o math/fmodq.o math/acosq.o math/frexpq.o math/rem_pio2q.o math/asinhq.o math/hypotq.o math/remainderq.o math/asinq.o math/rintq.o math/atan2q.o math/isinfq.o math/roundq.o math/atanhq.o math/isnanq.o math/scalblnq.o math/atanq.o math/j0q.o math/scalbnq.o math/cbrtq.o math/j1q.o math/signbitq.o math/ceilq.o math/jnq.o math/sincos_table.o math/complex.o math/ldexpq.o math/sincosq.o math/copysignq.o math/lgammaq.o math/sincosq_kernel.o math/coshq.o math/llroundq.o math/sinhq.o math/cosq.o math/log10q.o math/sinq.o math/cosq_kernel.o math/log1pq.o math/sinq_kernel.o math/erfq.o math/logq.o math/sqrtq.o math/expm1q.o math/lroundq.o math/tanhq.o math/expq.o math/modfq.o math/tanq.o math/fabsq.o math/nanq.o math/tgammaq.o math/finiteq.o math/nextafterq.o math/truncq.o math/floorq.o math/powq.o math/fmaq.o math/cacoshq.o math/cacosq.o math/casinhq.o math/casinq.o math/catanhq.o math/catanq .o math/cimagq.o math/conjq.o math/cprojq.o math/crealq.o math/fdimq.o math/fmaxq.o math/fminq.o math/ilogbq.o math/llrintq.o math/log2q.o math/lrintq.o math/nearbyintq.o math/remquoq.o printf/addmul_1.o printf/add_n.o printf/cmp.o printf/divrem.o printf/flt1282mpn.o printf/fpioconst.o printf/lshift.o printf/mul_1.o printf/mul_n.o printf/mul.o printf/printf_fphex.o printf/printf_fp.o printf/quadmath-printf.o printf/rshift.o printf/submul_1.o printf/sub_n.o strtod/strtoflt128.o strtod/mpn2flt128.o strtod/tens_in_limb.o libtool: link: /usr/local/x86_64-portbld-freebsd9.9/bin/ranlib .libs/libquadmath.a libtool: link: ( cd ".libs" && rm -f "libquadmath.la" && ln -s "../libquadmath.la" "libquadmath.la" ) gmake[3]: Leaving directory `/usr/ports/lang/gcc46/work/build/x86_64-portbld-freebsd9.9/libquadmath' gmake[2]: Leaving directory `/usr/ports/lang/gcc46/work/build/x86_64-portbld-freebsd9.9/libquadmath' gmake[1]: Leaving directory `/usr/ports/lang/gcc46/work/build' gmake: *** [bootstrap-lean] Error 2 *** Error code 1 Stop in /usr/ports/lang/gcc46. *** Error code 1 Stop in /usr/ports/lang/gcc46. >How-To-Repeat: Install or update lang/gcc46 from most recent ports tree on a most recent FreeBSD 10.0-CURRENT/amd64 clang built world with the above settings in /etc/src.conf. >Fix: Not known. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 16:00:39 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A428C1065670; Wed, 28 Dec 2011 16:00:39 +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 7A7CA8FC16; Wed, 28 Dec 2011 16:00:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSG0dL6027029; Wed, 28 Dec 2011 16:00:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSG0dQf027025; Wed, 28 Dec 2011 16:00:39 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 16:00:39 GMT Message-Id: <201112281600.pBSG0dQf027025@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gerald@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163672: lang/gcc46: make failed for lang/gcc46 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 16:00:39 -0000 Synopsis: lang/gcc46: make failed for lang/gcc46 Responsible-Changed-From-To: freebsd-ports-bugs->gerald Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 16:00:38 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163672 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 16:10:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8485C1065678 for ; Wed, 28 Dec 2011 16: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 5EC248FC13 for ; Wed, 28 Dec 2011 16:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSGAAD0035951 for ; Wed, 28 Dec 2011 16:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSGAAJd035950; Wed, 28 Dec 2011 16:10:10 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 16:10:10 GMT Resent-Message-Id: <201112281610.pBSGAAJd035950@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 307191065678 for ; Wed, 28 Dec 2011 16:08:34 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id F21768FC1A for ; Wed, 28 Dec 2011 16:08:33 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 08DF65523; Thu, 29 Dec 2011 00:07:06 +0800 (CST) Message-Id: <20111228160706.08DF65523@sunpoet.net> Date: Thu, 29 Dec 2011 00:07:06 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jnlin@csie.nctu.edu.tw Subject: ports/163673: [PATCH] comms/p5-Nexmo-SMS: 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: Wed, 28 Dec 2011 16:10:11 -0000 >Number: 163673 >Category: ports >Synopsis: [PATCH] comms/p5-Nexmo-SMS: 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: Wed Dec 28 16:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.0-PRERELEASE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #0: Sun Nov 20 12:43:06 CST 2011 >Description: - Update to 0.06 Port maintainer (jnlin@csie.nctu.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Nexmo-SMS-0.06.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/comms/p5-Nexmo-SMS/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 1 Dec 2011 06:43:06 -0000 1.3 +++ Makefile 28 Dec 2011 16:08:24 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Nexmo-SMS -PORTVERSION= 0.05 +PORTVERSION= 0.06 CATEGORIES= comms perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RENEEB @@ -32,7 +32,6 @@ Nexmo::SMS::Response.3 \ Nexmo::SMS::Response::Message.3 \ Nexmo::SMS::TextMessage.3 \ - Nexmo::SMS::UnicodeMessage.3 \ Nexmo::SMS::WAPPushMessage.3 .include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/comms/p5-Nexmo-SMS/distinfo,v retrieving revision 1.3 diff -u -u -r1.3 distinfo --- distinfo 1 Dec 2011 06:43:06 -0000 1.3 +++ distinfo 28 Dec 2011 16:08:24 -0000 @@ -1,2 +1,2 @@ -SHA256 (Nexmo-SMS-0.05.tar.gz) = edae222db55aaaa9f8961a821cfeb68e36918b3bec26541d70d1b1f49d45797e -SIZE (Nexmo-SMS-0.05.tar.gz) = 13134 +SHA256 (Nexmo-SMS-0.06.tar.gz) = 5b01ce364d557491b8d0b94797bce128c3c7082910fd4e4a5e5a859b526e6daa +SIZE (Nexmo-SMS-0.06.tar.gz) = 12827 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/comms/p5-Nexmo-SMS/pkg-plist,v retrieving revision 1.2 diff -u -u -r1.2 pkg-plist --- pkg-plist 29 Nov 2011 09:02:08 -0000 1.2 +++ pkg-plist 28 Dec 2011 16:08:24 -0000 @@ -5,7 +5,6 @@ %%SITE_PERL%%/Nexmo/SMS/Response.pm %%SITE_PERL%%/Nexmo/SMS/Response/Message.pm %%SITE_PERL%%/Nexmo/SMS/TextMessage.pm -%%SITE_PERL%%/Nexmo/SMS/UnicodeMessage.pm %%SITE_PERL%%/Nexmo/SMS/WAPPushMessage.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Nexmo/SMS/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Nexmo/SMS --- p5-Nexmo-SMS-0.06.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 16:10:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AE19106564A; Wed, 28 Dec 2011 16:10: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 D52B78FC14; Wed, 28 Dec 2011 16:10:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSGALPr036120; Wed, 28 Dec 2011 16:10:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSGALsC036114; Wed, 28 Dec 2011 16:10:21 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 16:10:21 GMT Message-Id: <201112281610.pBSGALsC036114@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163673: [PATCH] comms/p5-Nexmo-SMS: 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: Wed, 28 Dec 2011 16:10:22 -0000 Synopsis: [PATCH] comms/p5-Nexmo-SMS: update to 0.06 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 16:10:21 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163673 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 16:11:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 880201065672; Wed, 28 Dec 2011 16:11:13 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5EBF78FC23; Wed, 28 Dec 2011 16:11:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSGBDeC042704; Wed, 28 Dec 2011 16:11:13 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSGBDo6042700; Wed, 28 Dec 2011 16:11:13 GMT (envelope-from jgh) Date: Wed, 28 Dec 2011 16:11:13 GMT Message-Id: <201112281611.pBSGBDo6042700@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/163666: [PATCH] Add user "gerrit" to UIDs and 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: Wed, 28 Dec 2011 16:11:13 -0000 Synopsis: [PATCH] Add user "gerrit" to UIDs and GIDs Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Wed Dec 28 16:11:12 UTC 2011 Responsible-Changed-Why: I'll take this http://www.freebsd.org/cgi/query-pr.cgi?pr=163666 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 17:21:04 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12934106564A; Wed, 28 Dec 2011 17:21:04 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DCB608FC1A; Wed, 28 Dec 2011 17:21:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSHL3Fn008320; Wed, 28 Dec 2011 17:21:03 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSHL3Bx008302; Wed, 28 Dec 2011 17:21:03 GMT (envelope-from crees) Date: Wed, 28 Dec 2011 17:21:03 GMT Message-Id: <201112281721.pBSHL3Bx008302@freefall.freebsd.org> To: c.kworr@gmail.com, crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/163669: New: devel/pecl-scream Break the silence operator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 17:21:04 -0000 Synopsis: New: devel/pecl-scream Break the silence operator State-Changed-From-To: feedback->open State-Changed-By: crees State-Changed-When: Wed Dec 28 17:21:03 UTC 2011 State-Changed-Why: Submitter has fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=163669 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 18:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C364106566B for ; Wed, 28 Dec 2011 18: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 359D88FC19 for ; Wed, 28 Dec 2011 18:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSIAAFH046862 for ; Wed, 28 Dec 2011 18:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSIAAGH046861; Wed, 28 Dec 2011 18:10:10 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 18:10:10 GMT Resent-Message-Id: <201112281810.pBSIAAGH046861@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 Gmelin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B17E106566B for ; Wed, 28 Dec 2011 18:02:56 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.bindone.de (mail.bindone.de [80.190.134.51]) by mx1.freebsd.org (Postfix) with SMTP id 06F238FC12 for ; Wed, 28 Dec 2011 18:02:53 +0000 (UTC) Received: (qmail 4342 invoked by uid 0); 28 Dec 2011 17:45:25 -0000 Message-Id: <20111228174525.4341.qmail@mail.bindone.de> Date: 28 Dec 2011 17:45:25 -0000 From: Michael Gmelin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clsung@FreeBSD.org Subject: ports/163674: [PATCH] devel/buildbot-slave: update to 0.8.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: Wed, 28 Dec 2011 18:10:10 -0000 >Number: 163674 >Category: ports >Synopsis: [PATCH] devel/buildbot-slave: update to 0.8.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: Wed Dec 28 18:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Michael Gmelin >Release: FreeBSD 8.2-RELEASE-p2 amd64 >Organization: Grem Equity GmbH >Environment: System: FreeBSD settler.grem.de 8.2-RELEASE-p2 FreeBSD 8.2-RELEASE-p2 #3 r222557M: Thu Jun 16 23:58:02 CEST >Description: - Update to 0.8.5 - Fix problem in git.py which prevented buildbot-slave from working with git >= 1.7.7 (see http://trac.buildbot.net/ticket/2127 and https://github.com/buildbot/buildbot/commit/6f5ce3b2ab033338f3ad7ddccbf8b6542311f70b) Added file(s): - files/patch-buildslave__commands__git.py Port maintainer (clsung@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- buildbot-slave-0.8.5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/buildbot-slave.orig/Makefile /usr/ports/devel/buildbot-slave/Makefile --- /usr/ports/devel/buildbot-slave.orig/Makefile 2011-12-28 16:33:17.201630565 +0100 +++ /usr/ports/devel/buildbot-slave/Makefile 2011-12-28 16:35:59.975374931 +0100 @@ -6,7 +6,7 @@ # PORTNAME= buildbot-slave -PORTVERSION= 0.8.4 +PORTVERSION= 0.8.5 CATEGORIES= devel python MASTER_SITES= GOOGLE_CODE diff -ruN --exclude=CVS /usr/ports/devel/buildbot-slave.orig/distinfo /usr/ports/devel/buildbot-slave/distinfo --- /usr/ports/devel/buildbot-slave.orig/distinfo 2011-12-28 16:33:17.201630565 +0100 +++ /usr/ports/devel/buildbot-slave/distinfo 2011-12-28 16:36:48.477171207 +0100 @@ -1,2 +1,2 @@ -SHA256 (buildbot-slave-0.8.4.tar.gz) = 392ea68373d6e3000c4948c53f3dd157fa4ac491a1ca8a54dba75aca6f361dbb -SIZE (buildbot-slave-0.8.4.tar.gz) = 97185 +SHA256 (buildbot-slave-0.8.5.tar.gz) = 637c23fcdedbc282b596c2ce652b74be96aa9788c39d9b69f903bdb8c2ede217 +SIZE (buildbot-slave-0.8.5.tar.gz) = 98133 diff -ruN --exclude=CVS /usr/ports/devel/buildbot-slave.orig/files/patch-buildslave__commands__git.py /usr/ports/devel/buildbot-slave/files/patch-buildslave__commands__git.py --- /usr/ports/devel/buildbot-slave.orig/files/patch-buildslave__commands__git.py 1970-01-01 01:00:00.000000000 +0100 +++ /usr/ports/devel/buildbot-slave/files/patch-buildslave__commands__git.py 2011-12-28 18:01:26.000000000 +0100 @@ -0,0 +1,30 @@ +--- buildslave/commands/git.py.orig 2011-12-28 17:02:35.000000000 +0100 ++++ buildslave/commands/git.py 2011-12-28 18:00:22.706556955 +0100 +@@ -63,7 +63,7 @@ + def sourcedirIsUpdateable(self): + return os.path.isdir(os.path.join(self._fullSrcdir(), ".git")) + +- def _dovccmd(self, command, cb=None, **kwargs): ++ def _dovccmd(self, command, cb=None, stopOnFail=True, **kwargs): + git = self.getCommand("git") + c = runprocess.RunProcess(self.builder, [git] + command, self._fullSrcdir(), + sendRC=False, timeout=self.timeout, +@@ -72,7 +72,8 @@ + self.command = c + d = c.start() + if cb: +- d.addCallback(self._abandonOnFailure) ++ if stopOnFail: ++ d.addCallback(self._abandonOnFailure) + d.addCallback(cb) + return d + +@@ -107,7 +108,7 @@ + # Rename branch, so that the repo will have the expected branch name + # For further information about this, see the commit message + command = ['branch', '-M', self.branch] +- return self._dovccmd(command, self._initSubmodules) ++ return self._dovccmd(command, self._initSubmodules, False) + + def _didFetch(self, res): + if self.revision: --- buildbot-slave-0.8.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 18:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ABD6A1065677 for ; Wed, 28 Dec 2011 18: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 83D478FC1A for ; Wed, 28 Dec 2011 18:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSIAAbO046871 for ; Wed, 28 Dec 2011 18:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSIAAPE046870; Wed, 28 Dec 2011 18:10:10 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 18:10:10 GMT Resent-Message-Id: <201112281810.pBSIAAPE046870@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 Gmelin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0358A106564A for ; Wed, 28 Dec 2011 18:02:59 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.bindone.de (mail.bindone.de [80.190.134.51]) by mx1.freebsd.org (Postfix) with SMTP id 41EEC8FC13 for ; Wed, 28 Dec 2011 18:02:53 +0000 (UTC) Received: (qmail 4373 invoked by uid 0); 28 Dec 2011 17:46:04 -0000 Message-Id: <20111228174604.4372.qmail@mail.bindone.de> Date: 28 Dec 2011 17:46:04 -0000 From: Michael Gmelin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clsung@FreeBSD.org Subject: ports/163675: [PATCH] devel/buildbot: update to 0.8.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: Wed, 28 Dec 2011 18:10:10 -0000 >Number: 163675 >Category: ports >Synopsis: [PATCH] devel/buildbot: update to 0.8.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: Wed Dec 28 18:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Michael Gmelin >Release: FreeBSD 8.2-RELEASE-p2 amd64 >Organization: Grem Equity GmbH >Environment: System: FreeBSD settler.grem.de 8.2-RELEASE-p2 FreeBSD 8.2-RELEASE-p2 #3 r222557M: Thu Jun 16 23:58:02 CEST >Description: - Update to 0.8.5 - Fix minor bug in XHTML - Fix gitpoller.py to use environment correctly, so ssh-agent works as expected (partially documented here https://github.com/buildbot/buildbot/pull/255) Added file(s): - files/patch-buildbot__changes__gitpoller.py - files/patch-buildbot__status__web__templates__layout.html Port maintainer (clsung@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- buildbot-0.8.5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/buildbot.orig/Makefile /usr/ports/devel/buildbot/Makefile --- /usr/ports/devel/buildbot.orig/Makefile 2011-12-28 15:45:25.611000493 +0100 +++ /usr/ports/devel/buildbot/Makefile 2011-12-28 17:11:40.459768355 +0100 @@ -6,7 +6,7 @@ # PORTNAME= buildbot -PORTVERSION= 0.8.3p1 +PORTVERSION= 0.8.5 CATEGORIES= devel python MASTER_SITES= GOOGLE_CODE @@ -14,7 +14,9 @@ COMMENT= Automated system from compile/test cycle to validate code changes RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.1:${PORTSDIR}/devel/py-Jinja2 \ - ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 + ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy>=0.7:${PORTSDIR}/databases/py-sqlalchemy \ + ${PYTHON_PKGNAMEPREFIX}migrate>=0.7:${PORTSDIR}/databases/py-migrate USE_PYTHON= 2.5+ USE_PYDISTUTILS= yes diff -ruN --exclude=CVS /usr/ports/devel/buildbot.orig/distinfo /usr/ports/devel/buildbot/distinfo --- /usr/ports/devel/buildbot.orig/distinfo 2011-12-28 15:45:25.611000493 +0100 +++ /usr/ports/devel/buildbot/distinfo 2011-12-28 15:46:36.486681356 +0100 @@ -1,2 +1,2 @@ -SHA256 (buildbot-0.8.3p1.tar.gz) = 0a49d35a75524a54dbbb875730fdf7abd8b96cae160af0457b4f5239b1fefa37 -SIZE (buildbot-0.8.3p1.tar.gz) = 4068355 +SHA256 (buildbot-0.8.5.tar.gz) = 9b2f761447db13e4068870567b36732d419d8f72f452b450c61089db98558a9c +SIZE (buildbot-0.8.5.tar.gz) = 4389306 diff -ruN --exclude=CVS /usr/ports/devel/buildbot.orig/files/patch-buildbot__changes__gitpoller.py /usr/ports/devel/buildbot/files/patch-buildbot__changes__gitpoller.py --- /usr/ports/devel/buildbot.orig/files/patch-buildbot__changes__gitpoller.py 1970-01-01 01:00:00.000000000 +0100 +++ /usr/ports/devel/buildbot/files/patch-buildbot__changes__gitpoller.py 2011-12-28 17:30:22.592839747 +0100 @@ -0,0 +1,115 @@ +--- buildbot/changes/gitpoller.py.orig 2011-12-28 17:11:53.000000000 +0100 ++++ buildbot/changes/gitpoller.py 2011-12-28 17:18:56.833497312 +0100 +@@ -94,7 +94,7 @@ + def git_init(_): + log.msg('gitpoller: initializing working dir from %s' % self.repourl) + d = utils.getProcessOutputAndValue(self.gitbin, +- ['init', self.workdir], env=dict(PATH=os.environ['PATH'])) ++ ['init', self.workdir], env=os.environ) + d.addCallback(self._convert_nonzero_to_failure) + d.addErrback(self._stop_on_failure) + return d +@@ -103,7 +103,7 @@ + def git_remote_add(_): + d = utils.getProcessOutputAndValue(self.gitbin, + ['remote', 'add', 'origin', self.repourl], +- path=self.workdir, env=dict(PATH=os.environ['PATH'])) ++ path=self.workdir, env=os.environ) + d.addCallback(self._convert_nonzero_to_failure) + d.addErrback(self._stop_on_failure) + return d +@@ -113,7 +113,7 @@ + args = ['fetch', 'origin'] + self._extend_with_fetch_refspec(args) + d = utils.getProcessOutputAndValue(self.gitbin, args, +- path=self.workdir, env=dict(PATH=os.environ['PATH'])) ++ path=self.workdir, env=os.environ) + d.addCallback(self._convert_nonzero_to_failure) + d.addErrback(self._stop_on_failure) + return d +@@ -124,11 +124,11 @@ + if self.branch == 'master': # repo is already on branch 'master', so reset + d = utils.getProcessOutputAndValue(self.gitbin, + ['reset', '--hard', 'origin/%s' % self.branch], +- path=self.workdir, env=dict(PATH=os.environ['PATH'])) ++ path=self.workdir, env=os.environ) + else: + d = utils.getProcessOutputAndValue(self.gitbin, + ['checkout', '-b', self.branch, 'origin/%s' % self.branch], +- path=self.workdir, env=dict(PATH=os.environ['PATH'])) ++ path=self.workdir, env=os.environ) + d.addCallback(self._convert_nonzero_to_failure) + d.addErrback(self._stop_on_failure) + return d +@@ -136,7 +136,7 @@ + def get_rev(_): + d = utils.getProcessOutputAndValue(self.gitbin, + ['rev-parse', self.branch], +- path=self.workdir, env={}) ++ path=self.workdir, env=os.environ) + d.addCallback(self._convert_nonzero_to_failure) + d.addErrback(self._stop_on_failure) + d.addCallback(lambda (out, err, code) : out.strip()) +@@ -167,7 +167,7 @@ + + def _get_commit_comments(self, rev): + args = ['log', rev, '--no-walk', r'--format=%s%n%b'] +- d = utils.getProcessOutput(self.gitbin, args, path=self.workdir, env=dict(PATH=os.environ['PATH']), errortoo=False ) ++ d = utils.getProcessOutput(self.gitbin, args, path=self.workdir, env=os.environ, errortoo=False ) + def process(git_output): + stripped_output = git_output.strip().decode(self.encoding) + if len(stripped_output) == 0: +@@ -179,7 +179,7 @@ + def _get_commit_timestamp(self, rev): + # unix timestamp + args = ['log', rev, '--no-walk', r'--format=%ct'] +- d = utils.getProcessOutput(self.gitbin, args, path=self.workdir, env=dict(PATH=os.environ['PATH']), errortoo=False ) ++ d = utils.getProcessOutput(self.gitbin, args, path=self.workdir, env=os.environ, errortoo=False ) + def process(git_output): + stripped_output = git_output.strip() + if self.usetimestamps: +@@ -196,7 +196,7 @@ + + def _get_commit_files(self, rev): + args = ['log', rev, '--name-only', '--no-walk', r'--format=%n'] +- d = utils.getProcessOutput(self.gitbin, args, path=self.workdir, env=dict(PATH=os.environ['PATH']), errortoo=False ) ++ d = utils.getProcessOutput(self.gitbin, args, path=self.workdir, env=os.environ, errortoo=False ) + def process(git_output): + fileList = git_output.split() + return fileList +@@ -205,7 +205,7 @@ + + def _get_commit_name(self, rev): + args = ['log', rev, '--no-walk', r'--format=%aE'] +- d = utils.getProcessOutput(self.gitbin, args, path=self.workdir, env=dict(PATH=os.environ['PATH']), errortoo=False ) ++ d = utils.getProcessOutput(self.gitbin, args, path=self.workdir, env=os.environ, errortoo=False ) + def process(git_output): + stripped_output = git_output.strip().decode(self.encoding) + if len(stripped_output) == 0: +@@ -229,7 +229,7 @@ + # deferred will not use the response. + d = utils.getProcessOutput(self.gitbin, args, + path=self.workdir, +- env=dict(PATH=os.environ['PATH']), errortoo=True ) ++ env=os.environ, errortoo=True ) + + return d + +@@ -239,7 +239,7 @@ + revListArgs = ['log', '%s..origin/%s' % (self.branch, self.branch), r'--format=%H'] + self.changeCount = 0 + d = utils.getProcessOutput(self.gitbin, revListArgs, path=self.workdir, +- env=dict(PATH=os.environ['PATH']), errortoo=False ) ++ env=os.environ, errortoo=False ) + wfd = defer.waitForDeferred(d) + yield wfd + results = wfd.getResult() +@@ -301,7 +301,7 @@ + return + log.msg('gitpoller: catching up tracking branch') + args = ['reset', '--hard', 'origin/%s' % (self.branch,)] +- d = utils.getProcessOutputAndValue(self.gitbin, args, path=self.workdir, env=dict(PATH=os.environ['PATH'])) ++ d = utils.getProcessOutputAndValue(self.gitbin, args, path=self.workdir, env=os.environ) + d.addCallback(self._convert_nonzero_to_failure) + return d + diff -ruN --exclude=CVS /usr/ports/devel/buildbot.orig/files/patch-buildbot__status__web__templates__layout.html /usr/ports/devel/buildbot/files/patch-buildbot__status__web__templates__layout.html --- /usr/ports/devel/buildbot.orig/files/patch-buildbot__status__web__templates__layout.html 1970-01-01 01:00:00.000000000 +0100 +++ /usr/ports/devel/buildbot/files/patch-buildbot__status__web__templates__layout.html 2011-12-28 16:16:06.610940053 +0100 @@ -0,0 +1,11 @@ +--- buildbot/status/web/templates/layout.html.orig 2011-12-28 15:55:31.000000000 +0100 ++++ buildbot/status/web/templates/layout.html 2011-12-28 15:56:42.577784751 +0100 +@@ -14,7 +14,7 @@ + {% endif %} + {{ pageTitle|e }} + +- ++ + {% endblock %} + + diff -ruN --exclude=CVS /usr/ports/devel/buildbot.orig/files/patch-setup.py /usr/ports/devel/buildbot/files/patch-setup.py --- /usr/ports/devel/buildbot.orig/files/patch-setup.py 2011-12-28 15:45:25.611000493 +0100 +++ /usr/ports/devel/buildbot/files/patch-setup.py 2011-12-28 15:54:48.740308956 +0100 @@ -1,6 +1,6 @@ ---- setup.py.orig 2011-02-10 18:06:05.000000000 +0100 -+++ setup.py 2011-02-10 18:06:15.000000000 +0100 -@@ -260,29 +260,6 @@ +--- setup.py.orig 2011-12-28 18:06:05.000000000 +0100 ++++ setup.py 2011-12-28 18:06:15.000000000 +0100 +@@ -270,38 +270,6 @@ py_25 = sys.version_info[0] > 2 or (sys.version_info[0] == 2 and sys.version_info[1] >= 5) py_26 = sys.version_info[0] > 2 or (sys.version_info[0] == 2 and sys.version_info[1] >= 6) @@ -13,8 +13,12 @@ -else: - ## dependencies - setup_args['install_requires'] = [ -- 'twisted >= 2.0.0', +- 'twisted >= 8.0.0', - 'Jinja2 >= 2.1', +- 'sqlalchemy >= 0.6', +- # buildbot depends on sqlalchemy internals, and these are the tested +- # versions. +- 'sqlalchemy-migrate ==0.6.0, ==0.6.1, ==0.7.0, ==0.7.1', - ] - # Python-2.6 and up includes json - if not py_26: @@ -24,8 +28,13 @@ - if not py_26: - setup_args['install_requires'].append('pysqlite') - +- setup_args['test_requires'] = [ +- 'mock==0.7.1', +- ] +- - if os.getenv('NO_INSTALL_REQS'): - setup_args['install_requires'] = None +- setup_args['tests_require'] = None - setup(**setup_args) diff -ruN --exclude=CVS /usr/ports/devel/buildbot.orig/pkg-plist /usr/ports/devel/buildbot/pkg-plist --- /usr/ports/devel/buildbot.orig/pkg-plist 2011-12-28 15:45:25.611995357 +0100 +++ /usr/ports/devel/buildbot/pkg-plist 2011-12-28 16:34:46.496652671 +0100 @@ -22,6 +22,9 @@ %%PYTHON_SITELIBDIR%%/buildbot/changes/changes.py %%PYTHON_SITELIBDIR%%/buildbot/changes/changes.pyc %%PYTHON_SITELIBDIR%%/buildbot/changes/changes.pyo +%%PYTHON_SITELIBDIR%%/buildbot/changes/filter.py +%%PYTHON_SITELIBDIR%%/buildbot/changes/filter.pyc +%%PYTHON_SITELIBDIR%%/buildbot/changes/filter.pyo %%PYTHON_SITELIBDIR%%/buildbot/changes/gerritchangesource.py %%PYTHON_SITELIBDIR%%/buildbot/changes/gerritchangesource.pyc %%PYTHON_SITELIBDIR%%/buildbot/changes/gerritchangesource.pyo @@ -34,9 +37,6 @@ %%PYTHON_SITELIBDIR%%/buildbot/changes/mail.py %%PYTHON_SITELIBDIR%%/buildbot/changes/mail.pyc %%PYTHON_SITELIBDIR%%/buildbot/changes/mail.pyo -%%PYTHON_SITELIBDIR%%/buildbot/changes/maildir.py -%%PYTHON_SITELIBDIR%%/buildbot/changes/maildir.pyc -%%PYTHON_SITELIBDIR%%/buildbot/changes/maildir.pyo %%PYTHON_SITELIBDIR%%/buildbot/changes/manager.py %%PYTHON_SITELIBDIR%%/buildbot/changes/manager.pyc %%PYTHON_SITELIBDIR%%/buildbot/changes/manager.pyo @@ -68,52 +68,103 @@ %%PYTHON_SITELIBDIR%%/buildbot/clients/tryclient.py %%PYTHON_SITELIBDIR%%/buildbot/clients/tryclient.pyc %%PYTHON_SITELIBDIR%%/buildbot/clients/tryclient.pyo +%%PYTHON_SITELIBDIR%%/buildbot/clients/usersclient.py +%%PYTHON_SITELIBDIR%%/buildbot/clients/usersclient.pyc +%%PYTHON_SITELIBDIR%%/buildbot/clients/usersclient.pyo %%PYTHON_SITELIBDIR%%/buildbot/config.py %%PYTHON_SITELIBDIR%%/buildbot/config.pyc %%PYTHON_SITELIBDIR%%/buildbot/config.pyo %%PYTHON_SITELIBDIR%%/buildbot/db/__init__.py %%PYTHON_SITELIBDIR%%/buildbot/db/__init__.pyc %%PYTHON_SITELIBDIR%%/buildbot/db/__init__.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/base.py +%%PYTHON_SITELIBDIR%%/buildbot/db/base.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/base.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/buildrequests.py +%%PYTHON_SITELIBDIR%%/buildbot/db/buildrequests.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/buildrequests.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/builds.py +%%PYTHON_SITELIBDIR%%/buildbot/db/builds.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/builds.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/buildsets.py +%%PYTHON_SITELIBDIR%%/buildbot/db/buildsets.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/buildsets.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/changes.py +%%PYTHON_SITELIBDIR%%/buildbot/db/changes.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/changes.pyo %%PYTHON_SITELIBDIR%%/buildbot/db/connector.py %%PYTHON_SITELIBDIR%%/buildbot/db/connector.pyc %%PYTHON_SITELIBDIR%%/buildbot/db/connector.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/dbspec.py -%%PYTHON_SITELIBDIR%%/buildbot/db/dbspec.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/dbspec.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/enginestrategy.py +%%PYTHON_SITELIBDIR%%/buildbot/db/enginestrategy.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/enginestrategy.pyo %%PYTHON_SITELIBDIR%%/buildbot/db/exceptions.py %%PYTHON_SITELIBDIR%%/buildbot/db/exceptions.pyc %%PYTHON_SITELIBDIR%%/buildbot/db/exceptions.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/__init__.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/__init__.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/__init__.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/base.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/base.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/base.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/manager.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/manager.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/manager.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/tables.sql -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v1.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v1.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v1.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v2.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v2.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v2.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v3.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v3.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v3.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v4.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v4.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v4.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v5.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v5.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v5.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v6.py -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v6.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/schema/v6.pyo -%%PYTHON_SITELIBDIR%%/buildbot/db/util.py -%%PYTHON_SITELIBDIR%%/buildbot/db/util.pyc -%%PYTHON_SITELIBDIR%%/buildbot/db/util.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/migrate.cfg +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/001_initial.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/001_initial.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/001_initial.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/002_add_proj_repo.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/002_add_proj_repo.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/002_add_proj_repo.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/003_scheduler_class_name.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/003_scheduler_class_name.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/003_scheduler_class_name.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/004_add_autoincrement.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/004_add_autoincrement.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/004_add_autoincrement.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/005_add_indexes.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/005_add_indexes.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/005_add_indexes.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/006_drop_last_access.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/006_drop_last_access.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/006_drop_last_access.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/007_add_object_tables.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/007_add_object_tables.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/007_add_object_tables.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/008_add_scheduler_changes_index.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/008_add_scheduler_changes_index.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/008_add_scheduler_changes_index.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/009_add_patch_author.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/009_add_patch_author.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/009_add_patch_author.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/010_fix_column_lengths.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/010_fix_column_lengths.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/010_fix_column_lengths.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/011_add_buildrequest_claims.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/011_add_buildrequest_claims.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/011_add_buildrequest_claims.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/012_add_users_table.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/012_add_users_table.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/012_add_users_table.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/013_remove_schedulers_state_column.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/013_remove_schedulers_state_column.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/013_remove_schedulers_state_column.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/014_add_users_userpass_columns.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/014_add_users_userpass_columns.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/014_add_users_userpass_columns.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/__init__.py +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/__init__.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions/__init__.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/model.py +%%PYTHON_SITELIBDIR%%/buildbot/db/model.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/model.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/pool.py +%%PYTHON_SITELIBDIR%%/buildbot/db/pool.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/pool.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/schedulers.py +%%PYTHON_SITELIBDIR%%/buildbot/db/schedulers.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/schedulers.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/sourcestamps.py +%%PYTHON_SITELIBDIR%%/buildbot/db/sourcestamps.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/sourcestamps.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/state.py +%%PYTHON_SITELIBDIR%%/buildbot/db/state.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/state.pyo +%%PYTHON_SITELIBDIR%%/buildbot/db/users.py +%%PYTHON_SITELIBDIR%%/buildbot/db/users.pyc +%%PYTHON_SITELIBDIR%%/buildbot/db/users.pyo %%PYTHON_SITELIBDIR%%/buildbot/ec2buildslave.py %%PYTHON_SITELIBDIR%%/buildbot/ec2buildslave.pyc %%PYTHON_SITELIBDIR%%/buildbot/ec2buildslave.pyo @@ -132,6 +183,15 @@ %%PYTHON_SITELIBDIR%%/buildbot/master.py %%PYTHON_SITELIBDIR%%/buildbot/master.pyc %%PYTHON_SITELIBDIR%%/buildbot/master.pyo +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/__init__.py +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/__init__.pyc +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/__init__.pyo +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/bug4881.py +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/bug4881.pyc +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/bug4881.pyo +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/bug5079.py +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/bug5079.pyc +%%PYTHON_SITELIBDIR%%/buildbot/monkeypatches/bug5079.pyo %%PYTHON_SITELIBDIR%%/buildbot/pbmanager.py %%PYTHON_SITELIBDIR%%/buildbot/pbmanager.pyc %%PYTHON_SITELIBDIR%%/buildbot/pbmanager.pyo @@ -144,27 +204,57 @@ %%PYTHON_SITELIBDIR%%/buildbot/process/base.py %%PYTHON_SITELIBDIR%%/buildbot/process/base.pyc %%PYTHON_SITELIBDIR%%/buildbot/process/base.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/botmaster.py +%%PYTHON_SITELIBDIR%%/buildbot/process/botmaster.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/botmaster.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/build.py +%%PYTHON_SITELIBDIR%%/buildbot/process/build.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/build.pyo %%PYTHON_SITELIBDIR%%/buildbot/process/builder.py %%PYTHON_SITELIBDIR%%/buildbot/process/builder.pyc %%PYTHON_SITELIBDIR%%/buildbot/process/builder.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/buildrequest.py +%%PYTHON_SITELIBDIR%%/buildbot/process/buildrequest.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/buildrequest.pyo %%PYTHON_SITELIBDIR%%/buildbot/process/buildstep.py %%PYTHON_SITELIBDIR%%/buildbot/process/buildstep.pyc %%PYTHON_SITELIBDIR%%/buildbot/process/buildstep.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/cache.py +%%PYTHON_SITELIBDIR%%/buildbot/process/cache.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/cache.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/debug.py +%%PYTHON_SITELIBDIR%%/buildbot/process/debug.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/debug.pyo %%PYTHON_SITELIBDIR%%/buildbot/process/factory.py %%PYTHON_SITELIBDIR%%/buildbot/process/factory.pyc %%PYTHON_SITELIBDIR%%/buildbot/process/factory.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/metrics.py +%%PYTHON_SITELIBDIR%%/buildbot/process/metrics.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/metrics.pyo %%PYTHON_SITELIBDIR%%/buildbot/process/mtrlogobserver.py %%PYTHON_SITELIBDIR%%/buildbot/process/mtrlogobserver.pyc %%PYTHON_SITELIBDIR%%/buildbot/process/mtrlogobserver.pyo -%%PYTHON_SITELIBDIR%%/buildbot/process/process_twisted.py -%%PYTHON_SITELIBDIR%%/buildbot/process/process_twisted.pyc -%%PYTHON_SITELIBDIR%%/buildbot/process/process_twisted.pyo %%PYTHON_SITELIBDIR%%/buildbot/process/properties.py %%PYTHON_SITELIBDIR%%/buildbot/process/properties.pyc %%PYTHON_SITELIBDIR%%/buildbot/process/properties.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/slavebuilder.py +%%PYTHON_SITELIBDIR%%/buildbot/process/slavebuilder.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/slavebuilder.pyo %%PYTHON_SITELIBDIR%%/buildbot/process/subunitlogobserver.py %%PYTHON_SITELIBDIR%%/buildbot/process/subunitlogobserver.pyc %%PYTHON_SITELIBDIR%%/buildbot/process/subunitlogobserver.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/users/__init__.py +%%PYTHON_SITELIBDIR%%/buildbot/process/users/__init__.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/users/__init__.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/users/manager.py +%%PYTHON_SITELIBDIR%%/buildbot/process/users/manager.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/users/manager.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/users/manual.py +%%PYTHON_SITELIBDIR%%/buildbot/process/users/manual.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/users/manual.pyo +%%PYTHON_SITELIBDIR%%/buildbot/process/users/users.py +%%PYTHON_SITELIBDIR%%/buildbot/process/users/users.pyc +%%PYTHON_SITELIBDIR%%/buildbot/process/users/users.pyo %%PYTHON_SITELIBDIR%%/buildbot/scheduler.py %%PYTHON_SITELIBDIR%%/buildbot/scheduler.pyc %%PYTHON_SITELIBDIR%%/buildbot/scheduler.pyo @@ -177,6 +267,9 @@ %%PYTHON_SITELIBDIR%%/buildbot/schedulers/basic.py %%PYTHON_SITELIBDIR%%/buildbot/schedulers/basic.pyc %%PYTHON_SITELIBDIR%%/buildbot/schedulers/basic.pyo +%%PYTHON_SITELIBDIR%%/buildbot/schedulers/dependent.py +%%PYTHON_SITELIBDIR%%/buildbot/schedulers/dependent.pyc +%%PYTHON_SITELIBDIR%%/buildbot/schedulers/dependent.pyo %%PYTHON_SITELIBDIR%%/buildbot/schedulers/filter.py %%PYTHON_SITELIBDIR%%/buildbot/schedulers/filter.pyc %%PYTHON_SITELIBDIR%%/buildbot/schedulers/filter.pyo @@ -220,30 +313,60 @@ %%PYTHON_SITELIBDIR%%/buildbot/status/base.py %%PYTHON_SITELIBDIR%%/buildbot/status/base.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/base.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/build.py +%%PYTHON_SITELIBDIR%%/buildbot/status/build.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/build.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/builder.py %%PYTHON_SITELIBDIR%%/buildbot/status/builder.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/builder.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/buildrequest.py +%%PYTHON_SITELIBDIR%%/buildbot/status/buildrequest.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/buildrequest.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/buildset.py +%%PYTHON_SITELIBDIR%%/buildbot/status/buildset.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/buildset.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/buildstep.py +%%PYTHON_SITELIBDIR%%/buildbot/status/buildstep.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/buildstep.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/client.py %%PYTHON_SITELIBDIR%%/buildbot/status/client.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/client.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/event.py +%%PYTHON_SITELIBDIR%%/buildbot/status/event.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/event.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/html.py %%PYTHON_SITELIBDIR%%/buildbot/status/html.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/html.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/logfile.py +%%PYTHON_SITELIBDIR%%/buildbot/status/logfile.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/logfile.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/mail.py %%PYTHON_SITELIBDIR%%/buildbot/status/mail.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/mail.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/master.py +%%PYTHON_SITELIBDIR%%/buildbot/status/master.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/master.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/persistent_queue.py %%PYTHON_SITELIBDIR%%/buildbot/status/persistent_queue.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/persistent_queue.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/progress.py %%PYTHON_SITELIBDIR%%/buildbot/status/progress.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/progress.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/results.py +%%PYTHON_SITELIBDIR%%/buildbot/status/results.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/results.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/slave.py +%%PYTHON_SITELIBDIR%%/buildbot/status/slave.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/slave.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/status_gerrit.py %%PYTHON_SITELIBDIR%%/buildbot/status/status_gerrit.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/status_gerrit.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/status_push.py %%PYTHON_SITELIBDIR%%/buildbot/status/status_push.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/status_push.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/testresult.py +%%PYTHON_SITELIBDIR%%/buildbot/status/testresult.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/testresult.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/tinderbox.py %%PYTHON_SITELIBDIR%%/buildbot/status/tinderbox.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/tinderbox.pyo @@ -353,11 +476,17 @@ %%PYTHON_SITELIBDIR%%/buildbot/status/web/templates/revmacros.html %%PYTHON_SITELIBDIR%%/buildbot/status/web/templates/root.html %%PYTHON_SITELIBDIR%%/buildbot/status/web/templates/testresult.html +%%PYTHON_SITELIBDIR%%/buildbot/status/web/templates/user.html +%%PYTHON_SITELIBDIR%%/buildbot/status/web/templates/users.html +%%PYTHON_SITELIBDIR%%/buildbot/status/web/templates/users_table.html %%PYTHON_SITELIBDIR%%/buildbot/status/web/templates/waterfall.html %%PYTHON_SITELIBDIR%%/buildbot/status/web/templates/waterfallhelp.html %%PYTHON_SITELIBDIR%%/buildbot/status/web/tests.py %%PYTHON_SITELIBDIR%%/buildbot/status/web/tests.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/web/tests.pyo +%%PYTHON_SITELIBDIR%%/buildbot/status/web/users.py +%%PYTHON_SITELIBDIR%%/buildbot/status/web/users.pyc +%%PYTHON_SITELIBDIR%%/buildbot/status/web/users.pyo %%PYTHON_SITELIBDIR%%/buildbot/status/web/waterfall.py %%PYTHON_SITELIBDIR%%/buildbot/status/web/waterfall.pyc %%PYTHON_SITELIBDIR%%/buildbot/status/web/waterfall.pyo @@ -367,9 +496,9 @@ %%PYTHON_SITELIBDIR%%/buildbot/steps/__init__.py %%PYTHON_SITELIBDIR%%/buildbot/steps/__init__.pyc %%PYTHON_SITELIBDIR%%/buildbot/steps/__init__.pyo -%%PYTHON_SITELIBDIR%%/buildbot/steps/dummy.py -%%PYTHON_SITELIBDIR%%/buildbot/steps/dummy.pyc -%%PYTHON_SITELIBDIR%%/buildbot/steps/dummy.pyo +%%PYTHON_SITELIBDIR%%/buildbot/steps/blocker.py +%%PYTHON_SITELIBDIR%%/buildbot/steps/blocker.pyc +%%PYTHON_SITELIBDIR%%/buildbot/steps/blocker.pyo %%PYTHON_SITELIBDIR%%/buildbot/steps/master.py %%PYTHON_SITELIBDIR%%/buildbot/steps/master.pyc %%PYTHON_SITELIBDIR%%/buildbot/steps/master.pyo @@ -403,9 +532,27 @@ %%PYTHON_SITELIBDIR%%/buildbot/steps/slave.py %%PYTHON_SITELIBDIR%%/buildbot/steps/slave.pyc %%PYTHON_SITELIBDIR%%/buildbot/steps/slave.pyo -%%PYTHON_SITELIBDIR%%/buildbot/steps/source.py -%%PYTHON_SITELIBDIR%%/buildbot/steps/source.pyc -%%PYTHON_SITELIBDIR%%/buildbot/steps/source.pyo +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/__init__.py +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/__init__.pyc +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/__init__.pyo +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/bzr.py +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/bzr.pyc +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/bzr.pyo +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/cvs.py +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/cvs.pyc +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/cvs.pyo +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/git.py +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/git.pyc +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/git.pyo +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/mercurial.py +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/mercurial.pyc +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/mercurial.pyo +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/oldsource.py +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/oldsource.pyc +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/oldsource.pyo +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/svn.py +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/svn.pyc +%%PYTHON_SITELIBDIR%%/buildbot/steps/source/svn.pyo %%PYTHON_SITELIBDIR%%/buildbot/steps/subunit.py %%PYTHON_SITELIBDIR%%/buildbot/steps/subunit.pyc %%PYTHON_SITELIBDIR%%/buildbot/steps/subunit.pyo @@ -424,9 +571,18 @@ %%PYTHON_SITELIBDIR%%/buildbot/test/fake/__init__.py %%PYTHON_SITELIBDIR%%/buildbot/test/fake/__init__.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/fake/__init__.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakebuild.py +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakebuild.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakebuild.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakedb.py %%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakedb.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakedb.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakemaster.py +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakemaster.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/fakemaster.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/remotecommand.py +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/remotecommand.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/fake/remotecommand.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/fake/state.py %%PYTHON_SITELIBDIR%%/buildbot/test/fake/state.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/fake/state.pyo @@ -436,15 +592,15 @@ %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/__init__.py %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/__init__.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/__init__.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_change_properties.py -%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_change_properties.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_change_properties.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_bad_change_properties_rows.py +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_bad_change_properties_rows.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_bad_change_properties_rows.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_import_unicode_changes.py %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_import_unicode_changes.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_import_unicode_changes.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_import_weird_changes.py -%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_import_weird_changes.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_import_weird_changes.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_oldpaths.py +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_oldpaths.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_oldpaths.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_shell_command_properties.py %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_shell_command_properties.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_shell_command_properties.pyo @@ -454,90 +610,213 @@ %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_steps_shell_WarningCountingShellCommand.py %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_steps_shell_WarningCountingShellCommand.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_steps_shell_WarningCountingShellCommand.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_unpickling.py +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_unpickling.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/regressions/test_unpickling.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/test_extra_coverage.py +%%PYTHON_SITELIBDIR%%/buildbot/test/test_extra_coverage.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/test_extra_coverage.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/__init__.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/__init__.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/__init__.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_blocker.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_blocker.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_blocker.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_buildslave.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_buildslave.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_buildslave.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_base.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_base.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_base.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_bonsaipoller.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_bonsaipoller.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_bonsaipoller.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_filter.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_filter.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_filter.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_gerritchangesource.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_gerritchangesource.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_gerritchangesource.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_gitpoller.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_gitpoller.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_gitpoller.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_mail.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_mail.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_mail.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_mail_CVSMaildirSource.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_mail_CVSMaildirSource.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_mail_CVSMaildirSource.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_manager.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_manager.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_manager.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_p4poller.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_p4poller.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_p4poller.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_pb.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_pb.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_pb.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_svnpoller.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_svnpoller.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_changes_svnpoller.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_clients_sendchange.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_clients_sendchange.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_clients_sendchange.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_clients_usersclient.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_clients_usersclient.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_clients_usersclient.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_contrib_buildbot_cvs_mail.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_contrib_buildbot_cvs_mail.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_contrib_buildbot_cvs_mail.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_base.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_base.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_base.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_buildrequests.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_buildrequests.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_buildrequests.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_builds.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_builds.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_builds.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_buildsets.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_buildsets.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_buildsets.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_changes.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_changes.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_changes.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_connector.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_connector.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_connector.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_dbspec.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_dbspec.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_dbspec.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_schema_master.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_schema_master.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_schema_master.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_util.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_util.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_util.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_master_cleanshutdown.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_master_cleanshutdown.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_master_cleanshutdown.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_oldpaths.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_oldpaths.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_oldpaths.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_enginestrategy.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_enginestrategy.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_enginestrategy.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_model.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_model.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_model.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_pool.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_pool.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_pool.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_schedulers.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_schedulers.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_schedulers.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_sourcestamps.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_sourcestamps.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_sourcestamps.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_state.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_state.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_state.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_users.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_users.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_db_users.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_master.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_master.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_master.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_pbmanager.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_pbmanager.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_pbmanager.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_persistent_queue.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_persistent_queue.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_persistent_queue.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_base.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_base.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_base.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_BotMaster.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_BotMaster.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_BotMaster.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_BuildRequestDistributor.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_BuildRequestDistributor.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_BuildRequestDistributor.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_DuplicateSlaveArbitrator.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_DuplicateSlaveArbitrator.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_botmaster_DuplicateSlaveArbitrator.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_build.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_build.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_build.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_builder.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_builder.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_builder.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_buildrequest.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_buildrequest.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_buildrequest.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_buildstep.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_buildstep.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_buildstep.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_cache.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_cache.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_cache.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_debug.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_debug.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_debug.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_metrics.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_metrics.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_metrics.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_properties.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_properties.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_properties.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_repo_parse_download.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_repo_parse_download.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_repo_parse_download.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_basic_Scheduler.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_basic_Scheduler.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_basic_Scheduler.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_filter.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_filter.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_filter.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_manager.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_manager.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_manager.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_manual.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_manual.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_manual.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_users.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_users.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_process_users_users.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_base.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_base.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_base.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_basic.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_basic.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_basic.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_dependent.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_dependent.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_dependent.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_manager.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_manager.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_manager.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Nightly.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Nightly.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Nightly.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_source_repourl.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_source_repourl.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_source_repourl.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_builder.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_builder.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_builder.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_builder_LogFileProducer.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_builder_LogFileProducer.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_builder_LogFileProducer.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_mail_MailNotifier.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_mail_MailNotifier.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_mail_MailNotifier.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Periodic.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Periodic.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Periodic.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Timed.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Timed.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_timed_Timed.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_triggerable.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_triggerable.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_triggerable.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_trysched.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_trysched.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_schedulers_trysched.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_scripts_checkconfig.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_scripts_checkconfig.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_scripts_checkconfig.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_scripts_runner.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_scripts_runner.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_scripts_runner.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_sourcestamp.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_sourcestamp.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_sourcestamp.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_build.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_build.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_build.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_buildstep.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_buildstep.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_buildstep.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_client.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_client.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_client.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_logfile.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_logfile.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_logfile.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_mail.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_mail.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_mail.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_master.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_master.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_master.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_persistent_queue.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_persistent_queue.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_persistent_queue.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_authz_Authz.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_authz_Authz.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_authz_Authz.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_base.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_base.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_base.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_change_hook.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_change_hook.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_change_hook.pyo @@ -547,60 +826,151 @@ %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_links.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_links.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_status_web_links.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_python.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_python.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_python.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_python_twisted.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_python_twisted.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_python_twisted.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_shell.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_shell.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_shell.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_slave.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_slave.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_slave.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_bzr.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_bzr.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_bzr.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_cvs.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_cvs.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_cvs.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_git.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_git.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_git.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_mercurial.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_mercurial.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_mercurial.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_oldsource_Repo.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_oldsource_Repo.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_oldsource_Repo.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_oldsource_Source.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_oldsource_Source.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_oldsource_Source.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_svn.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_svn.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_source_svn.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_transfer.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_transfer.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_transfer.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_vstudio.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_vstudio.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_steps_vstudio.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_ComparableMixin.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_ComparableMixin.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_ComparableMixin.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_collections.py -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_collections.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_collections.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_bbcollections.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_bbcollections.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_bbcollections.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_eventual.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_eventual.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_eventual.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_loop.py %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_loop.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_loop.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_lru.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_lru.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_lru.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_maildir.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_maildir.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_maildir.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_misc.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_misc.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_misc.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_netstrings.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_netstrings.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_netstrings.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_subscriptions.py +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_subscriptions.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/unit/test_util_subscriptions.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/util/__init__.py %%PYTHON_SITELIBDIR%%/buildbot/test/util/__init__.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/util/__init__.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/change_import.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/change_import.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/change_import.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/util/changesource.py %%PYTHON_SITELIBDIR%%/buildbot/test/util/changesource.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/util/changesource.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/compat.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/compat.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/compat.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/connector_component.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/connector_component.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/connector_component.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/db.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/db.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/db.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/dirs.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/dirs.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/dirs.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/gpo.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/gpo.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/gpo.pyo %%PYTHON_SITELIBDIR%%/buildbot/test/util/pbmanager.py %%PYTHON_SITELIBDIR%%/buildbot/test/util/pbmanager.pyc %%PYTHON_SITELIBDIR%%/buildbot/test/util/pbmanager.pyo -%%PYTHON_SITELIBDIR%%/buildbot/test/util/threads.py -%%PYTHON_SITELIBDIR%%/buildbot/test/util/threads.pyc -%%PYTHON_SITELIBDIR%%/buildbot/test/util/threads.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/scheduler.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/scheduler.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/scheduler.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/sourcesteps.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/sourcesteps.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/sourcesteps.pyo +%%PYTHON_SITELIBDIR%%/buildbot/test/util/steps.py +%%PYTHON_SITELIBDIR%%/buildbot/test/util/steps.pyc +%%PYTHON_SITELIBDIR%%/buildbot/test/util/steps.pyo %%PYTHON_SITELIBDIR%%/buildbot/util/__init__.py %%PYTHON_SITELIBDIR%%/buildbot/util/__init__.pyc %%PYTHON_SITELIBDIR%%/buildbot/util/__init__.pyo -%%PYTHON_SITELIBDIR%%/buildbot/util/collections.py -%%PYTHON_SITELIBDIR%%/buildbot/util/collections.pyc -%%PYTHON_SITELIBDIR%%/buildbot/util/collections.pyo +%%PYTHON_SITELIBDIR%%/buildbot/util/bbcollections.py +%%PYTHON_SITELIBDIR%%/buildbot/util/bbcollections.pyc +%%PYTHON_SITELIBDIR%%/buildbot/util/bbcollections.pyo %%PYTHON_SITELIBDIR%%/buildbot/util/eventual.py %%PYTHON_SITELIBDIR%%/buildbot/util/eventual.pyc %%PYTHON_SITELIBDIR%%/buildbot/util/eventual.pyo %%PYTHON_SITELIBDIR%%/buildbot/util/loop.py %%PYTHON_SITELIBDIR%%/buildbot/util/loop.pyc %%PYTHON_SITELIBDIR%%/buildbot/util/loop.pyo +%%PYTHON_SITELIBDIR%%/buildbot/util/lru.py +%%PYTHON_SITELIBDIR%%/buildbot/util/lru.pyc +%%PYTHON_SITELIBDIR%%/buildbot/util/lru.pyo +%%PYTHON_SITELIBDIR%%/buildbot/util/maildir.py +%%PYTHON_SITELIBDIR%%/buildbot/util/maildir.pyc +%%PYTHON_SITELIBDIR%%/buildbot/util/maildir.pyo +%%PYTHON_SITELIBDIR%%/buildbot/util/misc.py +%%PYTHON_SITELIBDIR%%/buildbot/util/misc.pyc +%%PYTHON_SITELIBDIR%%/buildbot/util/misc.pyo %%PYTHON_SITELIBDIR%%/buildbot/util/monkeypatches.py %%PYTHON_SITELIBDIR%%/buildbot/util/monkeypatches.pyc %%PYTHON_SITELIBDIR%%/buildbot/util/monkeypatches.pyo +%%PYTHON_SITELIBDIR%%/buildbot/util/netstrings.py +%%PYTHON_SITELIBDIR%%/buildbot/util/netstrings.pyc +%%PYTHON_SITELIBDIR%%/buildbot/util/netstrings.pyo +%%PYTHON_SITELIBDIR%%/buildbot/util/sautils.py +%%PYTHON_SITELIBDIR%%/buildbot/util/sautils.pyc +%%PYTHON_SITELIBDIR%%/buildbot/util/sautils.pyo +%%PYTHON_SITELIBDIR%%/buildbot/util/subscription.py +%%PYTHON_SITELIBDIR%%/buildbot/util/subscription.pyc +%%PYTHON_SITELIBDIR%%/buildbot/util/subscription.pyo @dirrm %%PYTHON_SITELIBDIR%%/buildbot/util @dirrm %%PYTHON_SITELIBDIR%%/buildbot/test/util @dirrm %%PYTHON_SITELIBDIR%%/buildbot/test/unit @dirrm %%PYTHON_SITELIBDIR%%/buildbot/test/regressions @dirrm %%PYTHON_SITELIBDIR%%/buildbot/test/fake @dirrm %%PYTHON_SITELIBDIR%%/buildbot/test +@dirrm %%PYTHON_SITELIBDIR%%/buildbot/steps/source @dirrm %%PYTHON_SITELIBDIR%%/buildbot/steps/package/rpm @dirrm %%PYTHON_SITELIBDIR%%/buildbot/steps/package @dirrm %%PYTHON_SITELIBDIR%%/buildbot/steps @@ -611,9 +981,12 @@ @dirrm %%PYTHON_SITELIBDIR%%/buildbot/status @dirrm %%PYTHON_SITELIBDIR%%/buildbot/scripts @dirrm %%PYTHON_SITELIBDIR%%/buildbot/schedulers +@dirrm %%PYTHON_SITELIBDIR%%/buildbot/process/users @dirrm %%PYTHON_SITELIBDIR%%/buildbot/process -@dirrm %%PYTHON_SITELIBDIR%%/buildbot/db/schema +@dirrm %%PYTHON_SITELIBDIR%%/buildbot/monkeypatches +@dirrm %%PYTHON_SITELIBDIR%%/buildbot/db/migrate/versions +@dirrm %%PYTHON_SITELIBDIR%%/buildbot/db/migrate @dirrm %%PYTHON_SITELIBDIR%%/buildbot/db -@dirrm %%PYTHON_SITELIBDIR%%/buildbot/changes @dirrm %%PYTHON_SITELIBDIR%%/buildbot/clients +@dirrm %%PYTHON_SITELIBDIR%%/buildbot/changes @dirrm %%PYTHON_SITELIBDIR%%/buildbot --- buildbot-0.8.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 18:10:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B668D106566C; Wed, 28 Dec 2011 18: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 8CB628FC1E; Wed, 28 Dec 2011 18:10:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSIAKI3047190; Wed, 28 Dec 2011 18:10:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSIAKrI047181; Wed, 28 Dec 2011 18:10:20 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 18:10:20 GMT Message-Id: <201112281810.pBSIAKrI047181@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163674: [PATCH] devel/buildbot-slave: update to 0.8.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: Wed, 28 Dec 2011 18:10:20 -0000 Synopsis: [PATCH] devel/buildbot-slave: update to 0.8.5 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 18:10:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163674 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 18:10:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 847A6106567B; Wed, 28 Dec 2011 18: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 4B1528FC0C; Wed, 28 Dec 2011 18:10:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSIAS8h048083; Wed, 28 Dec 2011 18:10:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSIASQK048074; Wed, 28 Dec 2011 18:10:28 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 18:10:28 GMT Message-Id: <201112281810.pBSIASQK048074@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163675: [PATCH] devel/buildbot: update to 0.8.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: Wed, 28 Dec 2011 18:10:28 -0000 Synopsis: [PATCH] devel/buildbot: update to 0.8.5 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 18:10:27 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163675 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 19:20:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17EC81065670 for ; Wed, 28 Dec 2011 19: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 E7F2A8FC12 for ; Wed, 28 Dec 2011 19:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSJKBei014278 for ; Wed, 28 Dec 2011 19:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSJKBpn014277; Wed, 28 Dec 2011 19:20:11 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 19:20:11 GMT Resent-Message-Id: <201112281920.pBSJKBpn014277@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, Valery Komarov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 129581065777 for ; Wed, 28 Dec 2011 19:17:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E9A608FC18 for ; Wed, 28 Dec 2011 19:17:53 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSJHroA011831 for ; Wed, 28 Dec 2011 19:17:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSJHrOk011830; Wed, 28 Dec 2011 19:17:53 GMT (envelope-from nobody) Message-Id: <201112281917.pBSJHrOk011830@red.freebsd.org> Date: Wed, 28 Dec 2011 19:17:53 GMT From: Valery Komarov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163676: [MAINTAINER UPDATE] devel/ruby-thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 19:20:12 -0000 >Number: 163676 >Category: ports >Synopsis: [MAINTAINER UPDATE] devel/ruby-thrift >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 28 19:20:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Valery Komarov >Release: >Organization: >Environment: >Description: Update to 0.8.0 Port must be moved to devel/rubygem-thrift >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ./ruby-thrift/Makefile ./rubygem-thrift/Makefile --- ./ruby-thrift/Makefile 2011-12-27 05:11:16.000000000 +0400 +++ ./rubygem-thrift/Makefile 2011-12-26 23:37:11.000000000 +0400 @@ -1,33 +1,20 @@ -# New ports collection makefile for: thrift -# Date created: 27 September 2007 -# Whom: Sergey Skvortsov -# -# $FreeBSD: ports/devel/ruby-thrift/Makefile,v 1.7 2011/12/26 21:16:41 scheidell Exp $ +# Ports collection makefile for: thrift +# Date created: 26 Dec 2011 +# Whom: Valery Komarov (komarov@valerka.net) # +# $FreeBSD:$ PORTNAME= thrift -PORTVERSION= 0.6.1 +PORTVERSION= 0.8.0 PORTEPOCH= 1 -CATEGORIES= devel -PKGNAMEPREFIX= ruby- -DISTFILES= +CATEGORIES= devel rubygems +MASTER_SITES= RG MAINTAINER= komarov@valerka.net -COMMENT= Ruby interface to thrift - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/devel/thrift:extract +COMMENT= Ruby interface to Thrift USE_RUBY= yes -USE_RUBY_SETUP= yes - -# XXX: Because this port will call ruby again to build binary extensions, -# it is not suitable for building when PREFIX != LOCALBASE. -# This seems to be a Ruby limitation, and the following does not help: -#USE_RUBY_EXTCONF= yes -#RUBY_EXTCONF_SUBDIRS= ext - -post-extract: - @${LN} -sfh \ - `cd ${PORTSDIR}/devel/thrift && ${MAKE} -V WRKSRC`/lib/rb ${WRKSRC} +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes .include diff -ruN ./ruby-thrift/distinfo ./rubygem-thrift/distinfo --- ./ruby-thrift/distinfo 1970-01-01 03:00:00.000000000 +0300 +++ ./rubygem-thrift/distinfo 2011-12-26 23:31:23.000000000 +0400 @@ -0,0 +1,2 @@ +SHA256 (rubygem/thrift-0.8.0.gem) = 9b11f2a259fb8bae8c358ed96f0cbd7df342f7f122307237c3bed8029b1d422a +SIZE (rubygem/thrift-0.8.0.gem) = 68096 diff -ruN ./ruby-thrift/pkg-descr ./rubygem-thrift/pkg-descr --- ./ruby-thrift/pkg-descr 2009-07-05 02:11:48.000000000 +0400 +++ ./rubygem-thrift/pkg-descr 2011-12-26 23:34:16.000000000 +0400 @@ -1,3 +1,3 @@ Ruby interface to Thrift. -WWW: http://incubator.apache.org/thrift/ +WWW: http://thrift.apache.org/thrift/ diff -ruN ./ruby-thrift/pkg-plist ./rubygem-thrift/pkg-plist --- ./ruby-thrift/pkg-plist 2010-08-17 21:01:19.000000000 +0400 +++ ./rubygem-thrift/pkg-plist 1970-01-01 03:00:00.000000000 +0300 @@ -1,41 +0,0 @@ -%%RUBY_SITEARCHLIBDIR%%/thrift_native.so -%%RUBY_SITELIBDIR%%/thrift.rb -%%RUBY_SITELIBDIR%%/thrift/client.rb -%%RUBY_SITELIBDIR%%/thrift/core_ext.rb -%%RUBY_SITELIBDIR%%/thrift/core_ext/fixnum.rb -%%RUBY_SITELIBDIR%%/thrift/exceptions.rb -%%RUBY_SITELIBDIR%%/thrift/processor.rb -%%RUBY_SITELIBDIR%%/thrift/protocol/base_protocol.rb -%%RUBY_SITELIBDIR%%/thrift/protocol/binary_protocol.rb -%%RUBY_SITELIBDIR%%/thrift/protocol/binary_protocol_accelerated.rb -%%RUBY_SITELIBDIR%%/thrift/protocol/compact_protocol.rb -%%RUBY_SITELIBDIR%%/thrift/serializer/deserializer.rb -%%RUBY_SITELIBDIR%%/thrift/serializer/serializer.rb -%%RUBY_SITELIBDIR%%/thrift/server/base_server.rb -%%RUBY_SITELIBDIR%%/thrift/server/mongrel_http_server.rb -%%RUBY_SITELIBDIR%%/thrift/server/nonblocking_server.rb -%%RUBY_SITELIBDIR%%/thrift/server/simple_server.rb -%%RUBY_SITELIBDIR%%/thrift/server/thread_pool_server.rb -%%RUBY_SITELIBDIR%%/thrift/server/threaded_server.rb -%%RUBY_SITELIBDIR%%/thrift/struct.rb -%%RUBY_SITELIBDIR%%/thrift/struct_union.rb -%%RUBY_SITELIBDIR%%/thrift/thrift_native.rb -%%RUBY_SITELIBDIR%%/thrift/transport/base_server_transport.rb -%%RUBY_SITELIBDIR%%/thrift/transport/base_transport.rb -%%RUBY_SITELIBDIR%%/thrift/transport/buffered_transport.rb -%%RUBY_SITELIBDIR%%/thrift/transport/framed_transport.rb -%%RUBY_SITELIBDIR%%/thrift/transport/http_client_transport.rb -%%RUBY_SITELIBDIR%%/thrift/transport/io_stream_transport.rb -%%RUBY_SITELIBDIR%%/thrift/transport/memory_buffer_transport.rb -%%RUBY_SITELIBDIR%%/thrift/transport/server_socket.rb -%%RUBY_SITELIBDIR%%/thrift/transport/socket.rb -%%RUBY_SITELIBDIR%%/thrift/transport/unix_server_socket.rb -%%RUBY_SITELIBDIR%%/thrift/transport/unix_socket.rb -%%RUBY_SITELIBDIR%%/thrift/types.rb -%%RUBY_SITELIBDIR%%/thrift/union.rb -@dirrm %%RUBY_SITELIBDIR%%/thrift/transport -@dirrm %%RUBY_SITELIBDIR%%/thrift/server -@dirrm %%RUBY_SITELIBDIR%%/thrift/serializer -@dirrm %%RUBY_SITELIBDIR%%/thrift/protocol -@dirrm %%RUBY_SITELIBDIR%%/thrift/core_ext -@dirrm %%RUBY_SITELIBDIR%%/thrift >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 19:20:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 790231065676 for ; Wed, 28 Dec 2011 19: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 3C4978FC14 for ; Wed, 28 Dec 2011 19:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSJKCNS014287 for ; Wed, 28 Dec 2011 19:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSJKCef014286; Wed, 28 Dec 2011 19:20:12 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 19:20:12 GMT Resent-Message-Id: <201112281920.pBSJKCef014286@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, Valery Komarov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9480D106564A for ; Wed, 28 Dec 2011 19:19:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8322B8FC08 for ; Wed, 28 Dec 2011 19:19:36 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSJJaws011982 for ; Wed, 28 Dec 2011 19:19:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSJJaHe011981; Wed, 28 Dec 2011 19:19:36 GMT (envelope-from nobody) Message-Id: <201112281919.pBSJJaHe011981@red.freebsd.org> Date: Wed, 28 Dec 2011 19:19:36 GMT From: Valery Komarov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163677: [MAINTAINER UPDATE] devel/p5-Thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 19:20:12 -0000 >Number: 163677 >Category: ports >Synopsis: [MAINTAINER UPDATE] devel/p5-Thrift >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 28 19:20:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Valery Komarov >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: >Description: Update to 0.8.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ./p5-Thrift.orig/Makefile ./p5-Thrift/Makefile --- ./p5-Thrift.orig/Makefile 2011-12-27 01:16:40.000000000 +0400 +++ ./p5-Thrift/Makefile 2011-12-27 02:05:01.000000000 +0400 @@ -2,11 +2,11 @@ # Date created: 27 September 2007 # Whom: Sergey Skvortsov # -# $FreeBSD: ports/devel/p5-Thrift/Makefile,v 1.9 2011/12/26 21:16:40 scheidell Exp $ +# $FreeBSD: ports/devel/p5-Thrift/Makefile,v 1.8 2011/08/11 22:37:12 skv Exp $ # PORTNAME= Thrift -PORTVERSION= 0.6.1 +PORTVERSION= 0.8.0 PORTEPOCH= 1 CATEGORIES= devel perl5 PKGNAMEPREFIX= p5- diff -ruN ./p5-Thrift.orig/pkg-descr ./p5-Thrift/pkg-descr --- ./p5-Thrift.orig/pkg-descr 2007-09-27 00:39:59.000000000 +0400 +++ ./p5-Thrift/pkg-descr 2011-12-26 23:39:44.000000000 +0400 @@ -1,3 +1,3 @@ Perl interface to Thrift. -WWW: http://developers.facebook.com/thrift/ +WWW: http://thrift.apache.org/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 19:20:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DEE8106566B; Wed, 28 Dec 2011 19:20: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 4488B8FC0C; Wed, 28 Dec 2011 19:20:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSJKMGd014804; Wed, 28 Dec 2011 19:20:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSJKM5l014794; Wed, 28 Dec 2011 19:20:22 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 19:20:22 GMT Message-Id: <201112281920.pBSJKM5l014794@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163676: [MAINTAINER UPDATE] devel/ruby-thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 19:20:22 -0000 Synopsis: [MAINTAINER UPDATE] devel/ruby-thrift Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 19:20:21 UTC 2011 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163676 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 19:20:27 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1535A1065672; Wed, 28 Dec 2011 19:20: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 DFC1C8FC1B; Wed, 28 Dec 2011 19:20:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSJKQr0015310; Wed, 28 Dec 2011 19:20:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSJKQMW015300; Wed, 28 Dec 2011 19:20:26 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 19:20:26 GMT Message-Id: <201112281920.pBSJKQMW015300@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163677: [MAINTAINER UPDATE] devel/p5-Thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 19:20:27 -0000 Synopsis: [MAINTAINER UPDATE] devel/p5-Thrift Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 19:20:26 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163677 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 19:30:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E81CE106566B for ; Wed, 28 Dec 2011 19: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 AA27F8FC14 for ; Wed, 28 Dec 2011 19:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSJUAjD022576 for ; Wed, 28 Dec 2011 19:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSJUAcS022575; Wed, 28 Dec 2011 19:30:10 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 19:30:10 GMT Resent-Message-Id: <201112281930.pBSJUAcS022575@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, Valery Komarov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 467271065780 for ; Wed, 28 Dec 2011 19:22:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 35A928FC08 for ; Wed, 28 Dec 2011 19:22:14 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSJMEIi012226 for ; Wed, 28 Dec 2011 19:22:14 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSJMDA1012225; Wed, 28 Dec 2011 19:22:13 GMT (envelope-from nobody) Message-Id: <201112281922.pBSJMDA1012225@red.freebsd.org> Date: Wed, 28 Dec 2011 19:22:13 GMT From: Valery Komarov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163678: [update] devel/php5-thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 19:30:13 -0000 >Number: 163678 >Category: ports >Synopsis: [update] devel/php5-thrift >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 28 19:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Valery Komarov >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: >Description: Update to 0.8.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ./php5-thrift.orig/Makefile ./php5-thrift/Makefile --- ./php5-thrift.orig/Makefile 2011-12-19 01:50:36.000000000 +0400 +++ ./php5-thrift/Makefile 2011-12-09 00:18:55.000000000 +0400 @@ -2,11 +2,11 @@ # Date created: Sat May 8 12:33:05 MSD 2010 # Whom: Ilya Bakulin # -# $FreeBSD: ports/devel/php5-thrift/Makefile,v 1.3 2011/12/18 21:50:36 pav Exp $ +# $FreeBSD: ports/devel/php5-thrift/Makefile,v 1.2 2011/08/29 10:21:58 crees Exp $ # PORTNAME= thrift -PORTVERSION= 0.6.1 +PORTVERSION= 0.8.0 CATEGORIES= devel PKGNAMEPREFIX= php5- DISTFILES= # empty @@ -16,8 +16,6 @@ EXTRACT_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/devel/thrift:extract -BROKEN= does not configure - USE_PHP= yes USE_PHPIZE= yes USE_PHPEXT= yes diff -ruN ./php5-thrift.orig/pkg-descr ./php5-thrift/pkg-descr --- ./php5-thrift.orig/pkg-descr 2010-10-07 19:45:18.000000000 +0400 +++ ./php5-thrift/pkg-descr 2011-12-26 23:39:54.000000000 +0400 @@ -1,3 +1,3 @@ PHP interface to Thrift. -WWW: http://developers.facebook.com/thrift/ +WWW: http://thrift.apache.org/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 19:30:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D4E21065675; Wed, 28 Dec 2011 19: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 D8E248FC1C; Wed, 28 Dec 2011 19:30:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSJUO1L023573; Wed, 28 Dec 2011 19:30:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSJUOha023561; Wed, 28 Dec 2011 19:30:24 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 19:30:24 GMT Message-Id: <201112281930.pBSJUOha023561@freefall.freebsd.org> To: komarov@valerka.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163678: [update] devel/php5-thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 19:30:25 -0000 Synopsis: [update] devel/php5-thrift State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Dec 28 19:30:24 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163678 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 19:40:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AD4B106566C for ; Wed, 28 Dec 2011 19:40: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 79EA38FC08 for ; Wed, 28 Dec 2011 19:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSJeD8W033169 for ; Wed, 28 Dec 2011 19:40:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSJeD5N033168; Wed, 28 Dec 2011 19:40:13 GMT (envelope-from gnats) Date: Wed, 28 Dec 2011 19:40:13 GMT Message-Id: <201112281940.pBSJeD5N033168@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163678: [update] devel/php5-thrift 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, 28 Dec 2011 19:40:13 -0000 The following reply was made to PR ports/163678; it has been noted by GNATS. From: Edwin Groothuis To: webmaster@kibab.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/163678: [update] devel/php5-thrift Date: Wed, 28 Dec 2011 19:30:20 UT Maintainer of devel/php5-thrift, Please note that PR ports/163678 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/163678 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 20:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2528C106566B for ; Wed, 28 Dec 2011 20: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 009EE8FC0C for ; Wed, 28 Dec 2011 20:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSKK9Qn068756 for ; Wed, 28 Dec 2011 20:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSKK9Qx068755; Wed, 28 Dec 2011 20:20:09 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 20:20:09 GMT Resent-Message-Id: <201112282020.pBSKK9Qx068755@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, Devin Teske Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9AA5D106564A for ; Wed, 28 Dec 2011 20:11:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7F52C8FC17 for ; Wed, 28 Dec 2011 20:11:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSKB6WK000686 for ; Wed, 28 Dec 2011 20:11:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSKB6xB000682; Wed, 28 Dec 2011 20:11:06 GMT (envelope-from nobody) Message-Id: <201112282011.pBSKB6xB000682@red.freebsd.org> Date: Wed, 28 Dec 2011 20:11:06 GMT From: Devin Teske To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163679: [NEW PORT] sysutils/sysrc: Utility to get or set rc.conf(5) values X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 20:20:10 -0000 >Number: 163679 >Category: ports >Synopsis: [NEW PORT] sysutils/sysrc: Utility to get or set rc.conf(5) values >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 Dec 28 20:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Devin Teske >Release: FreeBSD 8.1-RELEASE-p6 i386 >Organization: FIS Global, Inc. >Environment: FreeBSD kxt2a.jbsd.vicor.com 8.1-RELEASE-p6 FreeBSD 8.1-RELEASE-p6 #15: Wed Dec 7 11:08:51 PST 2011 dteske@ipm0.vbsd.vicor.com:/usr/src/sys/i386/compile/FIS i386 >Description: New Port sysutils/sysrc. Sysrc is a robust utility for managing rc.conf(5) from the command-line without a text-editor. Feature-highlights include (but are not limited to): - Environment variable taint prevention - Shell taint checking (aka boot-regression prevention) - File-access race-condition prevention - File-structure sensitivity/preservation - Intelligent syntax handling - Execution performance optimizations - Detailed safety measures - Support for jails (both legacy and current) WWW: http://druidbsd.sourceforge.net/ >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: # # sysrc # sysrc/Makefile # sysrc/distinfo # sysrc/pkg-descr # echo c - sysrc mkdir -p sysrc > /dev/null 2>&1 echo x - sysrc/Makefile sed 's/^X//' >sysrc/Makefile << 'a9f17ccaa2f1f1e163da334e1a54e608' X# New ports collection makefile for: sysrc X# Date created: 28 December 2011 X# Whom: Devin Teske X# X# $FreeBSD$ X# X XPORTNAME= sysrc XPORTVERSION= 3.2 XCATEGORIES= sysutils XMASTER_SITES= http://druidbsd.sourceforge.net/download/ XEXTRACT_SUFX= .txt X XMAINTAINER= dteske@vicor.com XCOMMENT= Utility to get or set rc.conf(5) values X XNO_BUILD= yes X XEXTRACT_CMD= : XEXTRACT_BEFORE_ARGS= XEXTRACT_AFTER_ARGS= X XPLIST_FILES= sbin/${PORTNAME} X Xdo-install: X ${INSTALL_SCRIPT} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${PREFIX}/sbin/${PORTNAME} X X.include a9f17ccaa2f1f1e163da334e1a54e608 echo x - sysrc/distinfo sed 's/^X//' >sysrc/distinfo << 'aac06a6f58bdae28f4fd75cf48d7bb8c' XSHA256 (sysrc-3.2.txt) = a3f3bfe190c56110d051fa230713632b97641961332c76f71f694ae157520ab7 XSIZE (sysrc-3.2.txt) = 29609 aac06a6f58bdae28f4fd75cf48d7bb8c echo x - sysrc/pkg-descr sed 's/^X//' >sysrc/pkg-descr << '77c1c3577dad93d6a4a2d821a0245036' XSysrc is a robust utility for managing rc.conf(5) from the command-line without Xa text-editor. Feature-highlights include (but are not limited to): X - Environment variable taint prevention X - Shell taint checking (aka boot-regression prevention) X - File-access race-condition prevention X - File-structure sensitivity/preservation X - Intelligent syntax handling X - Execution performance optimizations X - Detailed safety measures X - Support for jails (both legacy and current) X X X XWWW: http://druidbsd.sourceforge.net/ 77c1c3577dad93d6a4a2d821a0245036 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 20:50:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 047EA106566B for ; Wed, 28 Dec 2011 20:50: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 D36D78FC12 for ; Wed, 28 Dec 2011 20:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSKoBIT096542 for ; Wed, 28 Dec 2011 20:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSKoBFr096541; Wed, 28 Dec 2011 20:50:11 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 20:50:11 GMT Resent-Message-Id: <201112282050.pBSKoBFr096541@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, Pëdro Giffuni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06308106564A for ; Wed, 28 Dec 2011 20:48:17 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E7F3F8FC0C for ; Wed, 28 Dec 2011 20:48:16 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSKmGoB071213 for ; Wed, 28 Dec 2011 20:48:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSKmGDp071212; Wed, 28 Dec 2011 20:48:16 GMT (envelope-from nobody) Message-Id: <201112282048.pBSKmGDp071212@red.freebsd.org> Date: Wed, 28 Dec 2011 20:48:16 GMT From: Pëdro Giffuni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163681: Update math/coinmp to version 1.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: Wed, 28 Dec 2011 20:50:12 -0000 >Number: 163681 >Category: ports >Synopsis: Update math/coinmp to version 1.6.0 >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 Dec 28 20:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pëdro Giffuni >Release: 9.0-BETA3 >Organization: >Environment: FreeBSD pcbsd-8714 9.0-BETA3 FreeBSD 9.0-BETA3 #1: Tue Sep 27 13:47:21 PDT 2011 root@build9x64.pcbsd.org:/usr/obj/pcbsd-build90/fbsd-source/9.0/sys/GENERIC amd64 >Description: Update to latest version. This now includes CLP 1.14.5, which is more recent than math/clp. This library will also be used for Apache OpenOffice in the near future. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN coinmp.orig/Makefile coinmp/Makefile --- coinmp.orig/Makefile 2011-12-23 09:54:40.000000000 -0500 +++ coinmp/Makefile 2011-12-28 11:37:44.000000000 -0500 @@ -6,7 +6,7 @@ # PORTNAME= CoinMP -PORTVERSION= 1.4.0 +PORTVERSION= 1.6.0 CATEGORIES= math MASTER_SITES= http://www.coin-or.org/download/source/CoinMP/ EXTRACT_SUFX= .tgz diff -ruN coinmp.orig/distinfo coinmp/distinfo --- coinmp.orig/distinfo 2011-12-23 09:54:40.000000000 -0500 +++ coinmp/distinfo 2011-12-23 09:57:59.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (CoinMP-1.4.0.tgz) = 93bc015e4affc31a97be8360238ef1e0a8ea7d3fa8b15627a14f13b8b1d5b032 -SIZE (CoinMP-1.4.0.tgz) = 11087531 +SHA256 (CoinMP-1.6.0.tgz) = 33eccad711dcf5a511cd2246267996df5b73d067a14214c1f2fad4bc1aecc971 +SIZE (CoinMP-1.6.0.tgz) = 12400327 diff -ruN coinmp.orig/files/patch-Cbc__src__CbcSolver.cpp coinmp/files/patch-Cbc__src__CbcSolver.cpp --- coinmp.orig/files/patch-Cbc__src__CbcSolver.cpp 1969-12-31 19:00:00.000000000 -0500 +++ coinmp/files/patch-Cbc__src__CbcSolver.cpp 2011-12-23 10:45:07.000000000 -0500 @@ -0,0 +1,14 @@ +This looks like a gcc 4.2.1 bug. +--- Cbc/src/CbcSolver.cpp.orig 2011-12-23 10:36:33.000000000 -0500 ++++ Cbc/src/CbcSolver.cpp 2011-12-23 10:41:57.000000000 -0500 +@@ -1665,10 +1665,6 @@ + } + sprintf(generalPrint + strlen(generalPrint), + "Build Date: %s \n", __DATE__); +-#ifdef CBC_SVN_REV +- sprintf(generalPrint + strlen(generalPrint), +- "Revision Number: %d \n", CBC_SVN_REV); +-#endif + generalMessageHandler->message(CLP_GENERAL, generalMessages) + << generalPrint + << CoinMessageEol; diff -ruN coinmp.orig/files/patch-CoinUtils+src+CoinParam.hpp coinmp/files/patch-CoinUtils+src+CoinParam.hpp --- coinmp.orig/files/patch-CoinUtils+src+CoinParam.hpp 2011-12-23 09:54:40.000000000 -0500 +++ coinmp/files/patch-CoinUtils+src+CoinParam.hpp 1969-12-31 19:00:00.000000000 -0500 @@ -1,10 +0,0 @@ ---- CoinUtils/src/CoinParam.hpp.orig 2009-08-16 22:33:13.000000000 -0500 -+++ CoinUtils/src/CoinParam.hpp 2009-08-16 22:34:23.000000000 -0500 -@@ -12,6 +12,7 @@ - - #include - #include -+#include - - /*! \class CoinParam - \brief A base class for `keyword value' command line parameters. diff -ruN coinmp.orig/pkg-plist coinmp/pkg-plist --- coinmp.orig/pkg-plist 2011-12-23 09:54:40.000000000 -0500 +++ coinmp/pkg-plist 2011-12-28 15:18:09.000000000 -0500 @@ -1,8 +1,82 @@ bin/cbc bin/clp +include/coin/CbcBranchAllDifferent.hpp +include/coin/CbcBranchDecision.hpp +include/coin/CbcBranchDefaultDecision.hpp +include/coin/CbcBranchToFixLots.hpp +include/coin/CbcBranchingObject.hpp +include/coin/CbcClique.hpp +include/coin/CbcCompare.hpp +include/coin/CbcCompareDefault.hpp +include/coin/CbcCompareDepth.hpp +include/coin/CbcCompareEstimate.hpp +include/coin/CbcCompareObjective.hpp +include/coin/CbcConsequence.hpp +include/coin/CbcCutModifier.hpp +include/coin/CbcCutSubsetModifier.hpp +include/coin/CbcDummyBranchingObject.hpp +include/coin/CbcFixVariable.hpp +include/coin/CbcFollowOn.hpp +include/coin/CbcFullNodeInfo.hpp +include/coin/CbcGeneral.hpp +include/coin/CbcGeneralDepth.hpp +include/coin/CbcHeuristicDINS.hpp +include/coin/CbcHeuristicRENS.hpp +include/coin/CbcHeuristicVND.hpp +include/coin/CbcNWay.hpp +include/coin/CbcNodeInfo.hpp +include/coin/CbcObject.hpp +include/coin/CbcObjectUpdateData.hpp +include/coin/CbcOrClpParam.cpp +include/coin/CbcOrClpParam.hpp +include/coin/CbcPartialNodeInfo.hpp +include/coin/CbcSOS.hpp +include/coin/CbcSimpleInteger.hpp +include/coin/CbcSimpleIntegerDynamicPseudoCost.hpp +include/coin/CbcSimpleIntegerPseudoCost.hpp +include/coin/CbcSubProblem.hpp +include/coin/ClpConfig.h +include/coin/Clp_C_Interface.h +include/coin/ClpCholeskyBase.hpp +include/coin/ClpCholeskyDense.hpp +include/coin/ClpConstraint.hpp +include/coin/ClpConstraintLinear.hpp +include/coin/ClpConstraintQuadratic.hpp +include/coin/ClpNode.hpp +include/coin/ClpDualRowDantzig.hpp +include/coin/ClpDualRowPivot.hpp +include/coin/ClpDualRowSteepest.hpp +include/coin/ClpDummyMatrix.hpp +include/coin/ClpDynamicExampleMatrix.hpp +include/coin/ClpDynamicMatrix.hpp +include/coin/ClpEventHandler.hpp +include/coin/ClpFactorization.hpp +include/coin/ClpGubDynamicMatrix.hpp +include/coin/ClpGubMatrix.hpp +include/coin/ClpInterior.hpp +include/coin/ClpLinearObjective.hpp +include/coin/ClpMatrixBase.hpp +include/coin/ClpMessage.hpp +include/coin/ClpModel.hpp +include/coin/ClpNetworkMatrix.hpp +include/coin/ClpNonLinearCost.hpp +include/coin/ClpObjective.hpp +include/coin/ClpPackedMatrix.hpp +include/coin/ClpPdcoBase.hpp +include/coin/ClpPlusMinusOneMatrix.hpp +include/coin/ClpParameters.hpp +include/coin/ClpPresolve.hpp +include/coin/ClpPrimalColumnDantzig.hpp +include/coin/ClpPrimalColumnPivot.hpp +include/coin/ClpPrimalColumnSteepest.hpp +include/coin/ClpQuadraticObjective.hpp +include/coin/ClpSimplex.hpp +include/coin/ClpSimplexNonlinear.hpp +include/coin/ClpSimplexOther.hpp +include/coin/ClpSimplexPrimal.hpp +include/coin/ClpSolve.hpp include/coin/CoinAlloc.hpp include/coin/CoinUtilsConfig.h -include/coin/config_coinutils.h include/coin/Coin_C_defines.h include/coin/CoinBuild.hpp include/coin/CoinDenseVector.hpp @@ -23,6 +97,7 @@ include/coin/CoinStructuredModel.hpp include/coin/CoinModelUseful.hpp include/coin/CoinMpsIO.hpp +include/coin/CoinOslFactorization.hpp include/coin/CoinPackedMatrix.hpp include/coin/CoinPackedVector.hpp include/coin/CoinPackedVectorBase.hpp @@ -58,53 +133,7 @@ include/coin/CoinWarmStartVector.hpp include/coin/CoinWarmStartDual.hpp include/coin/CoinWarmStartPrimalDual.hpp -include/coin/config_clp.h -include/coin/ClpConfig.h -include/coin/Clp_C_Interface.h -include/coin/ClpCholeskyBase.hpp -include/coin/ClpCholeskyDense.hpp -include/coin/ClpCholeskyWssmp.hpp -include/coin/ClpConstraint.hpp -include/coin/ClpConstraintLinear.hpp -include/coin/ClpConstraintQuadratic.hpp -include/coin/ClpNode.hpp -include/coin/ClpDualRowDantzig.hpp -include/coin/ClpDualRowPivot.hpp -include/coin/ClpDualRowSteepest.hpp -include/coin/ClpDummyMatrix.hpp -include/coin/ClpDynamicExampleMatrix.hpp -include/coin/ClpDynamicMatrix.hpp -include/coin/ClpEventHandler.hpp -include/coin/ClpFactorization.hpp -include/coin/ClpGubDynamicMatrix.hpp -include/coin/ClpGubMatrix.hpp -include/coin/ClpInterior.hpp -include/coin/ClpLinearObjective.hpp -include/coin/ClpMatrixBase.hpp -include/coin/ClpMessage.hpp -include/coin/ClpModel.hpp -include/coin/ClpNetworkMatrix.hpp -include/coin/ClpNonLinearCost.hpp -include/coin/ClpObjective.hpp -include/coin/ClpPackedMatrix.hpp -include/coin/ClpPdcoBase.hpp -include/coin/ClpPlusMinusOneMatrix.hpp -include/coin/ClpParameters.hpp -include/coin/ClpPresolve.hpp -include/coin/ClpPrimalColumnDantzig.hpp -include/coin/ClpPrimalColumnPivot.hpp -include/coin/ClpPrimalColumnSteepest.hpp -include/coin/ClpQuadraticObjective.hpp -include/coin/ClpSimplex.hpp -include/coin/ClpSimplexDual.hpp -include/coin/ClpSimplexNonlinear.hpp -include/coin/ClpSimplexOther.hpp -include/coin/ClpSimplexPrimal.hpp -include/coin/ClpSolve.hpp -include/coin/CbcOrClpParam.hpp -include/coin/CbcOrClpParam.cpp include/coin/Idiot.hpp -include/coin/config_osi.h include/coin/OsiConfig.h include/coin/OsiAuxInfo.hpp include/coin/OsiBranchingObject.hpp @@ -113,7 +142,6 @@ include/coin/OsiCollections.hpp include/coin/OsiCut.hpp include/coin/OsiCuts.hpp -include/coin/OsiOpbdpSolve.hpp include/coin/OsiPresolve.hpp include/coin/OsiSolverBranch.hpp include/coin/OsiSolverInterface.hpp @@ -121,8 +149,8 @@ include/coin/OsiRowCut.hpp include/coin/OsiRowCutDebugger.hpp include/coin/OsiCbcSolverInterface.hpp -include/coin/OsiClpParamMap.hpp include/coin/OsiClpSolverInterface.hpp +include/coin/OsiUnitTests.hpp include/coin/CglClique.hpp include/coin/CglMixedIntegerRounding.hpp include/coin/CglDuplicateRow.hpp @@ -134,7 +162,6 @@ include/coin/CglFlowCover.hpp include/coin/CglPreProcess.hpp include/coin/CglLandP.hpp -include/coin/CglLandPSimplex.hpp include/coin/CglLandPValidator.hpp include/coin/CglProbing.hpp include/coin/CglOddHole.hpp @@ -143,14 +170,12 @@ include/coin/CglResidualCapacity.hpp include/coin/CglRedSplit.hpp include/coin/CglRedSplitParam.hpp -include/coin/config_cgl.h include/coin/CglConfig.h include/coin/CglCutGenerator.hpp include/coin/CglMessage.hpp include/coin/CglStored.hpp include/coin/CglParam.hpp include/coin/CglTreeInfo.hpp -include/coin/config_cbc.h include/coin/CbcConfig.h include/coin/Cbc_C_Interface.h include/coin/CbcBranchActual.hpp @@ -188,68 +213,67 @@ include/coin/CbcTreeLocal.hpp include/coin/ClpConstraintAmpl.hpp include/coin/ClpAmplObjective.hpp -include/coin/config_coinmp.h include/coin/CoinMPConfig.h include/coin/CoinMP.h @dirrm include/coin -share/doc/coin/CoinMP/README -share/doc/coin/CoinMP/AUTHORS -share/doc/coin/CoinMP/LICENSE -share/doc/coin/CoinMP/coinmp_addlibs.txt -share/doc/coin/CoinMP/examples/Makefile -share/doc/coin/CoinMP/examples/example.c -@dirrm share/doc/coin/CoinMP/examples -@dirrm share/doc/coin/CoinMP -share/doc/coin/Cbc/README -share/doc/coin/Cbc/AUTHORS -share/doc/coin/Cbc/LICENSE -share/doc/coin/Cbc/cbc_addlibs.txt -@dirrm share/doc/coin/Cbc -share/doc/coin/Cgl/README -share/doc/coin/Cgl/AUTHORS -share/doc/coin/Cgl/LICENSE -share/doc/coin/Cgl/cgl_addlibs.txt -@dirrm share/doc/coin/Cgl -share/doc/coin/Clp/AUTHORS -share/doc/coin/Clp/LICENSE -share/doc/coin/Clp/README -share/doc/coin/Clp/clp_addlibs.txt -@dirrm share/doc/coin/Clp -share/doc/coin/CoinUtils/AUTHORS -share/doc/coin/CoinUtils/LICENSE -share/doc/coin/CoinUtils/README -share/doc/coin/CoinUtils/coinutils_addlibs.txt -@dirrm share/doc/coin/CoinUtils -share/doc/coin/Osi/README -share/doc/coin/Osi/AUTHORS -share/doc/coin/Osi/LICENSE -share/doc/coin/Osi/osi_addlibs.txt -@dirrm share/doc/coin/Osi -@dirrm share/doc/coin +share/coin/doc/Cbc/README +share/coin/doc/Cbc/AUTHORS +share/coin/doc/Cbc/LICENSE +share/coin/doc/Cbc/cbc_addlibs.txt +@dirrm share/coin/doc/Cbc +share/coin/doc/Cgl/README +share/coin/doc/Cgl/AUTHORS +share/coin/doc/Cgl/LICENSE +share/coin/doc/Cgl/cgl_addlibs.txt +@dirrm share/coin/doc/Cgl +share/coin/doc/Clp/AUTHORS +share/coin/doc/Clp/LICENSE +share/coin/doc/Clp/README +share/coin/doc/Clp/clp_addlibs.txt +@dirrm share/coin/doc/Clp +share/coin/doc/CoinMP/README +share/coin/doc/CoinMP/AUTHORS +share/coin/doc/CoinMP/LICENSE +share/coin/doc/CoinMP/coinmp_addlibs.txt +share/coin/doc/CoinMP/Makefile +share/coin/doc/CoinMP/example.c +@dirrm share/coin/doc/CoinMP +share/coin/doc/CoinUtils/AUTHORS +share/coin/doc/CoinUtils/LICENSE +share/coin/doc/CoinUtils/README +share/coin/doc/CoinUtils/coinutils_addlibs.txt +@dirrm share/coin/doc/CoinUtils +share/coin/doc/Osi/README +share/coin/doc/Osi/AUTHORS +share/coin/doc/Osi/LICENSE +share/coin/doc/Osi/osi_addlibs.txt +@dirrm share/coin/doc/Osi +@dirrm share/coin/doc +@dirrm share/coin lib/libCbc.la lib/libCbc.so -lib/libCbc.so.0 +lib/libCbc.so.10 lib/libCbcSolver.la lib/libCbcSolver.so -lib/libCbcSolver.so.0 +lib/libCbcSolver.so.10 lib/libCgl.la lib/libCgl.so -lib/libCgl.so.0 +lib/libCgl.so.8 lib/libClp.la lib/libClp.so -lib/libClp.so.0 +lib/libClp.so.12 lib/libCoinMP.la lib/libCoinMP.so -lib/libCoinMP.so.0 +lib/libCoinMP.so.7 lib/libCoinUtils.la lib/libCoinUtils.so -lib/libCoinUtils.so.0 +lib/libCoinUtils.so.11 lib/libOsi.la lib/libOsi.so -lib/libOsi.so.0 +lib/libOsi.so.11 lib/libOsiCbc.la lib/libOsiCbc.so -lib/libOsiCbc.so.0 +lib/libOsiCbc.so.10 lib/libOsiClp.la lib/libOsiClp.so -lib/libOsiClp.so.0 +lib/libOsiClp.so.12 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 21:00:30 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FC2C1065677 for ; Wed, 28 Dec 2011 21: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 2858C8FC15 for ; Wed, 28 Dec 2011 21:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSL0Ugb005104 for ; Wed, 28 Dec 2011 21:00:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSL0Tgd005103; Wed, 28 Dec 2011 21:00:29 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 21:00:29 GMT Resent-Message-Id: <201112282100.pBSL0Tgd005103@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 Scheidell Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE3F6106564A for ; Wed, 28 Dec 2011 20:55:28 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: from mx1.secnap.com.ionspam.net (mx1.secnap.com.ionspam.net [204.89.241.253]) by mx1.freebsd.org (Postfix) with ESMTP id 9EF708FC1E for ; Wed, 28 Dec 2011 20:55:28 +0000 (UTC) Received: from mx1.secnap.com.ionspam.net (mx1.secnap.com.ionspam.net [10.70.1.253]) by mx1.secnap.com.ionspam.net (Postfix) with ESMTP id 22D53621C14 for ; Wed, 28 Dec 2011 15:55:28 -0500 (EST) Received: from scanner.secnap.net (unknown [10.70.1.4]) by mx1.secnap.com.ionspam.net (Postfix) with ESMTP id A444C621C05 for ; Wed, 28 Dec 2011 15:55:26 -0500 (EST) Received: by scanner.secnap.net (Postfix, from userid 1001) id A00E21D3C8; Wed, 28 Dec 2011 15:55:26 -0500 (EST) Message-Id: <20111228205526.A00E21D3C8@scanner.secnap.net> Date: Wed, 28 Dec 2011 15:55:26 -0500 (EST) From: Michael Scheidell To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163682: [PATCH] net/ntop fix depends/fix chown on db X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 21:00:30 -0000 >Number: 163682 >Category: ports >Synopsis: [PATCH] net/ntop fix depends/fix chown on db >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 Dec 28 21:00:29 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Michael Scheidell >Release: FreeBSD 7.4-RELEASE-p3 i386 >Organization: SECNAP Network Security Corp >Environment: tested on 7.3/4 amd64 /i386 >Description: - Fix RUN_DEPENDS (:=), mostly for portlint - Change WITH_PCAP_PORT to LIB_DEPENDS, not BUILD_DEPENDS - add stopdaemon to pkg-plist - need chown in pkg-plist so that .tbz (package building) works - clean up install message (patch-Makefile.am) - add test in pkg-deinstall.in to test for DBDIR >How-To-Repeat: if you make a package, and install it on a clean system, it would not chown DBDIR/ntop It is POSSIBLE that you would have a problem with pcap lib (original test was for ./a file, new test is for .so) >Fix: Apply this patch. tested several times both make/install/deinstall/package/pkg_add/pkg_delete, but I am also running it in tinderbox, just to make sure. --- ntop_patch.txt begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/ntop/Makefile,v retrieving revision 1.99 diff -u -u -r1.99 Makefile --- Makefile 21 Nov 2011 00:57:36 -0000 1.99 +++ Makefile 28 Dec 2011 20:41:34 -0000 @@ -7,7 +7,7 @@ PORTNAME= ntop PORTVERSION= 4.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net #MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Stable @@ -21,10 +21,8 @@ BUILD_DEPENDS= rrdtool>=1.2:${PORTSDIR}/databases/rrdtool \ dot:${PORTSDIR}/graphics/graphviz \ geoiplookup:${PORTSDIR}/net/GeoIP -RUN_DEPENDS= dot:${PORTSDIR}/graphics/graphviz \ - ${LOCALBASE}/lib/X11/fonts/URW/a010013l.afm:${PORTSDIR}/x11-fonts/urwfonts \ - rrdtool>=1.2:${PORTSDIR}/databases/rrdtool \ - geoiplookup:${PORTSDIR}/net/GeoIP +RUN_DEPENDS:= ${BUILD_DEPENDS} \ + ${LOCALBASE}/lib/X11/fonts/URW/a010013l.afm:${PORTSDIR}/x11-fonts/urwfonts DBDIR?= /var/db @@ -53,7 +51,6 @@ ## ## Available knobs: -## WITH_LOCALE: Enable locale (i18n) support. ## WITH_PCAP_PORT: Use libpcap from ports. ## WITH_XMLDUMP: Enable XML Dump support. ## @@ -64,7 +61,7 @@ .include .if defined(WITH_PCAP_PORT) -BUILD_DEPENDS+= ${LOCALBASE}/lib/libpcap.a:${PORTSDIR}/net/libpcap +LIB_DEPENDS+= pcap.1:${PORTSDIR}/net/libpcap CONFIGURE_ARGS+= --with-pcap-root=${LOCALBASE} .else CONFIGURE_ARGS+= --with-pcap-root=/usr Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/net/ntop/pkg-plist,v retrieving revision 1.20 diff -u -u -r1.20 pkg-plist --- pkg-plist 18 Aug 2011 23:17:11 -0000 1.20 +++ pkg-plist 28 Dec 2011 20:41:34 -0000 @@ -1,3 +1,4 @@ +@stopdaemon ntop bin/ntop etc/ntop/GeoIPASNum.dat etc/ntop/GeoLiteCity.dat @@ -453,7 +454,6 @@ %%DATADIR%%/python/templates/rrdAlarmConfigurator.tmpl %%DATADIR%%/python/templates/rrdAlarmConfiguratorHelp.tmpl %%DATADIR%%/python/templates/rrdAlarmStart.tmpl -@exec mkdir -p %%DBDIR%%/ntop @dirrm %%DATADIR%%/html/MochiKit @dirrm %%DATADIR%%/html/PlotKit @dirrm %%DATADIR%%/html/img_inquisitor @@ -475,3 +475,7 @@ @dirrm etc/ntop @dirrm lib/ntop/plugins @dirrm lib/ntop +@exec mkdir -p %%DBDIR%%/ntop +@exec chown -R nobody:nobody %%DBDIR%%/ntop +@unexec rmdir %%DBDIR%%/ntop 2>/dev/null || true +@unexec rmdir %%DBDIR%% 2>/dev/null || true Index: files/patch-Makefile.am =================================================================== RCS file: /home/pcvs/ports/net/ntop/files/patch-Makefile.am,v retrieving revision 1.8 diff -u -u -r1.8 patch-Makefile.am --- files/patch-Makefile.am 11 Feb 2011 13:34:49 -0000 1.8 +++ files/patch-Makefile.am 28 Dec 2011 20:41:34 -0000 @@ -1,6 +1,6 @@ ---- ./Makefile.am.orig 2011-02-02 10:24:56.000000000 +0100 -+++ ./Makefile.am 2011-02-02 10:50:06.000000000 +0100 -@@ -68,8 +68,6 @@ +--- Makefile.am.orig 2011-03-03 08:44:59.000000000 -0500 ++++ Makefile.am 2011-12-28 14:25:08.000000000 -0500 +@@ -61,8 +61,6 @@ ETTER_PASSIVE_FILE = etter.finger.os ETTER_PASSIVE = $(ETTER_PASSIVE_FILE).gz @@ -9,7 +9,25 @@ NTOPDATA = ntop-cert.pem \ $(ETTER_PASSIVE) \ -@@ -337,7 +335,6 @@ +@@ -303,15 +301,14 @@ + echo " WARNING: This install created a directory for the ntop"; \ + echo " files and databases:"; \ + echo ""; \ +- echo " $(DESTDIR)/$(datadir)/ntop"; \ ++ echo " $(CFG_DBFILE_DIR)"; \ + echo ""; \ + echo " This directory MUST be owned by the user"; \ + echo " which you are going to use to run ntop."; \ + echo ""; \ + echo " The command you must issue is something like:"; \ + echo ""; \ +- echo " chown -R ntop.ntop $(DESTDIR)/$(datadir)/ntop"; \ +- echo " or chown -R ntop:users $(DESTDIR)/$(datadir)/ntop"; \ ++ echo " chown -R nobody:nobody $(CFG_DBFILE_DIR)"; \ + echo ""; \ + echo " man chown to check the syntax for YOUR system"; \ + echo ""; \ +@@ -329,7 +326,6 @@ chcon -t textrel_shlib_t $(DESTDIR)$(libdir)/*ntop*.so install-data-local: ntop.txt ntop.html faq.html dnetter @@ -17,7 +35,7 @@ @if ! test -d $(DESTDIR)/$(datadir)/ntop; then \ $(top_srcdir)/mkinstalldirs $(DESTDIR)/$(datadir)/ntop; \ touch $(DESTDIR)/$(datadir)/ntop/warnuser; \ -@@ -373,21 +370,6 @@ +@@ -365,21 +361,6 @@ @echo "" @echo "" @echo -n "Preparing " @@ -39,7 +57,7 @@ @echo -n "New file lines are: " @gunzip -c oui.txt.gz | wc -l @echo "" -@@ -406,34 +388,6 @@ +@@ -398,34 +379,6 @@ @echo "Preparing " @echo "" Index: files/pkg-deinstall.in =================================================================== RCS file: /home/pcvs/ports/net/ntop/files/pkg-deinstall.in,v retrieving revision 1.2 diff -u -u -r1.2 pkg-deinstall.in --- files/pkg-deinstall.in 2 Aug 2009 19:35:02 -0000 1.2 +++ files/pkg-deinstall.in 28 Dec 2011 20:41:34 -0000 @@ -7,6 +7,7 @@ DEINSTALL) ;; POST-DEINSTALL) + if [ -d %%DBDIR%%/ntop ];then echo "===> post-deinstallation information for $1" echo "" echo " Please note that ntop was not completely removed" @@ -15,6 +16,7 @@ echo " %%DBDIR%%/ntop can be removed if this port will not be" echo " reinstalled." echo "" + fi ;; *) exit 64 --- ntop_patch.txt ends here --- ______________________________________________________________________ This email has been scanned and certified safe by SpammerTrap(r). For Information please see http://www.spammertrap.com/ ______________________________________________________________________ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 21:00:42 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24BC8106564A; Wed, 28 Dec 2011 21:00:42 +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 EF5A08FC14; Wed, 28 Dec 2011 21:00:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSL0fBN005736; Wed, 28 Dec 2011 21:00:41 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSL0f9a005730; Wed, 28 Dec 2011 21:00:41 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 21:00:41 GMT Message-Id: <201112282100.pBSL0f9a005730@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sylvio@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163682: [PATCH] net/ntop fix depends/fix chown on db X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 21:00:42 -0000 Synopsis: [PATCH] net/ntop fix depends/fix chown on db Responsible-Changed-From-To: freebsd-ports-bugs->sylvio Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 21:00:41 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163682 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 21:30:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 410181065673 for ; Wed, 28 Dec 2011 21: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 1D4B18FC1A for ; Wed, 28 Dec 2011 21:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSLUDYv032857 for ; Wed, 28 Dec 2011 21:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSLUD0C032853; Wed, 28 Dec 2011 21:30:13 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 21:30:13 GMT Resent-Message-Id: <201112282130.pBSLUD0C032853@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, Valery Komarov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECA7B1065687 for ; Wed, 28 Dec 2011 21:20:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id DBB0C8FC19 for ; Wed, 28 Dec 2011 21:20:44 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBSLKiUh025327 for ; Wed, 28 Dec 2011 21:20:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBSLKiTe025326; Wed, 28 Dec 2011 21:20:44 GMT (envelope-from nobody) Message-Id: <201112282120.pBSLKiTe025326@red.freebsd.org> Date: Wed, 28 Dec 2011 21:20:44 GMT From: Valery Komarov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163683: [update] devel/py-thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 21:30:14 -0000 >Number: 163683 >Category: ports >Synopsis: [update] devel/py-thrift >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 28 21:30:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Valery Komarov >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: >Description: update to 0.8.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ./py-thrift.orig/Makefile ./py-thrift/Makefile --- ./py-thrift.orig/Makefile 2011-12-23 16:41:16.000000000 +0400 +++ ./py-thrift/Makefile 2011-12-26 00:53:29.000000000 +0400 @@ -6,7 +6,7 @@ # PORTNAME= thrift -PORTVERSION= 0.7.0 +PORTVERSION= 0.8.0 PORTEPOCH= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -ruN ./py-thrift.orig/pkg-descr ./py-thrift/pkg-descr --- ./py-thrift.orig/pkg-descr 2009-07-05 01:32:30.000000000 +0400 +++ ./py-thrift/pkg-descr 2011-12-26 23:39:09.000000000 +0400 @@ -1,3 +1,3 @@ Python interface to Thrift. -WWW: http://incubator.apache.org/thrift/ +WWW: http://thrift.apache.org/ diff -ruN ./py-thrift.orig/pkg-plist ./py-thrift/pkg-plist --- ./py-thrift.orig/pkg-plist 2011-12-23 16:41:16.000000000 +0400 +++ ./py-thrift/pkg-plist 2011-12-26 00:55:48.000000000 +0400 @@ -10,6 +10,9 @@ %%PYTHON_SITELIBDIR%%/thrift/__init__.py %%PYTHON_SITELIBDIR%%/thrift/__init__.pyc %%PYTHON_SITELIBDIR%%/thrift/__init__.pyo +%%PYTHON_SITELIBDIR%%/thrift/protocol/TBase.py +%%PYTHON_SITELIBDIR%%/thrift/protocol/TBase.pyc +%%PYTHON_SITELIBDIR%%/thrift/protocol/TBase.pyo %%PYTHON_SITELIBDIR%%/thrift/protocol/TBinaryProtocol.py %%PYTHON_SITELIBDIR%%/thrift/protocol/TBinaryProtocol.pyc %%PYTHON_SITELIBDIR%%/thrift/protocol/TBinaryProtocol.pyo @@ -29,12 +32,12 @@ %%PYTHON_SITELIBDIR%%/thrift/server/TNonblockingServer.py %%PYTHON_SITELIBDIR%%/thrift/server/TNonblockingServer.pyc %%PYTHON_SITELIBDIR%%/thrift/server/TNonblockingServer.pyo -%%PYTHON_SITELIBDIR%%/thrift/server/TServer.py -%%PYTHON_SITELIBDIR%%/thrift/server/TServer.pyc -%%PYTHON_SITELIBDIR%%/thrift/server/TServer.pyo %%PYTHON_SITELIBDIR%%/thrift/server/TProcessPoolServer.py %%PYTHON_SITELIBDIR%%/thrift/server/TProcessPoolServer.pyc %%PYTHON_SITELIBDIR%%/thrift/server/TProcessPoolServer.pyo +%%PYTHON_SITELIBDIR%%/thrift/server/TServer.py +%%PYTHON_SITELIBDIR%%/thrift/server/TServer.pyc +%%PYTHON_SITELIBDIR%%/thrift/server/TServer.pyo %%PYTHON_SITELIBDIR%%/thrift/server/__init__.py %%PYTHON_SITELIBDIR%%/thrift/server/__init__.pyc %%PYTHON_SITELIBDIR%%/thrift/server/__init__.pyo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 21:30:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A0A010656B6 for ; Wed, 28 Dec 2011 21:30: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 C2B428FC15 for ; Wed, 28 Dec 2011 21:30:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSLULTY033305 for ; Wed, 28 Dec 2011 21:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSLULXs033296; Wed, 28 Dec 2011 21:30:21 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 21:30:21 GMT Resent-Message-Id: <201112282130.pBSLULXs033296@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, Jimmy Olgeni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D9B01065675 for ; Wed, 28 Dec 2011 21:30:02 +0000 (UTC) (envelope-from g.olgeni@colby.it) Received: from mail.colby.tv (93-62-141-58.ip22.fastwebnet.it [93.62.141.58]) by mx1.freebsd.org (Postfix) with ESMTP id AFA868FC08 for ; Wed, 28 Dec 2011 21:30:00 +0000 (UTC) Received: from server.colby.local (localhost [127.0.0.1]) by server.colby.local (8.14.5/8.14.5) with ESMTP id pBSLTxiQ017719; Wed, 28 Dec 2011 22:29:59 +0100 (CET) (envelope-from g.olgeni@colby.it) Received: from exchange.colby.local ([192.168.1.11] helo=exchange.colby.local) with IPv4:25 by server.colby.local; 28 Dec 2011 22:29:59 +0100 Received: from backoffice.colby.local ([192.168.1.56]) by exchange.colby.local over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Wed, 28 Dec 2011 22:29:59 +0100 Received: from backoffice.colby.local (localhost [127.0.0.1]) by backoffice.colby.local (8.14.5/8.14.5) with ESMTP id pBSLTxGD037824; Wed, 28 Dec 2011 22:29:59 +0100 (CET) (envelope-from olgeni@backoffice.colby.local) Received: (from olgeni@localhost) by backoffice.colby.local (8.14.5/8.14.5/Submit) id pBSLTxu5037823; Wed, 28 Dec 2011 22:29:59 +0100 (CET) (envelope-from olgeni) Message-Id: <201112282129.pBSLTxu5037823@backoffice.colby.local> Date: Wed, 28 Dec 2011 22:29:59 +0100 (CET) From: Jimmy Olgeni To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: peter.schuller@infidyne.com Subject: ports/163684: [PATCH] lang/clojure-mode.el: update to 1.11.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: Wed, 28 Dec 2011 21:30:22 -0000 >Number: 163684 >Category: ports >Synopsis: [PATCH] lang/clojure-mode.el: update to 1.11.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: Wed Dec 28 21:30:21 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 9.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD olgeni 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #0: Mon Nov 28 20:25:34 CET 2011 >Description: Followup to ports/150940, this time with proper MASTER_SITES from the Marmalade repository. - Update to 1.11.5 Removed file(s): - pkg-plist See also the new lang/clojure-test-mode.el port after the patch. Port maintainer (peter.schuller@infidyne.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- clojure-mode.el-1.11.5,1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/lang/clojure-mode.el/Makefile,v retrieving revision 1.8 diff -u -u -r1.8 Makefile --- Makefile 17 Oct 2011 06:01:27 -0000 1.8 +++ Makefile 28 Dec 2011 21:23:00 -0000 @@ -6,23 +6,27 @@ # PORTNAME= clojure-mode.el -PORTVERSION= 20090718 -PORTREVISION= 6 +PORTVERSION= 1.11.5 +PORTEPOCH= 1 CATEGORIES= lang elisp -MASTER_SITES= http://distfiles.scode.org/ports/ -DISTNAME= clojure-mode-${PORTVERSION} +MASTER_SITES= http://marmalade-repo.org/packages/ +DISTNAME= clojure-mode-${PORTVERSION}.el +EXTRACT_SUFX= +EXTRACT_ONLY= MAINTAINER= peter.schuller@infidyne.com COMMENT= Emacs lisp module for the Clojure language +RUN_DEPENDS= ${EMACS_SITE_LISPDIR}/clojure-test-mode.el:${PORTSDIR}/lang/clojure-test-mode.el + USE_EMACS= yes NO_BUILD= yes -WRKSRC= ${WRKDIR}/clojure-mode + +PLIST_FILES= ${EMACS_SITE_LISPDIR}/clojure-mode.el do-install: - ${INSTALL_DATA} ${WRKSRC}/clojure-mode.el ${PREFIX}/${EMACS_SITE_LISPDIR}/clojure-mode.el - ${INSTALL_DATA} ${WRKSRC}/clojure-test-mode.el ${PREFIX}/${EMACS_SITE_LISPDIR}/clojure-test-mode.el + @${INSTALL_DATA} ${DISTDIR}/clojure-mode-${PORTVERSION}.el ${PREFIX}/${EMACS_SITE_LISPDIR}/clojure-mode.el post-install: @${CAT} ${PKGMESSAGE} Index: distinfo =================================================================== RCS file: /home/pcvs/ports/lang/clojure-mode.el/distinfo,v retrieving revision 1.3 diff -u -u -r1.3 distinfo --- distinfo 3 Jul 2011 13:45:08 -0000 1.3 +++ distinfo 28 Dec 2011 21:23:00 -0000 @@ -1,2 +1,2 @@ -SHA256 (clojure-mode-20090718.tar.gz) = 6dc5f4cb09c11182a5d4bbee5b519182223f429f2240e1306e8aa4c6201e6192 -SIZE (clojure-mode-20090718.tar.gz) = 10734 +SHA256 (clojure-mode-1.11.5.el) = e56a1f0bbdecb22d2dfe2141ec04a63750eb3251655e10766fd4a3f5b26719d8 +SIZE (clojure-mode-1.11.5.el) = 38828 Index: pkg-descr =================================================================== RCS file: /home/pcvs/ports/lang/clojure-mode.el/pkg-descr,v retrieving revision 1.1 diff -u -u -r1.1 pkg-descr --- pkg-descr 26 Dec 2008 05:34:51 -0000 1.1 +++ pkg-descr 28 Dec 2011 21:23:00 -0000 @@ -1,4 +1,3 @@ -clojure-mode is an emacs editing mode for the clojure -(www.clojure.org) programming language. +clojure-mode is an Emacs editing mode for the Clojure programming language. -WWW: http://clojure.codestuffs.com/ +WWW: https://github.com/technomancy/clojure-mode Index: pkg-message =================================================================== RCS file: /home/pcvs/ports/lang/clojure-mode.el/pkg-message,v retrieving revision 1.2 diff -u -u -r1.2 pkg-message --- pkg-message 18 Sep 2009 23:36:15 -0000 1.2 +++ pkg-message 28 Dec 2011 21:23:00 -0000 @@ -3,12 +3,6 @@ (autoload 'clojure-mode "clojure-mode" "A mode for clojure lisp" t) (add-to-list 'auto-mode-alist '("\\.clj$" . clojure-mode)) -And for clojure-test-mode: - - (autoload 'clojure-test-mode "clojure-test-mode" "Clojure test mode" t) - (autoload 'clojure-test-maybe-enable "clojure-test-mode" "" t) - (add-hook 'clojure-mode-hook 'clojure-test-maybe-enable) - In addition, if you are also using paredit, you may wish to make it more clojure aware: Index: pkg-plist =================================================================== RCS file: pkg-plist diff -N pkg-plist --- pkg-plist 18 Sep 2009 23:36:15 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,2 +0,0 @@ -%%EMACS_SITE_LISPDIR%%/clojure-mode.el -%%EMACS_SITE_LISPDIR%%/clojure-test-mode.el --- clojure-mode.el-1.11.5,1.patch ends here --- --- clojure-test-mode.el.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: # # clojure-test-mode.el # clojure-test-mode.el/distinfo # clojure-test-mode.el/Makefile # clojure-test-mode.el/pkg-message # clojure-test-mode.el/pkg-descr # echo c - clojure-test-mode.el mkdir -p clojure-test-mode.el > /dev/null 2>&1 echo x - clojure-test-mode.el/distinfo sed 's/^X//' >clojure-test-mode.el/distinfo << '3cd430fc810d7fcd600ea4fda1aef291' XSHA256 (clojure-test-mode-1.6.0.el) = 6cd343fa9f5771203804b97a3c75a3059708198217dde91a7d4d3cd6029a657e XSIZE (clojure-test-mode-1.6.0.el) = 16832 3cd430fc810d7fcd600ea4fda1aef291 echo x - clojure-test-mode.el/Makefile sed 's/^X//' >clojure-test-mode.el/Makefile << '3264d006134a6bff16d1e552ca09b71b' X# New ports collection makefile for: clojure-test-mode.el X# Date created: 28 Dec 2011 X# Whom: Jimmy Olgeni X# X# $FreeBSD$ X# X XPORTNAME= clojure-test-mode.el XPORTVERSION= 1.6.0 XCATEGORIES= lang elisp XMASTER_SITES= http://marmalade-repo.org/packages/ XDISTNAME= clojure-test-mode-${PORTVERSION}.el XEXTRACT_SUFX= XEXTRACT_ONLY= X XMAINTAINER= peter.schuller@infidyne.com XCOMMENT= Emacs lisp module for running Clojure tests X XUSE_EMACS= yes X XNO_BUILD= yes X XPLIST_FILES= ${EMACS_SITE_LISPDIR}/clojure-test-mode.el X Xdo-install: X @${INSTALL_DATA} ${DISTDIR}/clojure-test-mode-${PORTVERSION}.el ${PREFIX}/${EMACS_SITE_LISPDIR}/clojure-test-mode.el X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include 3264d006134a6bff16d1e552ca09b71b echo x - clojure-test-mode.el/pkg-message sed 's/^X//' >clojure-test-mode.el/pkg-message << '001af80a79e92741d8516b5af9c78008' XTo use clojure-test-mode in Emacs, add the following lines to your ~/.emacs: X X (autoload 'clojure-test-mode "clojure-test-mode" "Clojure test mode" t) X (autoload 'clojure-test-maybe-enable "clojure-test-mode" "" t) X (add-hook 'clojure-mode-hook 'clojure-test-maybe-enable) 001af80a79e92741d8516b5af9c78008 echo x - clojure-test-mode.el/pkg-descr sed 's/^X//' >clojure-test-mode.el/pkg-descr << 'a0fd18764fb6ec9eff4f98531134b577' Xclojure-test-mode is an Emacs editing mode for running Clojure tests. X XWWW: https://github.com/technomancy/clojure-mode a0fd18764fb6ec9eff4f98531134b577 exit --- clojure-test-mode.el.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 21:30:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC40010656A3; Wed, 28 Dec 2011 21: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 C2E888FC1E; Wed, 28 Dec 2011 21:30:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSLUPFj033714; Wed, 28 Dec 2011 21:30:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSLUPnB033702; Wed, 28 Dec 2011 21:30:25 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 21:30:25 GMT Message-Id: <201112282130.pBSLUPnB033702@freefall.freebsd.org> To: komarov@valerka.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163683: [update] devel/py-thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 21:30:26 -0000 Synopsis: [update] devel/py-thrift State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Dec 28 21:30:24 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163683 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 21:30:42 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C60D6106566C; Wed, 28 Dec 2011 21:30:42 +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 9C6828FC29; Wed, 28 Dec 2011 21:30:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSLUgDY035330; Wed, 28 Dec 2011 21:30:42 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSLUg4A035321; Wed, 28 Dec 2011 21:30:42 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 21:30:42 GMT Message-Id: <201112282130.pBSLUg4A035321@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163684: [PATCH] lang/clojure-mode.el: update to 1.11.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: Wed, 28 Dec 2011 21:30:42 -0000 Synopsis: [PATCH] lang/clojure-mode.el: update to 1.11.5 Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 21:30:41 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163684 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 21:40:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A71B106567A for ; Wed, 28 Dec 2011 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 593FA8FC0C for ; Wed, 28 Dec 2011 21:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSLeBE9043484 for ; Wed, 28 Dec 2011 21:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSLeB60043483; Wed, 28 Dec 2011 21:40:11 GMT (envelope-from gnats) Date: Wed, 28 Dec 2011 21:40:11 GMT Message-Id: <201112282140.pBSLeB60043483@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163683: [update] devel/py-thrift 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, 28 Dec 2011 21:40:11 -0000 The following reply was made to PR ports/163683; it has been noted by GNATS. From: Edwin Groothuis To: jdugan@x1024.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/163683: [update] devel/py-thrift Date: Wed, 28 Dec 2011 21:30:21 UT Maintainer of devel/py-thrift, Please note that PR ports/163683 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/163683 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 21:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE340106564A for ; Wed, 28 Dec 2011 21: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 1771F8FC13 for ; Wed, 28 Dec 2011 21:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSLo610052250 for ; Wed, 28 Dec 2011 21:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSLo6Mo052245; Wed, 28 Dec 2011 21:50:06 GMT (envelope-from gnats) Date: Wed, 28 Dec 2011 21:50:06 GMT Message-Id: <201112282150.pBSLo6Mo052245@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Valery Komarov Cc: Subject: Re: ports/163150: [patch][update] net/scribe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Valery Komarov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 21:50:09 -0000 The following reply was made to PR ports/163150; it has been noted by GNATS. From: Valery Komarov To: bug-followup@FreeBSD.org, komarov@valerka.net Cc: Subject: Re: ports/163150: [patch][update] net/scribe Date: Thu, 29 Dec 2011 01:49:50 +0400 Can you send build log? Because I've not any build error. .... gmake[3]: Leaving directory `/var/ports/basejail/usr/ports/net/scribe/work/facebook-scribe-6600084/src' gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/net/scribe/work/facebook-scribe-6600084/src' Making all in lib/py gmake[2]: Entering directory `/var/ports/basejail/usr/ports/net/scribe/work/facebook-scribe-6600084/lib/py' /usr/local/bin/python2.7 setup.py build running build running build_py creating build creating build/lib creating build/lib/scribe copying scribe/__init__.py -> build/lib/scribe copying scribe/constants.py -> build/lib/scribe copying scribe/scribe.py -> build/lib/scribe copying scribe/ttypes.py -> build/lib/scribe gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/net/scribe/work/facebook-scribe-6600084/lib/py' gmake[1]: Leaving directory `/var/ports/basejail/usr/ports/net/scribe/work/facebook-scribe-6600084' # From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 22:40:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB8FE1065673 for ; Wed, 28 Dec 2011 22: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 A58CC8FC16 for ; Wed, 28 Dec 2011 22:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSMe80B097878 for ; Wed, 28 Dec 2011 22:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSMe8iH097877; Wed, 28 Dec 2011 22:40:08 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 22:40:08 GMT Resent-Message-Id: <201112282240.pBSMe8iH097877@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, James Bailie Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26037106566C for ; Wed, 28 Dec 2011 22:39:43 +0000 (UTC) (envelope-from jimmy@mammothcheese.ca) Received: from nm16.access.bullet.mail.mud.yahoo.com (nm16.access.bullet.mail.mud.yahoo.com [66.94.237.217]) by mx1.freebsd.org (Postfix) with SMTP id D91058FC0C for ; Wed, 28 Dec 2011 22:39:42 +0000 (UTC) Received: from [66.94.237.200] by nm16.access.bullet.mail.mud.yahoo.com with NNFMP; 28 Dec 2011 22:39:42 -0000 Received: from [98.139.221.66] by tm11.access.bullet.mail.mud.yahoo.com with NNFMP; 28 Dec 2011 22:39:42 -0000 Received: from [127.0.0.1] by smtp103.rog.mail.bf1.yahoo.com with NNFMP; 28 Dec 2011 22:39:42 -0000 Received: from localhost (jimmy@99.255.2.249 with login) by smtp103.rog.mail.bf1.yahoo.com with SMTP; 28 Dec 2011 14:39:40 -0800 PST Received: by localhost (sSMTP sendmail emulation); Wed, 28 Dec 2011 17:39:40 -0500 Message-Id: <199030.7323.bm@smtp103.rog.mail.bf1.yahoo.com> Date: Wed, 28 Dec 2011 17:39:40 -0500 From: "Charlie &" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163685: Update Port: devel/libdombey => 1.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 22:40:09 -0000 >Number: 163685 >Category: ports >Synopsis: Update Port: devel/libdombey => 1.14 >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 Dec 28 22:40:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 9.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD localhost 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #13: Mon Dec 26 13:32:50 EST 2011 root@localhost:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: --- libdombey.diff begins here --- diff -ruN /usr/ports/devel/libdombey/Makefile ./libdombey/Makefile --- /usr/ports/devel/libdombey/Makefile 2011-12-04 00:50:02.000000000 -0500 +++ ./libdombey/Makefile 2011-12-28 15:54:10.000000000 -0500 @@ -6,7 +6,7 @@ # PORTNAME= libdombey -PORTVERSION= 1.13 +PORTVERSION= 1.14 CATEGORIES= devel MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/devel/libdombey/distinfo ./libdombey/distinfo --- /usr/ports/devel/libdombey/distinfo 2011-12-04 00:50:02.000000000 -0500 +++ ./libdombey/distinfo 2011-12-28 17:36:00.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (libdombey-1.13.tar.gz) = e5b91ef44bd11e794de157e1790834f62a1c443ebb28f688b371f3647726453f -SIZE (libdombey-1.13.tar.gz) = 14466 +SHA256 (libdombey-1.14.tar.gz) = 158f90e7b9078306a23700585637d4c12a2b1f024ca2d79e5d2c9f5ab3b1a0ae +SIZE (libdombey-1.14.tar.gz) = 14705 --- libdombey.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 22:40:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF35C1065670; Wed, 28 Dec 2011 22: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 A5A568FC0A; Wed, 28 Dec 2011 22:40:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSMeIS1098143; Wed, 28 Dec 2011 22:40:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSMeIvv098134; Wed, 28 Dec 2011 22:40:18 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 22:40:18 GMT Message-Id: <201112282240.pBSMeIvv098134@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163685: Update Port: devel/libdombey => 1.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 22:40:18 -0000 Synopsis: Update Port: devel/libdombey => 1.14 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 22:40:18 UTC 2011 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163685 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 22:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1011A1065687 for ; Wed, 28 Dec 2011 22: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 DB65A8FC17 for ; Wed, 28 Dec 2011 22:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSMoAYX006866 for ; Wed, 28 Dec 2011 22:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSMoAmX006865; Wed, 28 Dec 2011 22:50:10 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 22:50:10 GMT Resent-Message-Id: <201112282250.pBSMoAmX006865@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, James Bailie Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31414106566C for ; Wed, 28 Dec 2011 22:41:06 +0000 (UTC) (envelope-from jimmy@mammothcheese.ca) Received: from nm9.access.bullet.mail.mud.yahoo.com (nm9.access.bullet.mail.mud.yahoo.com [66.94.237.210]) by mx1.freebsd.org (Postfix) with SMTP id EFF9C8FC14 for ; Wed, 28 Dec 2011 22:41:05 +0000 (UTC) Received: from [66.94.237.198] by nm9.access.bullet.mail.mud.yahoo.com with NNFMP; 28 Dec 2011 22:41:05 -0000 Received: from [98.139.221.70] by tm9.access.bullet.mail.mud.yahoo.com with NNFMP; 28 Dec 2011 22:41:05 -0000 Received: from [127.0.0.1] by smtp107.rog.mail.bf1.yahoo.com with NNFMP; 28 Dec 2011 22:41:05 -0000 Received: from localhost (jimmy@99.255.2.249 with login) by smtp107.rog.mail.bf1.yahoo.com with SMTP; 28 Dec 2011 14:41:04 -0800 PST Received: by localhost (sSMTP sendmail emulation); Wed, 28 Dec 2011 17:41:03 -0500 Message-Id: <337916.58709.bm@smtp107.rog.mail.bf1.yahoo.com> Date: Wed, 28 Dec 2011 17:41:03 -0500 From: "Charlie &" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163686: Update Port: devel/libserver => 1.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 22:50:11 -0000 >Number: 163686 >Category: ports >Synopsis: Update Port: devel/libserver => 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: Wed Dec 28 22:50:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 9.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD localhost 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #13: Mon Dec 26 13:32:50 EST 2011 root@localhost:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: --- libserver.diff begins here --- diff -ruN /usr/ports/devel/libserver/Makefile ./libserver/Makefile --- /usr/ports/devel/libserver/Makefile 2011-11-11 12:23:45.000000000 -0500 +++ ./libserver/Makefile 2011-12-26 10:28:37.000000000 -0500 @@ -6,7 +6,7 @@ # PORTNAME= libserver -PORTVERSION= 1.8 +PORTVERSION= 1.9 CATEGORIES= devel MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/devel/libserver/distinfo ./libserver/distinfo --- /usr/ports/devel/libserver/distinfo 2011-11-11 12:23:45.000000000 -0500 +++ ./libserver/distinfo 2011-12-28 17:20:19.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (libserver-1.8.tar.gz) = f1a2231fcd47b35a191df96d52d3fc4ea62988fde11fd7a8b10dac9069133825 -SIZE (libserver-1.8.tar.gz) = 9772 +SHA256 (libserver-1.9.tar.gz) = 0892679e8b18838f1a1c89ea3c55c16cba3e45a78be8487dfab19b09cd44bcab +SIZE (libserver-1.9.tar.gz) = 10341 diff -ruN /usr/ports/devel/libserver/pkg-descr ./libserver/pkg-descr --- /usr/ports/devel/libserver/pkg-descr 2011-10-22 19:49:50.000000000 -0400 +++ ./libserver/pkg-descr 2011-12-28 17:38:22.000000000 -0500 @@ -1,7 +1,7 @@ -libserver implements a generic multi-process TCP server which is incapable -of servicing connections on its own. The programmer writes an -initialization function and a function to service connections, then -compiles and links his or her code against the library to create a complete -multi-process TCP server. +libserver implements a generic multi-process TCP or UNIX-domain server +which is incapable of servicing connections on its own. The programmer +writes an initialization function and a function to service connections, +then compiles and links his or her code against the library to create a +complete server. WWW: http://www.mammothcheese.ca/ --- libserver.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 22:50:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7A91106564A; Wed, 28 Dec 2011 22:50: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 AE4B38FC0C; Wed, 28 Dec 2011 22:50:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSMoL73007213; Wed, 28 Dec 2011 22:50:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSMoLD2007208; Wed, 28 Dec 2011 22:50:21 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 22:50:21 GMT Message-Id: <201112282250.pBSMoLD2007208@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163686: Update Port: devel/libserver => 1.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: Wed, 28 Dec 2011 22:50:21 -0000 Synopsis: Update Port: devel/libserver => 1.9 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 28 22:50:21 UTC 2011 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163686 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 23:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84FFC1065670 for ; Wed, 28 Dec 2011 23: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 397B28FC1E for ; Wed, 28 Dec 2011 23:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSNKA9X033875 for ; Wed, 28 Dec 2011 23:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSNKAmd033874; Wed, 28 Dec 2011 23:20:10 GMT (envelope-from gnats) Resent-Date: Wed, 28 Dec 2011 23:20:10 GMT Resent-Message-Id: <201112282320.pBSNKAmd033874@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, Mel Flynn Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B9A7106566B for ; Wed, 28 Dec 2011 23:17:03 +0000 (UTC) (envelope-from mel@datakitty.lan.rachie.is-a-geek.net) Received: from datakitty.lan.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id EBBFE8FC0A for ; Wed, 28 Dec 2011 23:17:02 +0000 (UTC) Received: from datakitty.lan.rachie.is-a-geek.net (localhost [127.0.0.1]) by datakitty.lan.rachie.is-a-geek.net (8.14.5/8.14.5) with ESMTP id pBSNGvtC023315; Wed, 28 Dec 2011 14:16:57 -0900 (AKST) (envelope-from mel@datakitty.lan.rachie.is-a-geek.net) Received: (from mel@localhost) by datakitty.lan.rachie.is-a-geek.net (8.14.5/8.14.5/Submit) id pBSNGuRF023314; Wed, 28 Dec 2011 14:16:56 -0900 (AKST) (envelope-from mel) Message-Id: <201112282316.pBSNGuRF023314@datakitty.lan.rachie.is-a-geek.net> Date: Wed, 28 Dec 2011 14:16:56 -0900 (AKST) From: Mel Flynn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: MAINTAINER Subject: ports/163687: [patch] net/nss_ldap: Fix build if not using use.perl. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mel Flynn List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2011 23:20:10 -0000 >Number: 163687 >Category: ports >Synopsis: [patch] net/nss_ldap: Fix build if not using use.perl. >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 Dec 28 23:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Mel Flynn >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD datakitty.lan.rachie.is-a-geek.net 8.2-STABLE FreeBSD 8.2-STABLE #5: Fri Nov 11 11:35:54 AKST 2011 mel@datakitty.lan.rachie.is-a-geek.net:/data/obj/data/RELENG_8/src/sys/GENERIC amd64 >Description: When perl is installed without symlinks in /usr, build fails. >How-To-Repeat: sudo rm -f /usr/bin/perl && make -C /usr/ports/net/nss_ldap \ -DWITHOUT_USE_PERL build >Fix: --- net::nss_ldap::Makefile begins here --- --- Makefile.orig 2011-12-03 09:45:42.000000000 -0900 +++ Makefile 2011-12-18 13:35:40.000000000 -0900 @@ -58,6 +58,8 @@ ${WRKSRC}/ldap.conf @${REINPLACE_CMD} 's,/etc/ldap\.,${PREFIX}/etc/nss_ldap.,g' \ ${WRKSRC}/${MAN5} + @${REINPLACE_CMD} 's,#!/usr/bin/perl,#!${PERL5},' \ + ${WRKSRC}/vers_string # XXX: newer autoconf's rely on the compiler result, not the preprocessor # for checking headers, so the configure.in needs to be fixed upstream --- net::nss_ldap::Makefile ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 23:20:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 625C7106566B; Wed, 28 Dec 2011 23:20: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 37EFC8FC14; Wed, 28 Dec 2011 23:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSNKLKr034245; Wed, 28 Dec 2011 23:20:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSNKLH5034236; Wed, 28 Dec 2011 23:20:21 GMT (envelope-from edwin) Date: Wed, 28 Dec 2011 23:20:21 GMT Message-Id: <201112282320.pBSNKLH5034236@freefall.freebsd.org> To: rflynn@acsalaska.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163687: [patch] net/nss_ldap: Fix build if not using use.perl. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 28 Dec 2011 23:20:21 -0000 Synopsis: [patch] net/nss_ldap: Fix build if not using use.perl. State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Dec 28 23:20:20 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163687 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 28 23:30:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC5D11065686 for ; Wed, 28 Dec 2011 23: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 EB5F18FC2D for ; Wed, 28 Dec 2011 23:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBSNUCS4042364 for ; Wed, 28 Dec 2011 23:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBSNUCae042359; Wed, 28 Dec 2011 23:30:12 GMT (envelope-from gnats) Date: Wed, 28 Dec 2011 23:30:12 GMT Message-Id: <201112282330.pBSNUCae042359@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163687: [patch] net/nss_ldap: Fix build if not using use.perl. 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, 28 Dec 2011 23:30:16 -0000 The following reply was made to PR ports/163687; it has been noted by GNATS. From: Edwin Groothuis To: mikeg@bsd-box.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/163687: [patch] net/nss_ldap: Fix build if not using use.perl. Date: Wed, 28 Dec 2011 23:20:18 UT Maintainer of net/nss_ldap, Please note that PR ports/163687 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/163687 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 00:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF73F1065677 for ; Thu, 29 Dec 2011 00: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 B40108FC13 for ; Thu, 29 Dec 2011 00:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBT0UAGk099637 for ; Thu, 29 Dec 2011 00:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBT0UASe099633; Thu, 29 Dec 2011 00:30:10 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 00:30:10 GMT Resent-Message-Id: <201112290030.pBT0UASe099633@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, Takeharu KATO Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEE85106566C for ; Thu, 29 Dec 2011 00:29:21 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B3BD18FC0A for ; Thu, 29 Dec 2011 00:29:21 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBT0TLXh061569 for ; Thu, 29 Dec 2011 00:29:21 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBT0TLsu061568; Thu, 29 Dec 2011 00:29:21 GMT (envelope-from nobody) Message-Id: <201112290029.pBT0TLsu061568@red.freebsd.org> Date: Thu, 29 Dec 2011 00:29:21 GMT From: Takeharu KATO To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163688: net/samba4-devel build stops X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 00:30:11 -0000 >Number: 163688 >Category: ports >Synopsis: net/samba4-devel build stops >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: Thu Dec 29 00:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Takeharu KATO >Release: 8.2-RELEASE >Organization: >Environment: 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 >Description: Can not build samba4-devel whichh is need to build x11/gnome2. error messages: param/pyparam_util.c: In function 'lp_from_py_object': param/pyparam_util.c:50: error: expected expression before 'struct' same error occurs in lib/talloc/pytalloc.c >How-To-Repeat: type make install in /usr/ports/net/samba4-devel. >Fix: Apply the attached patches. 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: # # patch-lib__talloc__pytalloc.c # patch-source4-param-pyparam_util.c # echo x - patch-lib__talloc__pytalloc.c sed 's/^X//' >patch-lib__talloc__pytalloc.c << '9b446a1daafb203374432eb68707cf33' X--- lib/talloc/pytalloc.c.orig 2011-12-28 04:17:32.076825692 +0900 X+++ lib/talloc/pytalloc.c 2011-12-28 04:22:03.628624873 +0900 X@@ -18,8 +18,8 @@ X */ X X #include "replace.h" X-#include X-#include X+#include "talloc.h" X+#include "pytalloc.h" X X /** X * Simple dealloc for talloc-wrapping PyObjects 9b446a1daafb203374432eb68707cf33 echo x - patch-source4-param-pyparam_util.c sed 's/^X//' >patch-source4-param-pyparam_util.c << '4dce954c747fc74cba6022905e0f9b1f' X--- source4/param/pyparam_util.c.orig 2011-12-28 04:07:27.962289417 +0900 X+++ source4/param/pyparam_util.c 2011-12-28 04:04:04.891668850 +0900 X@@ -21,7 +21,7 @@ X #include "includes.h" X #include "param/param.h" X #include "param/loadparm.h" X-#include "pytalloc.h" X+#include "lib/talloc/pytalloc.h" X X #define PyLoadparmContext_AsLoadparmContext(obj) py_talloc_get_type(obj, struct loadparm_context) X 4dce954c747fc74cba6022905e0f9b1f exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 00:30:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D06F106567E; Thu, 29 Dec 2011 00:30: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 737598FC1B; Thu, 29 Dec 2011 00:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBT0UNXL000640; Thu, 29 Dec 2011 00:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBT0UNHV000630; Thu, 29 Dec 2011 00:30:23 GMT (envelope-from edwin) Date: Thu, 29 Dec 2011 00:30:23 GMT Message-Id: <201112290030.pBT0UNHV000630@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163688: net/samba4-devel build stops X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 00:30:23 -0000 Synopsis: net/samba4-devel build stops Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 29 00:30:22 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163688 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 01:07:45 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C641106566C; Thu, 29 Dec 2011 01:07: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 3395A8FC08; Thu, 29 Dec 2011 01:07:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBT17j5a037405; Thu, 29 Dec 2011 01:07:45 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBT17j8Z037401; Thu, 29 Dec 2011 01:07:45 GMT (envelope-from wen) Date: Thu, 29 Dec 2011 01:07:45 GMT Message-Id: <201112290107.pBT17j8Z037401@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/163681: Update math/coinmp to version 1.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: Thu, 29 Dec 2011 01:07:45 -0000 Synopsis: Update math/coinmp to version 1.6.0 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Thu Dec 29 01:07:44 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163681 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 01:11:55 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89DC21065672; Thu, 29 Dec 2011 01:11:55 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5CD168FC12; Thu, 29 Dec 2011 01:11:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBT1BtqM045676; Thu, 29 Dec 2011 01:11:55 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBT1BtcP045672; Thu, 29 Dec 2011 01:11:55 GMT (envelope-from rakuco) Date: Thu, 29 Dec 2011 01:11:55 GMT Message-Id: <201112290111.pBT1BtcP045672@freefall.freebsd.org> To: vsityz@gmail.com, rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/163648: kdelibs-4.7.3_1 stop during assembly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 01:11:55 -0000 Synopsis: kdelibs-4.7.3_1 stop during assembly State-Changed-From-To: open->closed State-Changed-By: rakuco State-Changed-When: Thu Dec 29 01:11:54 UTC 2011 State-Changed-Why: Looks like a duplicate of ports/163138. Please make sure you have devel/automoc4 0.9.88_2. http://www.freebsd.org/cgi/query-pr.cgi?pr=163648 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 02:06:27 2011 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 7ECD3106566B for ; Thu, 29 Dec 2011 02:06:27 +0000 (UTC) (envelope-from giffunip@tutopia.com) Received: from nm16-vm0.bullet.mail.sp2.yahoo.com (nm16-vm0.bullet.mail.sp2.yahoo.com [98.139.91.210]) by mx1.freebsd.org (Postfix) with SMTP id 43D568FC08 for ; Thu, 29 Dec 2011 02:06:27 +0000 (UTC) Received: from [98.139.91.70] by nm16.bullet.mail.sp2.yahoo.com with NNFMP; 29 Dec 2011 01:53:31 -0000 Received: from [98.139.91.59] by tm10.bullet.mail.sp2.yahoo.com with NNFMP; 29 Dec 2011 01:52:31 -0000 Received: from [127.0.0.1] by omp1059.mail.sp2.yahoo.com with NNFMP; 29 Dec 2011 01:52:31 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 584895.78739.bm@omp1059.mail.sp2.yahoo.com Received: (qmail 35009 invoked by uid 60001); 29 Dec 2011 01:52:31 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1325123551; bh=YicMJTZC6IEK4cJZngIP6VvjiIRDUH+mCkL/s2vC2vI=; h=X-YMail-OSG:Received:X-RocketYMMF:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=C3Pgun53UqhEyJ/a1/RX79CxXM6g5QfJny31PO5ZfKwX92ou9LKJp8MLLz9uW8eyvmxEwS4R0wqhkb9zqQVDIjD+TWtBU4H4Ag1M3SdM2GHizVDT27TE847pPuuhqxFov7XlVaBw2kdhTXMNDVQ8/ZkXRVQYzCFG6VawIFVBpK4= X-YMail-OSG: Y2oEssYVM1klvREPBe3N54oXbQHYUfNYfE2DWV5Fnq87ozu h2KOgz5Z.zrsLmcdCatpA1Jx3ZZsq2p8LpDQWPOLlTcb3FqzlN2KQopjLbCt 9xXbnfS1FIQv49NqSF67hk.fJdvSkEBmHMqeh_msXQJ.SxkqII_IaZWMVzU5 UnD23WDTex6DR.2ZHH8UmOqfaa4xfRQdg8qF15_GyITtiXFzszez2.j_GSBC Yl7EUvE_pEcOF3U5B6FQfypvnRj6Td5h.HDHphb.kApzjLhPz34bqOiDvvA4 0vRF7lsgsKuZvjjATGgRX5m0bTPLOtNNQ3I4aTlIAvP2EkZKIUMJpEMaKO6u FNnlI.IgE.HDuVZq3jnkoYimxzcSnrFIfn.5gvL5o5UNJz1iCWikI88O72sR hxYs7k.9lqbUrGrEs9qwOb9wN86ipQJUF8wEEIyzBTaDvnpKX5fT_aiBiv1e JlBO0re_zJaI3vd2cGIDwlVUIR1e4J1CEelCddNz9b8oOw7qQiS8._BRwKeI 1isl_3ZQ1I2gL7TF42jn711jy6ZUcNW0nF7i7fuLJEmGajvve8E.Z_vCx28Z vZ0dNX.64a_fN0w8QbuSzEVQG6eXJarF3rkb6KS6yPGoexKN6NT9DURj3U38 ooVqBI.0OlPog5HpeWUKIskCwa_Ka1EJe9OX4gLtofNXx0zUh0AKGSIGEf80 BhLCVaxxsRqsPOFuRSj7QVVLnEli5fHc5LWsHFCjr5MpL__4JvlAyqAkQd0V zDHGsk05KE02L4mV_C2Aohp43IsaYV28bZk0W0Q__yunK3kkXDo32S1KpwXg UWBFAXB7g7gGTrxusgfZXS5J6wRIC..3LgAXZeH6ibMArJl2scPQi1iHyoAv LLoLJyswEFjrex1OMQ7DJrHujdGLLbJU27yz1sYvpXgkcdI4thtgmcKwiWdJ M25S23cpdcVDYD07iTf9ZUboMsX2tVOtVUEEUxmSBKnFPbGpZcZTl.j6ze.m Qww_wafaljr4eavefVcIvJHg4DnUafzC8ZPjj_zp1uM_Kn6CftA3gtvXfRDg Kzi9TDsigezisGjjSKmduvzWa9CkdsbuFLt13S0GKGcAEFES7btwEdzuap65 vjp.N8Xu.dkpkoR7xGs.vb7sf4pU51ADL.7huS6Fiy4vjycBKRPdCmU4RITO Rfs7Zx6MWYlkYVSFu1q1UHPQVIVFp9Vt1yHkILkcfKymbI6mxyzUNaZfRQos G42hgyrdIztASQP11T8GU7msG8kOfW9jzgT4Uhlyh_VSg_eQKQFddKl9zywk qmS7V5EIX4EQlFGfHJJOquJAEibSNLPikUEPkEZvO9W4vz6QgU_xGhF2u205 0TKk- Received: from [200.118.157.7] by web113504.mail.gq1.yahoo.com via HTTP; Wed, 28 Dec 2011 17:52:30 PST X-RocketYMMF: giffunip X-Mailer: YahooMailClassic/15.0.4 YahooMailWebService/0.8.115.331698 Message-ID: <1325123550.30548.YahooMailClassic@web113504.mail.gq1.yahoo.com> Date: Wed, 28 Dec 2011 17:52:30 -0800 (PST) From: "Pedro F. Giffuni" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="891823486-1720799444-1325123550=:30548" Cc: Subject: Re: ports/163681: Update math/coinmp to version 1.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: giffunip@tutopia.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2011 02:06:27 -0000 --891823486-1720799444-1325123550=:30548 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable This new version (attached) uses DOCSDIR and respects=0ANOPORTDOCS.=0AI als= o tested building with clang. --891823486-1720799444-1325123550=:30548 Content-Type: text/plain; name="patch-coinmp.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-coinmp.txt" ZGlmZiAtcnVOIGNvaW5tcC5vcmlnL01ha2VmaWxlIGNvaW5tcC9NYWtlZmls ZQotLS0gY29pbm1wLm9yaWcvTWFrZWZpbGUJMjAxMS0xMi0yMyAwOTo1NDo0 MC4wMDAwMDAwMDAgLTA1MDAKKysrIGNvaW5tcC9NYWtlZmlsZQkyMDExLTEy LTI4IDIwOjE5OjU1LjAwMDAwMDAwMCAtMDUwMApAQCAtNiw3ICs2LDcgQEAK ICMKIAogUE9SVE5BTUU9CUNvaW5NUAotUE9SVFZFUlNJT049CTEuNC4wCitQ T1JUVkVSU0lPTj0JMS42LjAKIENBVEVHT1JJRVM9CW1hdGgKIE1BU1RFUl9T SVRFUz0JaHR0cDovL3d3dy5jb2luLW9yLm9yZy9kb3dubG9hZC9zb3VyY2Uv Q29pbk1QLwogRVhUUkFDVF9TVUZYPQkudGd6CkBAIC00MCw2ICs0MCwxMiBA QAogQ1hYRkxBR1MrPQktZm9taXQtZnJhbWUtcG9pbnRlcgogLmVuZGlmCiAK K3Bvc3QtaW5zdGFsbDoKKy5pZm5kZWYgTk9QT1JURE9DUworCSR7TVZ9ICR7 UFJFRklYfS9zaGFyZS9jb2luL2RvYyAke0RPQ1NESVJ9CisuZW5kaWYKKwkk e1JNfSAtcmYgJHtQUkVGSVh9L3NoYXJlL2NvaW4KKwogY2hlY2sgcmVncmVz c2lvbi10ZXN0IHRlc3Q6IGJ1aWxkCiAJQChjZCAke1dSS1NSQ307ICAke1NF VEVOVn0gJHtNQUtFX0VOVn0gJHtNQUtFfSAke19NQUtFX0pPQlN9IFwKIAkk e01BS0VfQVJHU30gdGVzdCkKZGlmZiAtcnVOIGNvaW5tcC5vcmlnL2Rpc3Rp bmZvIGNvaW5tcC9kaXN0aW5mbwotLS0gY29pbm1wLm9yaWcvZGlzdGluZm8J MjAxMS0xMi0yMyAwOTo1NDo0MC4wMDAwMDAwMDAgLTA1MDAKKysrIGNvaW5t cC9kaXN0aW5mbwkyMDExLTEyLTIzIDA5OjU3OjU5LjAwMDAwMDAwMCAtMDUw MApAQCAtMSwyICsxLDIgQEAKLVNIQTI1NiAoQ29pbk1QLTEuNC4wLnRneikg PSA5M2JjMDE1ZTRhZmZjMzFhOTdiZTgzNjAyMzhlZjFlMGE4ZWE3ZDNmYThi MTU2MjdhMTRmMTNiOGIxZDViMDMyCi1TSVpFIChDb2luTVAtMS40LjAudGd6 KSA9IDExMDg3NTMxCitTSEEyNTYgKENvaW5NUC0xLjYuMC50Z3opID0gMzNl Y2NhZDcxMWRjZjVhNTExY2QyMjQ2MjY3OTk2ZGY1YjczZDA2N2ExNDIxNGMx ZjJmYWQ0YmMxYWVjYzk3MQorU0laRSAoQ29pbk1QLTEuNi4wLnRneikgPSAx MjQwMDMyNwpkaWZmIC1ydU4gY29pbm1wLm9yaWcvZmlsZXMvcGF0Y2gtQ2Jj X19zcmNfX0NiY1NvbHZlci5jcHAgY29pbm1wL2ZpbGVzL3BhdGNoLUNiY19f c3JjX19DYmNTb2x2ZXIuY3BwCi0tLSBjb2lubXAub3JpZy9maWxlcy9wYXRj aC1DYmNfX3NyY19fQ2JjU29sdmVyLmNwcAkxOTY5LTEyLTMxIDE5OjAwOjAw LjAwMDAwMDAwMCAtMDUwMAorKysgY29pbm1wL2ZpbGVzL3BhdGNoLUNiY19f c3JjX19DYmNTb2x2ZXIuY3BwCTIwMTEtMTItMjggMTk6NTI6MTAuMDAwMDAw MDAwIC0wNTAwCkBAIC0wLDAgKzEsMTMgQEAKKy0tLSBDYmMvc3JjL0NiY1Nv bHZlci5jcHAub3JpZwkyMDExLTEyLTIzIDEwOjM2OjMzLjAwMDAwMDAwMCAt MDUwMAorKysrIENiYy9zcmMvQ2JjU29sdmVyLmNwcAkyMDExLTEyLTIzIDEw OjQxOjU3LjAwMDAwMDAwMCAtMDUwMAorQEAgLTE2NjUsMTAgKzE2NjUsNiBA QAorIAkgICAgfQorIAkgICAgc3ByaW50ZihnZW5lcmFsUHJpbnQgKyBzdHJs ZW4oZ2VuZXJhbFByaW50KSwKKyAJCSAgICAiQnVpbGQgRGF0ZTogJXMgXG4i LCBfX0RBVEVfXyk7CistI2lmZGVmIENCQ19TVk5fUkVWCistCSAgICBzcHJp bnRmKGdlbmVyYWxQcmludCArIHN0cmxlbihnZW5lcmFsUHJpbnQpLAorLQkJ ICAgICJSZXZpc2lvbiBOdW1iZXI6ICVkIFxuIiwgQ0JDX1NWTl9SRVYpOwor LSNlbmRpZgorICAgICAgICAgICAgIGdlbmVyYWxNZXNzYWdlSGFuZGxlci0+ bWVzc2FnZShDTFBfR0VORVJBTCwgZ2VuZXJhbE1lc3NhZ2VzKQorICAgICAg ICAgICAgIDw8IGdlbmVyYWxQcmludAorICAgICAgICAgICAgIDw8IENvaW5N ZXNzYWdlRW9sOwpkaWZmIC1ydU4gY29pbm1wLm9yaWcvZmlsZXMvcGF0Y2gt Q29pblV0aWxzK3NyYytDb2luUGFyYW0uaHBwIGNvaW5tcC9maWxlcy9wYXRj aC1Db2luVXRpbHMrc3JjK0NvaW5QYXJhbS5ocHAKLS0tIGNvaW5tcC5vcmln L2ZpbGVzL3BhdGNoLUNvaW5VdGlscytzcmMrQ29pblBhcmFtLmhwcAkyMDEx LTEyLTIzIDA5OjU0OjQwLjAwMDAwMDAwMCAtMDUwMAorKysgY29pbm1wL2Zp bGVzL3BhdGNoLUNvaW5VdGlscytzcmMrQ29pblBhcmFtLmhwcAkxOTY5LTEy LTMxIDE5OjAwOjAwLjAwMDAwMDAwMCAtMDUwMApAQCAtMSwxMCArMCwwIEBA Ci0tLS0gQ29pblV0aWxzL3NyYy9Db2luUGFyYW0uaHBwLm9yaWcJMjAwOS0w OC0xNiAyMjozMzoxMy4wMDAwMDAwMDAgLTA1MDAKLSsrKyBDb2luVXRpbHMv c3JjL0NvaW5QYXJhbS5ocHAJMjAwOS0wOC0xNiAyMjozNDoyMy4wMDAwMDAw MDAgLTA1MDAKLUBAIC0xMiw2ICsxMiw3IEBACi0gCi0gI2luY2x1ZGUgPHZl Y3Rvcj4KLSAjaW5jbHVkZSA8c3RyaW5nPgotKyNpbmNsdWRlIDxjc3RkaW8+ Ci0gCi0gLyohIFxjbGFzcyBDb2luUGFyYW0KLSAgICAgXGJyaWVmIEEgYmFz ZSBjbGFzcyBmb3IgYGtleXdvcmQgdmFsdWUnIGNvbW1hbmQgbGluZSBwYXJh bWV0ZXJzLgpkaWZmIC1ydU4gY29pbm1wLm9yaWcvcGtnLXBsaXN0IGNvaW5t cC9wa2ctcGxpc3QKLS0tIGNvaW5tcC5vcmlnL3BrZy1wbGlzdAkyMDExLTEy LTIzIDA5OjU0OjQwLjAwMDAwMDAwMCAtMDUwMAorKysgY29pbm1wL3BrZy1w bGlzdAkyMDExLTEyLTI4IDIwOjE0OjIwLjAwMDAwMDAwMCAtMDUwMApAQCAt MSw4ICsxLDgyIEBACiBiaW4vY2JjCiBiaW4vY2xwCitpbmNsdWRlL2NvaW4v Q2JjQnJhbmNoQWxsRGlmZmVyZW50LmhwcAoraW5jbHVkZS9jb2luL0NiY0Jy YW5jaERlY2lzaW9uLmhwcAoraW5jbHVkZS9jb2luL0NiY0JyYW5jaERlZmF1 bHREZWNpc2lvbi5ocHAKK2luY2x1ZGUvY29pbi9DYmNCcmFuY2hUb0ZpeExv dHMuaHBwCitpbmNsdWRlL2NvaW4vQ2JjQnJhbmNoaW5nT2JqZWN0LmhwcAor aW5jbHVkZS9jb2luL0NiY0NsaXF1ZS5ocHAKK2luY2x1ZGUvY29pbi9DYmND b21wYXJlLmhwcAoraW5jbHVkZS9jb2luL0NiY0NvbXBhcmVEZWZhdWx0Lmhw cAoraW5jbHVkZS9jb2luL0NiY0NvbXBhcmVEZXB0aC5ocHAKK2luY2x1ZGUv Y29pbi9DYmNDb21wYXJlRXN0aW1hdGUuaHBwCitpbmNsdWRlL2NvaW4vQ2Jj Q29tcGFyZU9iamVjdGl2ZS5ocHAKK2luY2x1ZGUvY29pbi9DYmNDb25zZXF1 ZW5jZS5ocHAKK2luY2x1ZGUvY29pbi9DYmNDdXRNb2RpZmllci5ocHAKK2lu Y2x1ZGUvY29pbi9DYmNDdXRTdWJzZXRNb2RpZmllci5ocHAKK2luY2x1ZGUv Y29pbi9DYmNEdW1teUJyYW5jaGluZ09iamVjdC5ocHAKK2luY2x1ZGUvY29p bi9DYmNGaXhWYXJpYWJsZS5ocHAKK2luY2x1ZGUvY29pbi9DYmNGb2xsb3dP bi5ocHAKK2luY2x1ZGUvY29pbi9DYmNGdWxsTm9kZUluZm8uaHBwCitpbmNs dWRlL2NvaW4vQ2JjR2VuZXJhbC5ocHAKK2luY2x1ZGUvY29pbi9DYmNHZW5l cmFsRGVwdGguaHBwCitpbmNsdWRlL2NvaW4vQ2JjSGV1cmlzdGljRElOUy5o cHAKK2luY2x1ZGUvY29pbi9DYmNIZXVyaXN0aWNSRU5TLmhwcAoraW5jbHVk ZS9jb2luL0NiY0hldXJpc3RpY1ZORC5ocHAKK2luY2x1ZGUvY29pbi9DYmNO V2F5LmhwcAoraW5jbHVkZS9jb2luL0NiY05vZGVJbmZvLmhwcAoraW5jbHVk ZS9jb2luL0NiY09iamVjdC5ocHAKK2luY2x1ZGUvY29pbi9DYmNPYmplY3RV cGRhdGVEYXRhLmhwcAoraW5jbHVkZS9jb2luL0NiY09yQ2xwUGFyYW0uY3Bw CitpbmNsdWRlL2NvaW4vQ2JjT3JDbHBQYXJhbS5ocHAKK2luY2x1ZGUvY29p bi9DYmNQYXJ0aWFsTm9kZUluZm8uaHBwCitpbmNsdWRlL2NvaW4vQ2JjU09T LmhwcAoraW5jbHVkZS9jb2luL0NiY1NpbXBsZUludGVnZXIuaHBwCitpbmNs dWRlL2NvaW4vQ2JjU2ltcGxlSW50ZWdlckR5bmFtaWNQc2V1ZG9Db3N0Lmhw cAoraW5jbHVkZS9jb2luL0NiY1NpbXBsZUludGVnZXJQc2V1ZG9Db3N0Lmhw cAoraW5jbHVkZS9jb2luL0NiY1N1YlByb2JsZW0uaHBwCitpbmNsdWRlL2Nv aW4vQ2xwQ29uZmlnLmgKK2luY2x1ZGUvY29pbi9DbHBfQ19JbnRlcmZhY2Uu aAoraW5jbHVkZS9jb2luL0NscENob2xlc2t5QmFzZS5ocHAKK2luY2x1ZGUv Y29pbi9DbHBDaG9sZXNreURlbnNlLmhwcAoraW5jbHVkZS9jb2luL0NscENv bnN0cmFpbnQuaHBwCitpbmNsdWRlL2NvaW4vQ2xwQ29uc3RyYWludExpbmVh ci5ocHAKK2luY2x1ZGUvY29pbi9DbHBDb25zdHJhaW50UXVhZHJhdGljLmhw cAoraW5jbHVkZS9jb2luL0NscE5vZGUuaHBwCitpbmNsdWRlL2NvaW4vQ2xw RHVhbFJvd0RhbnR6aWcuaHBwCitpbmNsdWRlL2NvaW4vQ2xwRHVhbFJvd1Bp dm90LmhwcAoraW5jbHVkZS9jb2luL0NscER1YWxSb3dTdGVlcGVzdC5ocHAK K2luY2x1ZGUvY29pbi9DbHBEdW1teU1hdHJpeC5ocHAKK2luY2x1ZGUvY29p bi9DbHBEeW5hbWljRXhhbXBsZU1hdHJpeC5ocHAKK2luY2x1ZGUvY29pbi9D bHBEeW5hbWljTWF0cml4LmhwcAoraW5jbHVkZS9jb2luL0NscEV2ZW50SGFu ZGxlci5ocHAKK2luY2x1ZGUvY29pbi9DbHBGYWN0b3JpemF0aW9uLmhwcAor aW5jbHVkZS9jb2luL0NscEd1YkR5bmFtaWNNYXRyaXguaHBwCitpbmNsdWRl L2NvaW4vQ2xwR3ViTWF0cml4LmhwcAoraW5jbHVkZS9jb2luL0NscEludGVy aW9yLmhwcAoraW5jbHVkZS9jb2luL0NscExpbmVhck9iamVjdGl2ZS5ocHAK K2luY2x1ZGUvY29pbi9DbHBNYXRyaXhCYXNlLmhwcAoraW5jbHVkZS9jb2lu L0NscE1lc3NhZ2UuaHBwCitpbmNsdWRlL2NvaW4vQ2xwTW9kZWwuaHBwCitp bmNsdWRlL2NvaW4vQ2xwTmV0d29ya01hdHJpeC5ocHAKK2luY2x1ZGUvY29p bi9DbHBOb25MaW5lYXJDb3N0LmhwcAoraW5jbHVkZS9jb2luL0NscE9iamVj dGl2ZS5ocHAKK2luY2x1ZGUvY29pbi9DbHBQYWNrZWRNYXRyaXguaHBwCitp bmNsdWRlL2NvaW4vQ2xwUGRjb0Jhc2UuaHBwCitpbmNsdWRlL2NvaW4vQ2xw UGx1c01pbnVzT25lTWF0cml4LmhwcAoraW5jbHVkZS9jb2luL0NscFBhcmFt ZXRlcnMuaHBwCitpbmNsdWRlL2NvaW4vQ2xwUHJlc29sdmUuaHBwCitpbmNs dWRlL2NvaW4vQ2xwUHJpbWFsQ29sdW1uRGFudHppZy5ocHAKK2luY2x1ZGUv Y29pbi9DbHBQcmltYWxDb2x1bW5QaXZvdC5ocHAKK2luY2x1ZGUvY29pbi9D bHBQcmltYWxDb2x1bW5TdGVlcGVzdC5ocHAKK2luY2x1ZGUvY29pbi9DbHBR dWFkcmF0aWNPYmplY3RpdmUuaHBwCitpbmNsdWRlL2NvaW4vQ2xwU2ltcGxl eC5ocHAKK2luY2x1ZGUvY29pbi9DbHBTaW1wbGV4Tm9ubGluZWFyLmhwcAor aW5jbHVkZS9jb2luL0NscFNpbXBsZXhPdGhlci5ocHAKK2luY2x1ZGUvY29p bi9DbHBTaW1wbGV4UHJpbWFsLmhwcAoraW5jbHVkZS9jb2luL0NscFNvbHZl LmhwcAogaW5jbHVkZS9jb2luL0NvaW5BbGxvYy5ocHAKIGluY2x1ZGUvY29p bi9Db2luVXRpbHNDb25maWcuaAotaW5jbHVkZS9jb2luL2NvbmZpZ19jb2lu dXRpbHMuaAogaW5jbHVkZS9jb2luL0NvaW5fQ19kZWZpbmVzLmgKIGluY2x1 ZGUvY29pbi9Db2luQnVpbGQuaHBwCiBpbmNsdWRlL2NvaW4vQ29pbkRlbnNl VmVjdG9yLmhwcApAQCAtMjMsNiArOTcsNyBAQAogaW5jbHVkZS9jb2luL0Nv aW5TdHJ1Y3R1cmVkTW9kZWwuaHBwCiBpbmNsdWRlL2NvaW4vQ29pbk1vZGVs VXNlZnVsLmhwcAogaW5jbHVkZS9jb2luL0NvaW5NcHNJTy5ocHAKK2luY2x1 ZGUvY29pbi9Db2luT3NsRmFjdG9yaXphdGlvbi5ocHAKIGluY2x1ZGUvY29p bi9Db2luUGFja2VkTWF0cml4LmhwcAogaW5jbHVkZS9jb2luL0NvaW5QYWNr ZWRWZWN0b3IuaHBwCiBpbmNsdWRlL2NvaW4vQ29pblBhY2tlZFZlY3RvckJh c2UuaHBwCkBAIC01OCw1MyArMTMzLDcgQEAKIGluY2x1ZGUvY29pbi9Db2lu V2FybVN0YXJ0VmVjdG9yLmhwcAogaW5jbHVkZS9jb2luL0NvaW5XYXJtU3Rh cnREdWFsLmhwcAogaW5jbHVkZS9jb2luL0NvaW5XYXJtU3RhcnRQcmltYWxE dWFsLmhwcAotaW5jbHVkZS9jb2luL2NvbmZpZ19jbHAuaAotaW5jbHVkZS9j b2luL0NscENvbmZpZy5oCi1pbmNsdWRlL2NvaW4vQ2xwX0NfSW50ZXJmYWNl LmgKLWluY2x1ZGUvY29pbi9DbHBDaG9sZXNreUJhc2UuaHBwCi1pbmNsdWRl L2NvaW4vQ2xwQ2hvbGVza3lEZW5zZS5ocHAKLWluY2x1ZGUvY29pbi9DbHBD aG9sZXNreVdzc21wLmhwcAotaW5jbHVkZS9jb2luL0NscENvbnN0cmFpbnQu aHBwCi1pbmNsdWRlL2NvaW4vQ2xwQ29uc3RyYWludExpbmVhci5ocHAKLWlu Y2x1ZGUvY29pbi9DbHBDb25zdHJhaW50UXVhZHJhdGljLmhwcAotaW5jbHVk ZS9jb2luL0NscE5vZGUuaHBwCi1pbmNsdWRlL2NvaW4vQ2xwRHVhbFJvd0Rh bnR6aWcuaHBwCi1pbmNsdWRlL2NvaW4vQ2xwRHVhbFJvd1Bpdm90LmhwcAot aW5jbHVkZS9jb2luL0NscER1YWxSb3dTdGVlcGVzdC5ocHAKLWluY2x1ZGUv Y29pbi9DbHBEdW1teU1hdHJpeC5ocHAKLWluY2x1ZGUvY29pbi9DbHBEeW5h bWljRXhhbXBsZU1hdHJpeC5ocHAKLWluY2x1ZGUvY29pbi9DbHBEeW5hbWlj TWF0cml4LmhwcAotaW5jbHVkZS9jb2luL0NscEV2ZW50SGFuZGxlci5ocHAK LWluY2x1ZGUvY29pbi9DbHBGYWN0b3JpemF0aW9uLmhwcAotaW5jbHVkZS9j b2luL0NscEd1YkR5bmFtaWNNYXRyaXguaHBwCi1pbmNsdWRlL2NvaW4vQ2xw R3ViTWF0cml4LmhwcAotaW5jbHVkZS9jb2luL0NscEludGVyaW9yLmhwcAot aW5jbHVkZS9jb2luL0NscExpbmVhck9iamVjdGl2ZS5ocHAKLWluY2x1ZGUv Y29pbi9DbHBNYXRyaXhCYXNlLmhwcAotaW5jbHVkZS9jb2luL0NscE1lc3Nh Z2UuaHBwCi1pbmNsdWRlL2NvaW4vQ2xwTW9kZWwuaHBwCi1pbmNsdWRlL2Nv aW4vQ2xwTmV0d29ya01hdHJpeC5ocHAKLWluY2x1ZGUvY29pbi9DbHBOb25M aW5lYXJDb3N0LmhwcAotaW5jbHVkZS9jb2luL0NscE9iamVjdGl2ZS5ocHAK LWluY2x1ZGUvY29pbi9DbHBQYWNrZWRNYXRyaXguaHBwCi1pbmNsdWRlL2Nv aW4vQ2xwUGRjb0Jhc2UuaHBwCi1pbmNsdWRlL2NvaW4vQ2xwUGx1c01pbnVz T25lTWF0cml4LmhwcAotaW5jbHVkZS9jb2luL0NscFBhcmFtZXRlcnMuaHBw Ci1pbmNsdWRlL2NvaW4vQ2xwUHJlc29sdmUuaHBwCi1pbmNsdWRlL2NvaW4v Q2xwUHJpbWFsQ29sdW1uRGFudHppZy5ocHAKLWluY2x1ZGUvY29pbi9DbHBQ cmltYWxDb2x1bW5QaXZvdC5ocHAKLWluY2x1ZGUvY29pbi9DbHBQcmltYWxD b2x1bW5TdGVlcGVzdC5ocHAKLWluY2x1ZGUvY29pbi9DbHBRdWFkcmF0aWNP YmplY3RpdmUuaHBwCi1pbmNsdWRlL2NvaW4vQ2xwU2ltcGxleC5ocHAKLWlu Y2x1ZGUvY29pbi9DbHBTaW1wbGV4RHVhbC5ocHAKLWluY2x1ZGUvY29pbi9D bHBTaW1wbGV4Tm9ubGluZWFyLmhwcAotaW5jbHVkZS9jb2luL0NscFNpbXBs ZXhPdGhlci5ocHAKLWluY2x1ZGUvY29pbi9DbHBTaW1wbGV4UHJpbWFsLmhw cAotaW5jbHVkZS9jb2luL0NscFNvbHZlLmhwcAotaW5jbHVkZS9jb2luL0Ni Y09yQ2xwUGFyYW0uaHBwCi1pbmNsdWRlL2NvaW4vQ2JjT3JDbHBQYXJhbS5j cHAKIGluY2x1ZGUvY29pbi9JZGlvdC5ocHAKLWluY2x1ZGUvY29pbi9jb25m aWdfb3NpLmgKIGluY2x1ZGUvY29pbi9Pc2lDb25maWcuaAogaW5jbHVkZS9j b2luL09zaUF1eEluZm8uaHBwCiBpbmNsdWRlL2NvaW4vT3NpQnJhbmNoaW5n T2JqZWN0LmhwcApAQCAtMTEzLDcgKzE0Miw2IEBACiBpbmNsdWRlL2NvaW4v T3NpQ29sbGVjdGlvbnMuaHBwCiBpbmNsdWRlL2NvaW4vT3NpQ3V0LmhwcAog aW5jbHVkZS9jb2luL09zaUN1dHMuaHBwCi1pbmNsdWRlL2NvaW4vT3NpT3Bi ZHBTb2x2ZS5ocHAKIGluY2x1ZGUvY29pbi9Pc2lQcmVzb2x2ZS5ocHAKIGlu Y2x1ZGUvY29pbi9Pc2lTb2x2ZXJCcmFuY2guaHBwCiBpbmNsdWRlL2NvaW4v T3NpU29sdmVySW50ZXJmYWNlLmhwcApAQCAtMTIxLDggKzE0OSw4IEBACiBp bmNsdWRlL2NvaW4vT3NpUm93Q3V0LmhwcAogaW5jbHVkZS9jb2luL09zaVJv d0N1dERlYnVnZ2VyLmhwcAogaW5jbHVkZS9jb2luL09zaUNiY1NvbHZlcklu dGVyZmFjZS5ocHAKLWluY2x1ZGUvY29pbi9Pc2lDbHBQYXJhbU1hcC5ocHAK IGluY2x1ZGUvY29pbi9Pc2lDbHBTb2x2ZXJJbnRlcmZhY2UuaHBwCitpbmNs dWRlL2NvaW4vT3NpVW5pdFRlc3RzLmhwcAogaW5jbHVkZS9jb2luL0NnbENs aXF1ZS5ocHAKIGluY2x1ZGUvY29pbi9DZ2xNaXhlZEludGVnZXJSb3VuZGlu Zy5ocHAKIGluY2x1ZGUvY29pbi9DZ2xEdXBsaWNhdGVSb3cuaHBwCkBAIC0x MzQsNyArMTYyLDYgQEAKIGluY2x1ZGUvY29pbi9DZ2xGbG93Q292ZXIuaHBw CiBpbmNsdWRlL2NvaW4vQ2dsUHJlUHJvY2Vzcy5ocHAKIGluY2x1ZGUvY29p bi9DZ2xMYW5kUC5ocHAKLWluY2x1ZGUvY29pbi9DZ2xMYW5kUFNpbXBsZXgu aHBwCiBpbmNsdWRlL2NvaW4vQ2dsTGFuZFBWYWxpZGF0b3IuaHBwCiBpbmNs dWRlL2NvaW4vQ2dsUHJvYmluZy5ocHAKIGluY2x1ZGUvY29pbi9DZ2xPZGRI b2xlLmhwcApAQCAtMTQzLDE0ICsxNzAsMTIgQEAKIGluY2x1ZGUvY29pbi9D Z2xSZXNpZHVhbENhcGFjaXR5LmhwcAogaW5jbHVkZS9jb2luL0NnbFJlZFNw bGl0LmhwcAogaW5jbHVkZS9jb2luL0NnbFJlZFNwbGl0UGFyYW0uaHBwCi1p bmNsdWRlL2NvaW4vY29uZmlnX2NnbC5oCiBpbmNsdWRlL2NvaW4vQ2dsQ29u ZmlnLmgKIGluY2x1ZGUvY29pbi9DZ2xDdXRHZW5lcmF0b3IuaHBwCiBpbmNs dWRlL2NvaW4vQ2dsTWVzc2FnZS5ocHAKIGluY2x1ZGUvY29pbi9DZ2xTdG9y ZWQuaHBwCiBpbmNsdWRlL2NvaW4vQ2dsUGFyYW0uaHBwCiBpbmNsdWRlL2Nv aW4vQ2dsVHJlZUluZm8uaHBwCi1pbmNsdWRlL2NvaW4vY29uZmlnX2NiYy5o CiBpbmNsdWRlL2NvaW4vQ2JjQ29uZmlnLmgKIGluY2x1ZGUvY29pbi9DYmNf Q19JbnRlcmZhY2UuaAogaW5jbHVkZS9jb2luL0NiY0JyYW5jaEFjdHVhbC5o cHAKQEAgLTE4OCw2OCArMjEzLDY2IEBACiBpbmNsdWRlL2NvaW4vQ2JjVHJl ZUxvY2FsLmhwcAogaW5jbHVkZS9jb2luL0NscENvbnN0cmFpbnRBbXBsLmhw cAogaW5jbHVkZS9jb2luL0NscEFtcGxPYmplY3RpdmUuaHBwCi1pbmNsdWRl L2NvaW4vY29uZmlnX2NvaW5tcC5oCiBpbmNsdWRlL2NvaW4vQ29pbk1QQ29u ZmlnLmgKIGluY2x1ZGUvY29pbi9Db2luTVAuaAogQGRpcnJtIGluY2x1ZGUv Y29pbgotc2hhcmUvZG9jL2NvaW4vQ29pbk1QL1JFQURNRQotc2hhcmUvZG9j L2NvaW4vQ29pbk1QL0FVVEhPUlMKLXNoYXJlL2RvYy9jb2luL0NvaW5NUC9M SUNFTlNFCi1zaGFyZS9kb2MvY29pbi9Db2luTVAvY29pbm1wX2FkZGxpYnMu dHh0Ci1zaGFyZS9kb2MvY29pbi9Db2luTVAvZXhhbXBsZXMvTWFrZWZpbGUK LXNoYXJlL2RvYy9jb2luL0NvaW5NUC9leGFtcGxlcy9leGFtcGxlLmMKLUBk aXJybSBzaGFyZS9kb2MvY29pbi9Db2luTVAvZXhhbXBsZXMKLUBkaXJybSBz aGFyZS9kb2MvY29pbi9Db2luTVAKLXNoYXJlL2RvYy9jb2luL0NiYy9SRUFE TUUKLXNoYXJlL2RvYy9jb2luL0NiYy9BVVRIT1JTCi1zaGFyZS9kb2MvY29p bi9DYmMvTElDRU5TRQotc2hhcmUvZG9jL2NvaW4vQ2JjL2NiY19hZGRsaWJz LnR4dAotQGRpcnJtIHNoYXJlL2RvYy9jb2luL0NiYwotc2hhcmUvZG9jL2Nv aW4vQ2dsL1JFQURNRQotc2hhcmUvZG9jL2NvaW4vQ2dsL0FVVEhPUlMKLXNo YXJlL2RvYy9jb2luL0NnbC9MSUNFTlNFCi1zaGFyZS9kb2MvY29pbi9DZ2wv Y2dsX2FkZGxpYnMudHh0Ci1AZGlycm0gc2hhcmUvZG9jL2NvaW4vQ2dsCi1z aGFyZS9kb2MvY29pbi9DbHAvQVVUSE9SUwotc2hhcmUvZG9jL2NvaW4vQ2xw L0xJQ0VOU0UKLXNoYXJlL2RvYy9jb2luL0NscC9SRUFETUUKLXNoYXJlL2Rv Yy9jb2luL0NscC9jbHBfYWRkbGlicy50eHQKLUBkaXJybSBzaGFyZS9kb2Mv Y29pbi9DbHAKLXNoYXJlL2RvYy9jb2luL0NvaW5VdGlscy9BVVRIT1JTCi1z aGFyZS9kb2MvY29pbi9Db2luVXRpbHMvTElDRU5TRQotc2hhcmUvZG9jL2Nv aW4vQ29pblV0aWxzL1JFQURNRQotc2hhcmUvZG9jL2NvaW4vQ29pblV0aWxz L2NvaW51dGlsc19hZGRsaWJzLnR4dAotQGRpcnJtIHNoYXJlL2RvYy9jb2lu L0NvaW5VdGlscwotc2hhcmUvZG9jL2NvaW4vT3NpL1JFQURNRQotc2hhcmUv ZG9jL2NvaW4vT3NpL0FVVEhPUlMKLXNoYXJlL2RvYy9jb2luL09zaS9MSUNF TlNFCi1zaGFyZS9kb2MvY29pbi9Pc2kvb3NpX2FkZGxpYnMudHh0Ci1AZGly cm0gc2hhcmUvZG9jL2NvaW4vT3NpCi1AZGlycm0gc2hhcmUvZG9jL2NvaW4K IGxpYi9saWJDYmMubGEKIGxpYi9saWJDYmMuc28KLWxpYi9saWJDYmMuc28u MAorbGliL2xpYkNiYy5zby4xMAogbGliL2xpYkNiY1NvbHZlci5sYQogbGli L2xpYkNiY1NvbHZlci5zbwotbGliL2xpYkNiY1NvbHZlci5zby4wCitsaWIv bGliQ2JjU29sdmVyLnNvLjEwCiBsaWIvbGliQ2dsLmxhCiBsaWIvbGliQ2ds LnNvCi1saWIvbGliQ2dsLnNvLjAKK2xpYi9saWJDZ2wuc28uOAogbGliL2xp YkNscC5sYQogbGliL2xpYkNscC5zbwotbGliL2xpYkNscC5zby4wCitsaWIv bGliQ2xwLnNvLjEyCiBsaWIvbGliQ29pbk1QLmxhCiBsaWIvbGliQ29pbk1Q LnNvCi1saWIvbGliQ29pbk1QLnNvLjAKK2xpYi9saWJDb2luTVAuc28uNwog bGliL2xpYkNvaW5VdGlscy5sYQogbGliL2xpYkNvaW5VdGlscy5zbwotbGli L2xpYkNvaW5VdGlscy5zby4wCitsaWIvbGliQ29pblV0aWxzLnNvLjExCiBs aWIvbGliT3NpLmxhCiBsaWIvbGliT3NpLnNvCi1saWIvbGliT3NpLnNvLjAK K2xpYi9saWJPc2kuc28uMTEKIGxpYi9saWJPc2lDYmMubGEKIGxpYi9saWJP c2lDYmMuc28KLWxpYi9saWJPc2lDYmMuc28uMAorbGliL2xpYk9zaUNiYy5z by4xMAogbGliL2xpYk9zaUNscC5sYQogbGliL2xpYk9zaUNscC5zbwotbGli L2xpYk9zaUNscC5zby4wCitsaWIvbGliT3NpQ2xwLnNvLjEyCislJVBPUlRE T0NTJSUlJURPQ1NESVIlJS9DYmMvUkVBRE1FCislJVBPUlRET0NTJSUlJURP Q1NESVIlJS9DYmMvQVVUSE9SUworJSVQT1JURE9DUyUlJSVET0NTRElSJSUv Q2JjL0xJQ0VOU0UKKyUlUE9SVERPQ1MlJSUlRE9DU0RJUiUlL0NiYy9jYmNf YWRkbGlicy50eHQKKyUlUE9SVERPQ1MlJUBkaXJybSAlJURPQ1NESVIlJS9D YmMKKyUlUE9SVERPQ1MlJSUlRE9DU0RJUiUlL0NnbC9SRUFETUUKKyUlUE9S VERPQ1MlJSUlRE9DU0RJUiUlL0NnbC9BVVRIT1JTCislJVBPUlRET0NTJSUl JURPQ1NESVIlJS9DZ2wvTElDRU5TRQorJSVQT1JURE9DUyUlJSVET0NTRElS JSUvQ2dsL2NnbF9hZGRsaWJzLnR4dAorJSVQT1JURE9DUyUlQGRpcnJtICUl RE9DU0RJUiUlL0NnbAorJSVQT1JURE9DUyUlJSVET0NTRElSJSUvQ2xwL0FV VEhPUlMKKyUlUE9SVERPQ1MlJSUlRE9DU0RJUiUlL0NscC9MSUNFTlNFCisl JVBPUlRET0NTJSUlJURPQ1NESVIlJS9DbHAvUkVBRE1FCislJVBPUlRET0NT JSUlJURPQ1NESVIlJS9DbHAvY2xwX2FkZGxpYnMudHh0CislJVBPUlRET0NT JSVAZGlycm0gJSVET0NTRElSJSUvQ2xwCislJVBPUlRET0NTJSUlJURPQ1NE SVIlJS9Db2luTVAvUkVBRE1FCislJVBPUlRET0NTJSUlJURPQ1NESVIlJS9D b2luTVAvQVVUSE9SUworJSVQT1JURE9DUyUlJSVET0NTRElSJSUvQ29pbk1Q L0xJQ0VOU0UKKyUlUE9SVERPQ1MlJSUlRE9DU0RJUiUlL0NvaW5NUC9jb2lu bXBfYWRkbGlicy50eHQKKyUlUE9SVERPQ1MlJSUlRE9DU0RJUiUlL0NvaW5N UC9NYWtlZmlsZQorJSVQT1JURE9DUyUlJSVET0NTRElSJSUvQ29pbk1QL2V4 YW1wbGUuYworJSVQT1JURE9DUyUlQGRpcnJtICUlRE9DU0RJUiUlL0NvaW5N UAorJSVQT1JURE9DUyUlJSVET0NTRElSJSUvQ29pblV0aWxzL0FVVEhPUlMK KyUlUE9SVERPQ1MlJSUlRE9DU0RJUiUlL0NvaW5VdGlscy9MSUNFTlNFCisl JVBPUlRET0NTJSUlJURPQ1NESVIlJS9Db2luVXRpbHMvUkVBRE1FCislJVBP UlRET0NTJSUlJURPQ1NESVIlJS9Db2luVXRpbHMvY29pbnV0aWxzX2FkZGxp YnMudHh0CislJVBPUlRET0NTJSVAZGlycm0gJSVET0NTRElSJSUvQ29pblV0 aWxzCislJVBPUlRET0NTJSUlJURPQ1NESVIlJS9Pc2kvUkVBRE1FCislJVBP UlRET0NTJSUlJURPQ1NESVIlJS9Pc2kvQVVUSE9SUworJSVQT1JURE9DUyUl JSVET0NTRElSJSUvT3NpL0xJQ0VOU0UKKyUlUE9SVERPQ1MlJSUlRE9DU0RJ UiUlL09zaS9vc2lfYWRkbGlicy50eHQKKyUlUE9SVERPQ1MlJUBkaXJybSAl JURPQ1NESVIlJS9Pc2kKKyUlUE9SVERPQ1MlJUBkaXJybSAlJURPQ1NESVIl JQo= --891823486-1720799444-1325123550=:30548-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 06:40:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61EA3106566B for ; Thu, 29 Dec 2011 06: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 333F88FC13 for ; Thu, 29 Dec 2011 06:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBT6e7Fq047283 for ; Thu, 29 Dec 2011 06:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBT6e7iZ047282; Thu, 29 Dec 2011 06:40:07 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 06:40:07 GMT Resent-Message-Id: <201112290640.pBT6e7iZ047282@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 Timofeev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1723B106564A for ; Thu, 29 Dec 2011 06:30:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id DC7F38FC0C for ; Thu, 29 Dec 2011 06:30:44 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBT6UiOj025066 for ; Thu, 29 Dec 2011 06:30:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBT6UiCh025065; Thu, 29 Dec 2011 06:30:44 GMT (envelope-from nobody) Message-Id: <201112290630.pBT6UiCh025065@red.freebsd.org> Date: Thu, 29 Dec 2011 06:30:44 GMT From: Pavel Timofeev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163691: [vulnerable] please, update zabbix to 1.8.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: Thu, 29 Dec 2011 06:40:07 -0000 >Number: 163691 >Category: ports >Synopsis: [vulnerable] please, update zabbix to 1.8.10 >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: Thu Dec 29 06:40:06 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pavel Timofeev >Release: FreeBSD 9.0-RC3 amd64 >Organization: >Environment: >Description: Current zabbix ports version is vulnerable. Please, update it to latest release http://www.zabbix.com/rn1.8.10.php. See '[ZBX-4015] fixed multiple XSS issues' PR. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 09:10:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7ED2B106564A for ; Thu, 29 Dec 2011 09: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 503848FC18 for ; Thu, 29 Dec 2011 09:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBT9A9vA013788 for ; Thu, 29 Dec 2011 09:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBT9A9VY013787; Thu, 29 Dec 2011 09:10:09 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 09:10:09 GMT Resent-Message-Id: <201112290910.pBT9A9VY013787@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, Marin Atanasov Nikolov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B63CD1065670 for ; Thu, 29 Dec 2011 09:07:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A10968FC0C for ; Thu, 29 Dec 2011 09:07:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBT97YMj009194 for ; Thu, 29 Dec 2011 09:07:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBT97YKr009193; Thu, 29 Dec 2011 09:07:34 GMT (envelope-from nobody) Message-Id: <201112290907.pBT97YKr009193@red.freebsd.org> Date: Thu, 29 Dec 2011 09:07:34 GMT From: Marin Atanasov Nikolov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163692: [PATCH] devel/jenkins - update to 1.445 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 09:10:09 -0000 >Number: 163692 >Category: ports >Synopsis: [PATCH] devel/jenkins - update to 1.445 >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 Dec 29 09:10:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Marin Atanasov Nikolov >Release: FreeBSD 9.0-BETA3 >Organization: unix-heaven.org >Environment: FreeBSD xxx 9.0-BETA3 FreeBSD 9.0-BETA3 #1: Fri Sep 30 11:24:43 EEST 2011 root@xxx:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please update Jenkins port to version 1.445. For a changelog, please visit: - http://jenkins-ci.org/changelog >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN --exclude=CVS --exclude=.git --exclude=README.md /usr/ports/devel/jenkins/Makefile /home/mra/PROJECTS/jenkins-freebsd/Makefile --- /usr/ports/devel/jenkins/Makefile 2011-12-13 16:06:36.000000000 +0200 +++ /home/mra/PROJECTS/jenkins-freebsd/Makefile 2011-12-29 11:00:02.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= jenkins -PORTVERSION= 1.443 +PORTVERSION= 1.445 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins diff -ruN --exclude=CVS --exclude=.git --exclude=README.md /usr/ports/devel/jenkins/distinfo /home/mra/PROJECTS/jenkins-freebsd/distinfo --- /usr/ports/devel/jenkins/distinfo 2011-12-13 16:06:36.000000000 +0200 +++ /home/mra/PROJECTS/jenkins-freebsd/distinfo 2011-12-29 10:57:54.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (jenkins/1.443/jenkins.war) = d693a926bdfb866cc26a1e28d55fd067f8c87d1d46acbd83583c8a4cac89e247 -SIZE (jenkins/1.443/jenkins.war) = 47759200 +SHA256 (jenkins/1.445/jenkins.war) = 779db810dadcc952127a7dcbd186283c96303ba7f6b787fa1482bb41061946db +SIZE (jenkins/1.445/jenkins.war) = 47777257 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 09:10:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A597106566B; Thu, 29 Dec 2011 09:10: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 1CA968FC13; Thu, 29 Dec 2011 09:10:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBT9APsf014293; Thu, 29 Dec 2011 09:10:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBT9APv8014286; Thu, 29 Dec 2011 09:10:25 GMT (envelope-from edwin) Date: Thu, 29 Dec 2011 09:10:25 GMT Message-Id: <201112290910.pBT9APv8014286@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lwhsu@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163692: [PATCH] devel/jenkins - update to 1.445 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 09:10:26 -0000 Synopsis: [PATCH] devel/jenkins - update to 1.445 Responsible-Changed-From-To: freebsd-ports-bugs->lwhsu Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 29 09:10:25 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163692 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 11:00:34 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 779571065672; Thu, 29 Dec 2011 11: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 492108FC0A; Thu, 29 Dec 2011 11:00:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTB0YJq017237; Thu, 29 Dec 2011 11:00:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTB0YVf017228; Thu, 29 Dec 2011 11:00:34 GMT (envelope-from edwin) Date: Thu, 29 Dec 2011 11:00:34 GMT Message-Id: <201112291100.pBTB0YVf017228@freefall.freebsd.org> To: timp87@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163691: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.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: Thu, 29 Dec 2011 11:00:34 -0000 Synopsis: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.10 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Dec 29 11:00:32 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163691 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 11:10:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3DB31065670 for ; Thu, 29 Dec 2011 11: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 DDCD68FC18 for ; Thu, 29 Dec 2011 11:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTBAFlm026020 for ; Thu, 29 Dec 2011 11:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTBAFpP026019; Thu, 29 Dec 2011 11:10:15 GMT (envelope-from gnats) Date: Thu, 29 Dec 2011 11:10:15 GMT Message-Id: <201112291110.pBTBAFpP026019@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163691: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.10 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, 29 Dec 2011 11:10:16 -0000 The following reply was made to PR ports/163691; it has been noted by GNATS. From: Edwin Groothuis To: ports@christianserving.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/163691: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.10 Date: Thu, 29 Dec 2011 11:00:28 UT Maintainer of net-mgmt/zabbix-server, Please note that PR ports/163691 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/163691 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 11:11:43 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A5101065697; Thu, 29 Dec 2011 11:11:43 +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 3BD348FC17; Thu, 29 Dec 2011 11:11:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTBBh9x034012; Thu, 29 Dec 2011 11:11:43 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTBBgXr034006; Thu, 29 Dec 2011 11:11:42 GMT (envelope-from pav) Date: Thu, 29 Dec 2011 11:11:42 GMT Message-Id: <201112291111.pBTBBgXr034006@freefall.freebsd.org> To: ii@any.com.ru, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/163671: Update port: graphics/panoglview - 0.2.2 release, UNICODE option is on by default, fixup configure and build when UNICODE is off X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 11:11:43 -0000 Synopsis: Update port: graphics/panoglview - 0.2.2 release, UNICODE option is on by default, fixup configure and build when UNICODE is off State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Thu Dec 29 11:11:04 UTC 2011 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=163671 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 11:20:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D4E11065675 for ; Thu, 29 Dec 2011 11: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 46DBC8FC0C for ; Thu, 29 Dec 2011 11:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTBKCfL036459 for ; Thu, 29 Dec 2011 11:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTBKCjS036458; Thu, 29 Dec 2011 11:20:12 GMT (envelope-from gnats) Date: Thu, 29 Dec 2011 11:20:12 GMT Message-Id: <201112291120.pBTBKCjS036458@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/163671: 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, 29 Dec 2011 11:20:12 -0000 The following reply was made to PR ports/163671; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163671: commit references a PR Date: Thu, 29 Dec 2011 11:11:44 +0000 (UTC) pav 2011-12-29 11:11:32 UTC FreeBSD ports repository Modified files: graphics/panoglview Makefile distinfo Added files: graphics/panoglview/files patch-configure Log: - Update to 0.2.2 - Make unicode option the default PR: ports/163671 Submitted by: Iouri V. Ivliev (maintainer) Revision Changes Path 1.10 +5 -8 ports/graphics/panoglview/Makefile 1.3 +2 -2 ports/graphics/panoglview/distinfo 1.1 +15 -0 ports/graphics/panoglview/files/patch-configure (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 Thu Dec 29 11:20:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A5B71065678 for ; Thu, 29 Dec 2011 11:20: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 7598E8FC20 for ; Thu, 29 Dec 2011 11:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTBKEDQ036467 for ; Thu, 29 Dec 2011 11:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTBKEPX036466; Thu, 29 Dec 2011 11:20:14 GMT (envelope-from gnats) Date: Thu, 29 Dec 2011 11:20:14 GMT Message-Id: <201112291120.pBTBKEPX036466@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/163691: 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, 29 Dec 2011 11:20:14 -0000 The following reply was made to PR ports/163691; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163691: commit references a PR Date: Thu, 29 Dec 2011 11:19:43 +0000 (UTC) crees 2011-12-29 11:19:26 UTC FreeBSD ports repository Modified files: net-mgmt/zabbix-frontend Makefile Log: Mark FORBIDDEN; multiple XSS vulnerabilities PR: ports/163691 Submitted by: Pavel Timofeev Obtained from: https://support.zabbix.com/browse/ZBX-4015 Security: ZBX-4015 Revision Changes Path 1.5 +2 -0 ports/net-mgmt/zabbix-frontend/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 Thu Dec 29 12:16:04 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC4CB106566C; Thu, 29 Dec 2011 12:16:04 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E9078FC15; Thu, 29 Dec 2011 12:16:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTCG4e2093663; Thu, 29 Dec 2011 12:16:04 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTCG35T093658; Thu, 29 Dec 2011 12:16:03 GMT (envelope-from scheidell) Date: Thu, 29 Dec 2011 12:16:03 GMT Message-Id: <201112291216.pBTCG35T093658@freefall.freebsd.org> To: webmaster@kibab.com, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163678: [update] devel/php5-thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 12:16:04 -0000 Synopsis: [update] devel/php5-thrift Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Thu Dec 29 12:13:58 UTC 2011 Responsible-Changed-Why: These all need to be committed in a coordinated fashion: http://www.freebsd.org/cgi/query-pr.cgi?pr=163131 http://www.freebsd.org/cgi/query-pr.cgi?pr=163677 http://www.freebsd.org/cgi/query-pr.cgi?pr=163676 http://www.freebsd.org/cgi/query-pr.cgi?pr=163678 http://www.freebsd.org/cgi/query-pr.cgi?pr=163683 http://www.freebsd.org/cgi/query-pr.cgi?pr=163678 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 12:16:49 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9149106566C; Thu, 29 Dec 2011 12:16:49 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AB11E8FC1C; Thu, 29 Dec 2011 12:16:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTCGnOk093805; Thu, 29 Dec 2011 12:16:49 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTCGn03093801; Thu, 29 Dec 2011 12:16:49 GMT (envelope-from scheidell) Date: Thu, 29 Dec 2011 12:16:49 GMT Message-Id: <201112291216.pBTCGn03093801@freefall.freebsd.org> To: jdugan@x1024.net, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163683: [update] devel/py-thrift X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 12:16:49 -0000 Synopsis: [update] devel/py-thrift Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Thu Dec 29 12:16:11 UTC 2011 Responsible-Changed-Why: I'll take this also. These all need to be committed in a coordinated fashion: http://www.freebsd.org/cgi/query-pr.cgi?pr=163131 http://www.freebsd.org/cgi/query-pr.cgi?pr=163677 http://www.freebsd.org/cgi/query-pr.cgi?pr=163676 http://www.freebsd.org/cgi/query-pr.cgi?pr=163678 http://www.freebsd.org/cgi/query-pr.cgi?pr=163683> http://www.freebsd.org/cgi/query-pr.cgi?pr=163683 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 12:50:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DF57106566B for ; Thu, 29 Dec 2011 12:50: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 30E788FC12 for ; Thu, 29 Dec 2011 12:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTCoCDv024195 for ; Thu, 29 Dec 2011 12:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTCoCUv024193; Thu, 29 Dec 2011 12:50:12 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 12:50:12 GMT Resent-Message-Id: <201112291250.pBTCoCUv024193@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 C7C11106564A for ; Thu, 29 Dec 2011 12:46:29 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 3990C8FC0A for ; Thu, 29 Dec 2011 12:46:29 +0000 (UTC) Received: from lucid-nonsense.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id pBTCkLcB092794 for ; Thu, 29 Dec 2011 12:46:21 GMT (envelope-from matthew@lucid-nonsense.infracaninophile.co.uk) Received: (from matthew@localhost) by lucid-nonsense.infracaninophile.co.uk (8.14.5/8.14.5/Submit) id pBTCkLtR092793; Thu, 29 Dec 2011 12:46:21 GMT (envelope-from matthew) Message-Id: <201112291246.pBTCkLtR092793@lucid-nonsense.infracaninophile.co.uk> Date: Thu, 29 Dec 2011 12:46:21 GMT From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163693: [maintainer] textproc/sphinxsearch -- update to 2.0.3 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: Thu, 29 Dec 2011 12:50:12 -0000 >Number: 163693 >Category: ports >Synopsis: [maintainer] textproc/sphinxsearch -- update to 2.0.3 >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 Dec 29 12:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 8.2-STABLE amd64 >Organization: Infracaninophile >Environment: System: FreeBSD lucid-nonsense.infracaninophile.co.uk 8.2-STABLE FreeBSD 8.2-STABLE #0 r228845: Fri Dec 23 19:13:12 GMT 2011 root@lucid-nonsense.infracaninophile.co.uk:/usr/obj/usr/src/sys/LUCID-NONSENSE amd64 >Description: * Update to version 2.0.3 -- Announcement: http://sphinxsearch.com/news/49 -- New OPTION 'WITH_SYSLOG' to enable syslog support (on by default) -- ChangeLog: http://sphinxsearch.com/docs/2.0.2/rel202.html * Drop the pkg-message: the change to the default port numbers happened long ago now, and this is no longer relevant. * Whitespace fixup in Makefile -- use tabs consistently. * Update pkg-message with descriptive text from sphinxsearch.com website. Note in passing: this will make textproc/sphinxsearch leapfrog available version of textproc/sphinxsearch-devel. >How-To-Repeat: >Fix: --- sphinxsearch.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/sphinxsearch/Makefile,v retrieving revision 1.17 diff -u -u -r1.17 Makefile --- Makefile 30 Sep 2011 19:38:14 -0000 1.17 +++ Makefile 29 Dec 2011 10:44:45 -0000 @@ -1,6 +1,6 @@ # New ports collection makefile for: Sphinx full-text search engine -# Date created: 12 November 2006 -# Whom: Matthew Seaman +# Date created: 12 November 2006 +# Whom: Matthew Seaman # # $FreeBSD: ports/textproc/sphinxsearch/Makefile,v 1.17 2011/09/30 19:38:14 crees Exp $ # @@ -9,11 +9,10 @@ # See http://www.infracaninophile.co.uk/articles/sphinxse.html PORTNAME= sphinxsearch -PORTVERSION= 0.9.9 -PORTREVISION= 2 +PORTVERSION= 2.0.3 CATEGORIES= textproc databases MASTER_SITES= http://sphinxsearch.com/files/ -DISTNAME= sphinx-${PORTVERSION} +DISTNAME= sphinx-${PORTVERSION}-release MAINTAINER= m.seaman@infracaninophile.co.uk COMMENT= Sphinx Full-Text Search Engine @@ -22,18 +21,19 @@ # If expat is present on the system and configure finds it, it will # unconditionally link the output binary against it. There's no way -# of turning this off. So for consistency, make sure it's always on. +# of turning this off. So for consistency, make sure it's always on. LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 -OPTIONS= MYSQL "MySQL support" on \ - PGSQL "PostgreSQL support" off \ - ICONV "Iconv support" on \ +OPTIONS= MYSQL "MySQL support" on \ + PGSQL "PostgreSQL support" off \ + ICONV "Iconv support" on \ OPTIMIZED_CFLAGS "Use compiler optimization (-O3)" off \ ID64 "use 64-bit document and word IDs" off \ - UNIXODBC "unixODBC support" off + UNIXODBC "unixODBC support" off \ + SYSLOG "enable logging via syslog" on ## FFR -## LIBSTEMMER "compile with libstemmer support" off +## LIBSTEMMER "compile with libstemmer support" off CONFLICTS= sphinxsearch-devel-[0-9]* @@ -81,17 +81,24 @@ CONFIGURE_ARGS+= --without-unixodbc .endif -## FFR. The snowball project doesn't release numbered versions of it's -## pre-processors. Instead, at arbitrary intervals a snapshot of their -## source repository is turned into a tarball (always the same filename) -## and placed on their web site. It's like they want to make it as hard -## as possible for anyone to package and use their software. +.if defined(WITH_SYSLOG) && !defined(WITHOUT_SYSLOG) +CONFIGURE_ARGS+= --with-syslog +.else +CONFIGURE_ARGS+= --without-syslog +.endif + +## FFR. The snowball project doesn't release numbered versions of +## it's pre-processors. Instead, at arbitrary intervals a snapshot of +## their source repository is turned into a tarball (always the same +## filename) and placed on their web site. It's like they want to +## make it as hard as possible for anyone to package and use their +## software. ## -## # Adds support for two additional word stemmming pre-processors from -## # the Snowball project (http://snowball.tartarus.org/) -- these -## # essentially do exactly the same thing as the built in English and -## # Russian stemmers but are slightly slower and may produce subtly -## # different output. Disabled by default. +## # Adds support for two additional word stemmming pre-processors +## # from the Snowball project (http://snowball.tartarus.org/) -- +## # these essentially do exactly the same thing as the built in +## # English and Russian stemmers but are slightly slower and may +## # produce subtly different output. Disabled by default. ## .if defined(WITH_LIBSTEMMER) && !defined(WITHOUT_LIBSTEMMER) ## CONFIGURE_ARGS+= --with-libstemmer ## .else @@ -112,8 +119,8 @@ CPPFLAGS+= ${CXXFLAGS} CFGFILE= ${PREFIX}/etc/sphinx.conf USE_RC_SUBR= sphinxsearch.sh -SUB_LIST+= PORTNAME=${PORTNAME} \ - CFGFILE=${CFGFILE} \ +SUB_LIST+= PORTNAME=${PORTNAME} \ + CFGFILE=${CFGFILE} \ SPHINX_USR=${USERS} \ SPHINX_GRP=${GROUPS} \ SPHINX_DIR=${SPHINX_DIR} \ @@ -134,20 +141,20 @@ post-patch: @${REINPLACE_CMD} \ - -e "s!@CONFDIR@/log/searchd.pid!${SPHINX_RUN}/searchd.pid!" \ + -e "s!@CONFDIR@/log/searchd.pid!${SPHINX_RUN}/searchd.pid!" \ -e "s!@CONFDIR@/log/query.log!${SPHINX_LOG}/sphinx-query.log!" \ - -e "s!@CONFDIR@/log/searchd.log!${SPHINX_LOG}/searchd.log!" \ - -e "s!@CONFDIR@!${SPHINX_DIR}!" \ + -e "s!@CONFDIR@/log/searchd.log!${SPHINX_LOG}/searchd.log!" \ + -e "s!@CONFDIR@!${SPHINX_DIR}!" \ ${WRKSRC}/sphinx.conf.in do-install: install-bin install-docs install-examples install-bin: ${INSTALL_PROGRAM} ${WRKSRC}/src/indexer ${PREFIX}/bin/indexer - ${INSTALL_PROGRAM} ${WRKSRC}/src/search ${PREFIX}/bin/search + ${INSTALL_PROGRAM} ${WRKSRC}/src/search ${PREFIX}/bin/search ${INSTALL_PROGRAM} ${WRKSRC}/src/spelldump ${PREFIX}/bin/spelldump ${INSTALL_PROGRAM} ${WRKSRC}/src/searchd ${PREFIX}/sbin/searchd - ${INSTALL_DATA} ${WRKSRC}/sphinx.conf.dist ${CFGFILE}.sample + ${INSTALL_DATA} ${WRKSRC}/sphinx.conf.dist ${CFGFILE}.sample install-docs: .if !defined(NOPORTDOCS) Index: distinfo =================================================================== RCS file: /home/ncvs/ports/textproc/sphinxsearch/distinfo,v retrieving revision 1.7 diff -u -u -r1.7 distinfo --- distinfo 15 Jan 2011 15:27:17 -0000 1.7 +++ distinfo 29 Dec 2011 10:44:45 -0000 @@ -1,2 +1,2 @@ -SHA256 (sphinx-0.9.9.tar.gz) = bf8f55ffc095ff6b628f0cbc7eb54761811140140679a1c869cc1b17c42803e4 -SIZE (sphinx-0.9.9.tar.gz) = 1218359 +SHA256 (sphinx-2.0.3-release.tar.gz) = 875af63473875b7c7e152e85ed34bd1a92d09db062a289b594bf049b3a8c82dd +SIZE (sphinx-2.0.3-release.tar.gz) = 1923911 Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/textproc/sphinxsearch/pkg-descr,v retrieving revision 1.1 diff -u -u -r1.1 pkg-descr --- pkg-descr 18 Nov 2006 22:54:06 -0000 1.1 +++ pkg-descr 29 Dec 2011 10:44:45 -0000 @@ -1,14 +1,27 @@ -Sphinx is a full-text search engine, distributed under GPL version -2. Commercial license is also available for embedded use. +Sphinx is an open source full text search server, designed from the +ground up with performance, relevance (aka search quality), and +integration simplicity in mind. It's written in C++ and works on Linux +(RedHat, Ubuntu, etc), Windows, MacOS, Solaris, FreeBSD, and a few +other systems. -Generally, it's a standalone search engine, meant to provide fast, -size-efficient and relevant fulltext search functions to other -applications. Sphinx was specially designed to integrate well with SQL -databases and scripting languages. Currently built-in data sources -support fetching data either via direct connection to MySQL, or from -an XML pipe. +Sphinx lets you either batch index and search data stored in an SQL +database, NoSQL storage, or just files quickly easily and or index and +search data on the fly, working with Sphinx pretty much as with a +database server. -As for the name, Sphinx is an acronym which is officially decoded as -SQL Phrase Index. +A variety of text processing features enable fine-tuning Sphinx for +your particular application requirements, and a number of relevance +functions ensures you can tweak search quality as well. -WWW: http://www.sphinxsearch.com/ +Searching via SphinxAPI is as simple as 3 lines of code, and querying +via SphinxQL is even simpler, with search queries expressed in good +old SQL. + +Sphinx clusters scale up to billions of documents and tens of millions +search queries per day, powering top websites such as Craigslist, +DailyMotion, NetLog, etc. + +And last but not least, it's open-sourced under GPLv2, and the +community edition is free to use. + +WWW: http://sphinxsearch.com/ Index: pkg-message =================================================================== RCS file: pkg-message diff -N pkg-message --- pkg-message 3 Dec 2009 09:07:28 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,17 +0,0 @@ - - Note: for people upgrading from earlier versions to sphinx-0.9.9 - ================================================================ - - Please be aware that sphinx now uses these IANA[1] sanctioned port - numbers by default: - - sphinxql 9306/tcp Sphinx search server (MySQL listener) - # Andrew Aksyonoff 20 October 2009 - - sphinxapi 9312/tcp Sphinx search server - # Andrew Aksyonoff 20 October 2009 - - This is a change from the port numbers used by default in earlier - versions. - - [1] http://www.iana.org/assignments/port-numbers --- sphinxsearch.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 13:05:45 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 283F9106566B; Thu, 29 Dec 2011 13:05:45 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EE31A8FC13; Thu, 29 Dec 2011 13:05:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTD5iQ3041156; Thu, 29 Dec 2011 13:05:44 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTD5iEQ041149; Thu, 29 Dec 2011 13:05:44 GMT (envelope-from pawel) Date: Thu, 29 Dec 2011 13:05:44 GMT Message-Id: <201112291305.pBTD5iEQ041149@freefall.freebsd.org> To: tom@hur.st, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/156376: [PATCH] graphics/optipng: 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: Thu, 29 Dec 2011 13:05:45 -0000 Synopsis: [PATCH] graphics/optipng: update to 0.6.5 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Thu Dec 29 13:05:43 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156376 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 13:10:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24666106566B for ; Thu, 29 Dec 2011 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 0F4718FC08 for ; Thu, 29 Dec 2011 13:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTDAD6a041338 for ; Thu, 29 Dec 2011 13:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTDAD0c041337; Thu, 29 Dec 2011 13:10:13 GMT (envelope-from gnats) Date: Thu, 29 Dec 2011 13:10:13 GMT Message-Id: <201112291310.pBTDAD0c041337@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/163691: 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, 29 Dec 2011 13:10:14 -0000 The following reply was made to PR ports/163691; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163691: commit references a PR Date: Thu, 29 Dec 2011 13:04:37 +0000 (UTC) crees 2011-12-29 13:04:24 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Document XSS vulnerability in net-mgmt/zabbix-frontend PR: ports/163691 Obtained from: https://support.zabbix.com/browse/ZBX-4015 Security: ZBX-4015 Revision Changes Path 1.2531 +27 -1 ports/security/vuxml/vuln.xml _______________________________________________ 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 Dec 29 13:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB40B106564A for ; Thu, 29 Dec 2011 13: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 A0D638FC13 for ; Thu, 29 Dec 2011 13:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTDKBqf051350 for ; Thu, 29 Dec 2011 13:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTDKBRu051349; Thu, 29 Dec 2011 13:20:11 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 13:20:11 GMT Resent-Message-Id: <201112291320.pBTDKBRu051349@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, Kuan-Chung Chiu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7857106564A for ; Thu, 29 Dec 2011 13:14:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9C2408FC0A for ; Thu, 29 Dec 2011 13:14:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBTDEWbb056467 for ; Thu, 29 Dec 2011 13:14:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBTDEWFj056466; Thu, 29 Dec 2011 13:14:32 GMT (envelope-from nobody) Message-Id: <201112291314.pBTDEWFj056466@red.freebsd.org> Date: Thu, 29 Dec 2011 13:14:32 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163694: [maintainer update] converters/bsdconv 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: Thu, 29 Dec 2011 13:20:12 -0000 >Number: 163694 >Category: ports >Synopsis: [maintainer update] converters/bsdconv 7.2 >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 Dec 29 13:20:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: >Organization: N/A >Environment: >Description: Update converters/bsdconv to 7.2 Changelog: https://github.com/buganini/bsdconv/blob/master/Changelog >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/converters/bsdconv/Makefile b/converters/bsdconv/Makefile index fb4a19b..49047f7 100644 --- a/converters/bsdconv/Makefile +++ b/converters/bsdconv/Makefile @@ -6,7 +6,7 @@ # PORTNAME= bsdconv -PORTVERSION= 7.1 +PORTVERSION= 7.2 CATEGORIES= converters MASTER_SITES= https://github.com/buganini/${PORTNAME}/tarball/${PORTVERSION}/ DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} @@ -16,7 +16,7 @@ COMMENT= BSD licensed charset/encoding converter library LICENSE= BSD -GITVERSION= 95afc48 +GITVERSION= e11e47d FETCH_ARGS= -pRr WRKSRC= ${WRKDIR}/buganini-${PORTNAME}-${GITVERSION} diff --git a/converters/bsdconv/distinfo b/converters/bsdconv/distinfo index 92fe650..45e1f22 100644 --- a/converters/bsdconv/distinfo +++ b/converters/bsdconv/distinfo @@ -1,2 +1,2 @@ -SHA256 (buganini-bsdconv-7.1-0-g95afc48.tar.gz) = 0c246df01c14e43542adc2382645eb7243626ced72fc8b8553a0ead3fd56b0b0 -SIZE (buganini-bsdconv-7.1-0-g95afc48.tar.gz) = 4658085 +SHA256 (buganini-bsdconv-7.2-0-ge11e47d.tar.gz) = 9430859355be322c579992118310afe96138e40d19f1fb58a7ed48c63da0adf3 +SIZE (buganini-bsdconv-7.2-0-ge11e47d.tar.gz) = 4828600 diff --git a/converters/bsdconv/pkg-plist b/converters/bsdconv/pkg-plist index c23ba30..930eaee 100644 --- a/converters/bsdconv/pkg-plist +++ b/converters/bsdconv/pkg-plist @@ -41,6 +41,7 @@ lib/libbsdconv.so.7 %%DATADIR%%/from/_GB18030.so %%DATADIR%%/from/_GBK %%DATADIR%%/from/_ISO-8859-1 +%%DATADIR%%/from/_JIS0212 %%DATADIR%%/from/_SHIFT-JIS %%DATADIR%%/from/_UAO250 %%DATADIR%%/from/_UTF-8 @@ -83,6 +84,8 @@ lib/libbsdconv.so.7 %%DATADIR%%/inter/ZHCN %%DATADIR%%/inter/ZHTW %%DATADIR%%/inter/ZHTW_WORDS +%%DATADIR%%/inter/ZH_FUZZY_CN +%%DATADIR%%/inter/ZH_FUZZY_TW %%DATADIR%%/inter/alias %%DATADIR%%/to/3F %%DATADIR%%/to/3F.so @@ -144,6 +147,8 @@ lib/libbsdconv.so.7 %%DATADIR%%/to/_GB18030.so %%DATADIR%%/to/_GBK %%DATADIR%%/to/_ISO-8859-1 +%%DATADIR%%/to/_JIS0212 +%%DATADIR%%/to/_SHIFT-JIS %%DATADIR%%/to/_UAO250 %%DATADIR%%/to/_UTF-8 %%DATADIR%%/to/_UTF-8.so >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 13:20:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 235F81065680 for ; Thu, 29 Dec 2011 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 F04A18FC16 for ; Thu, 29 Dec 2011 13:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTDKBmS051359 for ; Thu, 29 Dec 2011 13:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTDKBNQ051358; Thu, 29 Dec 2011 13:20:11 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 13:20:11 GMT Resent-Message-Id: <201112291320.pBTDKBNQ051358@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, Kuan-Chung Chiu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1482106566C for ; Thu, 29 Dec 2011 13:17:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 901B98FC12 for ; Thu, 29 Dec 2011 13:17:02 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBTDH2Uh056790 for ; Thu, 29 Dec 2011 13:17:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBTDH2eU056789; Thu, 29 Dec 2011 13:17:02 GMT (envelope-from nobody) Message-Id: <201112291317.pBTDH2eU056789@red.freebsd.org> Date: Thu, 29 Dec 2011 13:17:02 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163695: [maintainer update] converters/py-bsdconv 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: Thu, 29 Dec 2011 13:20:12 -0000 >Number: 163695 >Category: ports >Synopsis: [maintainer update] converters/py-bsdconv 7.2 >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 Dec 29 13:20:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: >Organization: N/A >Environment: >Description: Update converters/py-bsdconv to 7.2 Changes: (https://github.com/buganini/python-bsdconv/commits/master) add .ctl() and constant CTL_SCORE_ATTACH >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/converters/py-bsdconv/Makefile b/converters/py-bsdconv/Makefile index 2709e67..f0f47d2 100644 --- a/converters/py-bsdconv/Makefile +++ b/converters/py-bsdconv/Makefile @@ -6,7 +6,7 @@ # PORTNAME= bsdconv -PORTVERSION= 7.1 +PORTVERSION= 7.2 CATEGORIES= converters python MASTER_SITES= https://github.com/buganini/python-${PORTNAME}/tarball/${PORTVERSION}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,7 +19,7 @@ LICENSE= BSD LIB_DEPENDS= bsdconv.7:${PORTSDIR}/converters/bsdconv -GITVERSION= 49d61da +GITVERSION= 163a5ad FETCH_ARGS= -pRr WRKSRC= ${WRKDIR}/buganini-python-${PORTNAME}-${GITVERSION} USE_PYTHON= yes diff --git a/converters/py-bsdconv/distinfo b/converters/py-bsdconv/distinfo index caf5541..06cb12a 100644 --- a/converters/py-bsdconv/distinfo +++ b/converters/py-bsdconv/distinfo @@ -1,2 +1,2 @@ -SHA256 (buganini-bsdconv-7.1-0-g49d61da.tar.gz) = d0cad9b094376bf4818c114097031f7ed07e3944dce4bf21c3a3205d6e42bbfa -SIZE (buganini-bsdconv-7.1-0-g49d61da.tar.gz) = 4061 +SHA256 (buganini-bsdconv-7.2-0-g163a5ad.tar.gz) = 18ca31c97d78c039fe46bfb411c8ddabfaf97118cf0df32f5864190710e8c077 +SIZE (buganini-bsdconv-7.2-0-g163a5ad.tar.gz) = 4231 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 13:30:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 560581065672 for ; Thu, 29 Dec 2011 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 2C1128FC0C for ; Thu, 29 Dec 2011 13:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTDUDkF059557 for ; Thu, 29 Dec 2011 13:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTDUDb5059553; Thu, 29 Dec 2011 13:30:13 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 13:30:13 GMT Resent-Message-Id: <201112291330.pBTDUDb5059553@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, Kuan-Chung Chiu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBF5E106564A for ; Thu, 29 Dec 2011 13:23:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A06E08FC12 for ; Thu, 29 Dec 2011 13:23:47 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBTDNl9b067769 for ; Thu, 29 Dec 2011 13:23:47 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBTDNluO067768; Thu, 29 Dec 2011 13:23:47 GMT (envelope-from nobody) Message-Id: <201112291323.pBTDNluO067768@red.freebsd.org> Date: Thu, 29 Dec 2011 13:23:47 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163696: [maintainer update] converters/gbsdconv 0.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, 29 Dec 2011 13:30:13 -0000 >Number: 163696 >Category: ports >Synopsis: [maintainer update] converters/gbsdconv 0.3 >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 Dec 29 13:30:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: >Organization: N/A >Environment: >Description: Update converters/gbsdconv to 0.3 Changelog: (https://github.com/buganini/gbsdconv/commits/master) Items widgets context menu for recursive toggling Metatag operation: score traning with path name, info column Content operation: ignore preview for non-text files >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/converters/gbsdconv/Makefile b/converters/gbsdconv/Makefile index f1042c8..3bb8857 100644 --- a/converters/gbsdconv/Makefile +++ b/converters/gbsdconv/Makefile @@ -6,7 +6,7 @@ # PORTNAME= gbsdconv -PORTVERSION= 0.2 +PORTVERSION= 0.3 CATEGORIES= converters python MASTER_SITES= https://github.com/buganini/${PORTNAME}/tarball/${PORTVERSION}/ DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} @@ -17,10 +17,10 @@ COMMENT= GUI for bsdconv LICENSE= BSD LIB_DEPENDS= tag_c.0:${PORTSDIR}/audio/taglib -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsdconv>=7.1:${PORTSDIR}/converters/py-bsdconv \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsdconv>=7.2:${PORTSDIR}/converters/py-bsdconv \ g-ir-scanner:${PORTSDIR}/devel/gobject-introspection -GITVERSION= 6de84a5 +GITVERSION= eab9940 FETCH_ARGS= -pRr WRKSRC= ${WRKDIR}/buganini-${PORTNAME}-${GITVERSION} NO_BUILD= yes @@ -35,6 +35,7 @@ do-install: ${MKDIR} ${PREFIX}/share/gbsdconv ${INSTALL_DATA} ${WRKSRC}/gbsdconv.xml ${PREFIX}/share/gbsdconv/ ${INSTALL_DATA} ${WRKSRC}/gbsdconv.png ${PREFIX}/share/gbsdconv/ + ${INSTALL_DATA} ${WRKSRC}/gbsdconv2.png ${PREFIX}/share/gbsdconv/ ${INSTALL_SCRIPT} ${WRKSRC}/gbsdconv ${PREFIX}/bin .include diff --git a/converters/gbsdconv/distinfo b/converters/gbsdconv/distinfo index 9eb79fc..ea27f92 100644 --- a/converters/gbsdconv/distinfo +++ b/converters/gbsdconv/distinfo @@ -1,2 +1,2 @@ -SHA256 (buganini-gbsdconv-0.2-0-g6de84a5.tar.gz) = 55c7e0c66382f4a8719167eaa207be5c1a618dfb3445ef3b26815710c7b3d37b -SIZE (buganini-gbsdconv-0.2-0-g6de84a5.tar.gz) = 13076 +SHA256 (buganini-gbsdconv-0.3-0-geab9940.tar.gz) = 7408fd066340eecd43762516fb40b39a4239052968c8e151acaa73c237b59dd0 +SIZE (buganini-gbsdconv-0.3-0-geab9940.tar.gz) = 14978 diff --git a/converters/gbsdconv/pkg-plist b/converters/gbsdconv/pkg-plist index f602a4f..3872556 100644 --- a/converters/gbsdconv/pkg-plist +++ b/converters/gbsdconv/pkg-plist @@ -1,4 +1,5 @@ bin/gbsdconv %%DATADIR%%/gbsdconv.png +%%DATADIR%%/gbsdconv2.png %%DATADIR%%/gbsdconv.xml @dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 13:50:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 541801065672 for ; Thu, 29 Dec 2011 13: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 4B7098FC14 for ; Thu, 29 Dec 2011 13:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTDoCrO078748 for ; Thu, 29 Dec 2011 13:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTDoCLS078747; Thu, 29 Dec 2011 13:50:12 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 13:50:12 GMT Resent-Message-Id: <201112291350.pBTDoCLS078747@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 Morozovsky Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91692106566B for ; Thu, 29 Dec 2011 13:46:03 +0000 (UTC) (envelope-from marck@woozle.rinet.ru) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.freebsd.org (Postfix) with ESMTP id 1954B8FC14 for ; Thu, 29 Dec 2011 13:46:02 +0000 (UTC) Received: from woozle.rinet.ru (localhost [127.0.0.1]) by woozle.rinet.ru (8.14.4/8.14.4) with ESMTP id pBTDZoD4023909 for ; Thu, 29 Dec 2011 17:35:50 +0400 (MSK) (envelope-from marck@woozle.rinet.ru) Received: (from marck@localhost) by woozle.rinet.ru (8.14.4/8.14.4/Submit) id pBTDZoiR023908; Thu, 29 Dec 2011 17:35:50 +0400 (MSK) (envelope-from marck) Message-Id: <201112291335.pBTDZoiR023908@woozle.rinet.ru> Date: Thu, 29 Dec 2011 17:35:50 +0400 (MSK) From: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163697: ports-mgmt/jailaudit TMPDIR compatibility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Morozovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2011 13:50:13 -0000 >Number: 163697 >Category: ports >Synopsis: ports-mgmt/jailaudit TMPDIR compatibility >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: Thu Dec 29 13:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Dmitry Morozovsky >Release: FreeBSD [89]-STABLE {i386,amd64} >Organization: Cronyx Plus LLC (RiNet ISP) >Environment: System: FreeBSD 9-PRERELEASE >Description: if TMPDIR is defins in the environmrnt, jailaudit port could not be built. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/ports-mgmt/jailaudit/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 6 Jan 2009 17:59:16 -0000 1.4 +++ Makefile 29 Dec 2011 11:20:33 -0000 @@ -19,10 +20,10 @@ PERIODICDIR?= ${PREFIX}/etc/periodic REPORTDIR?= ${PREFIX}/jailaudit/reports -TMPDIR?= ${PREFIX}/jailaudit/tmp +XTMPDIR?= ${PREFIX}/jailaudit/tmp PLIST_SUB+= PERIODICDIR="${PERIODICDIR:S,^${PREFIX}/,,}" \ REPORTDIR="${REPORTDIR:S,^${PREFIX}/,,}" \ - TMPDIR="${TMPDIR:S,^${PREFIX}/,,}" + XTMPDIR="${XTMPDIR:S,^${PREFIX}/,,}" .include Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/ports-mgmt/jailaudit/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 22 Jan 2006 02:50:21 -0000 1.2 +++ pkg-plist 29 Dec 2011 12:33:37 -0000 @@ -5,7 +5,7 @@ @dirrmtry %%PERIODICDIR%% @exec mkdir -p %D/%%REPORTDIR%% @dirrmtry %%REPORTDIR%% -@exec mkdir -p %D/%%TMPDIR%% -@dirrmtry %%TMPDIR%% +@exec mkdir -p %D/%%XTMPDIR%% +@dirrmtry %%XTMPDIR%% @unexec rmdir %DPDIR%% 2>/dev/null || true @dirrmtry jailaudit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 13:50:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97508106564A for ; Thu, 29 Dec 2011 13:50: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 7BB228FC17 for ; Thu, 29 Dec 2011 13:50:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTDoEuE078816 for ; Thu, 29 Dec 2011 13:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTDoETi078815; Thu, 29 Dec 2011 13:50:14 GMT (envelope-from gnats) Date: Thu, 29 Dec 2011 13:50:14 GMT Message-Id: <201112291350.pBTDoETi078815@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jim Riggs Cc: Subject: Re: ports/163691: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.10 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: Thu, 29 Dec 2011 13:50:14 -0000 The following reply was made to PR ports/163691; it has been noted by GNATS. From: Jim Riggs To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/163691: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.10 Date: Thu, 29 Dec 2011 07:33:40 -0600 (CST) >Submitter-Id: current-users >Originator: Jim Riggs >Organization: >Confidential: no >Synopsis: Re: ports/163691: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.10 >Severity: non-critical >Priority: low >Category: ports >Class: maintainer-update >Release: FreeBSD 8.2-RELEASE amd64 >Environment: System: FreeBSD packagebuild.peace.daveramsey.com 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: - Update to 1.8.10 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- zabbix-server-1.8.10,2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net-mgmt/zabbix-server/Makefile /root/zabbix-server/Makefile --- /usr/ports/net-mgmt/zabbix-server/Makefile 2011-10-14 20:26:34.000000000 -0500 +++ /root/zabbix-server/Makefile 2011-12-29 07:17:52.580751271 -0600 @@ -6,7 +6,7 @@ # PORTNAME= zabbix -PORTVERSION= 1.8.8 +PORTVERSION= 1.8.10 PORTEPOCH= 2 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} @@ -48,8 +48,6 @@ CONFIGURE_ARGS+= --enable-${ZABBIX_BUILD} .if ${ZABBIX_BUILD} != "agent" -CPPFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib" LIB_DEPENDS= netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ execinfo:${PORTSDIR}/devel/libexecinfo diff -ruN --exclude=CVS /usr/ports/net-mgmt/zabbix-server/distinfo /root/zabbix-server/distinfo --- /usr/ports/net-mgmt/zabbix-server/distinfo 2011-10-14 20:26:34.000000000 -0500 +++ /root/zabbix-server/distinfo 2011-12-29 07:16:16.306217215 -0600 @@ -1,2 +1,2 @@ -SHA256 (zabbix-1.8.8.tar.gz) = 25eded2536213cf1c75631f2becf46349b915dd8782698f5b2936f5abb7eeb99 -SIZE (zabbix-1.8.8.tar.gz) = 4213181 +SHA256 (zabbix-1.8.10.tar.gz) = d965d23f2ce8c7ddee7a1532863a208fae28958e3fc0871e0229ffa06f88a54b +SIZE (zabbix-1.8.10.tar.gz) = 4217417 diff -ruN --exclude=CVS /usr/ports/net-mgmt/zabbix-server/pkg-plist.frontend /root/zabbix-server/pkg-plist.frontend --- /usr/ports/net-mgmt/zabbix-server/pkg-plist.frontend 2011-10-14 20:26:34.000000000 -0500 +++ /root/zabbix-server/pkg-plist.frontend 2011-12-29 07:26:44.520198505 -0600 @@ -25,6 +25,7 @@ %%WWWDIR%%/api/classes/class.cmediatype.php %%WWWDIR%%/api/classes/class.cproxy.php %%WWWDIR%%/api/classes/class.cscreen.php +%%WWWDIR%%/api/classes/class.cscreenitem.php %%WWWDIR%%/api/classes/class.cscript.php %%WWWDIR%%/api/classes/class.ctemplate.php %%WWWDIR%%/api/classes/class.ctrigger.php @@ -427,8 +428,6 @@ %%WWWDIR%%/styles/div.css %%WWWDIR%%/styles/form.css %%WWWDIR%%/styles/ie.css -%%WWWDIR%%/styles/ie_css_bb.css -%%WWWDIR%%/styles/ie_css_ob.css %%WWWDIR%%/styles/ie_css_od.css %%WWWDIR%%/styles/link.css %%WWWDIR%%/styles/p.css --- zabbix-server-1.8.10,2.patch ends here --- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 13:50:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E73F5106566B; Thu, 29 Dec 2011 13: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 BD6B88FC0A; Thu, 29 Dec 2011 13:50:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTDoNjw079169; Thu, 29 Dec 2011 13:50:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTDoNqJ079165; Thu, 29 Dec 2011 13:50:23 GMT (envelope-from edwin) Date: Thu, 29 Dec 2011 13:50:23 GMT Message-Id: <201112291350.pBTDoNqJ079165@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marck@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163697: ports-mgmt/jailaudit TMPDIR compatibility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 13:50:24 -0000 Synopsis: ports-mgmt/jailaudit TMPDIR compatibility Responsible-Changed-From-To: freebsd-ports-bugs->marck Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 29 13:50:23 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163697 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 13:54:49 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8BE81065670; Thu, 29 Dec 2011 13:54:49 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7DFBE8FC0A; Thu, 29 Dec 2011 13:54:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTDsn9f087110; Thu, 29 Dec 2011 13:54:49 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTDsneD087106; Thu, 29 Dec 2011 13:54:49 GMT (envelope-from crees) Date: Thu, 29 Dec 2011 13:54:49 GMT Message-Id: <201112291354.pBTDsneD087106@freefall.freebsd.org> To: ports@christianserving.org, crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/163691: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.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: Thu, 29 Dec 2011 13:54:49 -0000 Synopsis: [vulnerable] please, update net-mgmt/zabbix-server to 1.8.10 Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: crees Responsible-Changed-When: Thu Dec 29 13:54:49 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163691 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 14:58:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F41FF1065726; Thu, 29 Dec 2011 14:58:18 +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 EE9B18FC0C; Thu, 29 Dec 2011 14:58:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTEwHnc041920; Thu, 29 Dec 2011 14:58:17 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTEwHbf041916; Thu, 29 Dec 2011 14:58:17 GMT (envelope-from sunpoet) Date: Thu, 29 Dec 2011 14:58:17 GMT Message-Id: <201112291458.pBTEwHbf041916@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/163694: [maintainer update] converters/bsdconv 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: Thu, 29 Dec 2011 14:58:19 -0000 Synopsis: [maintainer update] converters/bsdconv 7.2 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Thu Dec 29 14:58:17 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163694 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 14:58:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F0161065672; Thu, 29 Dec 2011 14:58: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 04CF38FC12; Thu, 29 Dec 2011 14:58:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTEwK04041988; Thu, 29 Dec 2011 14:58:20 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTEwKGq041983; Thu, 29 Dec 2011 14:58:20 GMT (envelope-from sunpoet) Date: Thu, 29 Dec 2011 14:58:20 GMT Message-Id: <201112291458.pBTEwKGq041983@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/163695: [maintainer update] converters/py-bsdconv 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: Thu, 29 Dec 2011 14:58:21 -0000 Synopsis: [maintainer update] converters/py-bsdconv 7.2 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Thu Dec 29 14:58:20 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163695 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 14:58:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E88611065670; Thu, 29 Dec 2011 14:58:23 +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 BE7298FC13; Thu, 29 Dec 2011 14:58:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTEwNjs042056; Thu, 29 Dec 2011 14:58:23 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTEwNRX042052; Thu, 29 Dec 2011 14:58:23 GMT (envelope-from sunpoet) Date: Thu, 29 Dec 2011 14:58:23 GMT Message-Id: <201112291458.pBTEwNRX042052@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/163696: [maintainer update] converters/gbsdconv 0.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, 29 Dec 2011 14:58:24 -0000 Synopsis: [maintainer update] converters/gbsdconv 0.3 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Thu Dec 29 14:58:23 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163696 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 15:00:52 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62EE51065740; Thu, 29 Dec 2011 15:00:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 389A18FC15; Thu, 29 Dec 2011 15:00:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTF0qO1043891; Thu, 29 Dec 2011 15:00:52 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTF0q3Y043882; Thu, 29 Dec 2011 15:00:52 GMT (envelope-from miwi) Date: Thu, 29 Dec 2011 15:00:52 GMT Message-Id: <201112291500.pBTF0q3Y043882@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/163669: New: devel/pecl-scream Break the silence operator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 15:00:52 -0000 Synopsis: New: devel/pecl-scream Break the silence operator Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Dec 29 15:00:51 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163669 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 15:08:59 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 988EB1065672; Thu, 29 Dec 2011 15:08:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6D0368FC14; Thu, 29 Dec 2011 15:08:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTF8xUd051344; Thu, 29 Dec 2011 15:08:59 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTF8xcZ051340; Thu, 29 Dec 2011 15:08:59 GMT (envelope-from miwi) Date: Thu, 29 Dec 2011 15:08:59 GMT Message-Id: <201112291508.pBTF8xcZ051340@freefall.freebsd.org> To: jaapb@kerguelen.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/156472: [new port] devel/ocaml-react - OCaml library for reactive programming X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 15:08:59 -0000 Synopsis: [new port] devel/ocaml-react - OCaml library for reactive programming State-Changed-From-To: closed->feedback State-Changed-By: miwi State-Changed-When: Thu Dec 29 15:08:59 UTC 2011 State-Changed-Why: can u please submit a full shar. thx. http://www.freebsd.org/cgi/query-pr.cgi?pr=156472 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 15:09:31 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E89D11065675; Thu, 29 Dec 2011 15:09:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE6DD8FC0A; Thu, 29 Dec 2011 15:09:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTF9VpC051447; Thu, 29 Dec 2011 15:09:31 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTF9VKu051443; Thu, 29 Dec 2011 15:09:31 GMT (envelope-from miwi) Date: Thu, 29 Dec 2011 15:09:31 GMT Message-Id: <201112291509.pBTF9VKu051443@freefall.freebsd.org> To: jaapb@kerguelen.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/156472: [new port] devel/ocaml-react - OCaml library for reactive programming X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 15:09:32 -0000 Synopsis: [new port] devel/ocaml-react - OCaml library for reactive programming State-Changed-From-To: feedback->closed State-Changed-By: miwi State-Changed-When: Thu Dec 29 15:09:31 UTC 2011 State-Changed-Why: sorry my fault http://www.freebsd.org/cgi/query-pr.cgi?pr=156472 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 16:50:48 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C5BA106564A; Thu, 29 Dec 2011 16:50:48 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 31A838FC0C; Thu, 29 Dec 2011 16:50:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTGomPt050403; Thu, 29 Dec 2011 16:50:48 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTGol2A050342; Thu, 29 Dec 2011 16:50:47 GMT (envelope-from pawel) Date: Thu, 29 Dec 2011 16:50:47 GMT Message-Id: <201112291650.pBTGol2A050342@freefall.freebsd.org> To: jflemer@alum.rpi.edu, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/153612: Update devel/arm-elf-binutils to version 2.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 16:50:48 -0000 Synopsis: Update devel/arm-elf-binutils to version 2.17 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Thu Dec 29 16:50:47 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=153612 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 18:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B9061065672 for ; Thu, 29 Dec 2011 18: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 27F7B8FC15 for ; Thu, 29 Dec 2011 18:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTIKBxc028881 for ; Thu, 29 Dec 2011 18:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTIKBP5028876; Thu, 29 Dec 2011 18:20:11 GMT (envelope-from gnats) Date: Thu, 29 Dec 2011 18:20:11 GMT Message-Id: <201112291820.pBTIKBP5028876@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Thomas Zander Cc: Subject: Re: ports/161845: [update] [patch] multimedia/mplayer-skins Bring in upstream updates to skins, including default skin. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas Zander List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2011 18:20:11 -0000 The following reply was made to PR ports/161845; it has been noted by GNATS. From: Thomas Zander To: bug-followup@FreeBSD.org, toxic@doobie.com, Martin Wilke Cc: Subject: Re: ports/161845: [update] [patch] multimedia/mplayer-skins Bring in upstream updates to skins, including default skin. Date: Thu, 29 Dec 2011 18:46:55 +0100 --0015174c426ac6b27004b53eb325 Content-Type: text/plain; charset=ISO-8859-1 Finally I got my head around this thing and make it complete. I think it's ready to commit. Best regards Riggs --0015174c426ac6b27004b53eb325 Content-Type: text/plain; charset=US-ASCII; name="skins.diff.txt" Content-Disposition: attachment; filename="skins.diff.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gws2cydf0 ZGlmZiAtcnVOIC91c3IvcG9ydHMvbXVsdGltZWRpYS9tcGxheWVyLXNraW5zL01ha2VmaWxlIG1w bGF5ZXItc2tpbnMvTWFrZWZpbGUKLS0tIC91c3IvcG9ydHMvbXVsdGltZWRpYS9tcGxheWVyLXNr aW5zL01ha2VmaWxlCTIwMDgtMDItMTMgMTc6MTQ6MjkuMDAwMDAwMDAwICswMTAwCisrKyBtcGxh eWVyLXNraW5zL01ha2VmaWxlCTIwMTEtMTItMjkgMTQ6MjA6MDYuNTA1NzIxMjI2ICswMTAwCkBA IC02LDggKzYsOCBAQAogIwogCiBQT1JUTkFNRT0JbXBsYXllci1za2lucwotUE9SVFZFUlNJT049 CTEuMS4yCi1QT1JUUkVWSVNJT049CTYKK1BPUlRWRVJTSU9OPQkxLjEuMworUE9SVFJFVklTSU9O PQkwCiBDQVRFR09SSUVTPQltdWx0aW1lZGlhCiBNQVNURVJfU0lURVM9CWh0dHA6Ly93d3cubXBs YXllcmhxLmh1L01QbGF5ZXIvc2tpbnMvIFwKIAkJaHR0cDovL3d3dzQubXBsYXllcmhxLmh1L01Q bGF5ZXIvc2tpbnMvIFwKQEAgLTE2LDkgKzE2LDkgQEAKIAkJZnRwOi8vZnRwNC5tcGxheWVyaHEu aHUvTVBsYXllci9za2lucy8gXAogCQlmdHA6Ly9mdHA1Lm1wbGF5ZXJocS5odS9NUGxheWVyL3Nr aW5zLwogRElTVEZJTEVTPQkjIGZpbGxlZCBpbiBsYXRlciBhZnRlciBvcHRpb25zCi1ESVNUX1NV QkRJUj0JbXBsYXllcgorRElTVF9TVUJESVI9CW1wbGF5ZXItc2tpbnMKIAotTUFJTlRBSU5FUj0J cmlnZ3NAcnJyLmRlCitNQUlOVEFJTkVSPQl0aG9tYXMuZS56YW5kZXJAZ29vZ2xlbWFpbC5jb20K IENPTU1FTlQ9CVNraW5zIGZvciBNUGxheWVyJ3MgR3JhcGhpY2FsIFVzZXIgSW50ZXJmYWNlIChH VUkpCiAKICMKQEAgLTM4LDE5ICszOCwyMSBAQAogIwogIyBGaWxlbmFtZXMKICMKLUFCWVNTX0ZJ TEU9CQlBYnlzcy0xLjYudGFyLmJ6MgorQUJZU1NfRklMRT0JCUFieXNzLTEuNy50YXIuYnoyCiBB TElFTk1JTkRfRklMRT0JCUFsaWVuTWluZC0xLjIudGFyLmJ6MgogQVZJRklMRV9GSUxFPQkJYXZp ZmlsZS0xLjYudGFyLmJ6MgorQVRFUkZJTEVfRklMRT0JCUF0ZXItMS4yLnRhci5iejIKIEJMVUVD VVJWRV9GSUxFPQkJYmx1ZWN1cnZlLTEuMy50YXIuYnoyCiBCTFVFSEVBUlRfRklMRT0JCUJsdWVI ZWFydC0xLjUudGFyLmJ6MgogQ0FOQVJZX0ZJTEU9CQlDYW5hcnktMS4yLnRhci5iejIKK0NMRUFS TE9PS1NfRklMRT0JQ2xlYXJsb29rcy0xLjQudGFyLmJ6MgogQ09SRUxJQU5fRklMRT0JCUNvcmVs aWFuLTEuMS50YXIuYnoyCiBDT1JORVJNUF9BUVVBX0ZJTEU9CUNvcm5lck1QLWFxdWEtMS40LnRh ci5iejIKIENPUk5FUk1QX0ZJTEU9CQlDb3JuZXJNUC0xLjIudGFyLmJ6MgogQ1VCSUNQTEFZRVJf RklMRT0JQ3ViaWNQbGF5ZXItMS4xLnRhci5iejIKIENZUlVTX0ZJTEU9CQlDeXJ1cy0xLjIudGFy LmJ6MgotREVGQVVMVF9GSUxFPQkJQmx1ZS0xLjcudGFyLmJ6MgotREVGQVVMVF9TTUFMTF9GSUxF PQlCbHVlLXNtYWxsLTEuNC50YXIuYnoyCitERUZBVUxUX0ZJTEU9CQlCbHVlLTEuOC50YXIuYnoy CitERUZBVUxUX1NNQUxMX0ZJTEU9CUJsdWUtc21hbGwtMS41LnRhci5iejIKIERJU0FQUEVBUkVS X0ZJTEU9CWRpc2FwcGVhcmVyLTEuMS50YXIuYnoyCiBESVZYUExBWUVSX0ZJTEU9CWRpdnhwbGF5 ZXItMS4zLnRhci5iejIKIERVU0hLVV9GSUxFPQkJRHVzaGt1LTEuMi50YXIuYnoyCkBAIC01OCw4 ICs2MCw5IEBACiBHTk9NRV9GSUxFPQkJZ25vbWUtMS4xLnRhci5iejIKIEhBTkRIRUxEX0ZJTEU9 CQloYW5kaGVsZC0xLjAudGFyLmJ6MgogSEFZUkFQSE9OX0ZJTEU9CQloYXlyYXBob24tMS4wLnRh ci5iejIKLUhXU1dfRklMRT0JCWh3c3dza2luLTEuMS50YXIuYnoyCitIV1NXX0ZJTEU9CQlod3N3 c2tpbi0xLjMudGFyLmJ6MgogSU5EVVNUUklBTF9GSUxFPQlJbmR1c3RyaWFsLTEuMC50YXIuYnoy CitJQ1lfRklMRT0JCUlDWS0xLjAudGFyLmJ6MgogSVRVTkVTX0ZJTEU9CQlpVHVuZXMtMS4xLnRh ci5iejIKIElUVU5FU19NSU5JX0ZJTEU9CWlUdW5lcy1taW5pLTEuMS50YXIuYnoyCiBKSU1QTEFZ RVJfRklMRT0JCUppTVBsYXllci0xLjQudGFyLmJ6MgpAQCAtNzAsMTIgKzczLDE0IEBACiBNSU5J X0ZJTEU9CQltaW5pLTAuMS50YXIuYnoyCiBNT09OUEhBU0VfRklMRT0JCW1vb25waGFzZS0xLjAu dGFyLmJ6MgogTVBMQVlFUl9SRURfRklMRT0JbXBsYXllcl9yZWQtMS4wLnRhci5iejIKK05BVElW RV9SRURfRklMRT0JbmF0aXZlUmVkLTEuMS50YXIuYnoyCiBORVRTQ0FQRTRfRklMRT0JCW5ldHNj YXBlNC0xLjAudGFyLmJ6MgogTkVVVFJPTl9GSUxFPQkJbmV1dHJvbi0xLjUudGFyLmJ6MgogTkVX QUdFX0ZJTEU9CQluZXctYWdlLTEuMC50YXIuYnoyCiBPUkFOR0VfRklMRT0JCU9yYW5nZS0xLjMu dGFyLmJ6MgogT1NYQlJVU0hFRF9GSUxFPQlPU1gtQnJ1c2hlZC0yLjMudGFyLmJ6MgogT1NYTU9E X0ZJTEU9CQlPU1gtTW9kLTEuMS50YXIuYnoyCitQQ0xBTkRfRklMRT0JCXBjbGFuZC0xLjAudGFy LmJ6MgogUEhPTllfRklMRT0JCXBob255LTEuMS50YXIuYnoyCiBQTEFTVElDX0ZJTEU9CQlwbGFz dGljLTEuMi50YXIuYnoyCiBQT1dFUlBMQVlFUl9GSUxFPQlQb3dlclBsYXllci0xLjEudGFyLmJ6 MgpAQCAtMTA1LDkgKzExMCwxMSBAQAogT1BUSU9OUys9CVNLSU5fQUJZU1MgImJlYXV0aWZ1bCBN UGxheWVyIHNraW4iIG9mZgogT1BUSU9OUys9CVNLSU5fQUxJRU5NSU5EICJBbGllbk1pbmQgWE1N UyIgb2ZmCiBPUFRJT05TKz0JU0tJTl9BVklGSUxFICJhdmlwbGF5IGxvb2siIG9mZgorT1BUSU9O Uys9CVNLSU5fQVRFUkZJTEUgImRhcmssIGNvb2wtbG9va2luZyIgb2ZmCiBPUFRJT05TKz0JU0tJ Tl9CTFVFQ1VSVkUgImJsdWVjdXJ2ZSIgb2ZmCiBPUFRJT05TKz0JU0tJTl9CTFVFSEVBUlQgIkJs dWVIZWFydCBYTU1TIiBvZmYKIE9QVElPTlMrPQlTS0lOX0NBTkFSWSAic21hbGwsIGNvbXBhY3Qi IG9mZgorT1BUSU9OUys9CVNLSU5fQ0xFQVJMT09LUyAibW9kZXJuIENsZWFybG9va3MiIG9mZgog T1BUSU9OUys9CVNLSU5fQ09SRUxJQU4gInBsYWluIGxvb2siIG9mZgogT1BUSU9OUys9CVNLSU5f Q09STkVSTVAgIldpbkFNUCBjb3JuZXIiIG9mZgogT1BUSU9OUys9CVNLSU5fQ09STkVSTVBfQVFV QSAiV2luQU1QIGNvcm5lciBhcXVhIiBvZmYKQEAgLTEyMiw4ICsxMjksMTAgQEAKIE9QVElPTlMr PQlTS0lOX0hBWVJBUEhPTiAiSGF5cmFwaG9uIiBvZmYKIE9QVElPTlMrPQlTS0lOX0hXU1cgInNp bXBsaXN0aWMiIG9mZgogT1BUSU9OUys9CVNLSU5fSU5EVVNUUklBTCAiSW5kdXN0cmlhbCBHVEsg dGhlbWUiIG9mZgorT1BUSU9OUys9CVNLSU5fSUNZICJOZXJvIFNob3dUaW1lIHNraW4iIG9mZgog T1BUSU9OUys9CVNLSU5fSVRVTkVTICJpVHVuZXMiIG9mZgogT1BUSU9OUys9CVNLSU5fSVRVTkVT X01JTkkgImlUdW5lcyBtaW5pIiBvZmYKK09QVElPTlMrPQlTS0lOX1BDTEFORCAiYmx1ZSB3YXZl cyIgb2ZmCiBPUFRJT05TKz0JU0tJTl9KSU1QTEFZRVIgInJvdW5kIGFuZCBjb2xvcmZ1bCIgb2Zm CiBPUFRJT05TKz0JU0tJTl9LREUgInVzZXMgS0RFIGltYWdlcyIgb2ZmCiBPUFRJT05TKz0JU0tJ Tl9LUllTVEFMICJ2ZXJ5IGNvbG9yZnVsIiBvZmYKQEAgLTEzMiw2ICsxNDEsNyBAQAogT1BUSU9O Uys9CVNLSU5fTUlOSSAiTVBsYXllci1wbHVnaW4gZm9yIG1vemlsbGEiIG9mZgogT1BUSU9OUys9 CVNLSU5fTU9PTlBIQVNFICJNb29uUGhhc2UiIG9mZgogT1BUSU9OUys9CVNLSU5fTVBMQVlFUl9S RUQgIk1QbGF5ZXIgUkVEIiBvZmYKK09QVElPTlMrPQlTS0lOX05BVElWRV9SRUQgInJlZCBhbmQg YmxhY2siIG9mZgogT1BUSU9OUys9CVNLSU5fTkVUU0NBUEU0ICJOZXRzY2FwZSBcInVuYXRrb3pv a1wiIiBvZmYKIE9QVElPTlMrPQlTS0lOX05FVVRST04gImZ1dHVyaXN0aWMgbG9vayIgb2ZmCiBP UFRJT05TKz0JU0tJTl9ORVdBR0UgImNsZWFuIGFuZCBzaW1wbGUiIG9mZgpAQCAtMTcxLDEzICsx ODEsMTMgQEAKICMKICMgQWxsc2tpbnMKICMKLUFMTFNLSU5TPQlBQllTUyBBTElFTk1JTkQgQVZJ RklMRSBCTFVFQ1VSVkUgQkxVRUhFQVJUIENBTkFSWSBcCi0JCUNPUkVMSUFOIENPUk5FUk1QIENP Uk5FUk1QX0FRVUEgQ1VCSUNQTEFZRVIgQ1lSVVMgXAorQUxMU0tJTlM9CUFCWVNTIEFMSUVOTUlO RCBBVklGSUxFIEFURVJGSUxFIEJMVUVDVVJWRSBCTFVFSEVBUlQgQ0FOQVJZIFwKKwkJQ0xFQVJM T09LUyBDT1JFTElBTiBDT1JORVJNUCBDT1JORVJNUF9BUVVBIENVQklDUExBWUVSIENZUlVTIFwK IAkJRElTQVBQRUFSRVIgRElWWFBMQVlFUiBEVVNIS1UgRFZEUExBWUVSIEdOT01FIEhBTkRIRUxE IFwKLQkJSEFZUkFQSE9OIEhXU1cgSU5EVVNUUklBTCBJVFVORVMgSVRVTkVTX01JTkkgSklNUExB WUVSIFwKLQkJS0RFIEtSWVNUQUwgTUVOVEFMSUMgTUlETklHSFRMT1ZFIE1JTkkgTU9PTlBIQVNF IFwKLQkJTVBMQVlFUl9SRUQgTkVUU0NBUEU0IE5FVVRST04gTkVXQUdFIE9SQU5HRSBPU1hCUlVT SEVEIFwKLQkJT1NYTU9EIFBIT05ZIFBMQVNUSUMgUE9XRVJQTEFZRVIgUFJPVE9OIFFQTEFZRVIg XAorCQlIQVlSQVBIT04gSFdTVyBJQ1kgSU5EVVNUUklBTCBJVFVORVMgSVRVTkVTX01JTkkgSklN UExBWUVSIFwKKwkJS0RFIEtSWVNUQUwgTUVOVEFMSUMgTUlETklHSFRMT1ZFIE1JTkkgTU9PTlBI QVNFIE1QTEFZRVJfUkVEIFwKKwkJTkFUSVZFX1JFRCBORVRTQ0FQRTQgTkVVVFJPTiBORVdBR0Ug T1JBTkdFIE9TWEJSVVNIRUQgXAorCQlPU1hNT0QgUENMQU5EIFBIT05ZIFBMQVNUSUMgUE9XRVJQ TEFZRVIgUFJPVE9OIFFQTEFZRVIgXAogCQlRVUlDS1NJTFZFUiBTRVNTRU5FIFNMSU0gU09GVEdS SVAgVEVSTUlOQVRPUjMgVFJJVU0gXAogCQlUVklTT1IgVUxUUkFGSU5BIFdFQkJZIFdJTkRPV1NN RURJQVBMQVlFUjYgWEFOSU0gWEZDRTQgXAogCQlYSU5FX0xDRCBYTU1QTEFZRVIgXApkaWZmIC1y dU4gL3Vzci9wb3J0cy9tdWx0aW1lZGlhL21wbGF5ZXItc2tpbnMvZGlzdGluZm8gbXBsYXllci1z a2lucy9kaXN0aW5mbwotLS0gL3Vzci9wb3J0cy9tdWx0aW1lZGlhL21wbGF5ZXItc2tpbnMvZGlz dGluZm8JMjAxMS0wNy0wMyAxNTozODozMy4wMDAwMDAwMDAgKzAyMDAKKysrIG1wbGF5ZXItc2tp bnMvZGlzdGluZm8JMjAxMS0xMi0yOSAxNTowMDo0My40NjQ5MTI4OTQgKzAxMDAKQEAgLTEsMTE0 ICsxLDEyNCBAQAotU0hBMjU2IChtcGxheWVyL0FieXNzLTEuNi50YXIuYnoyKSA9IDRjMDg2Zjhk NjVhY2IyNDg2NWRlZjIxMDFmZTZiODUxYjM3MDhiZTVmMGUzNDJkYjQ5MTM2MGY3ODc4MDQ2MTAK LVNJWkUgKG1wbGF5ZXIvQWJ5c3MtMS42LnRhci5iejIpID0gMzE1MzkyCi1TSEEyNTYgKG1wbGF5 ZXIvQWxpZW5NaW5kLTEuMi50YXIuYnoyKSA9IDZiYWEwNzAwYmIzMDM0MzVlYjVmYjBmMGRiYTE1 Y2MxYjIwNDEzZmYwOTg3ZWE1OTFjNjZjMmIwYzYxYzQxMjkKLVNJWkUgKG1wbGF5ZXIvQWxpZW5N aW5kLTEuMi50YXIuYnoyKSA9IDEzMTI5NQotU0hBMjU2IChtcGxheWVyL2F2aWZpbGUtMS42LnRh ci5iejIpID0gMTdlNzBhODc1MGUyZWQxZDNkZjM2NTA2MGRhZGM5Yjg5ZmQ4MWMwOWZkZmNkNjk1 MGU4NWM0ODUyZDI5ZWMyOAotU0laRSAobXBsYXllci9hdmlmaWxlLTEuNi50YXIuYnoyKSA9IDQy NDA5Ci1TSEEyNTYgKG1wbGF5ZXIvYmx1ZWN1cnZlLTEuMy50YXIuYnoyKSA9IDBjNDU0YjkyYmYy YmU2ZDZlNjY5MjAzNmRhMmIxNTM0NmU3ZDRiYWRlMzFhNTY0MzBkYTkxMGEyNGI0MmRiMWIKLVNJ WkUgKG1wbGF5ZXIvYmx1ZWN1cnZlLTEuMy50YXIuYnoyKSA9IDM4MjMxCi1TSEEyNTYgKG1wbGF5 ZXIvQmx1ZUhlYXJ0LTEuNS50YXIuYnoyKSA9IDc5NGMwYjkzZThjMTI4MWM5NzVjYTQ2NTA0NDJj YjBmMjAwZjg4NDBlNWQ1NjdkYWZkOTAzYzc5YzFiYTE3ZjYKLVNJWkUgKG1wbGF5ZXIvQmx1ZUhl YXJ0LTEuNS50YXIuYnoyKSA9IDI4MTA1MQotU0hBMjU2IChtcGxheWVyL0NhbmFyeS0xLjIudGFy LmJ6MikgPSBjYjM5ZjdkNjY4NWRmYjQ5Y2ExM2U5Mjg5NjlmNzFlNWVjZmNkZDMwM2ZhNTQwYTQ2 ZWI5ZWE5ZjE1NGIxYWRmCi1TSVpFIChtcGxheWVyL0NhbmFyeS0xLjIudGFyLmJ6MikgPSAxMDQw MTMKLVNIQTI1NiAobXBsYXllci9Db3JlbGlhbi0xLjEudGFyLmJ6MikgPSA2MGQ1MjNiMmQyNGU1 NDcyMzNjMDBkMTQyNWFhOWNhNDllZGYxYzNiNWU4MGY4OWI2YTY1NDY0YWY3YzE3MDZlCi1TSVpF IChtcGxheWVyL0NvcmVsaWFuLTEuMS50YXIuYnoyKSA9IDI4NDQyMwotU0hBMjU2IChtcGxheWVy L0Nvcm5lck1QLTEuMi50YXIuYnoyKSA9IDNkNDMyMGExNzhmMmY4MTAzYjhmODZiMDVjNDIxZjg5 MWRmMWM4NmY4MWE3MjY1MWU3NzYzM2YzZGY2MzAxNmEKLVNJWkUgKG1wbGF5ZXIvQ29ybmVyTVAt MS4yLnRhci5iejIpID0gMjMyNzMxCi1TSEEyNTYgKG1wbGF5ZXIvQ29ybmVyTVAtYXF1YS0xLjQu dGFyLmJ6MikgPSA4NGIwNzk0OTI1NDcyODdlZWU2ZDlmNjhjYjhmNzkxNWJjNzU3Y2Q5NzJhZjgz Yzc3OTY5NDhmYTBhM2RhYjJmCi1TSVpFIChtcGxheWVyL0Nvcm5lck1QLWFxdWEtMS40LnRhci5i ejIpID0gMjQzMTU0Ci1TSEEyNTYgKG1wbGF5ZXIvQ3ViaWNQbGF5ZXItMS4xLnRhci5iejIpID0g MTM1NjU2MjliODM0NTk1MjY4MzIxZjkwOGViYTQ1Mzk5MGFkN2I4NzZkNDNiODA5M2RmOTRlYzQ1 OTg0YTE4MAotU0laRSAobXBsYXllci9DdWJpY1BsYXllci0xLjEudGFyLmJ6MikgPSAxMjQ0NzAK LVNIQTI1NiAobXBsYXllci9DeXJ1cy0xLjIudGFyLmJ6MikgPSAwMTcxMWY1MWZkMTcwNmU1M2Rl MTdjMTliNDEyYWNjNWJjYzVlYWQ1MWFlYTJhNWIzY2NmMGJmMmExZDIwZDExCi1TSVpFIChtcGxh eWVyL0N5cnVzLTEuMi50YXIuYnoyKSA9IDIyODQ2MQotU0hBMjU2IChtcGxheWVyL2Rpc2FwcGVh cmVyLTEuMS50YXIuYnoyKSA9IGJjZTE0MTU5ZjAxYjg5MmYyYTdhNTQ0MGNlOGY0MWQ1MDIzNzcw YWU3YzVhNmQ1ODczMTMzOGM5ZDdiODI3MGYKLVNJWkUgKG1wbGF5ZXIvZGlzYXBwZWFyZXItMS4x LnRhci5iejIpID0gNTU2MDQKLVNIQTI1NiAobXBsYXllci9kaXZ4cGxheWVyLTEuMy50YXIuYnoy KSA9IDc3ZmRiODZhYmM4MmVjZTAzMzBmYTQxYzk5MjNhMDljMjA4OTNkMjJiNTg1YTM3ODdhY2Qy Y2U3ZTU5OGZjOGEKLVNJWkUgKG1wbGF5ZXIvZGl2eHBsYXllci0xLjMudGFyLmJ6MikgPSA5MTY5 NQotU0hBMjU2IChtcGxheWVyL0R1c2hrdS0xLjIudGFyLmJ6MikgPSBmYjI0NmI3Yjc4OWQxOTQ1 NTM1Nzc2MTRlOTU1YWRiZDMzNDdkZTA3NWNiZTJiODI3OTJkOGJlNjVhNDk5NGFlCi1TSVpFICht cGxheWVyL0R1c2hrdS0xLjIudGFyLmJ6MikgPSA1MjA0MDAKLVNIQTI1NiAobXBsYXllci9EVkRQ bGF5ZXItMS4xLnRhci5iejIpID0gYWQxY2U1YTMxYWE5YjhkNmYyYTEzNzNlNDg5ZDRhYWIyM2M4 NjIwNGZlOWQxY2U4MTIyODEzN2RhMDU4MzA4OAotU0laRSAobXBsYXllci9EVkRQbGF5ZXItMS4x LnRhci5iejIpID0gMTE0NTc0Ci1TSEEyNTYgKG1wbGF5ZXIvZ25vbWUtMS4xLnRhci5iejIpID0g MDliZDBlNTdiOGM1NTJiYTUyOTczZWQ2YmFkMzI0MmJjMTZhYTY4NTBiY2Q0NzBkNWUyYTBjMjI0 YjhmMTdkMQotU0laRSAobXBsYXllci9nbm9tZS0xLjEudGFyLmJ6MikgPSAzNjg2NDkKLVNIQTI1 NiAobXBsYXllci9oYW5kaGVsZC0xLjAudGFyLmJ6MikgPSA4ODAzMWZmYjJhYzI4NWI1OWMxOTNi ZDk4OGRjYTYzNzIyNDE4OWJjOTAwYjAxYTFmNjgzOWM1ZWNkZGM5OGYxCi1TSVpFIChtcGxheWVy L2hhbmRoZWxkLTEuMC50YXIuYnoyKSA9IDgxNTY3MAotU0hBMjU2IChtcGxheWVyL2hheXJhcGhv bi0xLjAudGFyLmJ6MikgPSBkMjgzZjE1NGIyMzA0NjZlOGRjOWEyZWJmNThmMjFlOGY3NTBjNGYz YTlhMWZhOGRjYmRlMzQ2YWM1OWU4MDI4Ci1TSVpFIChtcGxheWVyL2hheXJhcGhvbi0xLjAudGFy LmJ6MikgPSA3NzU3NwotU0hBMjU2IChtcGxheWVyL2h3c3dza2luLTEuMS50YXIuYnoyKSA9IDM0 NTFjMjM5MDFlZGJkNzg3ZmYwZGUyNjFhYTM0OWI2MmVmMDkwNTQwNDg4NDdlOWMzNjJiYzZlZGE1 YWE1ZTEKLVNJWkUgKG1wbGF5ZXIvaHdzd3NraW4tMS4xLnRhci5iejIpID0gMjAzMzEKLVNIQTI1 NiAobXBsYXllci9JbmR1c3RyaWFsLTEuMC50YXIuYnoyKSA9IGFkMmFiMzlkZTYzOWM5NmI0ZjZk ZTEzZTk1NDljYjNkZGRlNjU5NDY2NTlkZTg3ZDNiMTZkYjUxNTk0NzMyNmYKLVNJWkUgKG1wbGF5 ZXIvSW5kdXN0cmlhbC0xLjAudGFyLmJ6MikgPSA1MzA5MgotU0hBMjU2IChtcGxheWVyL2lUdW5l cy0xLjEudGFyLmJ6MikgPSA0ZTA2Nzc5MDZhZjFiZWY2ZWM5MmQwZTlkYjM1NWE5OTA0M2FhMzk0 ZGUyNWM4NWM1NjY5MzQwZmU1YjI3YjA0Ci1TSVpFIChtcGxheWVyL2lUdW5lcy0xLjEudGFyLmJ6 MikgPSA2MzQwNQotU0hBMjU2IChtcGxheWVyL2lUdW5lcy1taW5pLTEuMS50YXIuYnoyKSA9IDk3 MWMzODVlMWI3MjI1YTNkMGE5MWRiYzA2ODY1NTc3MjM3YmExZDJiNzk0ODM3ODllNGIyYWIyNGIy YTc4MjgKLVNJWkUgKG1wbGF5ZXIvaVR1bmVzLW1pbmktMS4xLnRhci5iejIpID0gNDI4ODYKLVNI QTI1NiAobXBsYXllci9KaU1QbGF5ZXItMS40LnRhci5iejIpID0gNjNiM2QwOTVjMmI5OWMyOWM5 YjdiYjVhZWY3OTg3ZjZjZjc0ZjBmNDczMmI3ODkyOTcxMjNjODVkNmI2ZTAzNAotU0laRSAobXBs YXllci9KaU1QbGF5ZXItMS40LnRhci5iejIpID0gMTc4NTE3Ci1TSEEyNTYgKG1wbGF5ZXIvS0RF LTAuMy50YXIuYnoyKSA9IGU5YzBjZDgwZjhlNjYzNzAzMTk2N2ZiZjY1YmYzNjUwOTc5MzVjMTRj NjNjYTIzYmJkZDY0ZGEyMTFmMmVkMjcKLVNJWkUgKG1wbGF5ZXIvS0RFLTAuMy50YXIuYnoyKSA9 IDEzMDUwMgotU0hBMjU2IChtcGxheWVyL2tyeXN0YWwtMS4xLnRhci5iejIpID0gMTJjMjIwMDNm YzNlNWFmMzljZjUyNzg3ZjA5NTBmZDUxN2M5MmU4ZWEwY2ZkZDUyNjQzNGQ2ZDUyNjlmNjc4ZAot U0laRSAobXBsYXllci9rcnlzdGFsLTEuMS50YXIuYnoyKSA9IDI1NzQ1OQotU0hBMjU2IChtcGxh eWVyL21lbnRhbGljLTEuMi50YXIuYnoyKSA9IGY3ZjM1MmNlMTgwNWJlYzhlMzZjYTRmMjU5YzY3 OTYzMmQ2NjI4YmJlYmU4YzE3ZWNkYjY2NjdmZmZiNmJlYzgKLVNJWkUgKG1wbGF5ZXIvbWVudGFs aWMtMS4yLnRhci5iejIpID0gMTY2NTcwCi1TSEEyNTYgKG1wbGF5ZXIvTWlkbmlnaHRMb3ZlLTEu Ni50YXIuYnoyKSA9IDFkMmJkY2UxNzM3YmVlYTExMjliMTMyNjU5YzE2MGI4MzNmYTFiMzJjODll ODE4N2U3ODMzODczNzVjNTE3ZTgKLVNJWkUgKG1wbGF5ZXIvTWlkbmlnaHRMb3ZlLTEuNi50YXIu YnoyKSA9IDUzOTY2NQotU0hBMjU2IChtcGxheWVyL21pbmktMC4xLnRhci5iejIpID0gMDYzODdm ZGY1YWI2ZjIwYzQ4ZWM3MmFjNTMzMDBhNzQ2MjEzMjVmZjQwMGI5NjUxODMwYmM3MzRkNmZlNzg1 YwotU0laRSAobXBsYXllci9taW5pLTAuMS50YXIuYnoyKSA9IDQ5NzYKLVNIQTI1NiAobXBsYXll ci9tb29ucGhhc2UtMS4wLnRhci5iejIpID0gYmFmOGM1ZTQwNTkxZmE1Y2QxY2E4MDU5NmQyMjM3 YjM4MDQ4YTY4ZjMyZjQ3MzQ3Y2I2NWMzMDVjYzJjOTk5MQotU0laRSAobXBsYXllci9tb29ucGhh c2UtMS4wLnRhci5iejIpID0gMjg0MDcKLVNIQTI1NiAobXBsYXllci9tcGxheWVyX3JlZC0xLjAu dGFyLmJ6MikgPSBlMzJlYzIzYzBlYzE1MjJiNGFkZTI0NDFkZDhhNTE1OTlmMDY2Nzc2ZDI5YWJl NTRhYzE4ZTVlMzZkZDRhYmM0Ci1TSVpFIChtcGxheWVyL21wbGF5ZXJfcmVkLTEuMC50YXIuYnoy KSA9IDEzMjY3MzcKLVNIQTI1NiAobXBsYXllci9uZXRzY2FwZTQtMS4wLnRhci5iejIpID0gMjg1 NWQ4ZThhYTU1ZDRjNTNhMWI4MDRjNTM4YzE5ODg4YjZmYzhlZGIwNDc0NDE5ZjIwNTNlN2NkNWU3 M2UzYQotU0laRSAobXBsYXllci9uZXRzY2FwZTQtMS4wLnRhci5iejIpID0gMjA0MDc4Ci1TSEEy NTYgKG1wbGF5ZXIvbmV1dHJvbi0xLjUudGFyLmJ6MikgPSBkMGQ2ZGM3ZTQ3NWM4NmY2MjRmODQ5 MTJiNWZmNjE2OTI5MzQxNDU4NWU0Mjk5MTZhNTQ1ZjU5ZmEyMDM2YzgxCi1TSVpFIChtcGxheWVy L25ldXRyb24tMS41LnRhci5iejIpID0gMzY5MzAzCi1TSEEyNTYgKG1wbGF5ZXIvbmV3LWFnZS0x LjAudGFyLmJ6MikgPSBlYmZjOWJmNTMyOTFmZDhmN2U5MzM4YjQxMWM0NDVjOGEyNDU1ZGJjM2Fi MzhhMGI3MDFhYzczZTMwNDYwNzRjCi1TSVpFIChtcGxheWVyL25ldy1hZ2UtMS4wLnRhci5iejIp ID0gMTE4MDYwCi1TSEEyNTYgKG1wbGF5ZXIvT3JhbmdlLTEuMy50YXIuYnoyKSA9IDc2OWYxMjE1 MmMwNWI2ZDRlMTBiNDMxMzFjMzZmNWUxYTRjMWYyZGE4NTc4N2QyNDU4NTdmNmQ1NTY3ODRlZTIK LVNJWkUgKG1wbGF5ZXIvT3JhbmdlLTEuMy50YXIuYnoyKSA9IDMwMDQ5OAotU0hBMjU2IChtcGxh eWVyL09TWC1CcnVzaGVkLTIuMy50YXIuYnoyKSA9IDUyNTE2Y2YwNzZjZmIwNzgxNWJjMGI4ZDdm ZTBjODBhZmU5Y2UzZTA3NDc2MWMwY2JkZGRlYmZiNTJkNzc3ZTIKLVNJWkUgKG1wbGF5ZXIvT1NY LUJydXNoZWQtMi4zLnRhci5iejIpID0gNzYyMzMKLVNIQTI1NiAobXBsYXllci9PU1gtTW9kLTEu MS50YXIuYnoyKSA9IDMyMDM2Y2Q0MzlkNjkyZjI4NGQ3MWM3ZWNlNjE1ODViNmI5Y2Q2OGI1MmNi ODU1NWE2NjIyZGYyYmM0ZmEyNmEKLVNJWkUgKG1wbGF5ZXIvT1NYLU1vZC0xLjEudGFyLmJ6Mikg PSAyNzczNjUKLVNIQTI1NiAobXBsYXllci9waG9ueS0xLjEudGFyLmJ6MikgPSA0NWYwNmVkNDdl YzQ2M2Q2ZDZhYzk2MjA5Y2JmZmY1ZmM5ODg2N2M0MzZmN2JmYzJiMTFhNDEwZWVjNDIxOTFlCi1T SVpFIChtcGxheWVyL3Bob255LTEuMS50YXIuYnoyKSA9IDM4NjM5OQotU0hBMjU2IChtcGxheWVy L3BsYXN0aWMtMS4yLnRhci5iejIpID0gMjdkZDExMWEzMmIxMmQ2NTc3MmNjYjFhZDRhNTE2M2Fk OTE0NTRkZWNkN2VlNzhkNWZmMTFkNjEzZDllNDcxMwotU0laRSAobXBsYXllci9wbGFzdGljLTEu Mi50YXIuYnoyKSA9IDQ1NDE2NwotU0hBMjU2IChtcGxheWVyL1Bvd2VyUGxheWVyLTEuMS50YXIu YnoyKSA9IDZmMjJlNGI5NjEyMWNkMjFhNWJlY2M1Y2NmZDBjMDgyYjE5NGZlZmI3NTQ5ZGFlN2U3 NWFhZjI2Y2M0MzI1MzAKLVNJWkUgKG1wbGF5ZXIvUG93ZXJQbGF5ZXItMS4xLnRhci5iejIpID0g MzY1NzMzCi1TSEEyNTYgKG1wbGF5ZXIvcHJvdG9uLTEuMi50YXIuYnoyKSA9IGI1MDM4OGJhOWIw YzVjM2Y4MjhmZGZmMzlhNDgwZjc3ZGZkYzU2ZmRiZGNjZTY0ZTA1YWRhNTU0OTVhNjFiZTgKLVNJ WkUgKG1wbGF5ZXIvcHJvdG9uLTEuMi50YXIuYnoyKSA9IDMyMjYxMgotU0hBMjU2IChtcGxheWVy L1FQbGF5ZXItMS4yLnRhci5iejIpID0gYmNlMzBmY2NkMGY2OTA0NWIyN2JlNGE2YjE5M2JiMDA2 MDdmMzkyNDhhY2QwNzM3MDg3N2E4NzI2NmQ1MTg4OAotU0laRSAobXBsYXllci9RUGxheWVyLTEu Mi50YXIuYnoyKSA9IDIxMjk5NgotU0hBMjU2IChtcGxheWVyL1F1aWNrU2lsdmVyLTEuMC50YXIu YnoyKSA9IDI5YTg3ZTg1MmUyYjQ5YzQxMmRlY2QwOGVlMWQwOGUwYzQ3YjFiMGVhNzZiOTIwM2Fl YzMwY2NkZTlhNGU2MTMKLVNJWkUgKG1wbGF5ZXIvUXVpY2tTaWx2ZXItMS4wLnRhci5iejIpID0g MjAxNjgwCi1TSEEyNTYgKG1wbGF5ZXIvc2Vzc2VuZS0xLjAudGFyLmJ6MikgPSA3Y2E5ZTJkZTE3 YTc2NmEwMzk0YjU0NDYxYmFkM2YzOGVlYjZiZmYxMDBkMmExMWFkNWE4ZDMyYzhiY2JkYTk1Ci1T SVpFIChtcGxheWVyL3Nlc3NlbmUtMS4wLnRhci5iejIpID0gNDA5MzA3Ci1TSEEyNTYgKG1wbGF5 ZXIvc2xpbS0xLjIudGFyLmJ6MikgPSA5NzA0ZDhlMWQzMGZiNjA0MzYzODJjNThmMDFkZDM5M2Y4 ZTY2OTQ4NDczMmY5NmEwNGY5MzNhMmNjYWUyMzk4Ci1TSVpFIChtcGxheWVyL3NsaW0tMS4yLnRh ci5iejIpID0gMzk4ODczCi1TSEEyNTYgKG1wbGF5ZXIvc29mdGdyaXAtMS4xLnRhci5iejIpID0g OTUwYTBmOTYyOTk4Mjg5Yzk2MWQzM2Q3MWIxNDk3NTc5YzZiNjA4MGM0YjliMjZjNGJhZWJhZTNh MzQ4NTI5NwotU0laRSAobXBsYXllci9zb2Z0Z3JpcC0xLjEudGFyLmJ6MikgPSAzMDU4NjIKLVNI QTI1NiAobXBsYXllci9UZXJtaW5hdG9yMy0xLjEudGFyLmJ6MikgPSAxNWVjNTdlMGNhNmZhZTI2 MTU4MzRiM2M2YTgxYWU4ZmY2ZDhhMDcwYTllZTI3ZjdiY2E1MTQ4NmVlNjVjMGE4Ci1TSVpFICht cGxheWVyL1Rlcm1pbmF0b3IzLTEuMS50YXIuYnoyKSA9IDUxMTc0MQotU0hBMjU2IChtcGxheWVy L3RyaXVtLTEuMy50YXIuYnoyKSA9IGY2OWZjNzBlODdkMGI1N2NiNzZmNzQ2M2NjZTc4NzExYjNk MjQyMzAwODMxNjY0NmU2NDJjNzJjYjk4MWU5NjIKLVNJWkUgKG1wbGF5ZXIvdHJpdW0tMS4zLnRh ci5iejIpID0gMjc0NjgzCi1TSEEyNTYgKG1wbGF5ZXIvdHZpc29yLTEuMS50YXIuYnoyKSA9IDll Mzc1NzRlYjIwODU2NWMwNzBjOTQ5NDBmYjVkMDcwMjNhNzU5MTNmNDc1NmFkOTViM2RhYmFjODUy ODZiNDgKLVNJWkUgKG1wbGF5ZXIvdHZpc29yLTEuMS50YXIuYnoyKSA9IDU2MDQ3Ci1TSEEyNTYg KG1wbGF5ZXIvdWx0cmFmaW5hLTEuMS50YXIuYnoyKSA9IDkzY2I3OTM3NWFjODgwNTI5M2RjMjdl ZDk3M2E4NDY2ZjcwMDYyNDlhZDBkZTg3ZjQ4ODIyN2NjMTBhMWU5MjIKLVNJWkUgKG1wbGF5ZXIv dWx0cmFmaW5hLTEuMS50YXIuYnoyKSA9IDE3NDMwMgotU0hBMjU2IChtcGxheWVyL3dlYmJ5LTEu My50YXIuYnoyKSA9IGIyZjk0NmFhZmEzMTUyNWFhMmQyZDFmMmQ1NjBhZjkxZWQ1N2RhY2FjNjg4 OTZiYjcxZjk1NmE4MDk1MGEwZmMKLVNJWkUgKG1wbGF5ZXIvd2ViYnktMS4zLnRhci5iejIpID0g NjEzNjkKLVNIQTI1NiAobXBsYXllci9XTVA2LTIuMi50YXIuYnoyKSA9IGE1OWVkNTIyNWEwMDM3 ZDliZjAzYjI5ZmQ2ZDI0Yzg5NGI2NTYxZTRlZWNlMDMwZmI3YzM2YmY2ZTExM2M5MzIKLVNJWkUg KG1wbGF5ZXIvV01QNi0yLjIudGFyLmJ6MikgPSAzOTI2NwotU0hBMjU2IChtcGxheWVyL3hhbmlt LTEuNi50YXIuYnoyKSA9IGU4NWM5M2IxMDE3OGE4NDljZGU0ZmQ5MzllYTEyZDBjYTgzNzZjMzhm NGY2NTAxNjQ3MmJiYzg0ZmI1NTA0OTgKLVNJWkUgKG1wbGF5ZXIveGFuaW0tMS42LnRhci5iejIp ID0gOTQ1NjQKLVNIQTI1NiAobXBsYXllci9YRmNlNC0xLjAudGFyLmJ6MikgPSAwMDdjMzlhZjI4 ZGE3M2I3YTBkNzUwYWVhMjc3ZDk4Y2M3NjQyMjFiNGQwYTI0MDc2MjA0ODVlNzViNDE5YWFkCi1T SVpFIChtcGxheWVyL1hGY2U0LTEuMC50YXIuYnoyKSA9IDY2MjAwCi1TSEEyNTYgKG1wbGF5ZXIv eGluZS1sY2QtMS4yLnRhci5iejIpID0gNjg1ZGQ0ZThmMTcxMDY4N2Y5M2M3N2VjYTU2NjFiZGQz ZWU4NGMzMzliMzVlZDk5MzUzM2MwZmRjNmVhYjdjMwotU0laRSAobXBsYXllci94aW5lLWxjZC0x LjIudGFyLmJ6MikgPSAxNzIyNzAKLVNIQTI1NiAobXBsYXllci94bW1wbGF5ZXItMS41LnRhci5i ejIpID0gMDc1YzdjNTNkMGM5OWViYTM0ZTI5ZDllMDFkZjlhNWM5MmQyNzhiMGFjMzMxZmNkODBj MzQ0YWNkYTJhZWQwYgotU0laRSAobXBsYXllci94bW1wbGF5ZXItMS41LnRhci5iejIpID0gNzQx ODQKLVNIQTI1NiAobXBsYXllci9CbHVlLTEuNy50YXIuYnoyKSA9IDhiY2QzOWE1NzU1YzQ0ZGY3 NzhlYmNhMzExOWM5MjIzNDdhYmZkYWRiMTAxZGNlZjAxMWNlMjU2NmMxZmIxZDgKLVNJWkUgKG1w bGF5ZXIvQmx1ZS0xLjcudGFyLmJ6MikgPSAyMjI1NjcKLVNIQTI1NiAobXBsYXllci9CbHVlLXNt YWxsLTEuNC50YXIuYnoyKSA9IDU1MzUyZTdmNzUzYmYwOWY3OTM2MzljODkxZGVmNDhjMTE2MTk1 ZDU5MTRlNmQ5NmE2MTAwMDRiNzA1NzExOGUKLVNJWkUgKG1wbGF5ZXIvQmx1ZS1zbWFsbC0xLjQu dGFyLmJ6MikgPSAxNTcwMjQKK1NIQTI1NiAobXBsYXllci1za2lucy9BYnlzcy0xLjcudGFyLmJ6 MikgPSBhMTNmYWI0NmEyYjI1ZjFlODFhNTc4ZmIxZTRjZTUyNzA3Y2M1ODI2MTdkZWZhYzU0ZTJj NTFkYTUwODY5OWMwCitTSVpFIChtcGxheWVyLXNraW5zL0FieXNzLTEuNy50YXIuYnoyKSA9IDI5 MjIzNQorU0hBMjU2IChtcGxheWVyLXNraW5zL0FsaWVuTWluZC0xLjIudGFyLmJ6MikgPSA2YmFh MDcwMGJiMzAzNDM1ZWI1ZmIwZjBkYmExNWNjMWIyMDQxM2ZmMDk4N2VhNTkxYzY2YzJiMGM2MWM0 MTI5CitTSVpFIChtcGxheWVyLXNraW5zL0FsaWVuTWluZC0xLjIudGFyLmJ6MikgPSAxMzEyOTUK K1NIQTI1NiAobXBsYXllci1za2lucy9hdmlmaWxlLTEuNi50YXIuYnoyKSA9IDE3ZTcwYTg3NTBl MmVkMWQzZGYzNjUwNjBkYWRjOWI4OWZkODFjMDlmZGZjZDY5NTBlODVjNDg1MmQyOWVjMjgKK1NJ WkUgKG1wbGF5ZXItc2tpbnMvYXZpZmlsZS0xLjYudGFyLmJ6MikgPSA0MjQwOQorU0hBMjU2ICht cGxheWVyLXNraW5zL0F0ZXItMS4yLnRhci5iejIpID0gMDY0YTQyYTgwNGJkYjYwZjQyZWVhMTNl Y2EzNzg4ZWE5ODhiYzZlYzA0MmUyMGYzMzMzMDYwNzI2OWFjZGIxMworU0laRSAobXBsYXllci1z a2lucy9BdGVyLTEuMi50YXIuYnoyKSA9IDQ4NDk2MAorU0hBMjU2IChtcGxheWVyLXNraW5zL2Js dWVjdXJ2ZS0xLjMudGFyLmJ6MikgPSAwYzQ1NGI5MmJmMmJlNmQ2ZTY2OTIwMzZkYTJiMTUzNDZl N2Q0YmFkZTMxYTU2NDMwZGE5MTBhMjRiNDJkYjFiCitTSVpFIChtcGxheWVyLXNraW5zL2JsdWVj dXJ2ZS0xLjMudGFyLmJ6MikgPSAzODIzMQorU0hBMjU2IChtcGxheWVyLXNraW5zL0JsdWVIZWFy dC0xLjUudGFyLmJ6MikgPSA3OTRjMGI5M2U4YzEyODFjOTc1Y2E0NjUwNDQyY2IwZjIwMGY4ODQw ZTVkNTY3ZGFmZDkwM2M3OWMxYmExN2Y2CitTSVpFIChtcGxheWVyLXNraW5zL0JsdWVIZWFydC0x LjUudGFyLmJ6MikgPSAyODEwNTEKK1NIQTI1NiAobXBsYXllci1za2lucy9DYW5hcnktMS4yLnRh ci5iejIpID0gY2IzOWY3ZDY2ODVkZmI0OWNhMTNlOTI4OTY5ZjcxZTVlY2ZjZGQzMDNmYTU0MGE0 NmViOWVhOWYxNTRiMWFkZgorU0laRSAobXBsYXllci1za2lucy9DYW5hcnktMS4yLnRhci5iejIp ID0gMTA0MDEzCitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvQ2xlYXJsb29rcy0xLjQudGFyLmJ6Mikg PSA5NGE2YmUwM2I0ZTAwNjlmNzFlMTU3ZGViYjAxYTc2NDc5M2JiNWUyMWI4MDhmZGI2ZGQxNmNi NmM0NzJmN2MxCitTSVpFIChtcGxheWVyLXNraW5zL0NsZWFybG9va3MtMS40LnRhci5iejIpID0g Mzk1NzQKK1NIQTI1NiAobXBsYXllci1za2lucy9Db3JlbGlhbi0xLjEudGFyLmJ6MikgPSA2MGQ1 MjNiMmQyNGU1NDcyMzNjMDBkMTQyNWFhOWNhNDllZGYxYzNiNWU4MGY4OWI2YTY1NDY0YWY3YzE3 MDZlCitTSVpFIChtcGxheWVyLXNraW5zL0NvcmVsaWFuLTEuMS50YXIuYnoyKSA9IDI4NDQyMwor U0hBMjU2IChtcGxheWVyLXNraW5zL0Nvcm5lck1QLTEuMi50YXIuYnoyKSA9IDNkNDMyMGExNzhm MmY4MTAzYjhmODZiMDVjNDIxZjg5MWRmMWM4NmY4MWE3MjY1MWU3NzYzM2YzZGY2MzAxNmEKK1NJ WkUgKG1wbGF5ZXItc2tpbnMvQ29ybmVyTVAtMS4yLnRhci5iejIpID0gMjMyNzMxCitTSEEyNTYg KG1wbGF5ZXItc2tpbnMvQ29ybmVyTVAtYXF1YS0xLjQudGFyLmJ6MikgPSA4NGIwNzk0OTI1NDcy ODdlZWU2ZDlmNjhjYjhmNzkxNWJjNzU3Y2Q5NzJhZjgzYzc3OTY5NDhmYTBhM2RhYjJmCitTSVpF IChtcGxheWVyLXNraW5zL0Nvcm5lck1QLWFxdWEtMS40LnRhci5iejIpID0gMjQzMTU0CitTSEEy NTYgKG1wbGF5ZXItc2tpbnMvQ3ViaWNQbGF5ZXItMS4xLnRhci5iejIpID0gMTM1NjU2MjliODM0 NTk1MjY4MzIxZjkwOGViYTQ1Mzk5MGFkN2I4NzZkNDNiODA5M2RmOTRlYzQ1OTg0YTE4MAorU0la RSAobXBsYXllci1za2lucy9DdWJpY1BsYXllci0xLjEudGFyLmJ6MikgPSAxMjQ0NzAKK1NIQTI1 NiAobXBsYXllci1za2lucy9DeXJ1cy0xLjIudGFyLmJ6MikgPSAwMTcxMWY1MWZkMTcwNmU1M2Rl MTdjMTliNDEyYWNjNWJjYzVlYWQ1MWFlYTJhNWIzY2NmMGJmMmExZDIwZDExCitTSVpFIChtcGxh eWVyLXNraW5zL0N5cnVzLTEuMi50YXIuYnoyKSA9IDIyODQ2MQorU0hBMjU2IChtcGxheWVyLXNr aW5zL2Rpc2FwcGVhcmVyLTEuMS50YXIuYnoyKSA9IGJjZTE0MTU5ZjAxYjg5MmYyYTdhNTQ0MGNl OGY0MWQ1MDIzNzcwYWU3YzVhNmQ1ODczMTMzOGM5ZDdiODI3MGYKK1NJWkUgKG1wbGF5ZXItc2tp bnMvZGlzYXBwZWFyZXItMS4xLnRhci5iejIpID0gNTU2MDQKK1NIQTI1NiAobXBsYXllci1za2lu cy9kaXZ4cGxheWVyLTEuMy50YXIuYnoyKSA9IDc3ZmRiODZhYmM4MmVjZTAzMzBmYTQxYzk5MjNh MDljMjA4OTNkMjJiNTg1YTM3ODdhY2QyY2U3ZTU5OGZjOGEKK1NJWkUgKG1wbGF5ZXItc2tpbnMv ZGl2eHBsYXllci0xLjMudGFyLmJ6MikgPSA5MTY5NQorU0hBMjU2IChtcGxheWVyLXNraW5zL0R1 c2hrdS0xLjIudGFyLmJ6MikgPSBmYjI0NmI3Yjc4OWQxOTQ1NTM1Nzc2MTRlOTU1YWRiZDMzNDdk ZTA3NWNiZTJiODI3OTJkOGJlNjVhNDk5NGFlCitTSVpFIChtcGxheWVyLXNraW5zL0R1c2hrdS0x LjIudGFyLmJ6MikgPSA1MjA0MDAKK1NIQTI1NiAobXBsYXllci1za2lucy9EVkRQbGF5ZXItMS4x LnRhci5iejIpID0gYWQxY2U1YTMxYWE5YjhkNmYyYTEzNzNlNDg5ZDRhYWIyM2M4NjIwNGZlOWQx Y2U4MTIyODEzN2RhMDU4MzA4OAorU0laRSAobXBsYXllci1za2lucy9EVkRQbGF5ZXItMS4xLnRh ci5iejIpID0gMTE0NTc0CitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvZ25vbWUtMS4xLnRhci5iejIp ID0gMDliZDBlNTdiOGM1NTJiYTUyOTczZWQ2YmFkMzI0MmJjMTZhYTY4NTBiY2Q0NzBkNWUyYTBj MjI0YjhmMTdkMQorU0laRSAobXBsYXllci1za2lucy9nbm9tZS0xLjEudGFyLmJ6MikgPSAzNjg2 NDkKK1NIQTI1NiAobXBsYXllci1za2lucy9oYW5kaGVsZC0xLjAudGFyLmJ6MikgPSA4ODAzMWZm YjJhYzI4NWI1OWMxOTNiZDk4OGRjYTYzNzIyNDE4OWJjOTAwYjAxYTFmNjgzOWM1ZWNkZGM5OGYx CitTSVpFIChtcGxheWVyLXNraW5zL2hhbmRoZWxkLTEuMC50YXIuYnoyKSA9IDgxNTY3MAorU0hB MjU2IChtcGxheWVyLXNraW5zL2hheXJhcGhvbi0xLjAudGFyLmJ6MikgPSBkMjgzZjE1NGIyMzA0 NjZlOGRjOWEyZWJmNThmMjFlOGY3NTBjNGYzYTlhMWZhOGRjYmRlMzQ2YWM1OWU4MDI4CitTSVpF IChtcGxheWVyLXNraW5zL2hheXJhcGhvbi0xLjAudGFyLmJ6MikgPSA3NzU3NworU0hBMjU2ICht cGxheWVyLXNraW5zL2h3c3dza2luLTEuMy50YXIuYnoyKSA9IDMwOTFjYzNjNzRkZjA5YTNlODFi Nzc4NWEyNzk3NjZjNWI5YjcyMmUzNzZjNDExOWE1Mjg0MTdmMzA4M2I1NjEKK1NJWkUgKG1wbGF5 ZXItc2tpbnMvaHdzd3NraW4tMS4zLnRhci5iejIpID0gMjE0MjYKK1NIQTI1NiAobXBsYXllci1z a2lucy9JQ1ktMS4wLnRhci5iejIpID0gNTBkMjkzYjNkZTcwZWRmOTI2MmU2YjgwYTdmMThhZWI5 N2U2YWQyZDk0NmI5NWJmNDRkYWNkYjNiMDQ1Njg3NQorU0laRSAobXBsYXllci1za2lucy9JQ1kt MS4wLnRhci5iejIpID0gMjY3NjcxCitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvSW5kdXN0cmlhbC0x LjAudGFyLmJ6MikgPSBhZDJhYjM5ZGU2MzljOTZiNGY2ZGUxM2U5NTQ5Y2IzZGRkZTY1OTQ2NjU5 ZGU4N2QzYjE2ZGI1MTU5NDczMjZmCitTSVpFIChtcGxheWVyLXNraW5zL0luZHVzdHJpYWwtMS4w LnRhci5iejIpID0gNTMwOTIKK1NIQTI1NiAobXBsYXllci1za2lucy9pVHVuZXMtMS4xLnRhci5i ejIpID0gNGUwNjc3OTA2YWYxYmVmNmVjOTJkMGU5ZGIzNTVhOTkwNDNhYTM5NGRlMjVjODVjNTY2 OTM0MGZlNWIyN2IwNAorU0laRSAobXBsYXllci1za2lucy9pVHVuZXMtMS4xLnRhci5iejIpID0g NjM0MDUKK1NIQTI1NiAobXBsYXllci1za2lucy9pVHVuZXMtbWluaS0xLjEudGFyLmJ6MikgPSA5 NzFjMzg1ZTFiNzIyNWEzZDBhOTFkYmMwNjg2NTU3NzIzN2JhMWQyYjc5NDgzNzg5ZTRiMmFiMjRi MmE3ODI4CitTSVpFIChtcGxheWVyLXNraW5zL2lUdW5lcy1taW5pLTEuMS50YXIuYnoyKSA9IDQy ODg2CitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvSmlNUGxheWVyLTEuNC50YXIuYnoyKSA9IDYzYjNk MDk1YzJiOTljMjljOWI3YmI1YWVmNzk4N2Y2Y2Y3NGYwZjQ3MzJiNzg5Mjk3MTIzYzg1ZDZiNmUw MzQKK1NJWkUgKG1wbGF5ZXItc2tpbnMvSmlNUGxheWVyLTEuNC50YXIuYnoyKSA9IDE3ODUxNwor U0hBMjU2IChtcGxheWVyLXNraW5zL0tERS0wLjMudGFyLmJ6MikgPSBlOWMwY2Q4MGY4ZTY2Mzcw MzE5NjdmYmY2NWJmMzY1MDk3OTM1YzE0YzYzY2EyM2JiZGQ2NGRhMjExZjJlZDI3CitTSVpFICht cGxheWVyLXNraW5zL0tERS0wLjMudGFyLmJ6MikgPSAxMzA1MDIKK1NIQTI1NiAobXBsYXllci1z a2lucy9rcnlzdGFsLTEuMS50YXIuYnoyKSA9IDEyYzIyMDAzZmMzZTVhZjM5Y2Y1Mjc4N2YwOTUw ZmQ1MTdjOTJlOGVhMGNmZGQ1MjY0MzRkNmQ1MjY5ZjY3OGQKK1NJWkUgKG1wbGF5ZXItc2tpbnMv a3J5c3RhbC0xLjEudGFyLmJ6MikgPSAyNTc0NTkKK1NIQTI1NiAobXBsYXllci1za2lucy9tZW50 YWxpYy0xLjIudGFyLmJ6MikgPSBmN2YzNTJjZTE4MDViZWM4ZTM2Y2E0ZjI1OWM2Nzk2MzJkNjYy OGJiZWJlOGMxN2VjZGI2NjY3ZmZmYjZiZWM4CitTSVpFIChtcGxheWVyLXNraW5zL21lbnRhbGlj LTEuMi50YXIuYnoyKSA9IDE2NjU3MAorU0hBMjU2IChtcGxheWVyLXNraW5zL01pZG5pZ2h0TG92 ZS0xLjYudGFyLmJ6MikgPSAxZDJiZGNlMTczN2JlZWExMTI5YjEzMjY1OWMxNjBiODMzZmExYjMy Yzg5ZTgxODdlNzgzMzg3Mzc1YzUxN2U4CitTSVpFIChtcGxheWVyLXNraW5zL01pZG5pZ2h0TG92 ZS0xLjYudGFyLmJ6MikgPSA1Mzk2NjUKK1NIQTI1NiAobXBsYXllci1za2lucy9taW5pLTAuMS50 YXIuYnoyKSA9IDA2Mzg3ZmRmNWFiNmYyMGM0OGVjNzJhYzUzMzAwYTc0NjIxMzI1ZmY0MDBiOTY1 MTgzMGJjNzM0ZDZmZTc4NWMKK1NJWkUgKG1wbGF5ZXItc2tpbnMvbWluaS0wLjEudGFyLmJ6Mikg PSA0OTc2CitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvbW9vbnBoYXNlLTEuMC50YXIuYnoyKSA9IGJh ZjhjNWU0MDU5MWZhNWNkMWNhODA1OTZkMjIzN2IzODA0OGE2OGYzMmY0NzM0N2NiNjVjMzA1Y2My Yzk5OTEKK1NJWkUgKG1wbGF5ZXItc2tpbnMvbW9vbnBoYXNlLTEuMC50YXIuYnoyKSA9IDI4NDA3 CitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvbXBsYXllcl9yZWQtMS4wLnRhci5iejIpID0gZTMyZWMy M2MwZWMxNTIyYjRhZGUyNDQxZGQ4YTUxNTk5ZjA2Njc3NmQyOWFiZTU0YWMxOGU1ZTM2ZGQ0YWJj NAorU0laRSAobXBsYXllci1za2lucy9tcGxheWVyX3JlZC0xLjAudGFyLmJ6MikgPSAxMzI2NzM3 CitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvbmF0aXZlUmVkLTEuMS50YXIuYnoyKSA9IDhhOGQ0NjNj YWVhYWZmNjY3Nzg1MWZlOWQ4MDU1OWRmZTMzN2FhODVlNDcxNTQ5ODM3OGQ0Y2U2YTA1ZmZmMGYK K1NJWkUgKG1wbGF5ZXItc2tpbnMvbmF0aXZlUmVkLTEuMS50YXIuYnoyKSA9IDMwMDcyMQorU0hB MjU2IChtcGxheWVyLXNraW5zL25ldHNjYXBlNC0xLjAudGFyLmJ6MikgPSAyODU1ZDhlOGFhNTVk NGM1M2ExYjgwNGM1MzhjMTk4ODhiNmZjOGVkYjA0NzQ0MTlmMjA1M2U3Y2Q1ZTczZTNhCitTSVpF IChtcGxheWVyLXNraW5zL25ldHNjYXBlNC0xLjAudGFyLmJ6MikgPSAyMDQwNzgKK1NIQTI1NiAo bXBsYXllci1za2lucy9uZXV0cm9uLTEuNS50YXIuYnoyKSA9IGQwZDZkYzdlNDc1Yzg2ZjYyNGY4 NDkxMmI1ZmY2MTY5MjkzNDE0NTg1ZTQyOTkxNmE1NDVmNTlmYTIwMzZjODEKK1NJWkUgKG1wbGF5 ZXItc2tpbnMvbmV1dHJvbi0xLjUudGFyLmJ6MikgPSAzNjkzMDMKK1NIQTI1NiAobXBsYXllci1z a2lucy9uZXctYWdlLTEuMC50YXIuYnoyKSA9IGViZmM5YmY1MzI5MWZkOGY3ZTkzMzhiNDExYzQ0 NWM4YTI0NTVkYmMzYWIzOGEwYjcwMWFjNzNlMzA0NjA3NGMKK1NJWkUgKG1wbGF5ZXItc2tpbnMv bmV3LWFnZS0xLjAudGFyLmJ6MikgPSAxMTgwNjAKK1NIQTI1NiAobXBsYXllci1za2lucy9PcmFu Z2UtMS4zLnRhci5iejIpID0gNzY5ZjEyMTUyYzA1YjZkNGUxMGI0MzEzMWMzNmY1ZTFhNGMxZjJk YTg1Nzg3ZDI0NTg1N2Y2ZDU1Njc4NGVlMgorU0laRSAobXBsYXllci1za2lucy9PcmFuZ2UtMS4z LnRhci5iejIpID0gMzAwNDk4CitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvT1NYLUJydXNoZWQtMi4z LnRhci5iejIpID0gNTI1MTZjZjA3NmNmYjA3ODE1YmMwYjhkN2ZlMGM4MGFmZTljZTNlMDc0NzYx YzBjYmRkZGViZmI1MmQ3NzdlMgorU0laRSAobXBsYXllci1za2lucy9PU1gtQnJ1c2hlZC0yLjMu dGFyLmJ6MikgPSA3NjIzMworU0hBMjU2IChtcGxheWVyLXNraW5zL09TWC1Nb2QtMS4xLnRhci5i ejIpID0gMzIwMzZjZDQzOWQ2OTJmMjg0ZDcxYzdlY2U2MTU4NWI2YjljZDY4YjUyY2I4NTU1YTY2 MjJkZjJiYzRmYTI2YQorU0laRSAobXBsYXllci1za2lucy9PU1gtTW9kLTEuMS50YXIuYnoyKSA9 IDI3NzM2NQorU0hBMjU2IChtcGxheWVyLXNraW5zL3BjbGFuZC0xLjAudGFyLmJ6MikgPSA3OTU2 Mzk3MTE5OTQyMzY4YmU5NDEzZjczZGRkOTU2MTdjOWM4YjNhNTQwNWUzMThkNGRmYjE5NTQyYmJi MGFhCitTSVpFIChtcGxheWVyLXNraW5zL3BjbGFuZC0xLjAudGFyLmJ6MikgPSA0OTYxNjcKK1NI QTI1NiAobXBsYXllci1za2lucy9waG9ueS0xLjEudGFyLmJ6MikgPSA0NWYwNmVkNDdlYzQ2M2Q2 ZDZhYzk2MjA5Y2JmZmY1ZmM5ODg2N2M0MzZmN2JmYzJiMTFhNDEwZWVjNDIxOTFlCitTSVpFICht cGxheWVyLXNraW5zL3Bob255LTEuMS50YXIuYnoyKSA9IDM4NjM5OQorU0hBMjU2IChtcGxheWVy LXNraW5zL3BsYXN0aWMtMS4yLnRhci5iejIpID0gMjdkZDExMWEzMmIxMmQ2NTc3MmNjYjFhZDRh NTE2M2FkOTE0NTRkZWNkN2VlNzhkNWZmMTFkNjEzZDllNDcxMworU0laRSAobXBsYXllci1za2lu cy9wbGFzdGljLTEuMi50YXIuYnoyKSA9IDQ1NDE2NworU0hBMjU2IChtcGxheWVyLXNraW5zL1Bv d2VyUGxheWVyLTEuMS50YXIuYnoyKSA9IDZmMjJlNGI5NjEyMWNkMjFhNWJlY2M1Y2NmZDBjMDgy YjE5NGZlZmI3NTQ5ZGFlN2U3NWFhZjI2Y2M0MzI1MzAKK1NJWkUgKG1wbGF5ZXItc2tpbnMvUG93 ZXJQbGF5ZXItMS4xLnRhci5iejIpID0gMzY1NzMzCitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvcHJv dG9uLTEuMi50YXIuYnoyKSA9IGI1MDM4OGJhOWIwYzVjM2Y4MjhmZGZmMzlhNDgwZjc3ZGZkYzU2 ZmRiZGNjZTY0ZTA1YWRhNTU0OTVhNjFiZTgKK1NJWkUgKG1wbGF5ZXItc2tpbnMvcHJvdG9uLTEu Mi50YXIuYnoyKSA9IDMyMjYxMgorU0hBMjU2IChtcGxheWVyLXNraW5zL1FQbGF5ZXItMS4yLnRh ci5iejIpID0gYmNlMzBmY2NkMGY2OTA0NWIyN2JlNGE2YjE5M2JiMDA2MDdmMzkyNDhhY2QwNzM3 MDg3N2E4NzI2NmQ1MTg4OAorU0laRSAobXBsYXllci1za2lucy9RUGxheWVyLTEuMi50YXIuYnoy KSA9IDIxMjk5NgorU0hBMjU2IChtcGxheWVyLXNraW5zL1F1aWNrU2lsdmVyLTEuMC50YXIuYnoy KSA9IDI5YTg3ZTg1MmUyYjQ5YzQxMmRlY2QwOGVlMWQwOGUwYzQ3YjFiMGVhNzZiOTIwM2FlYzMw Y2NkZTlhNGU2MTMKK1NJWkUgKG1wbGF5ZXItc2tpbnMvUXVpY2tTaWx2ZXItMS4wLnRhci5iejIp ID0gMjAxNjgwCitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvc2Vzc2VuZS0xLjAudGFyLmJ6MikgPSA3 Y2E5ZTJkZTE3YTc2NmEwMzk0YjU0NDYxYmFkM2YzOGVlYjZiZmYxMDBkMmExMWFkNWE4ZDMyYzhi Y2JkYTk1CitTSVpFIChtcGxheWVyLXNraW5zL3Nlc3NlbmUtMS4wLnRhci5iejIpID0gNDA5MzA3 CitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvc2xpbS0xLjIudGFyLmJ6MikgPSA5NzA0ZDhlMWQzMGZi NjA0MzYzODJjNThmMDFkZDM5M2Y4ZTY2OTQ4NDczMmY5NmEwNGY5MzNhMmNjYWUyMzk4CitTSVpF IChtcGxheWVyLXNraW5zL3NsaW0tMS4yLnRhci5iejIpID0gMzk4ODczCitTSEEyNTYgKG1wbGF5 ZXItc2tpbnMvc29mdGdyaXAtMS4xLnRhci5iejIpID0gOTUwYTBmOTYyOTk4Mjg5Yzk2MWQzM2Q3 MWIxNDk3NTc5YzZiNjA4MGM0YjliMjZjNGJhZWJhZTNhMzQ4NTI5NworU0laRSAobXBsYXllci1z a2lucy9zb2Z0Z3JpcC0xLjEudGFyLmJ6MikgPSAzMDU4NjIKK1NIQTI1NiAobXBsYXllci1za2lu cy9UZXJtaW5hdG9yMy0xLjEudGFyLmJ6MikgPSAxNWVjNTdlMGNhNmZhZTI2MTU4MzRiM2M2YTgx YWU4ZmY2ZDhhMDcwYTllZTI3ZjdiY2E1MTQ4NmVlNjVjMGE4CitTSVpFIChtcGxheWVyLXNraW5z L1Rlcm1pbmF0b3IzLTEuMS50YXIuYnoyKSA9IDUxMTc0MQorU0hBMjU2IChtcGxheWVyLXNraW5z L3RyaXVtLTEuMy50YXIuYnoyKSA9IGY2OWZjNzBlODdkMGI1N2NiNzZmNzQ2M2NjZTc4NzExYjNk MjQyMzAwODMxNjY0NmU2NDJjNzJjYjk4MWU5NjIKK1NJWkUgKG1wbGF5ZXItc2tpbnMvdHJpdW0t MS4zLnRhci5iejIpID0gMjc0NjgzCitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvdHZpc29yLTEuMS50 YXIuYnoyKSA9IDllMzc1NzRlYjIwODU2NWMwNzBjOTQ5NDBmYjVkMDcwMjNhNzU5MTNmNDc1NmFk OTViM2RhYmFjODUyODZiNDgKK1NJWkUgKG1wbGF5ZXItc2tpbnMvdHZpc29yLTEuMS50YXIuYnoy KSA9IDU2MDQ3CitTSEEyNTYgKG1wbGF5ZXItc2tpbnMvdWx0cmFmaW5hLTEuMS50YXIuYnoyKSA9 IDkzY2I3OTM3NWFjODgwNTI5M2RjMjdlZDk3M2E4NDY2ZjcwMDYyNDlhZDBkZTg3ZjQ4ODIyN2Nj MTBhMWU5MjIKK1NJWkUgKG1wbGF5ZXItc2tpbnMvdWx0cmFmaW5hLTEuMS50YXIuYnoyKSA9IDE3 NDMwMgorU0hBMjU2IChtcGxheWVyLXNraW5zL3dlYmJ5LTEuMy50YXIuYnoyKSA9IGIyZjk0NmFh ZmEzMTUyNWFhMmQyZDFmMmQ1NjBhZjkxZWQ1N2RhY2FjNjg4OTZiYjcxZjk1NmE4MDk1MGEwZmMK K1NJWkUgKG1wbGF5ZXItc2tpbnMvd2ViYnktMS4zLnRhci5iejIpID0gNjEzNjkKK1NIQTI1NiAo bXBsYXllci1za2lucy9XTVA2LTIuMi50YXIuYnoyKSA9IGE1OWVkNTIyNWEwMDM3ZDliZjAzYjI5 ZmQ2ZDI0Yzg5NGI2NTYxZTRlZWNlMDMwZmI3YzM2YmY2ZTExM2M5MzIKK1NJWkUgKG1wbGF5ZXIt c2tpbnMvV01QNi0yLjIudGFyLmJ6MikgPSAzOTI2NworU0hBMjU2IChtcGxheWVyLXNraW5zL3hh bmltLTEuNi50YXIuYnoyKSA9IGU4NWM5M2IxMDE3OGE4NDljZGU0ZmQ5MzllYTEyZDBjYTgzNzZj MzhmNGY2NTAxNjQ3MmJiYzg0ZmI1NTA0OTgKK1NJWkUgKG1wbGF5ZXItc2tpbnMveGFuaW0tMS42 LnRhci5iejIpID0gOTQ1NjQKK1NIQTI1NiAobXBsYXllci1za2lucy9YRmNlNC0xLjAudGFyLmJ6 MikgPSAwMDdjMzlhZjI4ZGE3M2I3YTBkNzUwYWVhMjc3ZDk4Y2M3NjQyMjFiNGQwYTI0MDc2MjA0 ODVlNzViNDE5YWFkCitTSVpFIChtcGxheWVyLXNraW5zL1hGY2U0LTEuMC50YXIuYnoyKSA9IDY2 MjAwCitTSEEyNTYgKG1wbGF5ZXItc2tpbnMveGluZS1sY2QtMS4yLnRhci5iejIpID0gNjg1ZGQ0 ZThmMTcxMDY4N2Y5M2M3N2VjYTU2NjFiZGQzZWU4NGMzMzliMzVlZDk5MzUzM2MwZmRjNmVhYjdj MworU0laRSAobXBsYXllci1za2lucy94aW5lLWxjZC0xLjIudGFyLmJ6MikgPSAxNzIyNzAKK1NI QTI1NiAobXBsYXllci1za2lucy94bW1wbGF5ZXItMS41LnRhci5iejIpID0gMDc1YzdjNTNkMGM5 OWViYTM0ZTI5ZDllMDFkZjlhNWM5MmQyNzhiMGFjMzMxZmNkODBjMzQ0YWNkYTJhZWQwYgorU0la RSAobXBsYXllci1za2lucy94bW1wbGF5ZXItMS41LnRhci5iejIpID0gNzQxODQKK1NIQTI1NiAo bXBsYXllci1za2lucy9CbHVlLTEuOC50YXIuYnoyKSA9IDQwYjFkNjNmYjhjY2FmM2M5NWNmMjQy ODVmZDE5YjU2MmU4MjgxM2UxMWRiOTc3MGU3MWRiNjVhMTI0NzJlYWQKK1NJWkUgKG1wbGF5ZXIt c2tpbnMvQmx1ZS0xLjgudGFyLmJ6MikgPSAyMjMxMTgKK1NIQTI1NiAobXBsYXllci1za2lucy9C bHVlLXNtYWxsLTEuNS50YXIuYnoyKSA9IDM3ZjZlMjMzOWZhN2ViMzkzNmJkODYyZjFiZjJmZGUz MmE5ZGRiOTRiZWNjYjVkZjgyYmVmNGFhZmI1NTA5ZTkKK1NJWkUgKG1wbGF5ZXItc2tpbnMvQmx1 ZS1zbWFsbC0xLjUudGFyLmJ6MikgPSAxNTc2MTIKZGlmZiAtcnVOIC91c3IvcG9ydHMvbXVsdGlt ZWRpYS9tcGxheWVyLXNraW5zL3BrZy1wbGlzdCBtcGxheWVyLXNraW5zL3BrZy1wbGlzdAotLS0g L3Vzci9wb3J0cy9tdWx0aW1lZGlhL21wbGF5ZXItc2tpbnMvcGtnLXBsaXN0CTIwMDYtMTAtMDYg MjE6NDQ6NTQuMDAwMDAwMDAwICswMjAwCisrKyBtcGxheWVyLXNraW5zL3BrZy1wbGlzdAkyMDEx LTEyLTI5IDE4OjMxOjMzLjY4OTI2MDIwNCArMDEwMApAQCAtMywyOCArMywxOCBAQAogJSVBQllT UyUlc2hhcmUvbXBsYXllci9za2lucy9BYnlzcy9iYWwtYnV0dG9uLnBuZwogJSVBQllTUyUlc2hh cmUvbXBsYXllci9za2lucy9BYnlzcy9iYWxhbmNlLnBuZwogJSVBQllTUyUlc2hhcmUvbXBsYXll ci9za2lucy9BYnlzcy9iYXJlcXUucG5nCi0lJUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0Fi eXNzL2JhcmVxdTIucG5nCiAlJUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0FieXNzL2JhcmV4 aXQucG5nCiAlJUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0FieXNzL2JhcmZmd2QucG5nCi0l JUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0FieXNzL2JhcmZmd2QyLnBuZwogJSVBQllTUyUl c2hhcmUvbXBsYXllci9za2lucy9BYnlzcy9iYXJmcy5wbmcKLSUlQUJZU1MlJXNoYXJlL21wbGF5 ZXIvc2tpbnMvQWJ5c3MvYmFyZnMyLnBuZwogJSVBQllTUyUlc2hhcmUvbXBsYXllci9za2lucy9B Ynlzcy9iYXJmd2QucG5nCi0lJUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0FieXNzL2JhcmZ3 ZDIucG5nCiAlJUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0FieXNzL2Jhcm11dGUucG5nCi0l JUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0FieXNzL2Jhcm11dGUyLnBuZwogJSVBQllTUyUl c2hhcmUvbXBsYXllci9za2lucy9BYnlzcy9iYXJwbC5wbmcKLSUlQUJZU1MlJXNoYXJlL21wbGF5 ZXIvc2tpbnMvQWJ5c3MvYmFycGwyLnBuZwogJSVBQllTUyUlc2hhcmUvbXBsYXllci9za2lucy9B Ynlzcy9iYXJwbGF5LnBuZwotJSVBQllTUyUlc2hhcmUvbXBsYXllci9za2lucy9BYnlzcy9iYXJw bGF5Mi5wbmcKICUlQUJZU1MlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQWJ5c3MvYmFycHJvZ3Jlc3Mu cG5nCiAlJUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0FieXNzL2JhcnJldi5wbmcKLSUlQUJZ U1MlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQWJ5c3MvYmFycmV2Mi5wbmcKICUlQUJZU1MlJXNoYXJl L21wbGF5ZXIvc2tpbnMvQWJ5c3MvYmFycmV2di5wbmcKLSUlQUJZU1MlJXNoYXJlL21wbGF5ZXIv c2tpbnMvQWJ5c3MvYmFycmV2djIucG5nCiAlJUFCWVNTJSVzaGFyZS9tcGxheWVyL3NraW5zL0Fi eXNzL2JhcnNldHVwLnBuZwogJSVBQllTUyUlc2hhcmUvbXBsYXllci9za2lucy9BYnlzcy9iYXJz dG9wLnBuZwotJSVBQllTUyUlc2hhcmUvbXBsYXllci9za2lucy9BYnlzcy9iYXJzdG9wMi5wbmcK ICUlQUJZU1MlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQWJ5c3MvYmFydm9sdW1lLnBuZwogJSVBQllT UyUlc2hhcmUvbXBsYXllci9za2lucy9BYnlzcy9jbG9zZS5wbmcKICUlQUJZU1MlJXNoYXJlL21w bGF5ZXIvc2tpbnMvQWJ5c3MvZWplY3QucG5nCkBAIC04NSw2ICs3NSw1MiBAQAogJSVBTElFTk1J TkQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQWxpZW5NaW5kL3N0b3AucG5nCiAlJUFMSUVOTUlORCUl c2hhcmUvbXBsYXllci9za2lucy9BbGllbk1pbmQvc3ViLnBuZwogJSVBTElFTk1JTkQlJXNoYXJl L21wbGF5ZXIvc2tpbnMvQWxpZW5NaW5kL3ZvbHVtZS5wbmcKKyUlQVRFUkZJTEUlJXNoYXJlL21w bGF5ZXIvc2tpbnMvQXRlci9SRUFETUUKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIvc2tpbnMv QXRlci9WRVJTSU9OCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIvYWJvdXQu cG5nCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIvYmFyZndkLnBuZworJSVB VEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL2Jhcm5leHQucG5nCislJUFURVJGSUxF JSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIvYmFycGF1c2UucG5nCislJUFURVJGSUxFJSVzaGFy ZS9tcGxheWVyL3NraW5zL0F0ZXIvYmFycGxheS5wbmcKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5 ZXIvc2tpbnMvQXRlci9iYXJwcmV2LnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lu cy9BdGVyL2JhcnJldi5wbmcKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQXRlci9i YXJzdG9wLnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL2VxYi5wbmcK KyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQXRlci9leGl0LnBuZworJSVBVEVSRklM RSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL2ZvbnQtcGwucG5nCislJUFURVJGSUxFJSVzaGFy ZS9tcGxheWVyL3NraW5zL0F0ZXIvZm9udC5mbnQKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIv c2tpbnMvQXRlci9mb3J3YXJkLnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lucy9B dGVyL2ljb25zL2ljb24xOTJ4MTkyLnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lu cy9BdGVyL2ljb25zL2ljb24zMngzMi5wbmcKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIvc2tp bnMvQXRlci9pY29ucy9pY29uNDh4NDgucG5nCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3Nr aW5zL0F0ZXIvaWNvbnMvaWNvbjY0eDY0LnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9z a2lucy9BdGVyL2ljb25zL2ljb245Nng5Ni5wbmcKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIv c2tpbnMvQXRlci9sb2FkLnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVy L21haW4ucG5nCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIvbWF4aW1pemUu cG5nCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIvbWVudS5wbmcKKyUlQVRF UkZJTEUlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQXRlci9tZW51cy5wbmcKKyUlQVRFUkZJTEUlJXNo YXJlL21wbGF5ZXIvc2tpbnMvQXRlci9taW5pbWl6ZS5wbmcKKyUlQVRFUkZJTEUlJXNoYXJlL21w bGF5ZXIvc2tpbnMvQXRlci9tdXRlLnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lu cy9BdGVyL25leHQucG5nCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIvcGF1 c2UucG5nCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIvcGxheS5wbmcKKyUl QVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQXRlci9wbGF5YmFyLnBuZworJSVBVEVSRklM RSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL3BsYXlsaXN0LnBuZworJSVBVEVSRklMRSUlc2hh cmUvbXBsYXllci9za2lucy9BdGVyL3Bvcy5wbmcKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIv c2tpbnMvQXRlci9wcmVmcy5wbmcKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQXRl ci9wcmV2LnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL3Byb2dyZXMu cG5nCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIvcmV2LnBuZworJSVBVEVS RklMRSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL3NraW4KKyUlQVRFUkZJTEUlJXNoYXJlL21w bGF5ZXIvc2tpbnMvQXRlci9zdG9wLnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lu cy9BdGVyL3N1YmxvYWQucG5nCislJUFURVJGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL0F0ZXIv c3VicGljLnBuZworJSVBVEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL3N1YnZvbC5w bmcKKyUlQVRFUkZJTEUlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQXRlci9zeW1ib2xzLmZudAorJSVB VEVSRklMRSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL3N5bWJvbHMyLnBuZworJSVBVEVSRklM RSUlc2hhcmUvbXBsYXllci9za2lucy9BdGVyL3N5bWJvbHNnLmZudAorJSVBVEVSRklMRSUlc2hh cmUvbXBsYXllci9za2lucy9BdGVyL3ZvbHVtZS5wbmcKICUlQVZJRklMRSUlc2hhcmUvbXBsYXll ci9za2lucy9hdmlmaWxlL1JFQURNRQogJSVBVklGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL2F2 aWZpbGUvVkVSU0lPTgogJSVBVklGSUxFJSVzaGFyZS9tcGxheWVyL3NraW5zL2F2aWZpbGUvYWxh cC5wbmcKQEAgLTE4MCw2ICsyMTYsMjQgQEAKICUlQ0FOQVJZJSVzaGFyZS9tcGxheWVyL3NraW5z L0NhbmFyeS9zdWJsb2FkLnBuZwogJSVDQU5BUlklJXNoYXJlL21wbGF5ZXIvc2tpbnMvQ2FuYXJ5 L3N5bWJvbHMuZm50CiAlJUNBTkFSWSUlc2hhcmUvbXBsYXllci9za2lucy9DYW5hcnkvc3ltYm9s cy5wbmcKKyUlQ0xFQVJMT09LUyUlc2hhcmUvbXBsYXllci9za2lucy9DbGVhcmxvb2tzL1JFQURN RQorJSVDTEVBUkxPT0tTJSVzaGFyZS9tcGxheWVyL3NraW5zL0NsZWFybG9va3MvVkVSU0lPTgor JSVDTEVBUkxPT0tTJSVzaGFyZS9tcGxheWVyL3NraW5zL0NsZWFybG9va3MvYnV0dG9uLnBuZwor JSVDTEVBUkxPT0tTJSVzaGFyZS9tcGxheWVyL3NraW5zL0NsZWFybG9va3MvZnVsbHNjcmVlbi5w bmcKKyUlQ0xFQVJMT09LUyUlc2hhcmUvbXBsYXllci9za2lucy9DbGVhcmxvb2tzL2xpYmVyYXRp b24uZm50CislJUNMRUFSTE9PS1MlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQ2xlYXJsb29rcy9saWJl cmF0aW9uLnBuZworJSVDTEVBUkxPT0tTJSVzaGFyZS9tcGxheWVyL3NraW5zL0NsZWFybG9va3Mv bG9hZC5wbmcKKyUlQ0xFQVJMT09LUyUlc2hhcmUvbXBsYXllci9za2lucy9DbGVhcmxvb2tzL2xv Z28ucG5nCislJUNMRUFSTE9PS1MlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQ2xlYXJsb29rcy9tYWlu LnBuZworJSVDTEVBUkxPT0tTJSVzaGFyZS9tcGxheWVyL3NraW5zL0NsZWFybG9va3MvbmV4dC5w bmcKKyUlQ0xFQVJMT09LUyUlc2hhcmUvbXBsYXllci9za2lucy9DbGVhcmxvb2tzL3BhdXNlLnBu ZworJSVDTEVBUkxPT0tTJSVzaGFyZS9tcGxheWVyL3NraW5zL0NsZWFybG9va3MvcGxheS5wbmcK KyUlQ0xFQVJMT09LUyUlc2hhcmUvbXBsYXllci9za2lucy9DbGVhcmxvb2tzL3BsYXlsaXN0LnBu ZworJSVDTEVBUkxPT0tTJSVzaGFyZS9tcGxheWVyL3NraW5zL0NsZWFybG9va3MvcHJldi5wbmcK KyUlQ0xFQVJMT09LUyUlc2hhcmUvbXBsYXllci9za2lucy9DbGVhcmxvb2tzL3NraW4KKyUlQ0xF QVJMT09LUyUlc2hhcmUvbXBsYXllci9za2lucy9DbGVhcmxvb2tzL3NsaWRlci5wbmcKKyUlQ0xF QVJMT09LUyUlc2hhcmUvbXBsYXllci9za2lucy9DbGVhcmxvb2tzL3N0b3AucG5nCislJUNMRUFS TE9PS1MlJXNoYXJlL21wbGF5ZXIvc2tpbnMvQ2xlYXJsb29rcy92b2x1bWUucG5nCiAlJUNPUkVM SUFOJSVzaGFyZS9tcGxheWVyL3NraW5zL0NvcmVsaWFuLzEwbWluYmFjay5wbmcKICUlQ09SRUxJ QU4lJXNoYXJlL21wbGF5ZXIvc2tpbnMvQ29yZWxpYW4vMTBtaW5mb3J3LnBuZwogJSVDT1JFTElB TiUlc2hhcmUvbXBsYXllci9za2lucy9Db3JlbGlhbi8xMHNlY2JhY2sucG5nCkBAIC02MTYsMTEg KzY3MCw1NSBAQAogJSVIV1NXJSVzaGFyZS9tcGxheWVyL3NraW5zL2h3c3dza2luL2J1dHRvbi1z dG9wLnBuZwogJSVIV1NXJSVzaGFyZS9tcGxheWVyL3NraW5zL2h3c3dza2luL2ZvbnQuZm50CiAl JUhXU1clJXNoYXJlL21wbGF5ZXIvc2tpbnMvaHdzd3NraW4vZm9udC5wbmcKLSUlSFdTVyUlc2hh cmUvbXBsYXllci9za2lucy9od3N3c2tpbi9tYWluLnBuZworJSVIV1NXJSVzaGFyZS9tcGxheWVy L3NraW5zL2h3c3dza2luL21haW4xLnBuZworJSVIV1NXJSVzaGFyZS9tcGxheWVyL3NraW5zL2h3 c3dza2luL21haW4yLnBuZwogJSVIV1NXJSVzaGFyZS9tcGxheWVyL3NraW5zL2h3c3dza2luL3Bv cy5wbmcKLSUlSFdTVyUlc2hhcmUvbXBsYXllci9za2lucy9od3N3c2tpbi9za2luCislJUhXU1cl JXNoYXJlL21wbGF5ZXIvc2tpbnMvaHdzd3NraW4vc2tpbjEKKyUlSFdTVyUlc2hhcmUvbXBsYXll ci9za2lucy9od3N3c2tpbi9za2luMgogJSVIV1NXJSVzaGFyZS9tcGxheWVyL3NraW5zL2h3c3dz a2luL3N1Yi5wbmcKICUlSFdTVyUlc2hhcmUvbXBsYXllci9za2lucy9od3N3c2tpbi92b2wucG5n CislJUlDWSUlc2hhcmUvbXBsYXllci9za2lucy9JQ1kvUkVBRE1FCislJUlDWSUlc2hhcmUvbXBs YXllci9za2lucy9JQ1kvVkVSU0lPTgorJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL2Fi b3V0LnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL2F1ZGlvLnBuZworJSVJQ1kl JXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL2JhY2sucG5nCislJUlDWSUlc2hhcmUvbXBsYXllci9z a2lucy9JQ1kvZHZkLnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL2VxdWFsaXpl ci5wbmcKKyUlSUNZJSVzaGFyZS9tcGxheWVyL3NraW5zL0lDWS9leGl0LnBuZworJSVJQ1klJXNo YXJlL21wbGF5ZXIvc2tpbnMvSUNZL2ZvbnQuZm50CislJUlDWSUlc2hhcmUvbXBsYXllci9za2lu cy9JQ1kvZm9udC5wbmcKKyUlSUNZJSVzaGFyZS9tcGxheWVyL3NraW5zL0lDWS9mb3J3YXJkLnBu ZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL2ZzYmFjay5wbmcKKyUlSUNZJSVzaGFy ZS9tcGxheWVyL3NraW5zL0lDWS9mc2ZvcndhcmQucG5nCislJUlDWSUlc2hhcmUvbXBsYXllci9z a2lucy9JQ1kvZnNmdWxsc2NyZWVuLnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZ L2ZzcGF1c2UucG5nCislJUlDWSUlc2hhcmUvbXBsYXllci9za2lucy9JQ1kvZnNwbGF5LnBuZwor JSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL2Zzc3RvcC5wbmcKKyUlSUNZJSVzaGFyZS9t cGxheWVyL3NraW5zL0lDWS9mdWxsc2NyZWVuLnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tp bnMvSUNZL21haW4ucG5nCislJUlDWSUlc2hhcmUvbXBsYXllci9za2lucy9JQ1kvbWluaW1pemUu cG5nCislJUlDWSUlc2hhcmUvbXBsYXllci9za2lucy9JQ1kvbXV0ZS5wbmcKKyUlSUNZJSVzaGFy ZS9tcGxheWVyL3NraW5zL0lDWS9uZXh0LnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMv SUNZL29wZW4ucG5nCislJUlDWSUlc2hhcmUvbXBsYXllci9za2lucy9JQ1kvcGF1c2UucG5nCisl JUlDWSUlc2hhcmUvbXBsYXllci9za2lucy9JQ1kvcGxheS5wbmcKKyUlSUNZJSVzaGFyZS9tcGxh eWVyL3NraW5zL0lDWS9wbGF5YmFyLnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZ L3BsYXlsaXN0LnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL3ByZWZlcmVuY2Vz LnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL3ByZXYucG5nCislJUlDWSUlc2hh cmUvbXBsYXllci9za2lucy9JQ1kvc2Vlay5wbmcKKyUlSUNZJSVzaGFyZS9tcGxheWVyL3NraW5z L0lDWS9za2luCislJUlDWSUlc2hhcmUvbXBsYXllci9za2lucy9JQ1kvc2tpbi5wbmcKKyUlSUNZ JSVzaGFyZS9tcGxheWVyL3NraW5zL0lDWS9zbGlkZXIucG5nCislJUlDWSUlc2hhcmUvbXBsYXll ci9za2lucy9JQ1kvc2xpZGVyMi5wbmcKKyUlSUNZJSVzaGFyZS9tcGxheWVyL3NraW5zL0lDWS9z dG9wLnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL3N1Yi5wbmcKKyUlSUNZJSVz aGFyZS9tcGxheWVyL3NraW5zL0lDWS9zdWJ0aXRsZXMucG5nCislJUlDWSUlc2hhcmUvbXBsYXll ci9za2lucy9JQ1kvc3ltYm9scy5mbnQKKyUlSUNZJSVzaGFyZS9tcGxheWVyL3NraW5zL0lDWS9z eW1ib2xzLnBuZworJSVJQ1klJXNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZL3VybC5wbmcKKyUlSUNZ JSVzaGFyZS9tcGxheWVyL3NraW5zL0lDWS92Y2QucG5nCislJUlDWSUlc2hhcmUvbXBsYXllci9z a2lucy9JQ1kvdm9sdW1lLnBuZwogJSVJTkRVU1RSSUFMJSVzaGFyZS9tcGxheWVyL3NraW5zL0lu ZHVzdHJpYWwvUkVBRE1FCiAlJUlORFVTVFJJQUwlJXNoYXJlL21wbGF5ZXIvc2tpbnMvSW5kdXN0 cmlhbC9WRVJTSU9OCiAlJUlORFVTVFJJQUwlJXNoYXJlL21wbGF5ZXIvc2tpbnMvSW5kdXN0cmlh bC9idXR0b25fZm9yd2FyZC5wbmcKQEAgLTg3OCw2ICs5NzYsNjUgQEAKICUlTVBMQVlFUl9SRUQl JXNoYXJlL21wbGF5ZXIvc2tpbnMvbXBsYXllcl9yZWQvc3ltYm9scy5mbnQKICUlTVBMQVlFUl9S RUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbXBsYXllcl9yZWQvc3ltYm9scy5wbmcKICUlTVBMQVlF Ul9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbXBsYXllcl9yZWQvdm9sdW1lLnBuZworJSVOQVRJ VkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC8xMG1pbmJhY2sucG5nCislJU5B VElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkLzEwbWluZm9ydy5wbmcKKyUl TkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQvMTBzZWNiYWNrLnBuZwor JSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC8xMHNlY2ZvcncucG5n CislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkLzFtaW5iYWNrLnBu ZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC8xbWluZm9ydy5w bmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQvUkVBRE1FCisl JU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL1ZFUlNJT04KKyUlTkFU SVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQvYXNwZWN0LnBuZworJSVOQVRJ VkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9iYWJvdXQucG5nCislJU5BVElW RV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL2JhbGxidXR0b24ucG5nCislJU5B VElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL2JhbGxsLnBuZworJSVOQVRJ VkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9iYWxsci5wbmcKKyUlTkFUSVZF X1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQvYmR2ZC5wbmcKKyUlTkFUSVZFX1JF RCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQvYmVxLnBuZworJSVOQVRJVkVfUkVEJSVz aGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9ibGlzdC5wbmcKKyUlTkFUSVZFX1JFRCUlc2hh cmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQvYnN1YjEucG5nCislJU5BVElWRV9SRUQlJXNoYXJl L21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL2JzdWIyLnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9t cGxheWVyL3NraW5zL25hdGl2ZVJlZC9idXJsLnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxh eWVyL3NraW5zL25hdGl2ZVJlZC9idmNkLnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVy L3NraW5zL25hdGl2ZVJlZC9jbG9zZS5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9z a2lucy9uYXRpdmVSZWQvZmlsZS5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lu cy9uYXRpdmVSZWQvZm9udC5mbnQKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9u YXRpdmVSZWQvZm9udDEuZm50CislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0 aXZlUmVkL2ZvbnQxLnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2 ZVJlZC9mb250My5mbnQKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVS ZWQvZm9udDMucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVk L2Z1bGxzY3JlZW4ucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZl UmVkL2ljb25pZnkucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZl UmVkL21haW4ucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVk L21lbnUucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL21l bnVzLnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9tb3Zp ZXBvei5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQvbmV4 dC5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQvcGF1c2Uu cG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL3BsYXkucG5n CislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL3BsYXliYXIucG5n CislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL3BsYXliYXJfMTBt aW5iYWNrLnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9w bGF5YmFyXzEwbWluZm9ydy5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9u YXRpdmVSZWQvcGxheWJhcl8xMHNlY2JhY2sucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5 ZXIvc2tpbnMvbmF0aXZlUmVkL3BsYXliYXJfMTBzZWNmb3J3LnBuZworJSVOQVRJVkVfUkVEJSVz aGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9wbGF5YmFyXzFtaW5iYWNrLnBuZworJSVOQVRJ VkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9wbGF5YmFyXzFtaW5mb3J3LnBu ZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9wbGF5YmFyX2Zp bGUucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL3BsYXli YXJfbmV4dC5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQv cGxheWJhcl9wYXVzZS5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRp dmVSZWQvcGxheWJhcl9wbGF5LnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5z L25hdGl2ZVJlZC9wbGF5YmFyX3ByZXYucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIv c2tpbnMvbmF0aXZlUmVkL3BsYXliYXJfc3RvcC5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBs YXllci9za2lucy9uYXRpdmVSZWQvcHJlZnMucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5 ZXIvc2tpbnMvbmF0aXZlUmVkL3ByZXYucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIv c2tpbnMvbmF0aXZlUmVkL3MucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMv bmF0aXZlUmVkL3NraW4KKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVS ZWQvc3RvcC5wbmcKKyUlTkFUSVZFX1JFRCUlc2hhcmUvbXBsYXllci9za2lucy9uYXRpdmVSZWQv c3ViLnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9zeW1i b2xzLmZudAorJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC9zeW1i b2xzLnBuZworJSVOQVRJVkVfUkVEJSVzaGFyZS9tcGxheWVyL3NraW5zL25hdGl2ZVJlZC92b2xi dXR0b24ucG5nCislJU5BVElWRV9SRUQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvbmF0aXZlUmVkL3Zv bHN0b3AucG5nCiAlJU5FVFNDQVBFNCUlc2hhcmUvbXBsYXllci9za2lucy9uZXRzY2FwZTQvTk9O UFVCTElDCiAlJU5FVFNDQVBFNCUlc2hhcmUvbXBsYXllci9za2lucy9uZXRzY2FwZTQvUkVBRE1F CiAlJU5FVFNDQVBFNCUlc2hhcmUvbXBsYXllci9za2lucy9uZXRzY2FwZTQvVkVSU0lPTgpAQCAt MTA3MSw2ICsxMjI4LDI5IEBACiAlJU9TWE1PRCUlc2hhcmUvbXBsYXllci9za2lucy9PU1gtTW9k L3N5bWJvbHNfbmV3LnBuZwogJSVPU1hNT0QlJXNoYXJlL21wbGF5ZXIvc2tpbnMvT1NYLU1vZC92 b2wucG5nCiAlJU9TWE1PRCUlc2hhcmUvbXBsYXllci9za2lucy9PU1gtTW9kL3dhdmVzLnBuZwor JSVQQ0xBTkQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvcGNsYW5kL1JFQURNRQorJSVQQ0xBTkQlJXNo YXJlL21wbGF5ZXIvc2tpbnMvcGNsYW5kL1ZFUlNJT04KKyUlUENMQU5EJSVzaGFyZS9tcGxheWVy L3NraW5zL3BjbGFuZC9idXR0b25fY2xvc2UucG5nCislJVBDTEFORCUlc2hhcmUvbXBsYXllci9z a2lucy9wY2xhbmQvYnV0dG9uX2ZvcndhcmQucG5nCislJVBDTEFORCUlc2hhcmUvbXBsYXllci9z a2lucy9wY2xhbmQvYnV0dG9uX2xvYWQucG5nCislJVBDTEFORCUlc2hhcmUvbXBsYXllci9za2lu cy9wY2xhbmQvYnV0dG9uX21heC5wbmcKKyUlUENMQU5EJSVzaGFyZS9tcGxheWVyL3NraW5zL3Bj bGFuZC9idXR0b25fbWluLnBuZworJSVQQ0xBTkQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvcGNsYW5k L2J1dHRvbl9uZXh0LnBuZworJSVQQ0xBTkQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvcGNsYW5kL2J1 dHRvbl9wYXVzZS5wbmcKKyUlUENMQU5EJSVzaGFyZS9tcGxheWVyL3NraW5zL3BjbGFuZC9idXR0 b25fcGxheS5wbmcKKyUlUENMQU5EJSVzaGFyZS9tcGxheWVyL3NraW5zL3BjbGFuZC9idXR0b25f cHJldi5wbmcKKyUlUENMQU5EJSVzaGFyZS9tcGxheWVyL3NraW5zL3BjbGFuZC9idXR0b25fcmV3 aW5kLnBuZworJSVQQ0xBTkQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvcGNsYW5kL2J1dHRvbl9zdG9w LnBuZworJSVQQ0xBTkQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvcGNsYW5kL2ZvbnQuZm50CislJVBD TEFORCUlc2hhcmUvbXBsYXllci9za2lucy9wY2xhbmQvZm9udC5wbmcKKyUlUENMQU5EJSVzaGFy ZS9tcGxheWVyL3NraW5zL3BjbGFuZC9tYWluLnBuZworJSVQQ0xBTkQlJXNoYXJlL21wbGF5ZXIv c2tpbnMvcGNsYW5kL211dGUucG5nCislJVBDTEFORCUlc2hhcmUvbXBsYXllci9za2lucy9wY2xh bmQvcG9zLnBuZworJSVQQ0xBTkQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvcGNsYW5kL3NraW4KKyUl UENMQU5EJSVzaGFyZS9tcGxheWVyL3NraW5zL3BjbGFuZC9zdWItMi5wbmcKKyUlUENMQU5EJSVz aGFyZS9tcGxheWVyL3NraW5zL3BjbGFuZC9zdWIucG5nCislJVBDTEFORCUlc2hhcmUvbXBsYXll ci9za2lucy9wY2xhbmQvdm9sLnBuZworJSVQQ0xBTkQlJXNoYXJlL21wbGF5ZXIvc2tpbnMvcGNs YW5kL3dhdmVzLnBuZwogJSVQSE9OWSUlc2hhcmUvbXBsYXllci9za2lucy9waG9ueS9SRUFETUUK ICUlUEhPTlklJXNoYXJlL21wbGF5ZXIvc2tpbnMvcGhvbnkvVkVSU0lPTgogJSVQSE9OWSUlc2hh cmUvbXBsYXllci9za2lucy9waG9ueS9hYm91dC5wbmcKQEAgLTE2ODcsMTIgKzE4NjcsMTQgQEAK ICUlUE9XRVJQTEFZRVIlJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL1Bvd2VyUGxheWVyCiAl JVBMQVNUSUMlJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL3BsYXN0aWMKICUlUEhPTlklJUBk aXJybSBzaGFyZS9tcGxheWVyL3NraW5zL3Bob255CislJVBDTEFORCUlQGRpcnJtIHNoYXJlL21w bGF5ZXIvc2tpbnMvcGNsYW5kCiAlJU9TWE1PRCUlQGRpcnJtIHNoYXJlL21wbGF5ZXIvc2tpbnMv T1NYLU1vZAogJSVPU1hCUlVTSEVEJSVAZGlycm0gc2hhcmUvbXBsYXllci9za2lucy9PU1gtQnJ1 c2hlZAogJSVPUkFOR0UlJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL09yYW5nZQogJSVORVdB R0UlJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL25ldy1hZ2UKICUlTkVVVFJPTiUlQGRpcnJt IHNoYXJlL21wbGF5ZXIvc2tpbnMvbmV1dHJvbgogJSVORVRTQ0FQRTQlJUBkaXJybSBzaGFyZS9t cGxheWVyL3NraW5zL25ldHNjYXBlNAorJSVOQVRJVkVfUkVEJSVAZGlycm0gc2hhcmUvbXBsYXll ci9za2lucy9uYXRpdmVSZWQKICUlTVBMQVlFUl9SRUQlJUBkaXJybSBzaGFyZS9tcGxheWVyL3Nr aW5zL21wbGF5ZXJfcmVkCiAlJU1PT05QSEFTRSUlQGRpcnJtIHNoYXJlL21wbGF5ZXIvc2tpbnMv bW9vbnBoYXNlCiAlJU1JTkklJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL21pbmkKQEAgLTE3 MDQsNiArMTg4Niw3IEBACiAlJUlUVU5FU19NSU5JJSVAZGlycm0gc2hhcmUvbXBsYXllci9za2lu cy9pVHVuZXMtbWluaQogJSVJVFVORVMlJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL2lUdW5l cwogJSVJTkRVU1RSSUFMJSVAZGlycm0gc2hhcmUvbXBsYXllci9za2lucy9JbmR1c3RyaWFsCisl JUlDWSUlQGRpcnJtIHNoYXJlL21wbGF5ZXIvc2tpbnMvSUNZCiAlJUhXU1clJUBkaXJybSBzaGFy ZS9tcGxheWVyL3NraW5zL2h3c3dza2luCiAlJUhBWVJBUEhPTiUlQGRpcnJtIHNoYXJlL21wbGF5 ZXIvc2tpbnMvaGF5cmFwaG9uCiAlJUhBTkRIRUxEJSVAZGlycm0gc2hhcmUvbXBsYXllci9za2lu cy9oYW5kaGVsZApAQCAtMTcyMSwxMCArMTkwNCwxMyBAQAogJSVDT1JORVJNUF9BUVVBJSVAZGly cm0gc2hhcmUvbXBsYXllci9za2lucy9Db3JuZXJNUC1hcXVhCiAlJUNPUk5FUk1QJSVAZGlycm0g c2hhcmUvbXBsYXllci9za2lucy9Db3JuZXJNUAogJSVDT1JFTElBTiUlQGRpcnJtIHNoYXJlL21w bGF5ZXIvc2tpbnMvQ29yZWxpYW4KKyUlQ0xFQVJMT09LUyUlQGRpcnJtIHNoYXJlL21wbGF5ZXIv c2tpbnMvQ2xlYXJsb29rcwogJSVDQU5BUlklJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL0Nh bmFyeQogJSVCTFVFSEVBUlQlJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL0JsdWVIZWFydAog JSVCTFVFQ1VSVkUlJUBkaXJybSBzaGFyZS9tcGxheWVyL3NraW5zL2JsdWVjdXJ2ZQogJSVBVklG SUxFJSVAZGlycm0gc2hhcmUvbXBsYXllci9za2lucy9hdmlmaWxlCislJUFURVJGSUxFJSVAZGly cm0gc2hhcmUvbXBsYXllci9za2lucy9BdGVyL2ljb25zCislJUFURVJGSUxFJSVAZGlycm0gc2hh cmUvbXBsYXllci9za2lucy9BdGVyCiAlJUFMSUVOTUlORCUlQGRpcnJtIHNoYXJlL21wbGF5ZXIv c2tpbnMvQWxpZW5NaW5kCiAlJUFCWVNTJSVAZGlycm0gc2hhcmUvbXBsYXllci9za2lucy9BYnlz cy9pY29ucwogJSVBQllTUyUlQGRpcnJtIHNoYXJlL21wbGF5ZXIvc2tpbnMvQWJ5c3MK --0015174c426ac6b27004b53eb325-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 18:41:59 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0978A106564A; Thu, 29 Dec 2011 18:41:59 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D41DF8FC0A; Thu, 29 Dec 2011 18:41:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTIfwmD055542; Thu, 29 Dec 2011 18:41:58 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTIfwnI055538; Thu, 29 Dec 2011 18:41:58 GMT (envelope-from pawel) Date: Thu, 29 Dec 2011 18:41:58 GMT Message-Id: <201112291841.pBTIfwnI055538@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/148006: Update of devel/ocaml-camomile to 0.7.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, 29 Dec 2011 18:41:59 -0000 Synopsis: Update of devel/ocaml-camomile to 0.7.3 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Thu Dec 29 18:41:58 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=148006 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 19:00:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EF991065677 for ; Thu, 29 Dec 2011 19: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 DE87C8FC17 for ; Thu, 29 Dec 2011 19:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTJ0M83064577 for ; Thu, 29 Dec 2011 19:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTJ0Mfm064576; Thu, 29 Dec 2011 19:00:22 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 19:00:22 GMT Resent-Message-Id: <201112291900.pBTJ0Mfm064576@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, Roland Smith Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7EA851065672 for ; Thu, 29 Dec 2011 18:50:32 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by mx1.freebsd.org (Postfix) with ESMTP id F094E8FC13 for ; Thu, 29 Dec 2011 18:50:31 +0000 (UTC) Received: from slackbox.erewhon.net (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr15.xs4all.nl (8.13.8/8.13.8) with ESMTP id pBTIY6bE059890 for ; Thu, 29 Dec 2011 19:34:06 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.erewhon.net (Postfix, from userid 1001) id AA29BBACF; Thu, 29 Dec 2011 19:34:06 +0100 (CET) Message-Id: <20111229183406.AA29BBACF@slackbox.erewhon.net> Date: Thu, 29 Dec 2011 19:34:06 +0100 (CET) From: Roland Smith To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163698: new port graphics/py-stl (deprecates graphics/stl2pov) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Roland Smith List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2011 19:00:23 -0000 >Number: 163698 >Category: ports >Synopsis: new port graphics/py-stl (deprecates graphics/stl2pov) >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 Dec 29 19:00:22 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Roland Smith >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD slackbox.erewhon.net 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Tue Oct 4 21:57:06 CEST 2011 rsmith@slackbox.erewhon.net:/usr/obj/usr/src/sys/QUADSLACK amd64 >Description: A port of stl2pov to the Python programming language. The core of the program is now implemented as two modules (libraries), which makes re-using them a lot easier. Adds programs called stl2ps and stl2pdf to generate a projected view of the STL object to a PostScript or PDF file. Recently a script stlinfo was added to print some statistics about an STL file or to print the STL file in text format. It requires the Python interpreter. The stl2pdf program requires the ReportLab toolkit. I will maintain the new port. (I'm also the maintainer of the stl2pov port, which should be deprecated in favor of this port.) >How-To-Repeat: >Fix: Inluded is a tarball with the new port Makefile, distinfo, pkg-descr and pkg-plist. The distfile is up on my website. begin 644 py-stl-99b66e8.tgz M'XL(`.M9_$X``^U8?V_:1ACNO]RG."E$:K=A;&,P9FO5!)S6*AAD.\G::4*' M?00KQN?Z3!(6Y;OO/1L2FH0P34JB:7XD9+CWY]UQ]SZO#6/2:M%V?4#.Z32, MZ)MG@"S+FJ9A>"IZ4]E\YE"5IHX5I:6W=*6A-#0L*YJFMMY@^3F2N8\%ST@* MJ:1\'F:S[7J[Y,5<\.WS/X(];--+G+`TX]AG443]+&0QGJ_^#GC*T@X&),L: MSR*TAWLDH]A/*3R"7/(HU#;N41^KLJ*`S>F,S;?KKE&L\,?3`PWUDV;IVS:79)4EI'HR^?1,"18QY9 MOX-9]7KTU?L\M,<_"&Y0SW+O958SBH.%(+)E>_`Q'2%],,GN<#`P;4_(NBR^ MH&(C7*^/YRR@$<<9PZ/A2,9ZY?AHF67W4.\+AG)Q1CM`> M;!:&V&H23#&+HR5RCNUQSQR9=L_=GGU*Q?9'9*)^4#N@`TOJ]BSGIIZD89S5 M83YW&@@=N^;XFS42^7XUW?QGX56,J%+SY]606))CS^I#8*$'\[2/^E;7R[+ZW1OZG=^J]<@6LV\/B>Q^"@[3?F_ MM"PR?\)T<"(LUJ))&-^FFBP?%SQEQBZVF+&+I\RXL'I4L-TJG]ECP80`(2F, M_6@14/S;A`>2^/M(\_,/Z+6ONQ+WL+JFZD'(,[%SSQ%C1_V7H4KG/^F7I[_EX`WH\#MLYG@_"Q81$`PX:B*PD[B`%\!HYSG M/]*\%<#`^X,P/ONEZ`#@FU!#64IB+E3%@""O;UV/II3U8<583L&7[[!H)[B$ M(2"GM[&$WP6G`9XL<3:C:`HM"+L4;GC.;_FO"*T(3`??\F/0O./(@B*3G!R# M)S*!GN42PN8Z@CFGP)SA`RGZ-)4*9QR:D6[>PD`&^"*$#HA-[WD-8TB!1+G# M.[Z]BYAAWY?A"FH/D:H>937W0XV(6N:8BC$2426L`W0E&`A M2N,P`TU4J>",7F6X,)$0.CT][>!_UNJ$<4"O MI%DVC\H;^?^$S?L_B8`$/D.,7?ROH3UX_]-2U?+^?PGL[Z_>"8@W(WWK$!K_ M_?UZ40+04T+_22G;(ET7E!WB;<[7C==WL1U][F4N4*%&B1(D2 8)4J4*%&B1(D2)4J4>!7\#2=>:^<`*``` ` end >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 19:00:35 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77DF5106567F; Thu, 29 Dec 2011 19:00:35 +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 4E26F8FC0C; Thu, 29 Dec 2011 19:00:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTJ0ZJc064794; Thu, 29 Dec 2011 19:00:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTJ0ZPw064790; Thu, 29 Dec 2011 19:00:35 GMT (envelope-from edwin) Date: Thu, 29 Dec 2011 19:00:35 GMT Message-Id: <201112291900.pBTJ0ZPw064790@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/163698: new port graphics/py-stl (deprecates graphics/stl2pov) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 19:00:35 -0000 Synopsis: new port graphics/py-stl (deprecates graphics/stl2pov) Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Thu Dec 29 19:00:34 UTC 2011 Class-Changed-Why: Fix category (new ports should be change-requests) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163698 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 19:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88997106566C for ; Thu, 29 Dec 2011 19: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 645328FC1C for ; Thu, 29 Dec 2011 19:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTJAC1V073588 for ; Thu, 29 Dec 2011 19:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTJACps073587; Thu, 29 Dec 2011 19:10:12 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 19:10:12 GMT Resent-Message-Id: <201112291910.pBTJACps073587@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, Heath Nielson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CE391065673 for ; Thu, 29 Dec 2011 19:10:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 0B0188FC1C for ; Thu, 29 Dec 2011 19:10:01 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBTJA01n013207 for ; Thu, 29 Dec 2011 19:10:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBTJA0K7013206; Thu, 29 Dec 2011 19:10:00 GMT (envelope-from nobody) Message-Id: <201112291910.pBTJA0K7013206@red.freebsd.org> Date: Thu, 29 Dec 2011 19:10:00 GMT From: Heath Nielson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163699: [PATCH] x11/kde4-runtime doesn't compile with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 19:10:12 -0000 >Number: 163699 >Category: ports >Synopsis: [PATCH] x11/kde4-runtime doesn't compile with clang >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: Thu Dec 29 19:10:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Heath Nielson >Release: FreeBSD 9.0-RC3 >Organization: >Environment: FreeBSD hershey.bar.net 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #11: Sat Dec 24 14:11:38 MST 2011 heath@hershey.bar.net:/usr/obj/usr/src/sys/HERSHEY amd64 >Description: Building the kde4-runtime project with clang results in 3 different compile time errors: 1) In file included from /usr/ports/x11/kde4-runtime/work/kde-runtime-4.7.3/nepomuk/services/storage/lib/createresourcejob.cpp:22: /usr/ports/x11/kde4-runtime/work/kde-runtime-4.7.3/nepomuk/services/storage/lib/createresourcejob.h:78:49: error: no function named 'createResource' with type 'Nepomuk::CreateResourceJob *(const QList &, const QString &, const QString &, const KComponentData &)' was found in the specified scope friend Nepomuk::CreateResourceJob* Nepomuk::createResource(const ... ^ 2) [ 24%] Building CXX object nepomuk/services/storage/lib/CMakeFiles/nepomukdatamanagement.dir/describeresourcesjob.o In file included from /usr/ports/x11/kde4-runtime/work/kde-runtime-4.7.3/nepomuk/services/storage/lib/describeresourcesjob.cpp:22: /usr/ports/x11/kde4-runtime/work/kde-runtime-4.7.3/nepomuk/services/storage/lib/describeresourcesjob.h:77:52: error: no function named 'describeResources' with type 'Nepomuk::DescribeResourcesJob *(const QList &, bool)' was found in the specified scope friend Nepomuk::DescribeResourcesJob* Nepomuk::describeResources(... ^ 3) /usr/ports/x11/kde4-runtime/work/kde-runtime-4.7.3/nepomuk/services/storage/resourcemerger.cpp:499:27: warning: parentheses were disambiguated as a function declarator ...dateTime( Soprano::LiteralValue( QDateTime::currentDateTime() ) ); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/ports/x11/kde4-runtime/work/kde-runtime-4.7.3/nepomuk/services/storage/resourcemerger.cpp:499:63: error: parameter declarator cannot be qualified ...dateTime( Soprano::LiteralValue( QDateTime::currentDateTime() ) ); ~~~~~~~~~~~^ /usr/ports/x11/kde4-runtime/work/kde-runtime-4.7.3/nepomuk/services/storage/resourcemerger.cpp:500:14: error: no matching member function for call to 'addStatement' m_model->addStatement( newUri, NAO::created(), dateTime, m_graph ); ~~~~~~~~~^~~~~~~~~~~~ /usr/local/include/Soprano/../soprano/filtermodel.h:81:26: note: candidate function not viable: no known conversion from 'Soprano::Node (Soprano::LiteralValue ((*)()))' to 'const Soprano::Node' for 3rd argument; Error::ErrorCode addStatement( const Node& subject, const Node& ... ^ /usr/local/include/Soprano/../soprano/filtermodel.h:76:34: note: candidate function not viable: requires 1 argument, but 4 were provided virtual Error::ErrorCode addStatement( const Statement &statement ); ^ /usr/ports/x11/kde4-runtime/work/kde-runtime-4.7.3/nepomuk/services/storage/resourcemerger.cpp:501:14: error: no matching member function for call to 'addStatement' m_model->addStatement( newUri, NAO::lastModified(), dateTime, m_graph ); ~~~~~~~~~^~~~~~~~~~~~ /usr/local/include/Soprano/../soprano/filtermodel.h:81:26: note: candidate function not viable: no known conversion from 'Soprano::Node (Soprano::LiteralValue ((*)()))' to 'const Soprano::Node' for 3rd argument; Error::ErrorCode addStatement( const Node& subject, const Node& ... ^ /usr/local/include/Soprano/../soprano/filtermodel.h:76:34: note: candidate function not viable: requires 1 argument, but 4 were provided virtual Error::ErrorCode addStatement( const Statement &statement ); >How-To-Repeat: cd /usr/ports/x11/kde4-runtime make install >Fix: The first two errors were similar. The third had me scratching my head for a while until I saw: http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.21 Patch is attached. 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: # # patch-nepomuk-services-storage-lib-createresourcejob.h # patch-nepomuk-services-storage-lib-describeresourcesjob.h # patch-nepomuk-services-storage-resourcemerger.cpp # echo x - patch-nepomuk-services-storage-lib-createresourcejob.h sed 's/^X//' >patch-nepomuk-services-storage-lib-createresourcejob.h << 'a390402d1aaab940e9ab3db0737c4c98' X--- nepomuk/services/storage/lib/createresourcejob.h.orig 2011-12-29 00:43:13.000000000 -0700 X+++ nepomuk/services/storage/lib/createresourcejob.h 2011-12-29 00:43:16.000000000 -0700 X@@ -28,6 +28,7 @@ X #include X X #include "nepomukdatamanagement_export.h" X+#include "datamanagement.h" X X class KComponentData; X class QDBusPendingCallWatcher; a390402d1aaab940e9ab3db0737c4c98 echo x - patch-nepomuk-services-storage-lib-describeresourcesjob.h sed 's/^X//' >patch-nepomuk-services-storage-lib-describeresourcesjob.h << '4b069fe6644a91adc191b35c1f3b761e' X--- nepomuk/services/storage/lib/describeresourcesjob.h.orig 2011-12-29 00:45:00.000000000 -0700 X+++ nepomuk/services/storage/lib/describeresourcesjob.h 2011-12-29 00:45:14.000000000 -0700 X@@ -28,6 +28,7 @@ X #include X X #include "nepomukdatamanagement_export.h" X+#include "datamanagement.h" X X class QDBusPendingCallWatcher; X 4b069fe6644a91adc191b35c1f3b761e echo x - patch-nepomuk-services-storage-resourcemerger.cpp sed 's/^X//' >patch-nepomuk-services-storage-resourcemerger.cpp << '298f6df303e651f81a0378a80333ec7c' X--- nepomuk/services/storage/resourcemerger.cpp.orig 2011-12-29 11:33:53.000000000 -0700 X+++ nepomuk/services/storage/resourcemerger.cpp 2011-12-29 11:34:21.000000000 -0700 X@@ -496,7 +496,7 @@ X QUrl newUri = createResourceUri(); X m_mappings.insert( QUrl(node.toN3()), newUri ); X X- Soprano::Node dateTime( Soprano::LiteralValue( QDateTime::currentDateTime() ) ); X+ Soprano::Node dateTime( (Soprano::LiteralValue( QDateTime::currentDateTime() )) ); X m_model->addStatement( newUri, NAO::created(), dateTime, m_graph ); X m_model->addStatement( newUri, NAO::lastModified(), dateTime, m_graph ); X 298f6df303e651f81a0378a80333ec7c exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 19:10:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA0CF106564A; Thu, 29 Dec 2011 19:10: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 B05308FC12; Thu, 29 Dec 2011 19:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTJAM5w074031; Thu, 29 Dec 2011 19:10:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTJAMW0074023; Thu, 29 Dec 2011 19:10:22 GMT (envelope-from edwin) Date: Thu, 29 Dec 2011 19:10:22 GMT Message-Id: <201112291910.pBTJAMW0074023@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163699: [PATCH] x11/kde4-runtime doesn't compile with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 19:10:22 -0000 Synopsis: [PATCH] x11/kde4-runtime doesn't compile with clang Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 29 19:10:22 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163699 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 20:07:01 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CE78106566B; Thu, 29 Dec 2011 20:07:01 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 42E948FC15; Thu, 29 Dec 2011 20:07:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTK71WS028004; Thu, 29 Dec 2011 20:07:01 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTK71Xo028000; Thu, 29 Dec 2011 20:07:01 GMT (envelope-from pawel) Date: Thu, 29 Dec 2011 20:07:01 GMT Message-Id: <201112292007.pBTK71Xo028000@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/159607: Update port: graphic/mahotas Efficient Image Processing Library for Python X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 20:07:01 -0000 Synopsis: Update port: graphic/mahotas Efficient Image Processing Library for Python Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Thu Dec 29 20:07:00 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=159607 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 20:14:41 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 251FB106566B; Thu, 29 Dec 2011 20:14: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 EE0368FC16; Thu, 29 Dec 2011 20:14:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTKEeA2037432; Thu, 29 Dec 2011 20:14:40 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTKEeQi037428; Thu, 29 Dec 2011 20:14:40 GMT (envelope-from linimon) Date: Thu, 29 Dec 2011 20:14:40 GMT Message-Id: <201112292014.pBTKEeQi037428@freefall.freebsd.org> To: riggs@rrr.de, toxic@doobie.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/161845: [update] [patch] multimedia/mplayer-skins Bring in upstream updates to skins, including default skin. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 20:14:41 -0000 Synopsis: [update] [patch] multimedia/mplayer-skins Bring in upstream updates to skins, including default skin. State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Thu Dec 29 20:14:16 UTC 2011 State-Changed-Why: Maintainer has submitted revised patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=161845 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 20:48:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7434D1065678; Thu, 29 Dec 2011 20:48:21 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4A0F98FC1D; Thu, 29 Dec 2011 20:48:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTKmLMM066451; Thu, 29 Dec 2011 20:48:21 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTKmKkM066446; Thu, 29 Dec 2011 20:48:20 GMT (envelope-from pawel) Date: Thu, 29 Dec 2011 20:48:20 GMT Message-Id: <201112292048.pBTKmKkM066446@freefall.freebsd.org> To: ayu@commun.jp, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/163067: [update] Update audio/umurmur 0.2.6 to 0.2.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: Thu, 29 Dec 2011 20:48:21 -0000 Synopsis: [update] Update audio/umurmur 0.2.6 to 0.2.8 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Thu Dec 29 20:48:20 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163067 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 23:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 745451065675 for ; Thu, 29 Dec 2011 23: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 503E58FC1B for ; Thu, 29 Dec 2011 23:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTNKAF4003232 for ; Thu, 29 Dec 2011 23:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTNKAoT003231; Thu, 29 Dec 2011 23:20:10 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 23:20:10 GMT Resent-Message-Id: <201112292320.pBTNKAoT003231@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, Marco Steinbach Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9998E106566C for ; Thu, 29 Dec 2011 23:16:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 888758FC08 for ; Thu, 29 Dec 2011 23:16:53 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBTNGrr2058392 for ; Thu, 29 Dec 2011 23:16:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBTNGrjN058391; Thu, 29 Dec 2011 23:16:53 GMT (envelope-from nobody) Message-Id: <201112292316.pBTNGrjN058391@red.freebsd.org> Date: Thu, 29 Dec 2011 23:16:53 GMT From: Marco Steinbach To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163702: Makefile dependency fix, no functional 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, 29 Dec 2011 23:20:10 -0000 >Number: 163702 >Category: ports >Synopsis: Makefile dependency fix, no functional changes >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 Dec 29 23:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Marco Steinbach >Release: >Organization: >Environment: FreeBSD 9.0-PRERELEASE #0 r228927M amd64 >Description: Port tries to reinstall already installed dependencies, if www/awstats or net/libnss-mysql knobs are selected. Thanks to Rainer Duffner for reporting this. >How-To-Repeat: Select apropriate knobs, install, delete, try to reinstall. >Fix: Properly check dependencies. See attached patch. Patch attached with submission follows: --- Makefile.orig 2011-12-29 19:49:22.000000000 +0100 +++ Makefile 2011-12-30 00:05:12.000000000 +0100 @@ -7,7 +7,7 @@ PORTNAME= froxlor PORTVERSION= 0.9.22 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils www MASTER_SITES= http://files.froxlor.org/releases/ @@ -27,7 +27,7 @@ OPTIONS= APACHE "Use Apache (2.2) as http server" On \ MYSQL "Use MySQL as database server" On \ POSTFIX "Use Postfix as smtp server" On \ - DKIM "Use Dkim-milter" Off \ + DKIM "Use OpenDKIM" Off \ DOVECOT "Use Dovecot as imap/pop3 server" On \ PROFTPD "Use Proftpd-mysql as ftp server (implies MySQL)" On \ POWERDNS "Use Powerdns as dns server" Off \ @@ -66,7 +66,7 @@ .endif .if defined(WITH_LIBNSS) -RUN_DEPENDS+= libnss-mysql:${PORTSDIR}/net/libnss-mysql +RUN_DEPENDS+= ${LOCALBASE}/lib/nss_mysql.so:${PORTSDIR}/net/libnss-mysql .endif .if !defined(WITHOUT_WEBALIZER) @@ -74,7 +74,7 @@ .endif .if defined(WITH_AWSTATS) -RUN_DEPENDS+= awstats:${PORTSDIR}/www/awstats +RUN_DEPENDS+= awstats>=6.8:${PORTSDIR}/www/awstats .endif do-install: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 23:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCCAF106566B for ; Thu, 29 Dec 2011 23: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 A227E8FC1D for ; Thu, 29 Dec 2011 23:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTNKAd0003242 for ; Thu, 29 Dec 2011 23:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTNKAcA003241; Thu, 29 Dec 2011 23:20:10 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 23:20:10 GMT Resent-Message-Id: <201112292320.pBTNKAcA003241@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, "Beech Rintoul" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FB2C106566C; Thu, 29 Dec 2011 23:17:54 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from bsdevel2.freebsdnorth.com (unknown [IPv6:2001:470:7:d77::2]) by mx1.freebsd.org (Postfix) with ESMTP id 52DF98FC08; Thu, 29 Dec 2011 23:17:54 +0000 (UTC) Received: from tom1.akherb.com (akbeech-1-pt.tunnel.tserv14.sea1.ipv6.he.net [IPv6:2001:470:a:333::2]) by bsdevel2.freebsdnorth.com (Postfix) with ESMTPA id E90A6C3AAB; Thu, 29 Dec 2011 22:28:30 +0000 (UTC) Message-Id: <1325200673.64379@tom1.akherb.com> Date: Thu, 29 Dec 2011 14:17:53 -0900 From: "Beech Rintoul" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: beech@FreeBSD.org Subject: ports/163703: Error with KDE4 printer configuration X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 23:20:10 -0000 >Number: 163703 >Category: ports >Synopsis: Error with KDE4 printer configuration >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: Thu Dec 29 23:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Beech Rintoul >Release: FreeBSD 8.2-STABLE i386 >Organization: FreeBSD >Environment: System: FreeBSD 8.2-STABLE #0: Sat Dec 24 11:05:20 AKST 2011 root@tom1.akherb.com:/usr/obj/usr/src/sys/TOM >Description: The service 'Printer Configuration' does not provide an interface 'KCModule' with keyword 'system-config-printer-kde/system-config-printer=kde.py' The factory does not support creating components of the specified type. # /usr/local/kde4/bin/kcmshell4 system-config-printer-kde kcmshell(64336)/KSharedDataCache: Unable to find an appropriate lock to guard the shared cache. This *should* be essentially impossible. :( kcmshell(64336)/KSharedDataCache: Unable to perform initial setup, this system probably does not really support process-shared pthreads or semaphores, even though it claims otherwise. kcmshell(64336)/KSharedDataCache: Unable to unmap shared memory segment 0x2b346000 kcmshell(64336)/python (plugin): Failed to import module Traceback (most recent call last): File "/usr/local/kde4/share/apps/system-config-printer-kde/system-config-printer-kde.py", line 76, in import cupshelpers, options ImportError: No module named cupshelpers kcmshell(64336)/python (plugin): Failed to import module kcmshell(64336)/kcontrol KCModuleLoader::loadModule: This module has no valid entry symbol at all. The reason could be that it's still using K_EXPORT_COMPONENT_FACTORY with a custom X-KDE-FactoryName which is not supported anymore >How-To-Repeat: Update KDE4 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 23:28:59 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF50A106566B; Thu, 29 Dec 2011 23:28:59 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 85AFA8FC14; Thu, 29 Dec 2011 23:28:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTNSx7a011766; Thu, 29 Dec 2011 23:28:59 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTNSx5W011762; Thu, 29 Dec 2011 23:28:59 GMT (envelope-from beech) Date: Thu, 29 Dec 2011 23:28:59 GMT Message-Id: <201112292328.pBTNSx5W011762@freefall.freebsd.org> To: beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org From: beech@FreeBSD.org Cc: Subject: Re: ports/163702: Makefile dependency fix, no functional 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, 29 Dec 2011 23:28:59 -0000 Synopsis: Makefile dependency fix, no functional changes Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: beech Responsible-Changed-When: Thu Dec 29 23:28:11 UTC 2011 Responsible-Changed-Why: I'll take it http://www.freebsd.org/cgi/query-pr.cgi?pr=163702 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 23:30:27 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21B991065673 for ; Thu, 29 Dec 2011 23:30: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 D7CA78FC18 for ; Thu, 29 Dec 2011 23:30:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTNUQR0012721 for ; Thu, 29 Dec 2011 23:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTNUQ67012714; Thu, 29 Dec 2011 23:30:26 GMT (envelope-from gnats) Resent-Date: Thu, 29 Dec 2011 23:30:26 GMT Resent-Message-Id: <201112292330.pBTNUQ67012714@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7C24106564A; Thu, 29 Dec 2011 23:28:26 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 86BCF8FC0C; Thu, 29 Dec 2011 23:28:26 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id pBTNSMAZ006199 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 29 Dec 2011 18:28:23 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id pBTNSMoT054176; Thu, 29 Dec 2011 18:28:22 -0500 (EST) (envelope-from steve) Message-Id: <201112292328.pBTNSMoT054176@meatwad.mouf.net> Date: Thu, 29 Dec 2011 18:28:22 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gnome@FreeBSD.org Subject: ports/163704: [PATCH] devel/ptlib: disable ODBC by default X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 23:30:27 -0000 >Number: 163704 >Category: ports >Synopsis: [PATCH] devel/ptlib: disable ODBC by default >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 Dec 29 23:30:26 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #8: Mon Dec 19 15:53:28 EST 2011 >Description: Attached patch disables ODBC by default so that gnome and kde don't conflict. Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- ptlib-2.6.7.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/ptlib26/Makefile,v retrieving revision 1.15 diff -u -u -r1.15 Makefile --- Makefile 29 Dec 2011 23:25:39 -0000 1.15 +++ Makefile 29 Dec 2011 23:27:41 -0000 @@ -33,7 +33,7 @@ CONFIGURE_ARGS+= --enable-oss --enable-plugins --with-expat-dir="${LOCALBASE}" CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" OPENSSL_LIBS="-L${OPENSSLLIB} -lssl" -OPTIONS= ODBC "Use ODBC" On \ +OPTIONS= ODBC "Use ODBC" Off \ ALSA "Use ALSA (experimental)" Off \ V4L "Use Video4Linux" Off \ BSDVIDEO "Enable BSD video support" On \ --- ptlib-2.6.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 29 23:30:38 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51B2F106566C; Thu, 29 Dec 2011 23:30:38 +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 285E18FC13; Thu, 29 Dec 2011 23:30:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBTNUcYR013957; Thu, 29 Dec 2011 23:30:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBTNUbTY013949; Thu, 29 Dec 2011 23:30:38 GMT (envelope-from edwin) Date: Thu, 29 Dec 2011 23:30:38 GMT Message-Id: <201112292330.pBTNUbTY013949@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163704: [PATCH] devel/ptlib: disable ODBC by default X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 29 Dec 2011 23:30:38 -0000 Synopsis: [PATCH] devel/ptlib: disable ODBC by default Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 29 23:30:37 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163704 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 00:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FC3C106567A for ; Fri, 30 Dec 2011 00: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 816A48FC14 for ; Fri, 30 Dec 2011 00:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU0oAp2089690 for ; Fri, 30 Dec 2011 00:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU0oAoi089689; Fri, 30 Dec 2011 00:50:10 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 00:50:10 GMT Resent-Message-Id: <201112300050.pBU0oAoi089689@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, Anton Shterenlikht Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEFDD106566C for ; Fri, 30 Dec 2011 00:46:35 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id 7F0D38FC0C for ; Fri, 30 Dec 2011 00:46:35 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1RgQNQ-0002HR-B0 for FreeBSD-gnats-submit@freebsd.org; Fri, 30 Dec 2011 00:31:26 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1RgQNG-0000Bw-3T for FreeBSD-gnats-submit@freebsd.org; Fri, 30 Dec 2011 00:31:06 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id pBU0UwIF012858 for ; Fri, 30 Dec 2011 00:30:58 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id pBU0UwZ9012857; Fri, 30 Dec 2011 00:30:58 GMT (envelope-from mexas) Message-Id: <201112300030.pBU0UwZ9012857@mech-cluster241.men.bris.ac.uk> Date: Fri, 30 Dec 2011 00:30:58 GMT From: Anton Shterenlikht To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163705: [patch] astro/xearth - change of maintainer email X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anton Shterenlikht List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 00:50:11 -0000 >Number: 163705 >Category: ports >Synopsis: [patch] astro/xearth - change of maintainer email >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 Dec 30 00:50:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Anton Shterenlikht >Release: FreeBSD 9.0-BETA2 ia64 >Organization: University of Bristol >Environment: System: FreeBSD mech-cluster241.men.bris.ac.uk 9.0-BETA2 FreeBSD 9.0-BETA2 #4 r225618: Fri Sep 16 21:11:50 BST 2011 root@mech-cluster241.men.bris.ac.uk:/usr/obj/usr/src/sys/TZAV ia64 >Description: I want to use the same email for all my ports: mexas@bris.ac.uk >How-To-Repeat: >Fix: --- ./astro/xearth/Makefile 2011-07-30 20:09:31.000000000 +0100 +++ ./astro/xearth/Makefile.new 2011-12-30 00:28:08.000000000 +0000 @@ -13,7 +13,7 @@ http://seis.bris.ac.uk/~mexas/ \ LOCAL/simon -MAINTAINER= mexas@bristol.ac.uk +MAINTAINER= mexas@bris.ac.uk COMMENT= Set the root window to the image of earth BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 01:00:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E60D6106566B for ; Fri, 30 Dec 2011 01: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 9CA008FC19 for ; Fri, 30 Dec 2011 01:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU10Qn8098067 for ; Fri, 30 Dec 2011 01:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU10QPV098058; Fri, 30 Dec 2011 01:00:26 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 01:00:26 GMT Resent-Message-Id: <201112300100.pBU10QPV098058@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, Anton Shterenlikht Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A0BC106566B for ; Fri, 30 Dec 2011 00:50:43 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirj.bris.ac.uk (dirj.bris.ac.uk [137.222.10.78]) by mx1.freebsd.org (Postfix) with ESMTP id CE65D8FC15 for ; Fri, 30 Dec 2011 00:50:42 +0000 (UTC) Received: from ncsd.bris.ac.uk ([137.222.10.59] helo=ncs.bris.ac.uk) by dirj.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1RgQRB-0003UL-3C for FreeBSD-gnats-submit@freebsd.org; Fri, 30 Dec 2011 00:35:09 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1RgQRA-00033s-W3 for FreeBSD-gnats-submit@freebsd.org; Fri, 30 Dec 2011 00:35:09 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id pBU0Z8Br012965 for ; Fri, 30 Dec 2011 00:35:08 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id pBU0Z8LD012964; Fri, 30 Dec 2011 00:35:08 GMT (envelope-from mexas) Message-Id: <201112300035.pBU0Z8LD012964@mech-cluster241.men.bris.ac.uk> Date: Fri, 30 Dec 2011 00:35:08 GMT From: Anton Shterenlikht To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163706: [patch] textproc/urlview - maintainer email change X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anton Shterenlikht List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 01:00:27 -0000 >Number: 163706 >Category: ports >Synopsis: [patch] textproc/urlview - maintainer email change >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 Dec 30 01:00:26 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Anton Shterenlikht >Release: FreeBSD 9.0-BETA2 ia64 >Organization: University of Bristol >Environment: System: FreeBSD mech-cluster241.men.bris.ac.uk 9.0-BETA2 FreeBSD 9.0-BETA2 #4 r225618: Fri Sep 16 21:11:50 BST 2011 root@mech-cluster241.men.bris.ac.uk:/usr/obj/usr/src/sys/TZAV ia64 >Description: I want to have the same email for all my ports: mexas@bris.ac.uk >How-To-Repeat: >Fix: --- ./textproc/urlview/Makefile 2011-08-17 14:11:29.000000000 +0100 +++ ./textproc/urlview/Makefile.new 2011-12-30 00:33:44.000000000 +0000 @@ -17,7 +17,7 @@ ftp://ftp.gwdg.de/pub/unix/mail/mutt/international/contrib/ \ http://seis.bris.ac.uk/~mexas/ -MAINTAINER= mexas@bristol.ac.uk +MAINTAINER= mexas@bris.ac.uk COMMENT= URL extractor/launcher GNU_CONFIGURE= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 01:05:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F3EF1065670; Fri, 30 Dec 2011 01:05:25 +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 3A04E8FC0C; Fri, 30 Dec 2011 01:05:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU15Pu5007233; Fri, 30 Dec 2011 01:05:25 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU15P68007229; Fri, 30 Dec 2011 01:05:25 GMT (envelope-from linimon) Date: Fri, 30 Dec 2011 01:05:25 GMT Message-Id: <201112300105.pBU15P68007229@freefall.freebsd.org> To: mexas@bristol.ac.uk, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, linimon@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163706: [patch] textproc/urlview - maintainer email change X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 01:05:25 -0000 Synopsis: [patch] textproc/urlview - maintainer email change State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Dec 30 01:03:37 UTC 2011 State-Changed-Why: Committed, thanks. Responsible-Changed-From-To: freebsd-ports-bugs->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Fri Dec 30 01:03:37 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=163706 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 01:05:46 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51BDD1065670; Fri, 30 Dec 2011 01:05:46 +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 272678FC17; Fri, 30 Dec 2011 01:05:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU15kvA007305; Fri, 30 Dec 2011 01:05:46 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU15kOP007301; Fri, 30 Dec 2011 01:05:46 GMT (envelope-from linimon) Date: Fri, 30 Dec 2011 01:05:46 GMT Message-Id: <201112300105.pBU15kOP007301@freefall.freebsd.org> To: mexas@bristol.ac.uk, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, linimon@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163705: [patch] astro/xearth - change of maintainer email X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 01:05:46 -0000 Synopsis: [patch] astro/xearth - change of maintainer email State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Dec 30 01:02:38 UTC 2011 State-Changed-Why: Committed, thanks. Responsible-Changed-From-To: freebsd-ports-bugs->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Fri Dec 30 01:02:38 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=163705 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 01:40:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C95021065676 for ; Fri, 30 Dec 2011 01: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 8BEFF8FC12 for ; Fri, 30 Dec 2011 01:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU1eA4G036301 for ; Fri, 30 Dec 2011 01:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU1eAYh036300; Fri, 30 Dec 2011 01:40:10 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 01:40:10 GMT Resent-Message-Id: <201112300140.pBU1eAYh036300@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 C008C106566C; Fri, 30 Dec 2011 01:31:59 +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 7E0028FC14; Fri, 30 Dec 2011 01:31:59 +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 3DCA911443; Fri, 30 Dec 2011 10:31:58 +0900 (JST) Received: from [IPv6:2001:3e0:4ec:a011:1d24:bd9:5ccd:2e9] (unknown [IPv6:2001:3e0:4ec:a011:1d24:bd9:5ccd:2e9]) by ae-osaka.co.jp (Postfix) with ESMTPSA id 1DC8011431; Fri, 30 Dec 2011 10:31:58 +0900 (JST) Message-Id: <4EFD148D.6070402@airport.fm> Date: Fri, 30 Dec 2011 10:31:57 +0900 From: Takefu To: garga@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org In-Reply-To: <201110180932.p9I9W3Bi055417@unbound.local.ae-osaka.co.jp> References: <201110180932.p9I9W3Bi055417@unbound.local.ae-osaka.co.jp> Cc: Subject: ports/163708: [PATCH] www/sarg: fix NLS 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: Fri, 30 Dec 2011 01:40:10 -0000 >Number: 163708 >Category: ports >Synopsis: [PATCH] www/sarg: fix NLS >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 Dec 30 01:40:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 7.4-STABLE i386 >Organization: FOX Amateur Radio Club >Environment: >Description: When unselected NLS, position changes USE_ICONV. Port maintainer (garga@FreeBSD.org) is cc'd. >How-To-Repeat: >Fix: --- sarg.patch begins here --- diff -ruN /usr/ports/www/sarg/Makefile www/sarg/Makefile --- /usr/ports/www/sarg/Makefile 2011-12-30 07:45:56.000000000 +0900 +++ www/sarg/Makefile 2011-12-30 09:32:44.000000000 +0900 @@ -18,7 +18,6 @@ OPTIONS= GD "Enable GD support" on -USE_ICONV= yes USE_GMAKE= yes GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes @@ -42,6 +41,7 @@ .else PLIST_SUB+= NLS="" USE_GETTEXT= yes +USE_ICONV= yes .endif .if !defined(WITHOUT_GD) --- sarg.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 01:40:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30832106564A; Fri, 30 Dec 2011 01:40: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 070758FC0C; Fri, 30 Dec 2011 01:40:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU1eJqb036526; Fri, 30 Dec 2011 01:40:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU1eJtn036519; Fri, 30 Dec 2011 01:40:19 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 01:40:19 GMT Message-Id: <201112300140.pBU1eJtn036519@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, garga@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163708: [PATCH] www/sarg: fix NLS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 01:40:20 -0000 Synopsis: [PATCH] www/sarg: fix NLS Responsible-Changed-From-To: freebsd-ports-bugs->garga Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 30 01:40:19 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163708 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 02:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE7BD106564A for ; Fri, 30 Dec 2011 02: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 CAC378FC12 for ; Fri, 30 Dec 2011 02:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU2KA3C072165 for ; Fri, 30 Dec 2011 02:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU2KATb072164; Fri, 30 Dec 2011 02:20:10 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 02:20:10 GMT Resent-Message-Id: <201112300220.pBU2KATb072164@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, Garrett Cooper Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 703F7106564A for ; Fri, 30 Dec 2011 02:17:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 54E738FC16 for ; Fri, 30 Dec 2011 02:17:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBU2HWxj005419 for ; Fri, 30 Dec 2011 02:17:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBU2HWBA005418; Fri, 30 Dec 2011 02:17:32 GMT (envelope-from nobody) Message-Id: <201112300217.pBU2HWBA005418@red.freebsd.org> Date: Fri, 30 Dec 2011 02:17:32 GMT From: Garrett Cooper To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163709: [patch] Fix make package for net-mgmt/collectd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 02:20:11 -0000 >Number: 163709 >Category: ports >Synopsis: [patch] Fix make package for net-mgmt/collectd >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: Fri Dec 30 02:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Garrett Cooper >Release: 9.0-RC3 / 10-CURRENT >Organization: iXsystems, Inc. >Environment: FreeBSD streetfighter.ixsystems.com 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r227801: Mon Nov 21 14:04:39 PST 2011 root@streetfighter.ixsystems.com:/usr/obj/usr/src/sys/STREETFIGHTER amd64 >Description: make package for collectd fails today with the latest version as follows because of some incorrect assumptions in the sed 'hacks' employed in the Makefile... tar: etc/collectd.conf.sample: Cannot stat: No such file or directory tar: libdata/pkgconfig/libcollectdclient.pc: Cannot stat: No such file or directory Here were the options used in building the package: # This file is auto-generated by 'make config'. # No user-servicable parts inside! # Options for collectd-4.10.4_1 _OPTIONS_READ=collectd-4.10.4_1 WITHOUT_CGI=true WITHOUT_BIND=true WITHOUT_DEBUG=true WITHOUT_APACHE=true WITHOUT_APCUPS=true WITHOUT_CURL=true WITHOUT_CURL_JSON=true WITHOUT_CURL_XML=true WITHOUT_DBI=true WITHOUT_DISK=true WITHOUT_GCRYPT=true WITHOUT_NUTUPS=true WITH_INTERFACE=true WITHOUT_MBMON=true WITHOUT_MEMCACHED=true WITHOUT_MYSQL=true WITHOUT_NGINX=true WITHOUT_OPENVPN=true WITHOUT_PDNS=true WITHOUT_PGSQL=true WITH_PING=true WITHOUT_PYTHON=true WITHOUT_SNMP=true WITHOUT_TOKYOTYRANT=true WITHOUT_XMMS=true WITH_RRDTOOL=true WITH_RRDCACHED=true >How-To-Repeat: sh cd /usr/ports/net-mgmt/collectd cat > /var/db/ports/collectd/options <Fix: Patch attached with submission follows: diff -aur net-mgmt/collectd/Makefile net-mgmt/collectd/Makefile --- net-mgmt/collectd/Makefile 2011-12-28 19:04:30.049684795 -0800 +++ net-mgmt/collectd/Makefile 2011-12-28 19:22:04.208679640 -0800 @@ -16,7 +16,7 @@ USE_GMAKE= yes GNU_CONFIGURE= yes -USE_AUTOTOOLS= libltdl +USE_AUTOTOOLS= autoconf autoheader libltdl WANT_GNOME= yes OPTIONS= CGI "Install collection.cgi (requires RRDTOOL)" Off \ @@ -385,7 +385,7 @@ -e 's;/var/lib/;/var/db/;' \ ${WRKSRC}/src/collectd.conf.in @${REINPLACE_CMD} \ - -e 's;$$[(]DESTDIR)$$[(]sysconfdir)/collectd\.conf;&.sample;' \ + -e 's;$$(INSTALL).*$$[(]DESTDIR)$$[(]sysconfdir)/collectd\.conf;&.sample;' \ ${WRKSRC}/src/Makefile.in @${REINPLACE_CMD} -e '/$$[(]mkinstalldirs)/d' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} \ @@ -397,13 +397,13 @@ ${WRKSRC}/contrib/collection.conf @${REINPLACE_CMD} \ -e 's;{libdir}/pkgconfig;{prefix}/libdata/pkgconfig;' \ - ${WRKSRC}/configure + ${WRKSRC}/configure.in post-install: ${MKDIR} /var/db/collectd - if [ ! -f ${PREFIX}/etc/collectd.conf ]; then \ - ${CP} -p ${PREFIX}/etc/collectd.conf.sample \ - ${PREFIX}/etc/collectd.conf ; \ + if [ ! -f ${PREFIX}/etc/collectd.conf.sample ]; then \ + ${CP} -p ${PREFIX}/etc/collectd.conf \ + ${PREFIX}/etc/collectd.conf.sample; \ fi .if defined(WITH_CGI) ${MKDIR} ${WWWDIR} Only in net-mgmt/collectd: config.log >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 02:20:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0FAD1065670; Fri, 30 Dec 2011 02:20: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 86CAA8FC15; Fri, 30 Dec 2011 02:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU2KKMu072386; Fri, 30 Dec 2011 02:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU2KKl8072379; Fri, 30 Dec 2011 02:20:20 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 02:20:20 GMT Message-Id: <201112300220.pBU2KKl8072379@freefall.freebsd.org> To: yanegomi@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163709: [patch] Fix make package for net-mgmt/collectd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 02:20:20 -0000 Synopsis: [patch] Fix make package for net-mgmt/collectd State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Dec 30 02:20:20 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163709 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 02:30:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E8FB106566C for ; Fri, 30 Dec 2011 02: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 1CFEB8FC0C for ; Fri, 30 Dec 2011 02:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU2UEUG080691 for ; Fri, 30 Dec 2011 02:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU2UEoi080686; Fri, 30 Dec 2011 02:30:14 GMT (envelope-from gnats) Date: Fri, 30 Dec 2011 02:30:14 GMT Message-Id: <201112300230.pBU2UEoi080686@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163709: [patch] Fix make package for net-mgmt/collectd 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, 30 Dec 2011 02:30:15 -0000 The following reply was made to PR ports/163709; it has been noted by GNATS. From: Edwin Groothuis To: ports@bsdserwis.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/163709: [patch] Fix make package for net-mgmt/collectd Date: Fri, 30 Dec 2011 02:20:18 UT Maintainer of net-mgmt/collectd, Please note that PR ports/163709 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/163709 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 03:00:33 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EDB6106564A for ; Fri, 30 Dec 2011 03:00:33 +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 0C26D8FC0C for ; Fri, 30 Dec 2011 03:00:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU30Wu3008243 for ; Fri, 30 Dec 2011 03:00:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU30Wta008230; Fri, 30 Dec 2011 03:00:32 GMT (envelope-from gnats) Date: Fri, 30 Dec 2011 03:00:32 GMT Message-Id: <201112300300.pBU30Wta008230@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Devin Teske Cc: Subject: Re: ports/163679: [NEW PORT] sysutils/sysrc: Utility to get or set rc.conf(5) values X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Devin Teske List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 03:00:33 -0000 The following reply was made to PR ports/163679; it has been noted by GNATS. From: Devin Teske To: , Cc: Stefan Esser Subject: Re: ports/163679: [NEW PORT] sysutils/sysrc: Utility to get or set rc.conf(5) values Date: Thu, 29 Dec 2011 18:50:26 -0800 ------=_NextPart_000_0398_01CCC65A.BAF16400 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Working with Stefan Esser, we've formed a new Makefile and a man-page. Attached is the new files. -- Devin _____________ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you. ------=_NextPart_000_0398_01CCC65A.BAF16400 Content-Type: application/octet-stream; name="sysrc.shar" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="sysrc.shar" # This is a shell archive. Save it in a file, remove anything before=0A= # this line, and then unpack it by entering "sh file". Note, it may=0A= # create directories; files and directories will be owned by you and=0A= # have default permissions.=0A= #=0A= # This archive contains:=0A= #=0A= # sysrc=0A= # sysrc/Makefile=0A= # sysrc/distinfo=0A= # sysrc/pkg-descr=0A= #=0A= echo c - sysrc=0A= mkdir -p sysrc > /dev/null 2>&1=0A= echo x - sysrc/Makefile=0A= sed 's/^X//' >sysrc/Makefile << 'a9f17ccaa2f1f1e163da334e1a54e608'=0A= X# New ports collection makefile for: sysrc=0A= X# Date created: 28 December 2011=0A= X# Whom: Devin Teske =0A= X#=0A= X# $FreeBSD$=0A= X#=0A= X=0A= XPORTNAME=3D sysrc=0A= XPORTVERSION=3D 3.2=0A= XCATEGORIES=3D sysutils=0A= XMASTER_SITES=3D http://druidbsd.sourceforge.net/download/=0A= X=0A= XMAINTAINER=3D dteske@vicor.com=0A= XCOMMENT=3D Utility to get or set rc.conf(5) values=0A= X=0A= XNO_BUILD=3D yes=0A= X=0A= XPLIST_FILES=3D sbin/${PORTNAME}=0A= XMAN8=3D ${PORTNAME}.8=0A= X=0A= Xdo-install:=0A= X ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin/=0A= X ${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8/${MAN8}=0A= X=0A= X.include =0A= a9f17ccaa2f1f1e163da334e1a54e608=0A= echo x - sysrc/distinfo=0A= sed 's/^X//' >sysrc/distinfo << 'aac06a6f58bdae28f4fd75cf48d7bb8c'=0A= XSHA256 (sysrc-3.2.tar.gz) =3D = 0dacc1d7122cd1247c675f8a37366d4a0429f35102ccc3559abc275fc2a237e2=0A= XSIZE (sysrc-3.2.tar.gz) =3D 11657=0A= aac06a6f58bdae28f4fd75cf48d7bb8c=0A= echo x - sysrc/pkg-descr=0A= sed 's/^X//' >sysrc/pkg-descr << '77c1c3577dad93d6a4a2d821a0245036'=0A= XSysrc is a robust utility for managing rc.conf(5) from the command-line = without=0A= Xa text-editor. Feature-highlights include (but are not limited to):=0A= X - Environment variable taint prevention=0A= X - Shell taint checking (aka boot-regression prevention)=0A= X - File-access race-condition prevention=0A= X - File-structure sensitivity/preservation=0A= X - Intelligent syntax handling=0A= X - Execution performance optimizations=0A= X - Detailed safety measures=0A= X - Support for jails (both legacy and current)=0A= X=0A= XWWW: http://druidbsd.sourceforge.net/=0A= 77c1c3577dad93d6a4a2d821a0245036=0A= exit=0A= =0A= ------=_NextPart_000_0398_01CCC65A.BAF16400-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 03:00:39 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A0451065696 for ; Fri, 30 Dec 2011 03:00:39 +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 583A98FC12 for ; Fri, 30 Dec 2011 03:00:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU30ddO008381 for ; Fri, 30 Dec 2011 03:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU30dA6008375; Fri, 30 Dec 2011 03:00:39 GMT (envelope-from gnats) Date: Fri, 30 Dec 2011 03:00:39 GMT Message-Id: <201112300300.pBU30dA6008375@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: moto kawasaki Cc: Subject: Re: ports/163084: net-mgmt/bsnmptools fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: moto kawasaki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 03:00:39 -0000 The following reply was made to PR ports/163084; it has been noted by GNATS. From: moto kawasaki To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163084: net-mgmt/bsnmptools fails to build Date: Fri, 30 Dec 2011 11:51:34 +0900 (JST) Hi, I'd report quick patch for uninitialized variable 'value' problem. The problem reported in ports/163084 was reproduced in my environment. (cd /usr/ports && make update has done in a few days ago) ================================================== # uname -srm FreeBSD 8.2-RELEASE-p5 amd64 # pwd /usr/ports/net-mgmt/bsnmptools/work/bsnmptools/lib # make Warning: Object directory not changed from original /usr/ports/net-mgmt/bsnmptools/work/bsnmptools/lib cc -O2 -fno-strict-aliasing -pipe -march=nocona -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wno-pointer-sign -c bsnmptools.c cc1: warnings being treated as errors bsnmptools.c: In function 'parse_include': bsnmptools.c:399: warning: 'value' may be used uninitialized in this function *** Error code 1 Stop in /usr/ports/net-mgmt/bsnmptools/work/bsnmptools/lib. ================================================== Now, this 'value' can be initialized in getsubopt1() in the same source file, and the above compile error disappears. ================================================== # diff -u bsnmptools.c.orig bsnmptools.c --- bsnmptools.c.orig 2011-12-30 11:38:33.000000000 +0900 +++ bsnmptools.c 2011-12-30 11:42:16.000000000 +0900 @@ -256,6 +256,7 @@ u_int i; char *ptr; + *valp = NULL; *optp = NULL; /* skip leading junk */ ================================================== Thank you! Best Regards, -- moto kawasaki From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 03:30:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96C0A106564A for ; Fri, 30 Dec 2011 03: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 6CAB48FC15 for ; Fri, 30 Dec 2011 03:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU3UGOg035666 for ; Fri, 30 Dec 2011 03:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU3UGpe035659; Fri, 30 Dec 2011 03:30:16 GMT (envelope-from gnats) Date: Fri, 30 Dec 2011 03:30:16 GMT Message-Id: <201112300330.pBU3UGpe035659@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: moto kawasaki Cc: Subject: Re: ports/163084: net-mgmt/bsnmptools fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: moto kawasaki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 03:30:16 -0000 The following reply was made to PR ports/163084; it has been noted by GNATS. From: moto kawasaki To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163084: net-mgmt/bsnmptools fails to build Date: Fri, 30 Dec 2011 12:22:24 +0900 (JST) ----Next_Part(Fri_Dec_30_12_22_24_2011_188)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit > The problem reported in ports/163084 was reproduced in my environment. At last, I need the attached four patches in order to make the port of "net-mgmt/bsnmptools". Thanks! -- moto kawasaki ----Next_Part(Fri_Dec_30_12_22_24_2011_188)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=patch-bsnmpget-Makefile *** tools/bsnmpget/Makefile.orig 2011-12-30 12:13:44.000000000 +0900 --- tools/bsnmpget/Makefile 2011-12-30 12:14:05.000000000 +0900 *************** *** 2,8 **** # Author: Shteryana Shopova PROG= bsnmpget ! LDADD= -lbsnmp -lbsnmptools MAN= bsnmpget.1 --- 2,9 ---- # Author: Shteryana Shopova PROG= bsnmpget ! CFLAGS+= -I../../lib ! LDADD= -L../../lib -lbsnmp -lbsnmptools MAN= bsnmpget.1 ----Next_Part(Fri_Dec_30_12_22_24_2011_188)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=patch-bsnmpset-Makefile *** tools/bsnmpset/Makefile.orig 2011-12-30 12:14:17.000000000 +0900 --- tools/bsnmpset/Makefile 2011-12-30 12:14:33.000000000 +0900 *************** *** 2,8 **** # Author: Shteryana Shopova PROG= bsnmpset ! LDADD= -lbsnmp -lbsnmptools MAN= bsnmpset.1 --- 2,9 ---- # Author: Shteryana Shopova PROG= bsnmpset ! CFLAGS+= -I../../lib ! LDADD= -L../../lib -lbsnmp -lbsnmptools MAN= bsnmpset.1 ----Next_Part(Fri_Dec_30_12_22_24_2011_188)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-bsnmptools.c" *** lib/bsnmptools.c.orig 2011-12-30 11:38:33.000000000 +0900 --- lib/bsnmptools.c 2011-12-30 11:52:35.000000000 +0900 *************** *** 256,261 **** --- 256,262 ---- u_int i; char *ptr; + *valp = NULL; *optp = NULL; /* skip leading junk */ ----Next_Part(Fri_Dec_30_12_22_24_2011_188)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=patch-bsnmpwalk-Makefile *** tools/bsnmpwalk/Makefile.orig 2011-12-30 12:14:47.000000000 +0900 --- tools/bsnmpwalk/Makefile 2011-12-30 12:15:03.000000000 +0900 *************** *** 2,8 **** # Author: Shteryana Shopova PROG= bsnmpwalk ! LDADD= -lbsnmp -lbsnmptools MAN= bsnmpwalk.1 --- 2,9 ---- # Author: Shteryana Shopova PROG= bsnmpwalk ! CFLAGS= -I../../lib ! LDADD= -L../../lib -lbsnmp -lbsnmptools MAN= bsnmpwalk.1 ----Next_Part(Fri_Dec_30_12_22_24_2011_188)---- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 04:20:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAB87106564A for ; Fri, 30 Dec 2011 04: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 9628F8FC14 for ; Fri, 30 Dec 2011 04:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU4K5DB081733 for ; Fri, 30 Dec 2011 04:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU4K5VV081732; Fri, 30 Dec 2011 04:20:05 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 04:20:05 GMT Resent-Message-Id: <201112300420.pBU4K5VV081732@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, Kenji Rikitake Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5706B1065670 for ; Fri, 30 Dec 2011 04:19:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 452808FC0A for ; Fri, 30 Dec 2011 04:19:57 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBU4JvqJ014381 for ; Fri, 30 Dec 2011 04:19:57 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBU4Jvh6014380; Fri, 30 Dec 2011 04:19:57 GMT (envelope-from nobody) Message-Id: <201112300419.pBU4Jvh6014380@red.freebsd.org> Date: Fri, 30 Dec 2011 04:19:57 GMT From: Kenji Rikitake To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163711: lang/erlang update request to R15B X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 04:20:05 -0000 >Number: 163711 >Category: ports >Synopsis: lang/erlang update request to R15B >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 Dec 30 04:20:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kenji Rikitake >Release: 9.0-PRERELEASE >Organization: >Environment: FreeBSD minimax.priv.k2r.org 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #0: Sat Dec 24 13:51:29 JST 2011 root@minimax.priv.k2r.org:/usr/obj/usr/src/sys/MINIMAX amd64 >Description: Erlang/OTP has been updated to R15B. Patch included to update the port. This has been tested on an amd64 machine running 9.0-PRERELEASE. More testing by the port maintainer is suggested. >How-To-Repeat: Port lang/erlang is still R14B04. >Fix: * Apply the patch at /usr/ports/lang/erlang * rm /usr/ports/lang/erlang/files/patch-erts_emulator_drivers_common_inet__drv.c (the patch is included in R15B) Patch attached with submission follows: diff --unified -r /usr/ports/lang/erlang/Makefile /home/kenji/src/OTP-FreeBSD-port-R15B/erlang/Makefile --- /usr/ports/lang/erlang/Makefile 2011-12-04 05:49:57.000000000 +0900 +++ /home/kenji/src/OTP-FreeBSD-port-R15B/erlang/Makefile 2011-12-30 13:00:12.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= erlang -PORTVERSION= r14b04 +PORTVERSION= r15b PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= lang parallel java @@ -17,7 +17,7 @@ http://www.erlang.se/publications/:publications \ http://www.sics.se/~joe/thesis/:joe \ ${MASTER_SITE_LOCAL:S/$/:local/:S,%SUBDIR%/,olgeni/,} -DISTNAME= otp_src_R14B04 +DISTNAME= otp_src_R15B DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:erlangorg \ ${ERLANG_MAN}:erlangorg \ ${ERLANG_DOCS}:erlangorg \ @@ -97,9 +97,9 @@ .endif .endif -ERLANG_MAN= otp_doc_man_R14B04.tar.gz +ERLANG_MAN= otp_doc_man_R15B.tar.gz .if !defined(NOPORTDOCS) -ERLANG_DOCS= otp_doc_html_R14B04.tar.gz +ERLANG_DOCS= otp_doc_html_R15B.tar.gz .endif ERLANG_PLIST= ${WRKDIR}/pkg-plist diff --unified -r /usr/ports/lang/erlang/Makefile.lib /home/kenji/src/OTP-FreeBSD-port-R15B/erlang/Makefile.lib --- /usr/ports/lang/erlang/Makefile.lib 2011-12-04 05:49:57.000000000 +0900 +++ /home/kenji/src/OTP-FreeBSD-port-R15B/erlang/Makefile.lib 2011-12-30 11:06:47.000000000 +0900 @@ -1,59 +1,60 @@ -# $FreeBSD: ports/lang/erlang/Makefile.lib,v 1.41 2011/12/03 20:50:21 olgeni Exp $ +# $FreeBSD: ports/lang/erlang/Makefile.lib,v 1.40 2011/10/05 16:21:40 olgeni Exp $ -TOOLS_VSN= 2.6.6.5 -OTP_LIBS= appmon-2.1.13 \ - asn1-1.6.18 \ - common_test-1.5.5 \ - compiler-4.7.5 \ - cosEvent-2.1.11 \ - cosEventDomain-1.1.11 \ - cosFileTransfer-1.1.12 \ - cosNotification-1.1.17 \ - cosProperty-1.1.14 \ - cosTime-1.1.11 \ - cosTransactions-1.2.11 \ - crypto-2.0.4 \ - debugger-3.2.6 \ - dialyzer-2.4.4 \ - diameter-0.10 \ +ERTS_VSN= 5.9 +TOOLS_VSN= 2.6.6.6 +OTP_LIBS= appmon-2.1.14 \ + asn1-1.6.19 \ + common_test-1.6 \ + compiler-4.8 \ + cosEvent-2.1.12 \ + cosEventDomain-1.1.12 \ + cosFileTransfer-1.1.13 \ + cosNotification-1.1.18 \ + cosProperty-1.1.15 \ + cosTime-1.1.12 \ + cosTransactions-1.2.12 \ + crypto-2.1 \ + debugger-3.2.7 \ + dialyzer-2.5 \ + diameter-1.0 \ docbuilder-0.9.8.11 \ - edoc-0.7.9 \ - erl_docgen-0.2.6 \ - erl_interface-3.7.5 \ - erts-5.8.5 \ + edoc-0.7.9.1 \ + erl_docgen-0.3 \ + erl_interface-3.7.6 \ + erts-5.9 \ et-1.4.4 \ - eunit-2.2.1 \ - gs-1.5.14 \ - hipe-3.8.1 \ - ic-4.2.27 \ - inets-5.7.1 \ - inviso-0.6.2 \ - jinterface-1.5.4 \ - kernel-2.14.5 \ - megaco-3.15.1.1 \ - mnesia-4.5 \ - observer-0.9.10 \ - odbc-2.10.11 \ - orber-3.6.22 \ - os_mon-2.2.7 \ - otp_mibs-1.0.6 \ - parsetools-2.0.6 \ - percept-0.8.6 \ - pman-2.7.1 \ - public_key-0.13 \ - reltool-0.5.7 \ - runtime_tools-1.8.6 \ - sasl-2.1.10 \ - snmp-4.21.1 \ - ssh-2.0.8 \ - ssl-4.1.6 \ - stdlib-1.17.5 \ - syntax_tools-1.6.7.1 \ - test_server-3.4.5 \ - toolbar-1.4.2 \ - tools-2.6.6.5 \ - tv-2.1.4.7 \ - typer-0.9.2 \ - webtool-0.8.9 \ - wx-0.99 \ - xmerl-1.2.10 + eunit-2.2.2 \ + gs-1.5.15 \ + hipe-3.9 \ + ic-4.2.29 \ + inets-5.8 \ + inviso-0.6.3 \ + jinterface-1.5.5 \ + kernel-2.15 \ + megaco-3.16 \ + mnesia-4.6 \ + observer-1.0 \ + odbc-2.10.12 \ + orber-3.6.23 \ + os_mon-2.2.8 \ + otp_mibs-1.0.7 \ + parsetools-2.0.7 \ + percept-0.8.6.1 \ + pman-2.7.1.1 \ + public_key-0.14 \ + reltool-0.5.7.1 \ + runtime_tools-1.8.7 \ + sasl-2.2 \ + snmp-4.21.4 \ + ssh-2.0.9 \ + ssl-5.0 \ + stdlib-1.18 \ + syntax_tools-1.6.7.2 \ + test_server-3.5 \ + toolbar-1.4.2.1 \ + tools-2.6.6.6 \ + tv-2.1.4.8 \ + typer-0.9.3 \ + webtool-0.8.9.1 \ + wx-0.99.1 \ + xmerl-1.3 diff --unified -r /usr/ports/lang/erlang/Makefile.man /home/kenji/src/OTP-FreeBSD-port-R15B/erlang/Makefile.man --- /usr/ports/lang/erlang/Makefile.man 2011-10-06 01:21:16.000000000 +0900 +++ /home/kenji/src/OTP-FreeBSD-port-R15B/erlang/Makefile.man 2011-12-30 11:42:39.000000000 +0900 @@ -14,7 +14,7 @@ start_erl.1 \ start_webtool.1 \ werl.1 - + MAN3= CosEventChannelAdmin.3 \ CosEventChannelAdmin_ConsumerAdmin.3 \ CosEventChannelAdmin_EventChannel.3 \ @@ -134,9 +134,6 @@ digraph_utils.3 \ disk_log.3 \ disksup.3 \ - docb_gen.3 \ - docb_transform.3 \ - docb_xml_check.3 \ driver_entry.3 \ edoc.3 \ edoc_doclet.3 \ @@ -274,8 +271,8 @@ net_adm.3 \ net_kernel.3 \ nteventlog.3 \ + observer.3 \ odbc.3 \ - old_ssl.3 \ orber.3 \ orber_acl.3 \ orber_diagnostics.3 \ @@ -304,7 +301,6 @@ random.3 \ rb.3 \ re.3 \ - regexp.3 \ registry.3 \ release_handler.3 \ reltool.3 \ @@ -567,6 +563,7 @@ wxStyledTextCtrl.3 \ wxStyledTextEvent.3 \ wxSysColourChangedEvent.3 \ + wxSystemOptions.3 \ wxSystemSettings.3 \ wxTextAttr.3 \ wxTextCtrl.3 \ @@ -600,18 +597,18 @@ zip.3 \ zlib.3 \ zlib_stub.3 - -MAN4= app.4 \ + +MAN4= app.4 \ appup.4 \ config.4 \ diameter_dict.4 \ rel.4 \ relup.4 \ script.4 - + MAN6= common_test.6 \ crypto.6 \ - docbuilder.6 \ + erl_docgen.6 \ kernel.6 \ observer.6 \ os_mon.6 \ diff --unified -r /usr/ports/lang/erlang/distinfo /home/kenji/src/OTP-FreeBSD-port-R15B/erlang/distinfo --- /usr/ports/lang/erlang/distinfo 2011-10-07 23:48:50.000000000 +0900 +++ /home/kenji/src/OTP-FreeBSD-port-R15B/erlang/distinfo 2011-12-30 10:27:10.000000000 +0900 @@ -1,9 +1,9 @@ -SHA256 (erlang/otp_src_R14B04.tar.gz) = 099b35910e635b9148ac90f70fd9dd592920ed02406eb26c349efd8d1e959b6e -SIZE (erlang/otp_src_R14B04.tar.gz) = 70773703 -SHA256 (erlang/otp_doc_man_R14B04.tar.gz) = 8514511e8a8ac3f3f67db06f333548edf283d9a8afcbc9e9eeca7b1af9a107da -SIZE (erlang/otp_doc_man_R14B04.tar.gz) = 1117663 -SHA256 (erlang/otp_doc_html_R14B04.tar.gz) = 3b066d23d82667e2d0477856b22ea94262d65baf7366babe1c10d8bddc28ab5a -SIZE (erlang/otp_doc_html_R14B04.tar.gz) = 28816088 +SHA256 (erlang/otp_src_R15B.tar.gz) = 5bc34fc34fc890f84bae7ff1f7c81fbec2c9aa28a0ef51a57d7a8192204d8aa2 +SIZE (erlang/otp_src_R15B.tar.gz) = 74100507 +SHA256 (erlang/otp_doc_man_R15B.tar.gz) = 1839cc4cab3120401989e0e1d7ad6872a59e2fd9d3cd82f05ca8c4ebef18eb6b +SIZE (erlang/otp_doc_man_R15B.tar.gz) = 1122044 +SHA256 (erlang/otp_doc_html_R15B.tar.gz) = 40504ad983b450a2c6f7611b3be88ebd6349079764520cca050e9c8f6e79dc93 +SIZE (erlang/otp_doc_html_R15B.tar.gz) = 28996680 SHA256 (erlang/armstrong_thesis_2003.pdf) = da585b914eb07350e2d6f727db5eb0fb1551f49fc1270f7d4dc079f2c8c1ab7a SIZE (erlang/armstrong_thesis_2003.pdf) = 859249 SHA256 (erlang/bjarnelic.pdf) = 9544d4af5cea324e5c9cf77e670d9561ad61ddc240cdb5c2afecebc0a3d7429b Only in /usr/ports/lang/erlang/files: patch-erts_emulator_drivers_common_inet__drv.c Only in /home/kenji/src/OTP-FreeBSD-port-R15B/erlang: work >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 04:20:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6AFB9106564A; Fri, 30 Dec 2011 04: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 419078FC16; Fri, 30 Dec 2011 04:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU4KFEO081878; Fri, 30 Dec 2011 04:20:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU4KFLZ081874; Fri, 30 Dec 2011 04:20:15 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 04:20:15 GMT Message-Id: <201112300420.pBU4KFLZ081874@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163711: lang/erlang update request to R15B X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 04:20:15 -0000 Synopsis: lang/erlang update request to R15B Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 30 04:20:14 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163711 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 08:00:30 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6822E1065670 for ; Fri, 30 Dec 2011 08: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 3760D8FC12 for ; Fri, 30 Dec 2011 08:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBU80Uho011738 for ; Fri, 30 Dec 2011 08:00:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBU80TMY011735; Fri, 30 Dec 2011 08:00:29 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 08:00:29 GMT Resent-Message-Id: <201112300800.pBU80TMY011735@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, Anthony Chavez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55B55106566C for ; Fri, 30 Dec 2011 07:56:21 +0000 (UTC) (envelope-from acc@hexadecagram.org) Received: from mail.itproficiency.com (hexadecagram.org [166.70.126.65]) by mx1.freebsd.org (Postfix) with ESMTP id 12FDF8FC12 for ; Fri, 30 Dec 2011 07:56:20 +0000 (UTC) Received: from mail (mail.hexadecagram.org [192.168.133.11]) by mail.itproficiency.com (Postfix) with ESMTP id 27FB8B02FC9 for ; Fri, 30 Dec 2011 00:56:20 -0700 (MST) Received: from mail.itproficiency.com ([192.168.133.11]) by mail (mail.itproficiency.com [192.168.133.11]) (amavisd-new, port 10024) with LMTP id SZ7Dzq5CffUj for ; Fri, 30 Dec 2011 00:55:58 -0700 (MST) Received: from metis.hexadecagram.org (mail.hexadecagram.org [192.168.133.11]) by mail.itproficiency.com (Postfix) with ESMTPS id 5C623B02FC8 for ; Fri, 30 Dec 2011 00:55:56 -0700 (MST) Received: (from acc@localhost) by metis.hexadecagram.org (8.14.5/8.14.5/Submit) id pBU7ttr0008559; Fri, 30 Dec 2011 00:55:55 -0700 (MST) (envelope-from acc) Message-Id: <201112300755.pBU7ttr0008559@metis.hexadecagram.org> Date: Fri, 30 Dec 2011 00:55:55 -0700 (MST) From: Anthony Chavez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163712: [PATCH] devel/ace attempts to cast const pointer to non-const X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anthony Chavez List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 08:00:30 -0000 >Number: 163712 >Category: ports >Synopsis: [PATCH] devel/ace attempts to cast const pointer to non-const >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: Fri Dec 30 08:00:28 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Anthony Chavez >Release: FreeBSD 8.2-STABLE i386 >Organization: >Environment: System: FreeBSD metis.hexadecagram.org 8.2-STABLE FreeBSD 8.2-STABLE #0: Thu Nov 10 16:13:27 MST 2011 root@metis.hexadecagram.org:/usr/obj/usr/src/sys/METIS i386 >Description: When attempting to build this port, the following error is produced. The attached patch addresses this and results in a successful build. libtool: compile: env CCACHE_PREFIX=/usr/local/bin/distcc /usr/local/bin/ccache c++ -DHAVE_CONFIG_H -I. -I../../../ace/SSL -I../../ace -I../../.. -I../.. -DACE_SSL_BUILD_DLL -D_REENTRANT -D_THREAD_SAFE -W -Wall -Wpointer-arith -I/usr/local/include -O2 -pipe -fno-strict-aliasing -pthread -pipe -MT libACE_SSL_la-SSL_SOCK.lo -MD -MP -MF .deps/libACE_SSL_la-SSL_SOCK.Tpo -c ../../../ace/SSL/SSL_SOCK.cpp -o libACE_SSL_la-SSL_SOCK.o >/dev/null 2>&1 ../../../ace/SSL/SSL_Context.cpp: In member function 'int ACE_SSL_Context::set_mode(int)': ../../../ace/SSL/SSL_Context.cpp:239: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:242: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:245: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:248: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:251: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:254: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:257: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:260: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:263: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:266: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:269: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:272: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' ../../../ace/SSL/SSL_Context.cpp:275: error: invalid conversion from 'const SSL_METHOD*' to 'SSL_METHOD*' gmake[3]: *** [libACE_SSL_la-SSL_Context.lo] Error 1 gmake[3]: *** Waiting for unfinished jobs.... libtool: compile: env CCACHE_PREFIX=/usr/local/bin/distcc /usr/local/bin/ccache c++ -DHAVE_CONFIG_H -I. -I../../../ace/SSL -I../../ace -I../../.. -I../.. -DACE_SSL_BUILD_DLL -D_REENTRANT -D_THREAD_SAFE -W -Wall -Wpointer-arith -I/usr/local/include -O2 -pipe -fno-strict-aliasing -pthread -pipe -MT libACE_SSL_la-SSL_SOCK_Acceptor.lo -MD -MP -MF .deps/libACE_SSL_la-SSL_SOCK_Acceptor.Tpo -c ../../../ace/SSL/SSL_SOCK_Acceptor.cpp -o libACE_SSL_la-SSL_SOCK_Acceptor.o >/dev/null 2>&1 gmake[3]: Leaving directory `/usr/ports/devel/ace/work/ACE_wrappers/objdir/ace/SSL' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/devel/ace/work/ACE_wrappers/objdir/ace' gmake[1]: *** [all] Error 2 gmake[1]: Leaving directory `/usr/ports/devel/ace/work/ACE_wrappers/objdir/ace' gmake: *** [all-recursive] Error 1 *** Error code 1 Stop in /usr/ports/devel/ace. >How-To-Repeat: % c++ --version c++ (GCC) 4.2.2 20070831 prerelease [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % sudo portmaster devel/ace >Fix: --- patch-ace+SSL+SSL_Context.cpp begins here --- --- ace/SSL/SSL_Context.cpp.orig 2006-06-22 09:10:08.000000000 -0600 +++ ace/SSL/SSL_Context.cpp 2011-12-30 00:45:46.000000000 -0700 @@ -231,7 +231,7 @@ if (this->context_ != 0) return -1; - SSL_METHOD *method = 0; + const SSL_METHOD *method = 0; switch (mode) { --- patch-ace+SSL+SSL_Context.cpp ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 12:00:30 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27E191065670 for ; Fri, 30 Dec 2011 12: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 E1CAD8FC0A for ; Fri, 30 Dec 2011 12:00:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUC0TuA041953 for ; Fri, 30 Dec 2011 12:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUC0TVw041952; Fri, 30 Dec 2011 12:00:29 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 12:00:29 GMT Resent-Message-Id: <201112301200.pBUC0TVw041952@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 Khotyaintsev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C2AB1065673 for ; Fri, 30 Dec 2011 11:53:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 458378FC0C for ; Fri, 30 Dec 2011 11:53:40 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBUBrcfH008252 for ; Fri, 30 Dec 2011 11:53:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBUBrb2S008244; Fri, 30 Dec 2011 11:53:37 GMT (envelope-from nobody) Message-Id: <201112301153.pBUBrb2S008244@red.freebsd.org> Date: Fri, 30 Dec 2011 11:53:37 GMT From: Yuri Khotyaintsev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163714: nss_ldap 1.265_7 does not return the full list of groups X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 12:00:30 -0000 >Number: 163714 >Category: ports >Synopsis: nss_ldap 1.265_7 does not return the full list of groups >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 30 12:00:29 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Yuri Khotyaintsev >Release: 8.2-STABLE >Organization: Swedish Institute of Space Physics >Environment: FreeBSD xxx.irfu.se 8.2-STABLE FreeBSD 8.2-STABLE #2: Thu Apr 28 11:39:50 CEST 2011 root@xxx.irfu.se:/usr/obj/usr/src/sys/DB amd64 >Description: Unfortunately upgrading nss_ldap from 1.265_6 to 1.265_7 breaks my nss_ldap setup which was working without changes for many years. The problem is that only the primary group being returned with 1.265_7. Example: nss_ldap 1.265_6: [root@hem /usr/local/etc]# groups ko phisp cluster (works correctly) nss_ldap 1.265_7: [root@hem /usr/local/etc]# groups ko phisp (only the primary group is returned!!!) Debug output is included below. nss_ldap 1.265_7: [root@hem /usr/local/etc]# groups ko nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getbyname nss_ldap: ==> _nss_ldap_search_s nss_ldap: ==> do_init nss_ldap: ==> do_close nss_ldap: <== do_close nss_ldap: ==> do_close_no_unbind nss_ldap: <== do_close_no_unbind (connection was not open) nss_ldap: ==> _nss_ldap_add_uri nss_ldap: <== _nss_ldap_add_uri: added URI ldapi:///var/run/openldap/ldapi nss_ldap: ==> _nss_ldap_add_uri nss_ldap: <== _nss_ldap_add_uri: added URI ldaps://amanda.irfu.se nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixAccount)(uid=ko)) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search_s nss_ldap: <== do_search_s nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search_s nss_ldap: ==> do_parse_s nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: <== do_parse_s nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: <== _nss_ldap_getbyname nss_ldap: ==> _nss_ldap_initgroups_dyn (user=ko) nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> do_init nss_ldap: :== do_init (stolen socket detected) nss_ldap: <== do_init (initialized session) nss_ldap: ==> _nss_ldap_search_s nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixAccount)(uid=ko)) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search_s nss_ldap: <== do_search_s nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search_s nss_ldap: ==> _nss_ldap_ent_context_init_locked nss_ldap: <== _nss_ldap_ent_context_init_locked nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_ent_context_init_locked nss_ldap: <== _nss_ldap_ent_context_init_locked nss_ldap: ==> _nss_ldap_search nss_ldap: ==> do_init nss_ldap: :== do_init (stolen socket detected) nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixGroup)(|(memberUid=ko)(uniqueMember=uid=ko,ou=People,dc=irfu,dc=se))) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search nss_ldap: <== do_search nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_ent_context_init_locked nss_ldap: <== _nss_ldap_ent_context_init_locked nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_ent_context_init_locked nss_ldap: <== _nss_ldap_ent_context_init_locked nss_ldap: ==> _nss_ldap_search nss_ldap: ==> do_init nss_ldap: :== do_init (stolen socket detected) nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixGroup)(uniqueMember=cn=cluster,ou=Group,dc=irfu,dc=se)) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search nss_ldap: <== do_search nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: <== do_parse nss_ldap: ==> _nss_ldap_search nss_ldap: ==> do_init nss_ldap: :== do_init (stolen socket detected) nss_ldap: <== do_init (initialized session) nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_ent_context_release nss_ldap: <== _nss_ldap_ent_context_release nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: ==> _nss_ldap_ent_context_release nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: <== _nss_ldap_ent_context_release nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: <== _nss_ldap_initgroups_dyn (not found) nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getbyname nss_ldap: ==> _nss_ldap_search_s nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixGroup)(gidNumber=206)) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search_s nss_ldap: <== do_search_s nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search_s nss_ldap: ==> do_parse_s nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=phisp,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse_s nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: <== _nss_ldap_getbyname phisp nss_ldap 1.265_6: [root@hem /usr/local/etc]# groups ko nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getbyname nss_ldap: ==> _nss_ldap_search_s nss_ldap: ==> do_init nss_ldap: ==> do_close nss_ldap: <== do_close nss_ldap: ==> do_close_no_unbind nss_ldap: <== do_close_no_unbind (connection was not open) nss_ldap: ==> _nss_ldap_add_uri nss_ldap: <== _nss_ldap_add_uri: added URI ldapi:///var/run/openldap/ldapi nss_ldap: ==> _nss_ldap_add_uri nss_ldap: <== _nss_ldap_add_uri: added URI ldaps://amanda.irfu.se nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixAccount)(uid=ko)) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search_s nss_ldap: <== do_search_s nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search_s nss_ldap: ==> do_parse_s nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: <== do_parse_s nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: <== _nss_ldap_getbyname nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_ent_context_init_locked nss_ldap: <== _nss_ldap_ent_context_init_locked nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_ent_context_init_locked nss_ldap: <== _nss_ldap_ent_context_init_locked nss_ldap: ==> _nss_ldap_search nss_ldap: ==> do_init nss_ldap: :== do_init (stolen socket detected) nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixGroup)) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search nss_ldap: <== do_search nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=cassini,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=sat,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=phisp,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=admin,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=irfu,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=oldies,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=extern,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=cluster,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=rosetta,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=astrid2,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getent_ex nss_ldap: ==> do_parse nss_ldap: ==> do_result nss_ldap: <== do_result nss_ldap: <== do_parse nss_ldap: ==> _nss_ldap_search nss_ldap: ==> do_init nss_ldap: :== do_init (stolen socket detected) nss_ldap: <== do_init (initialized session) nss_ldap: <== _nss_ldap_getent_ex nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_ent_context_release nss_ldap: <== _nss_ldap_ent_context_release nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getbyname nss_ldap: ==> _nss_ldap_search_s nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixGroup)(gidNumber=206)) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search_s nss_ldap: <== do_search_s nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search_s nss_ldap: ==> do_parse_s nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=phisp,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse_s nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: <== _nss_ldap_getbyname nss_ldap: ==> _nss_ldap_enter nss_ldap: <== _nss_ldap_enter nss_ldap: ==> _nss_ldap_getbyname nss_ldap: ==> _nss_ldap_search_s nss_ldap: ==> do_init nss_ldap: :== do_init (stolen socket detected) nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_filter nss_ldap: :== do_filter: (&(objectClass=posixGroup)(gidNumber=158)) nss_ldap: <== do_filter nss_ldap: ==> do_with_reconnect nss_ldap: ==> do_open nss_ldap: ==> do_init nss_ldap: <== do_init (initialized session) nss_ldap: ==> do_bind nss_ldap: <== do_bind nss_ldap: ==> do_set_sockopts nss_ldap: <== do_set_sockopts nss_ldap: <== do_open (session connected to DSA) nss_ldap: ==> do_search_s nss_ldap: <== do_search_s nss_ldap: <== do_with_reconnect nss_ldap: <== _nss_ldap_search_s nss_ldap: ==> do_parse_s nss_ldap: ==> _nss_ldap_assign_userpassword nss_ldap: <== _nss_ldap_assign_userpassword nss_ldap: ==> _nss_ldap_namelist_find nss_ldap: <== _nss_ldap_namelist_find nss_ldap: ==> _nss_ldap_namelist_push (cn=cluster,ou=Group,dc=irfu,dc=se) nss_ldap: <== _nss_ldap_namelist_push nss_ldap: ==> _nss_ldap_namelist_destroy nss_ldap: <== _nss_ldap_namelist_destroy nss_ldap: <== do_parse_s nss_ldap: ==> _nss_ldap_leave nss_ldap: <== _nss_ldap_leave nss_ldap: <== _nss_ldap_getbyname phisp cluster >How-To-Repeat: Use nss_ldap 1.265_7 and run groups on a user which is a member of more than one group (LDAP). >Fix: Revert the change introduced in 1.265_7. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 12:30:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1A85106564A for ; Fri, 30 Dec 2011 12:30: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 A20028FC16 for ; Fri, 30 Dec 2011 12:30:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUCUIic069094 for ; Fri, 30 Dec 2011 12:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUCUIX0069090; Fri, 30 Dec 2011 12:30:18 GMT (envelope-from gnats) Date: Fri, 30 Dec 2011 12:30:18 GMT Message-Id: <201112301230.pBUCUIX0069090@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Yuri Khotyaintsev Cc: Subject: Re: ports/163714: nss_ldap 1.265_7 does not return the full list of groups X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Yuri Khotyaintsev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 12:30:18 -0000 The following reply was made to PR ports/163714; it has been noted by GNATS. From: Yuri Khotyaintsev To: bug-followup@FreeBSD.org, Yuri Khotyaintsev Cc: Subject: Re: ports/163714: nss_ldap 1.265_7 does not return the full list of groups Date: Fri, 30 Dec 2011 13:23:08 +0100 Here the contents of my /etc/nsswitch.conf: # # nsswitch.conf(5) - name service switch configuration file # $FreeBSD: src/etc/nsswitch.conf,v 1.1.10.1 2009/08/03 08:13:06 kensmith Exp $ # group: files ldap hosts: files dns networks: files passwd: files ldap shells: files services: compat services_compat: nis protocols: files rpc: files From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 14:00:42 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C5A31065670 for ; Fri, 30 Dec 2011 14:00:42 +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 CE3C18FC16 for ; Fri, 30 Dec 2011 14:00:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUE0fjL056339 for ; Fri, 30 Dec 2011 14:00:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUE0fMV056336; Fri, 30 Dec 2011 14:00:41 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 14:00:41 GMT Resent-Message-Id: <201112301400.pBUE0fMV056336@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, Alexey Markov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C06A4106566B for ; Fri, 30 Dec 2011 13:58:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AAF148FC12 for ; Fri, 30 Dec 2011 13:58:00 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBUDvxH8063690 for ; Fri, 30 Dec 2011 13:57:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBUDvxmv063689; Fri, 30 Dec 2011 13:57:59 GMT (envelope-from nobody) Message-Id: <201112301357.pBUDvxmv063689@red.freebsd.org> Date: Fri, 30 Dec 2011 13:57:59 GMT From: Alexey Markov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163715: Empty install variables in mail/p5-Mail-SpamAssassin/pkg-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: Fri, 30 Dec 2011 14:00:42 -0000 >Number: 163715 >Category: ports >Synopsis: Empty install variables in mail/p5-Mail-SpamAssassin/pkg-install >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: Fri Dec 30 14:00:40 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexey Markov >Release: FreeBSD 8.2-RELEASE-p5 >Organization: JSC Complitex >Environment: FreeBSD meson.complitex.ru 8.2-RELEASE-p5 FreeBSD 8.2-RELEASE-p5 #0: Mon Dec 26 13:43:29 MSK 2011 redrat@meson.complitex.ru:/arc/obj/arc/src/sys/MESON amd64 >Description: In revision 1.12 of mail/p5-Mail-SpamAssassin/pkg-install direct call of 'install' utility was changed to call of ${INSTALL} variable: ${INSTALL} -d -o ${USER} -g ${GROUP} /var/run/spamd ${PREFIX}/bin/spamassassin -x -L --lint Now on 'make install' I get following error: ===> Creating users and/or groups. Using existing group 'spamd'. Using existing user 'spamd'. -d: not found ./+INSTALL: /bin/spamassassin: not found It seems that ${INSTALL} and ${PREFIX} variables are empty in the moment of pkg-install script execution. As a result of it the /var/run/spamd directory is not created in process of port installation, and spamd daemon cannot start because of missed directory. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 14:00:57 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7147A1065670; Fri, 30 Dec 2011 14:00:57 +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 4465A8FC16; Fri, 30 Dec 2011 14:00:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUE0vtM057566; Fri, 30 Dec 2011 14:00:57 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUE0vsf057557; Fri, 30 Dec 2011 14:00:57 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 14:00:57 GMT Message-Id: <201112301400.pBUE0vsf057557@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163715: Empty install variables in mail/p5-Mail-SpamAssassin/pkg-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: Fri, 30 Dec 2011 14:00:57 -0000 Synopsis: Empty install variables in mail/p5-Mail-SpamAssassin/pkg-install Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 30 14:00:56 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163715 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 14:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB9F7106566C for ; Fri, 30 Dec 2011 14: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 7C1938FC13 for ; Fri, 30 Dec 2011 14:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUEAAoe065152 for ; Fri, 30 Dec 2011 14:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUEAAQd065151; Fri, 30 Dec 2011 14:10:10 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 14:10:10 GMT Resent-Message-Id: <201112301410.pBUEAAQd065151@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, FAndrey Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE94D1065675 for ; Fri, 30 Dec 2011 14:09:17 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 343458FC1D for ; Fri, 30 Dec 2011 14:09:17 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBUE9GFI081252 for ; Fri, 30 Dec 2011 14:09:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBUE9GnP081251; Fri, 30 Dec 2011 14:09:16 GMT (envelope-from nobody) Message-Id: <201112301409.pBUE9GnP081251@red.freebsd.org> Date: Fri, 30 Dec 2011 14:09:16 GMT From: FAndrey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163716: [UPDATE] x11-toolkits/p5-Prima - need update to 1.31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 14:10:10 -0000 >Number: 163716 >Category: ports >Synopsis: [UPDATE] x11-toolkits/p5-Prima - need update to 1.31 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 30 14:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: FAndrey >Release: 9.0-PRERELEASE r228252 >Organization: >Environment: FreeBSD beastie.mydomain.local 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #0 r228252: Sun Dec 4 23:52:14 MSK 2011 andrey@beastie.mydomain.local:/usr/obj/usr/src/sys/W_BOOK amd64 >Description: after apdete perl 5.12 -> 5.14 not build p5-Prima-1.27_4 sorry I'm not check pkg_plist and MAN section on the Makefile >How-To-Repeat: update perl 5.12 to perl 5.14 cd /usr/ports/x11-toolkits/p5-Prima/ make >Fix: > diff -u /usr/ports/x11-toolkits/p5-Prima/Makefile Makefile --- /usr/ports/x11-toolkits/p5-Prima/Makefile 2010-08-27 00:11:29.000000000 +0400 +++ Makefile 2011-12-30 17:50:50.607511759 +0400 @@ -2,12 +2,11 @@ # Date created: 25 Sept 2001 # Whom: dmitry@karasik.eu.org # -# $FreeBSD: ports/x11-toolkits/p5-Prima/Makefile,v 1.22 2010/08/26 20:11:29 dinoex Exp $ +# $FreeBSD: ports/x11-toolkits/p5-Prima/Makefile,v 1.23 2011/12/30 20:11:29 dinoex Exp $ # PORTNAME= Prima -PORTVERSION= 1.27 -PORTREVISION= 4 +PORTVERSION= 1.31 CATEGORIES= x11-toolkits perl5 graphics MASTER_SITES= CPAN PKGNAMEPREFIX= p5- > diff -u /usr/ports/x11-toolkits/p5-Prima/distinfo distinfo --- /usr/ports/x11-toolkits/p5-Prima/distinfo 2011-07-02 22:18:39.000000000 +0400 +++ distinfo 2011-12-30 17:50:50.607511759 +0400 @@ -1,2 +1,2 @@ -SHA256 (Prima-1.27.tar.gz) = b8d339903be7e63e49e9037437d8b5c7d6b736955b0b5505a639294ccc8fdee7 -SIZE (Prima-1.27.tar.gz) = 1432633 +SHA256 (Prima-1.31.tar.gz) = 8bb367da76a2f48392c313a6d5bc821e081891f3aba56869255d3d82b60b7c54 +SIZE (Prima-1.31.tar.gz) = 1424729 > diff -u /usr/ports/x11-toolkits/p5-Prima/files/patch-apricot.h files/patch-apricot.h --- /usr/ports/x11-toolkits/p5-Prima/files/patch-apricot.h 2009-01-24 12:56:15.000000000 +0300 +++ files/patch-apricot.h 2011-12-30 17:50:50.606521784 +0400 @@ -10,7 +10,7 @@ * SUCH DAMAGE. */ --/* $Id: apricot.h,v 1.192 2008/04/28 20:54:03 dk Exp $ */ +-/* $Id$ */ +/* $Id: apricot.h,v 1.193 2008/11/06 10:54:37 dk Exp $ */ #ifndef _APRICOT_H_ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 14:10:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1438D106566B; Fri, 30 Dec 2011 14:10: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 DB06C8FC17; Fri, 30 Dec 2011 14:10:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUEAP04066157; Fri, 30 Dec 2011 14:10:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUEAPCU066148; Fri, 30 Dec 2011 14:10:25 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 14:10:25 GMT Message-Id: <201112301410.pBUEAPCU066148@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163716: [UPDATE] x11-toolkits/p5-Prima - need update to 1.31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 14:10:26 -0000 Synopsis: [UPDATE] x11-toolkits/p5-Prima - need update to 1.31 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 30 14:10:25 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163716 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 14:40:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1A5F106566B for ; Fri, 30 Dec 2011 14: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 6F0098FC13 for ; Fri, 30 Dec 2011 14:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUEeCaK093963 for ; Fri, 30 Dec 2011 14:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUEeChU093962; Fri, 30 Dec 2011 14:40:12 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 14:40:12 GMT Resent-Message-Id: <201112301440.pBUEeChU093962@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, Jaap Boender Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50737106564A for ; Fri, 30 Dec 2011 14:31:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3AEAB8FC13 for ; Fri, 30 Dec 2011 14:31:14 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBUEVDM5016655 for ; Fri, 30 Dec 2011 14:31:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBUEVDEp016654; Fri, 30 Dec 2011 14:31:13 GMT (envelope-from nobody) Message-Id: <201112301431.pBUEVDEp016654@red.freebsd.org> Date: Fri, 30 Dec 2011 14:31:13 GMT From: Jaap Boender To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163717: [maintainer update] patch to make devel/ocaml-react work with ocamlfind X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 14:40:12 -0000 >Number: 163717 >Category: ports >Synopsis: [maintainer update] patch to make devel/ocaml-react work with ocamlfind >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 30 14:40:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jaap Boender >Release: 9.0-PRERELEASE >Organization: >Environment: FreeBSD joffre.kerguelen.org 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #7: Thu Dec 29 13:44:20 CET 2011 root@joffre.kerguelen.org:/usr/obj/usr/src/sys/JOFFRE amd64 >Description: I've forgotten to send in a file with my original submission of this port (sorry!) - this means that ports that depend on ocaml-react will not be able to find it. (this affects at least devel/ocaml-lwt). >How-To-Repeat: Try to compile devel/ocaml-lwt (the version submitted in ports/163276); this should not work. >Fix: Save the attached file as files/patch-src_META of the port directory and the problem should be solved. Patch attached with submission follows: --- src/META.orig 2011-12-14 09:50:28.517512351 +0100 +++ src/META 2011-12-14 09:50:32.213463093 +0100 @@ -3,4 +3,3 @@ archive(byte) = "react.cmo" archive(native) = "react.cmx" archive(plugin,native) = "react.cmxs" -directory = "+react" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 17:20:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 673331065688 for ; Fri, 30 Dec 2011 17: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 3CC678FC1A for ; Fri, 30 Dec 2011 17:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUHKCnq039355 for ; Fri, 30 Dec 2011 17:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUHKCe0039354; Fri, 30 Dec 2011 17:20:12 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 17:20:12 GMT Resent-Message-Id: <201112301720.pBUHKCe0039354@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 508661065670; Fri, 30 Dec 2011 17:10:49 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 557F38FC13; Fri, 30 Dec 2011 17:10:48 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id pBUHAhPX012146 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 30 Dec 2011 12:10:43 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id pBUHAgdu076514; Fri, 30 Dec 2011 12:10:42 -0500 (EST) (envelope-from steve) Message-Id: <201112301710.pBUHAgdu076514@meatwad.mouf.net> Date: Fri, 30 Dec 2011 12:10:42 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dinoex@FreeBSD.org Subject: ports/163718: [PATCH] graphics/jasper: security updates for CVE-2011-4516, CVE-2011-4517, CVE-2008-3520, CVE-2008-3522 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 17:20:12 -0000 >Number: 163718 >Category: ports >Synopsis: [PATCH] graphics/jasper: security updates for CVE-2011-4516, CVE-2011-4517, CVE-2008-3520, CVE-2008-3522 >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 Dec 30 17:20:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #8: Mon Dec 19 15:53:28 EST 2011 >Description: I happened to notice CVE-2011-4516 and CVE-2011-4517. This doesn't seem to be patched upstream. While looking for patches, I noticed also that CVE-2008-3520 and CVE-2008-3522 weren't patched upstream or in ports either. These patches are from the Fedora package 1.900.1-18.fc16: http://koji.fedoraproject.org/koji/buildinfo?buildID=278357 These patches patched some files that we had already patched in ports. I tried to keep the existing patch names where I could and tried to make sure I didn't lose any of our existing patch, but please double check that I didn't make any mistakes. Also, there are some additional patches in the Fedora package that cover issues dicovered by Coverity scans, but I didn't include those in this PR for clarity. We may want to consider including them later. Added file(s): - files/patch-src__libjasper__base__jas_cm.c - files/patch-src__libjasper__base__jas_icc.c - files/patch-src__libjasper__base__jas_image.c - files/patch-src__libjasper__base__jas_malloc.c - files/patch-src__libjasper__base__jas_seq.c - files/patch-src__libjasper__base__jas_stream.c - files/patch-src__libjasper__bmp__bmp_dec.c - files/patch-src__libjasper__include__jasper__jas_malloc.h - files/patch-src__libjasper__jp2__jp2_cod.c - files/patch-src__libjasper__jp2__jp2_dec.c - files/patch-src__libjasper__jp2__jp2_enc.c - files/patch-src__libjasper__jpc__jpc_cs.c - files/patch-src__libjasper__jpc__jpc_dec.c - files/patch-src__libjasper__jpc__jpc_enc.c - files/patch-src__libjasper__jpc__jpc_mqdec.c - files/patch-src__libjasper__jpc__jpc_mqenc.c - files/patch-src__libjasper__jpc__jpc_qmfb.c - files/patch-src__libjasper__jpc__jpc_t1enc.c - files/patch-src__libjasper__jpc__jpc_t2cod.c - files/patch-src__libjasper__jpc__jpc_t2dec.c - files/patch-src__libjasper__jpc__jpc_t2enc.c - files/patch-src__libjasper__jpc__jpc_tagtree.c - files/patch-src__libjasper__jpc__jpc_util.c - files/patch-src__libjasper__mif__mif_cod.c Removed file(s): - files/patch-jas_stream.c - files/patch-jpc_cs.c - files/patch-jpc_dec.c Port maintainer (dinoex@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- jasper-1.900.1_11.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/jasper/Makefile,v retrieving revision 1.38 diff -u -u -r1.38 Makefile --- Makefile 26 Nov 2011 07:02:29 -0000 1.38 +++ Makefile 30 Dec 2011 16:55:29 -0000 @@ -7,7 +7,7 @@ PORTNAME= jasper PORTVERSION= 1.900.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics MASTER_SITES= http://www.ece.uvic.ca/~mdadams/jasper/software/ \ ${MASTER_SITE_IMAGEMAGICK} @@ -16,10 +16,10 @@ MAINTAINER= dinoex@FreeBSD.org COMMENT= An implementation of the codec specified in the JPEG-2000 standard -LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg - LICENSE= MIT +LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg + USE_AUTOTOOLS= libtool USE_ZIP= yes USE_GNOME= lthack Index: files/patch-jas_stream.c =================================================================== RCS file: files/patch-jas_stream.c diff -N files/patch-jas_stream.c --- files/patch-jas_stream.c 5 Jul 2009 09:50:02 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,19 +0,0 @@ ---- src/libjasper/base/jas_stream.c Fri Jan 19 16:43:05 2007 -+++ src/libjasper/base/jas_stream.c Tue Jun 12 10:26:02 2007 -@@ -362,13 +362,12 @@ - obj->fd = -1; - obj->flags = 0; -- obj->pathname[0] = '\0'; -+ snprintf(obj->pathname, sizeof(obj->pathname), "/tmp/jasper.XXXXXX"); - stream->obj_ = obj; - - /* Choose a file name. */ -- tmpnam(obj->pathname); -+ obj->fd = mkstemp(obj->pathname); - - /* Open the underlying file. */ -- if ((obj->fd = open(obj->pathname, O_CREAT | O_EXCL | O_RDWR | O_TRUNC | O_BINARY, -- JAS_STREAM_PERMS)) < 0) { -+ if (obj->fd < 0) { - jas_stream_destroy(stream); - return 0; Index: files/patch-jpc_cs.c =================================================================== RCS file: files/patch-jpc_cs.c diff -N files/patch-jpc_cs.c --- files/patch-jpc_cs.c 5 Jul 2009 09:50:02 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- src/libjasper/jpc/jpc_cs.c.orig Fri Jan 19 21:43:07 2007 -+++ src/libjasper/jpc/jpc_cs.c Wed Feb 7 11:05:57 2007 -@@ -288,7 +288,7 @@ - jpc_ms_dump(ms, stderr); - } - -- if (JAS_CAST(ulong, jas_stream_tell(tmpstream)) != ms->len) { -+ if (JAS_CAST(unsigned long, jas_stream_tell(tmpstream)) != ms->len) { - jas_eprintf("warning: trailing garbage in marker segment (%ld bytes)\n", - ms->len - jas_stream_tell(tmpstream)); - } Index: files/patch-jpc_dec.c =================================================================== RCS file: files/patch-jpc_dec.c diff -N files/patch-jpc_dec.c --- files/patch-jpc_dec.c 26 Nov 2011 07:02:29 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,17 +0,0 @@ ---- src/libjasper/jpc/jpc_dec.c 2007-01-19 22:43:07.000000000 +0100 -+++ src/libjasper/jpc/jpc_dec.c 2011-11-09 15:04:49.000000000 +0100 -@@ -1069,12 +1069,12 @@ - /* Apply an inverse intercomponent transform if necessary. */ - switch (tile->cp->mctid) { - case JPC_MCT_RCT: -- assert(dec->numcomps == 3); -+ assert(dec->numcomps == 3 || dec->numcomps == 4); - jpc_irct(tile->tcomps[0].data, tile->tcomps[1].data, - tile->tcomps[2].data); - break; - case JPC_MCT_ICT: -- assert(dec->numcomps == 3); -+ assert(dec->numcomps == 3 || dec->numcomps == 4); - jpc_iict(tile->tcomps[0].data, tile->tcomps[1].data, - tile->tcomps[2].data); - break; \ No newline at end of file Index: files/patch-src__libjasper__base__jas_cm.c =================================================================== RCS file: files/patch-src__libjasper__base__jas_cm.c diff -N files/patch-src__libjasper__base__jas_cm.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__base__jas_cm.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,46 @@ +--- ./src/libjasper/base/jas_cm.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/base/jas_cm.c 2011-12-30 03:00:54.000000000 +0000 +@@ -704,8 +704,7 @@ + { + jas_cmpxform_t **p; + assert(n >= pxformseq->numpxforms); +- p = (!pxformseq->pxforms) ? jas_malloc(n * sizeof(jas_cmpxform_t *)) : +- jas_realloc(pxformseq->pxforms, n * sizeof(jas_cmpxform_t *)); ++ p = jas_realloc2(pxformseq->pxforms, n, sizeof(jas_cmpxform_t *)); + if (!p) { + return -1; + } +@@ -889,13 +888,13 @@ + jas_cmshapmatlut_cleanup(lut); + if (curv->numents == 0) { + lut->size = 2; +- if (!(lut->data = jas_malloc(lut->size * sizeof(jas_cmreal_t)))) ++ if (!(lut->data = jas_alloc2(lut->size, sizeof(jas_cmreal_t)))) + goto error; + lut->data[0] = 0.0; + lut->data[1] = 1.0; + } else if (curv->numents == 1) { + lut->size = 256; +- if (!(lut->data = jas_malloc(lut->size * sizeof(jas_cmreal_t)))) ++ if (!(lut->data = jas_alloc2(lut->size, sizeof(jas_cmreal_t)))) + goto error; + gamma = curv->ents[0] / 256.0; + for (i = 0; i < lut->size; ++i) { +@@ -903,7 +902,7 @@ + } + } else { + lut->size = curv->numents; +- if (!(lut->data = jas_malloc(lut->size * sizeof(jas_cmreal_t)))) ++ if (!(lut->data = jas_alloc2(lut->size, sizeof(jas_cmreal_t)))) + goto error; + for (i = 0; i < lut->size; ++i) { + lut->data[i] = curv->ents[i] / 65535.0; +@@ -953,7 +952,7 @@ + return -1; + } + } +- if (!(invlut->data = jas_malloc(n * sizeof(jas_cmreal_t)))) ++ if (!(invlut->data = jas_alloc2(n, sizeof(jas_cmreal_t)))) + return -1; + invlut->size = n; + for (i = 0; i < invlut->size; ++i) { Index: files/patch-src__libjasper__base__jas_icc.c =================================================================== RCS file: files/patch-src__libjasper__base__jas_icc.c diff -N files/patch-src__libjasper__base__jas_icc.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__base__jas_icc.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,98 @@ +--- ./src/libjasper/base/jas_icc.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/base/jas_icc.c 2011-12-30 03:00:54.000000000 +0000 +@@ -373,7 +373,7 @@ + jas_icctagtab_t *tagtab; + + tagtab = &prof->tagtab; +- if (!(tagtab->ents = jas_malloc(prof->attrtab->numattrs * ++ if (!(tagtab->ents = jas_alloc2(prof->attrtab->numattrs, + sizeof(jas_icctagtabent_t)))) + goto error; + tagtab->numents = prof->attrtab->numattrs; +@@ -522,7 +522,7 @@ + } + if (jas_iccgetuint32(in, &tagtab->numents)) + goto error; +- if (!(tagtab->ents = jas_malloc(tagtab->numents * ++ if (!(tagtab->ents = jas_alloc2(tagtab->numents, + sizeof(jas_icctagtabent_t)))) + goto error; + tagtabent = tagtab->ents; +@@ -743,8 +743,7 @@ + { + jas_iccattr_t *newattrs; + assert(maxents >= tab->numattrs); +- newattrs = tab->attrs ? jas_realloc(tab->attrs, maxents * +- sizeof(jas_iccattr_t)) : jas_malloc(maxents * sizeof(jas_iccattr_t)); ++ newattrs = jas_realloc2(tab->attrs, maxents, sizeof(jas_iccattr_t)); + if (!newattrs) + return -1; + tab->attrs = newattrs; +@@ -999,7 +998,7 @@ + + if (jas_iccgetuint32(in, &curv->numents)) + goto error; +- if (!(curv->ents = jas_malloc(curv->numents * sizeof(jas_iccuint16_t)))) ++ if (!(curv->ents = jas_alloc2(curv->numents, sizeof(jas_iccuint16_t)))) + goto error; + for (i = 0; i < curv->numents; ++i) { + if (jas_iccgetuint16(in, &curv->ents[i])) +@@ -1100,7 +1099,7 @@ + if (jas_iccgetuint32(in, &txtdesc->uclangcode) || + jas_iccgetuint32(in, &txtdesc->uclen)) + goto error; +- if (!(txtdesc->ucdata = jas_malloc(txtdesc->uclen * 2))) ++ if (!(txtdesc->ucdata = jas_alloc2(txtdesc->uclen, 2))) + goto error; + if (jas_stream_read(in, txtdesc->ucdata, txtdesc->uclen * 2) != + JAS_CAST(int, txtdesc->uclen * 2)) +@@ -1292,17 +1291,17 @@ + jas_iccgetuint16(in, &lut8->numouttabents)) + goto error; + clutsize = jas_iccpowi(lut8->clutlen, lut8->numinchans) * lut8->numoutchans; +- if (!(lut8->clut = jas_malloc(clutsize * sizeof(jas_iccuint8_t))) || +- !(lut8->intabsbuf = jas_malloc(lut8->numinchans * +- lut8->numintabents * sizeof(jas_iccuint8_t))) || +- !(lut8->intabs = jas_malloc(lut8->numinchans * ++ if (!(lut8->clut = jas_alloc2(clutsize, sizeof(jas_iccuint8_t))) || ++ !(lut8->intabsbuf = jas_alloc3(lut8->numinchans, ++ lut8->numintabents, sizeof(jas_iccuint8_t))) || ++ !(lut8->intabs = jas_alloc2(lut8->numinchans, + sizeof(jas_iccuint8_t *)))) + goto error; + for (i = 0; i < lut8->numinchans; ++i) + lut8->intabs[i] = &lut8->intabsbuf[i * lut8->numintabents]; +- if (!(lut8->outtabsbuf = jas_malloc(lut8->numoutchans * +- lut8->numouttabents * sizeof(jas_iccuint8_t))) || +- !(lut8->outtabs = jas_malloc(lut8->numoutchans * ++ if (!(lut8->outtabsbuf = jas_alloc3(lut8->numoutchans, ++ lut8->numouttabents, sizeof(jas_iccuint8_t))) || ++ !(lut8->outtabs = jas_alloc2(lut8->numoutchans, + sizeof(jas_iccuint8_t *)))) + goto error; + for (i = 0; i < lut8->numoutchans; ++i) +@@ -1461,17 +1460,17 @@ + jas_iccgetuint16(in, &lut16->numouttabents)) + goto error; + clutsize = jas_iccpowi(lut16->clutlen, lut16->numinchans) * lut16->numoutchans; +- if (!(lut16->clut = jas_malloc(clutsize * sizeof(jas_iccuint16_t))) || +- !(lut16->intabsbuf = jas_malloc(lut16->numinchans * +- lut16->numintabents * sizeof(jas_iccuint16_t))) || +- !(lut16->intabs = jas_malloc(lut16->numinchans * ++ if (!(lut16->clut = jas_alloc2(clutsize, sizeof(jas_iccuint16_t))) || ++ !(lut16->intabsbuf = jas_alloc3(lut16->numinchans, ++ lut16->numintabents, sizeof(jas_iccuint16_t))) || ++ !(lut16->intabs = jas_alloc2(lut16->numinchans, + sizeof(jas_iccuint16_t *)))) + goto error; + for (i = 0; i < lut16->numinchans; ++i) + lut16->intabs[i] = &lut16->intabsbuf[i * lut16->numintabents]; +- if (!(lut16->outtabsbuf = jas_malloc(lut16->numoutchans * +- lut16->numouttabents * sizeof(jas_iccuint16_t))) || +- !(lut16->outtabs = jas_malloc(lut16->numoutchans * ++ if (!(lut16->outtabsbuf = jas_alloc3(lut16->numoutchans, ++ lut16->numouttabents, sizeof(jas_iccuint16_t))) || ++ !(lut16->outtabs = jas_alloc2(lut16->numoutchans, + sizeof(jas_iccuint16_t *)))) + goto error; + for (i = 0; i < lut16->numoutchans; ++i) Index: files/patch-src__libjasper__base__jas_image.c =================================================================== RCS file: files/patch-src__libjasper__base__jas_image.c diff -N files/patch-src__libjasper__base__jas_image.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__base__jas_image.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,21 @@ +--- ./src/libjasper/base/jas_image.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/base/jas_image.c 2011-12-30 03:00:54.000000000 +0000 +@@ -142,7 +142,7 @@ + image->inmem_ = true; + + /* Allocate memory for the per-component information. */ +- if (!(image->cmpts_ = jas_malloc(image->maxcmpts_ * ++ if (!(image->cmpts_ = jas_alloc2(image->maxcmpts_, + sizeof(jas_image_cmpt_t *)))) { + jas_image_destroy(image); + return 0; +@@ -774,8 +774,7 @@ + jas_image_cmpt_t **newcmpts; + int cmptno; + +- newcmpts = (!image->cmpts_) ? jas_malloc(maxcmpts * sizeof(jas_image_cmpt_t *)) : +- jas_realloc(image->cmpts_, maxcmpts * sizeof(jas_image_cmpt_t *)); ++ newcmpts = jas_realloc2(image->cmpts_, maxcmpts, sizeof(jas_image_cmpt_t *)); + if (!newcmpts) { + return -1; + } Index: files/patch-src__libjasper__base__jas_malloc.c =================================================================== RCS file: files/patch-src__libjasper__base__jas_malloc.c diff -N files/patch-src__libjasper__base__jas_malloc.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__base__jas_malloc.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,70 @@ +--- ./src/libjasper/base/jas_malloc.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/base/jas_malloc.c 2011-12-30 03:00:54.000000000 +0000 +@@ -76,6 +76,9 @@ + + /* We need the prototype for memset. */ + #include ++#include ++#include ++#include + + #include "jasper/jas_malloc.h" + +@@ -113,18 +116,50 @@ + + void *jas_realloc(void *ptr, size_t size) + { +- return realloc(ptr, size); ++ return ptr ? realloc(ptr, size) : malloc(size); + } + +-void *jas_calloc(size_t nmemb, size_t size) ++void *jas_realloc2(void *ptr, size_t nmemb, size_t size) ++{ ++ if (!ptr) ++ return jas_alloc2(nmemb, size); ++ if (nmemb && SIZE_MAX / nmemb < size) { ++ errno = ENOMEM; ++ return NULL; ++ } ++ return jas_realloc(ptr, nmemb * size); ++ ++} ++ ++void *jas_alloc2(size_t nmemb, size_t size) ++{ ++ if (nmemb && SIZE_MAX / nmemb < size) { ++ errno = ENOMEM; ++ return NULL; ++ } ++ ++ return jas_malloc(nmemb * size); ++} ++ ++void *jas_alloc3(size_t a, size_t b, size_t c) + { +- void *ptr; + size_t n; +- n = nmemb * size; +- if (!(ptr = jas_malloc(n * sizeof(char)))) { +- return 0; ++ ++ if (a && SIZE_MAX / a < b) { ++ errno = ENOMEM; ++ return NULL; + } +- memset(ptr, 0, n); ++ ++ return jas_alloc2(a*b, c); ++} ++ ++void *jas_calloc(size_t nmemb, size_t size) ++{ ++ void *ptr; ++ ++ ptr = jas_alloc2(nmemb, size); ++ if (ptr) ++ memset(ptr, 0, nmemb*size); + return ptr; + } + Index: files/patch-src__libjasper__base__jas_seq.c =================================================================== RCS file: files/patch-src__libjasper__base__jas_seq.c diff -N files/patch-src__libjasper__base__jas_seq.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__base__jas_seq.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,29 @@ +--- ./src/libjasper/base/jas_seq.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/base/jas_seq.c 2011-12-30 03:00:54.000000000 +0000 +@@ -114,7 +114,7 @@ + matrix->datasize_ = numrows * numcols; + + if (matrix->maxrows_ > 0) { +- if (!(matrix->rows_ = jas_malloc(matrix->maxrows_ * ++ if (!(matrix->rows_ = jas_alloc2(matrix->maxrows_, + sizeof(jas_seqent_t *)))) { + jas_matrix_destroy(matrix); + return 0; +@@ -122,7 +122,7 @@ + } + + if (matrix->datasize_ > 0) { +- if (!(matrix->data_ = jas_malloc(matrix->datasize_ * ++ if (!(matrix->data_ = jas_alloc2(matrix->datasize_, + sizeof(jas_seqent_t)))) { + jas_matrix_destroy(matrix); + return 0; +@@ -220,7 +220,7 @@ + mat0->numrows_ = r1 - r0 + 1; + mat0->numcols_ = c1 - c0 + 1; + mat0->maxrows_ = mat0->numrows_; +- mat0->rows_ = jas_malloc(mat0->maxrows_ * sizeof(jas_seqent_t *)); ++ mat0->rows_ = jas_alloc2(mat0->maxrows_, sizeof(jas_seqent_t *)); + for (i = 0; i < mat0->numrows_; ++i) { + mat0->rows_[i] = mat1->rows_[r0 + i] + c0; + } Index: files/patch-src__libjasper__base__jas_stream.c =================================================================== RCS file: files/patch-src__libjasper__base__jas_stream.c diff -N files/patch-src__libjasper__base__jas_stream.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__base__jas_stream.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,48 @@ +--- ./src/libjasper/base/jas_stream.c.orig 2011-12-30 03:00:54.000000000 +0000 ++++ ./src/libjasper/base/jas_stream.c 2011-12-30 03:00:54.000000000 +0000 +@@ -212,7 +212,7 @@ + if (buf) { + obj->buf_ = (unsigned char *) buf; + } else { +- obj->buf_ = jas_malloc(obj->bufsize_ * sizeof(char)); ++ obj->buf_ = jas_malloc(obj->bufsize_); + obj->myalloc_ = 1; + } + if (!obj->buf_) { +@@ -361,15 +361,14 @@ + } + obj->fd = -1; + obj->flags = 0; +- obj->pathname[0] = '\0'; ++ snprintf(obj->pathname, sizeof(obj->pathname), "/tmp/jasper.XXXXXX"); + stream->obj_ = obj; + + /* Choose a file name. */ +- tmpnam(obj->pathname); ++ obj->fd = mkstemp(obj->pathname); + + /* Open the underlying file. */ +- if ((obj->fd = open(obj->pathname, O_CREAT | O_EXCL | O_RDWR | O_TRUNC | O_BINARY, +- JAS_STREAM_PERMS)) < 0) { ++ if (obj->fd < 0) { + jas_stream_destroy(stream); + return 0; + } +@@ -553,7 +552,7 @@ + int ret; + + va_start(ap, fmt); +- ret = vsprintf(buf, fmt, ap); ++ ret = vsnprintf(buf, sizeof buf, fmt, ap); + jas_stream_puts(stream, buf); + va_end(ap); + return ret; +@@ -992,7 +991,7 @@ + unsigned char *buf; + + assert(m->buf_); +- if (!(buf = jas_realloc(m->buf_, bufsize * sizeof(unsigned char)))) { ++ if (!(buf = jas_realloc(m->buf_, bufsize))) { + return -1; + } + m->buf_ = buf; Index: files/patch-src__libjasper__bmp__bmp_dec.c =================================================================== RCS file: files/patch-src__libjasper__bmp__bmp_dec.c diff -N files/patch-src__libjasper__bmp__bmp_dec.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__bmp__bmp_dec.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,11 @@ +--- ./src/libjasper/bmp/bmp_dec.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/bmp/bmp_dec.c 2011-12-30 03:00:54.000000000 +0000 +@@ -283,7 +283,7 @@ + } + + if (info->numcolors > 0) { +- if (!(info->palents = jas_malloc(info->numcolors * ++ if (!(info->palents = jas_alloc2(info->numcolors, + sizeof(bmp_palent_t)))) { + bmp_info_destroy(info); + return 0; Index: files/patch-src__libjasper__include__jasper__jas_malloc.h =================================================================== RCS file: files/patch-src__libjasper__include__jasper__jas_malloc.h diff -N files/patch-src__libjasper__include__jasper__jas_malloc.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__include__jasper__jas_malloc.h 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,25 @@ +--- ./src/libjasper/include/jasper/jas_malloc.h.orig 2007-01-19 21:43:04.000000000 +0000 ++++ ./src/libjasper/include/jasper/jas_malloc.h 2011-12-30 03:00:54.000000000 +0000 +@@ -95,6 +95,9 @@ + #define jas_free MEMFREE + #define jas_realloc MEMREALLOC + #define jas_calloc MEMCALLOC ++#define jas_alloc2(a, b) MEMALLOC((a)*(b)) ++#define jas_alloc3(a, b, c) MEMALLOC((a)*(b)*(c)) ++#define jas_realloc2(p, a, b) MEMREALLOC((p), (a)*(b)) + #endif + + /******************************************************************************\ +@@ -115,6 +118,12 @@ + /* Allocate a block of memory and initialize the contents to zero. */ + void *jas_calloc(size_t nmemb, size_t size); + ++/* size-checked double allocation .*/ ++void *jas_alloc2(size_t, size_t); ++ ++void *jas_alloc3(size_t, size_t, size_t); ++ ++void *jas_realloc2(void *, size_t, size_t); + #endif + + #ifdef __cplusplus Index: files/patch-src__libjasper__jp2__jp2_cod.c =================================================================== RCS file: files/patch-src__libjasper__jp2__jp2_cod.c diff -N files/patch-src__libjasper__jp2__jp2_cod.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jp2__jp2_cod.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,60 @@ +--- ./src/libjasper/jp2/jp2_cod.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/jp2/jp2_cod.c 2011-12-30 03:00:54.000000000 +0000 +@@ -247,7 +247,7 @@ + box = 0; + tmpstream = 0; + +- if (!(box = jas_malloc(sizeof(jp2_box_t)))) { ++ if (!(box = jas_calloc(1, sizeof(jp2_box_t)))) { + goto error; + } + box->ops = &jp2_boxinfo_unk.ops; +@@ -372,7 +372,7 @@ + jp2_bpcc_t *bpcc = &box->data.bpcc; + unsigned int i; + bpcc->numcmpts = box->datalen; +- if (!(bpcc->bpcs = jas_malloc(bpcc->numcmpts * sizeof(uint_fast8_t)))) { ++ if (!(bpcc->bpcs = jas_alloc2(bpcc->numcmpts, sizeof(uint_fast8_t)))) { + return -1; + } + for (i = 0; i < bpcc->numcmpts; ++i) { +@@ -416,7 +416,7 @@ + break; + case JP2_COLR_ICC: + colr->iccplen = box->datalen - 3; +- if (!(colr->iccp = jas_malloc(colr->iccplen * sizeof(uint_fast8_t)))) { ++ if (!(colr->iccp = jas_alloc2(colr->iccplen, sizeof(uint_fast8_t)))) { + return -1; + } + if (jas_stream_read(in, colr->iccp, colr->iccplen) != colr->iccplen) { +@@ -453,7 +453,7 @@ + if (jp2_getuint16(in, &cdef->numchans)) { + return -1; + } +- if (!(cdef->ents = jas_malloc(cdef->numchans * sizeof(jp2_cdefchan_t)))) { ++ if (!(cdef->ents = jas_alloc2(cdef->numchans, sizeof(jp2_cdefchan_t)))) { + return -1; + } + for (channo = 0; channo < cdef->numchans; ++channo) { +@@ -766,7 +766,7 @@ + unsigned int i; + + cmap->numchans = (box->datalen) / 4; +- if (!(cmap->ents = jas_malloc(cmap->numchans * sizeof(jp2_cmapent_t)))) { ++ if (!(cmap->ents = jas_alloc2(cmap->numchans, sizeof(jp2_cmapent_t)))) { + return -1; + } + for (i = 0; i < cmap->numchans; ++i) { +@@ -828,10 +828,10 @@ + return -1; + } + lutsize = pclr->numlutents * pclr->numchans; +- if (!(pclr->lutdata = jas_malloc(lutsize * sizeof(int_fast32_t)))) { ++ if (!(pclr->lutdata = jas_alloc2(lutsize, sizeof(int_fast32_t)))) { + return -1; + } +- if (!(pclr->bpc = jas_malloc(pclr->numchans * sizeof(uint_fast8_t)))) { ++ if (!(pclr->bpc = jas_alloc2(pclr->numchans, sizeof(uint_fast8_t)))) { + return -1; + } + for (i = 0; i < pclr->numchans; ++i) { Index: files/patch-src__libjasper__jp2__jp2_dec.c =================================================================== RCS file: files/patch-src__libjasper__jp2__jp2_dec.c diff -N files/patch-src__libjasper__jp2__jp2_dec.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jp2__jp2_dec.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,20 @@ +--- ./src/libjasper/jp2/jp2_dec.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/jp2/jp2_dec.c 2011-12-30 03:00:54.000000000 +0000 +@@ -336,7 +336,7 @@ + } + + /* Allocate space for the channel-number to component-number LUT. */ +- if (!(dec->chantocmptlut = jas_malloc(dec->numchans * sizeof(uint_fast16_t)))) { ++ if (!(dec->chantocmptlut = jas_alloc2(dec->numchans, sizeof(uint_fast16_t)))) { + jas_eprintf("error: no memory\n"); + goto error; + } +@@ -354,7 +354,7 @@ + if (cmapent->map == JP2_CMAP_DIRECT) { + dec->chantocmptlut[channo] = channo; + } else if (cmapent->map == JP2_CMAP_PALETTE) { +- lutents = jas_malloc(pclrd->numlutents * sizeof(int_fast32_t)); ++ lutents = jas_alloc2(pclrd->numlutents, sizeof(int_fast32_t)); + for (i = 0; i < pclrd->numlutents; ++i) { + lutents[i] = pclrd->lutdata[cmapent->pcol + i * pclrd->numchans]; + } Index: files/patch-src__libjasper__jp2__jp2_enc.c =================================================================== RCS file: files/patch-src__libjasper__jp2__jp2_enc.c diff -N files/patch-src__libjasper__jp2__jp2_enc.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jp2__jp2_enc.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,20 @@ +--- ./src/libjasper/jp2/jp2_enc.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/jp2/jp2_enc.c 2011-12-30 03:00:54.000000000 +0000 +@@ -191,7 +191,7 @@ + } + bpcc = &box->data.bpcc; + bpcc->numcmpts = jas_image_numcmpts(image); +- if (!(bpcc->bpcs = jas_malloc(bpcc->numcmpts * ++ if (!(bpcc->bpcs = jas_alloc2(bpcc->numcmpts, + sizeof(uint_fast8_t)))) { + goto error; + } +@@ -285,7 +285,7 @@ + } + cdef = &box->data.cdef; + cdef->numchans = jas_image_numcmpts(image); +- cdef->ents = jas_malloc(cdef->numchans * sizeof(jp2_cdefchan_t)); ++ cdef->ents = jas_alloc2(cdef->numchans, sizeof(jp2_cdefchan_t)); + for (i = 0; i < jas_image_numcmpts(image); ++i) { + cdefchanent = &cdef->ents[i]; + cdefchanent->channo = i; Index: files/patch-src__libjasper__jpc__jpc_cs.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_cs.c diff -N files/patch-src__libjasper__jpc__jpc_cs.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_cs.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,85 @@ +--- ./src/libjasper/jpc/jpc_cs.c.orig 2011-12-30 03:00:54.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_cs.c 2011-12-30 03:00:54.000000000 +0000 +@@ -288,7 +288,7 @@ + jpc_ms_dump(ms, stderr); + } + +- if (JAS_CAST(ulong, jas_stream_tell(tmpstream)) != ms->len) { ++ if (JAS_CAST(unsigned long, jas_stream_tell(tmpstream)) != ms->len) { + jas_eprintf("warning: trailing garbage in marker segment (%ld bytes)\n", + ms->len - jas_stream_tell(tmpstream)); + } +@@ -502,7 +502,7 @@ + !siz->tileheight || !siz->numcomps) { + return -1; + } +- if (!(siz->comps = jas_malloc(siz->numcomps * sizeof(jpc_sizcomp_t)))) { ++ if (!(siz->comps = jas_alloc2(siz->numcomps, sizeof(jpc_sizcomp_t)))) { + return -1; + } + for (i = 0; i < siz->numcomps; ++i) { +@@ -744,6 +744,10 @@ + return -1; + } + compparms->numrlvls = compparms->numdlvls + 1; ++ if (compparms->numrlvls > JPC_MAXRLVLS) { ++ jpc_cox_destroycompparms(compparms); ++ return -1; ++ } + if (prtflag) { + for (i = 0; i < compparms->numrlvls; ++i) { + if (jpc_getuint8(in, &tmp)) { +@@ -983,7 +987,7 @@ + break; + } + if (compparms->numstepsizes > 0) { +- compparms->stepsizes = jas_malloc(compparms->numstepsizes * ++ compparms->stepsizes = jas_alloc2(compparms->numstepsizes, + sizeof(uint_fast16_t)); + assert(compparms->stepsizes); + for (i = 0; i < compparms->numstepsizes; ++i) { +@@ -1091,7 +1095,7 @@ + + ppm->len = ms->len - 1; + if (ppm->len > 0) { +- if (!(ppm->data = jas_malloc(ppm->len * sizeof(unsigned char)))) { ++ if (!(ppm->data = jas_malloc(ppm->len))) { + goto error; + } + if (JAS_CAST(uint, jas_stream_read(in, ppm->data, ppm->len)) != ppm->len) { +@@ -1160,7 +1164,7 @@ + } + ppt->len = ms->len - 1; + if (ppt->len > 0) { +- if (!(ppt->data = jas_malloc(ppt->len * sizeof(unsigned char)))) { ++ if (!(ppt->data = jas_malloc(ppt->len))) { + goto error; + } + if (jas_stream_read(in, (char *) ppt->data, ppt->len) != JAS_CAST(int, ppt->len)) { +@@ -1223,7 +1227,7 @@ + uint_fast8_t tmp; + poc->numpchgs = (cstate->numcomps > 256) ? (ms->len / 9) : + (ms->len / 7); +- if (!(poc->pchgs = jas_malloc(poc->numpchgs * sizeof(jpc_pocpchg_t)))) { ++ if (!(poc->pchgs = jas_alloc2(poc->numpchgs, sizeof(jpc_pocpchg_t)))) { + goto error; + } + for (pchgno = 0, pchg = poc->pchgs; pchgno < poc->numpchgs; ++pchgno, +@@ -1328,7 +1332,7 @@ + jpc_crgcomp_t *comp; + uint_fast16_t compno; + crg->numcomps = cstate->numcomps; +- if (!(crg->comps = jas_malloc(cstate->numcomps * sizeof(uint_fast16_t)))) { ++ if (!(crg->comps = jas_alloc2(cstate->numcomps, sizeof(jpc_crgcomp_t)))) { + return -1; + } + for (compno = 0, comp = crg->comps; compno < cstate->numcomps; +@@ -1467,7 +1471,7 @@ + cstate = 0; + + if (ms->len > 0) { +- if (!(unk->data = jas_malloc(ms->len * sizeof(unsigned char)))) { ++ if (!(unk->data = jas_malloc(ms->len))) { + return -1; + } + if (jas_stream_read(in, (char *) unk->data, ms->len) != JAS_CAST(int, ms->len)) { Index: files/patch-src__libjasper__jpc__jpc_dec.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_dec.c diff -N files/patch-src__libjasper__jpc__jpc_dec.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_dec.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,128 @@ +--- ./src/libjasper/jpc/jpc_dec.c.orig 2011-12-30 03:00:54.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_dec.c 2011-12-30 03:00:54.000000000 +0000 +@@ -449,7 +449,7 @@ + + if (dec->state == JPC_MH) { + +- compinfos = jas_malloc(dec->numcomps * sizeof(jas_image_cmptparm_t)); ++ compinfos = jas_alloc2(dec->numcomps, sizeof(jas_image_cmptparm_t)); + assert(compinfos); + for (cmptno = 0, cmpt = dec->cmpts, compinfo = compinfos; + cmptno < dec->numcomps; ++cmptno, ++cmpt, ++compinfo) { +@@ -692,7 +692,7 @@ + tile->realmode = 1; + } + tcomp->numrlvls = ccp->numrlvls; +- if (!(tcomp->rlvls = jas_malloc(tcomp->numrlvls * ++ if (!(tcomp->rlvls = jas_alloc2(tcomp->numrlvls, + sizeof(jpc_dec_rlvl_t)))) { + return -1; + } +@@ -764,7 +764,7 @@ + rlvl->cbgheightexpn); + + rlvl->numbands = (!rlvlno) ? 1 : 3; +- if (!(rlvl->bands = jas_malloc(rlvl->numbands * ++ if (!(rlvl->bands = jas_alloc2(rlvl->numbands, + sizeof(jpc_dec_band_t)))) { + return -1; + } +@@ -797,7 +797,7 @@ + + assert(rlvl->numprcs); + +- if (!(band->prcs = jas_malloc(rlvl->numprcs * sizeof(jpc_dec_prc_t)))) { ++ if (!(band->prcs = jas_alloc2(rlvl->numprcs, sizeof(jpc_dec_prc_t)))) { + return -1; + } + +@@ -834,7 +834,7 @@ + if (!(prc->numimsbstagtree = jpc_tagtree_create(prc->numhcblks, prc->numvcblks))) { + return -1; + } +- if (!(prc->cblks = jas_malloc(prc->numcblks * sizeof(jpc_dec_cblk_t)))) { ++ if (!(prc->cblks = jas_alloc2(prc->numcblks, sizeof(jpc_dec_cblk_t)))) { + return -1; + } + +@@ -1069,12 +1069,12 @@ + /* Apply an inverse intercomponent transform if necessary. */ + switch (tile->cp->mctid) { + case JPC_MCT_RCT: +- assert(dec->numcomps == 3); ++ assert(dec->numcomps == 3 || dec->numcomps == 4); + jpc_irct(tile->tcomps[0].data, tile->tcomps[1].data, + tile->tcomps[2].data); + break; + case JPC_MCT_ICT: +- assert(dec->numcomps == 3); ++ assert(dec->numcomps == 3 || dec->numcomps == 4); + jpc_iict(tile->tcomps[0].data, tile->tcomps[1].data, + tile->tcomps[2].data); + break; +@@ -1181,7 +1181,7 @@ + return -1; + } + +- if (!(dec->cmpts = jas_malloc(dec->numcomps * sizeof(jpc_dec_cmpt_t)))) { ++ if (!(dec->cmpts = jas_alloc2(dec->numcomps, sizeof(jpc_dec_cmpt_t)))) { + return -1; + } + +@@ -1204,7 +1204,7 @@ + dec->numhtiles = JPC_CEILDIV(dec->xend - dec->tilexoff, dec->tilewidth); + dec->numvtiles = JPC_CEILDIV(dec->yend - dec->tileyoff, dec->tileheight); + dec->numtiles = dec->numhtiles * dec->numvtiles; +- if (!(dec->tiles = jas_malloc(dec->numtiles * sizeof(jpc_dec_tile_t)))) { ++ if (!(dec->tiles = jas_calloc(dec->numtiles, sizeof(jpc_dec_tile_t)))) { + return -1; + } + +@@ -1228,7 +1228,7 @@ + tile->pkthdrstreampos = 0; + tile->pptstab = 0; + tile->cp = 0; +- if (!(tile->tcomps = jas_malloc(dec->numcomps * ++ if (!(tile->tcomps = jas_calloc(dec->numcomps, + sizeof(jpc_dec_tcomp_t)))) { + return -1; + } +@@ -1489,7 +1489,7 @@ + cp->numlyrs = 0; + cp->mctid = 0; + cp->csty = 0; +- if (!(cp->ccps = jas_malloc(cp->numcomps * sizeof(jpc_dec_ccp_t)))) { ++ if (!(cp->ccps = jas_alloc2(cp->numcomps, sizeof(jpc_dec_ccp_t)))) { + return 0; + } + if (!(cp->pchglist = jpc_pchglist_create())) { +@@ -2048,7 +2048,7 @@ + } + streamlist->numstreams = 0; + streamlist->maxstreams = 100; +- if (!(streamlist->streams = jas_malloc(streamlist->maxstreams * ++ if (!(streamlist->streams = jas_alloc2(streamlist->maxstreams, + sizeof(jas_stream_t *)))) { + jas_free(streamlist); + return 0; +@@ -2068,8 +2068,8 @@ + /* Grow the array of streams if necessary. */ + if (streamlist->numstreams >= streamlist->maxstreams) { + newmaxstreams = streamlist->maxstreams + 1024; +- if (!(newstreams = jas_realloc(streamlist->streams, +- (newmaxstreams + 1024) * sizeof(jas_stream_t *)))) { ++ if (!(newstreams = jas_realloc2(streamlist->streams, ++ (newmaxstreams + 1024), sizeof(jas_stream_t *)))) { + return -1; + } + for (i = streamlist->numstreams; i < streamlist->maxstreams; ++i) { +@@ -2155,8 +2155,7 @@ + { + jpc_ppxstabent_t **newents; + if (tab->maxents < maxents) { +- newents = (tab->ents) ? jas_realloc(tab->ents, maxents * +- sizeof(jpc_ppxstabent_t *)) : jas_malloc(maxents * sizeof(jpc_ppxstabent_t *)); ++ newents = jas_realloc2(tab->ents, maxents, sizeof(jpc_ppxstabent_t *)); + if (!newents) { + return -1; + } Index: files/patch-src__libjasper__jpc__jpc_enc.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_enc.c diff -N files/patch-src__libjasper__jpc__jpc_enc.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_enc.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,92 @@ +--- ./src/libjasper/jpc/jpc_enc.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_enc.c 2011-12-30 03:00:54.000000000 +0000 +@@ -403,7 +403,7 @@ + vsteplcm *= jas_image_cmptvstep(image, cmptno); + } + +- if (!(cp->ccps = jas_malloc(cp->numcmpts * sizeof(jpc_enc_ccp_t)))) { ++ if (!(cp->ccps = jas_alloc2(cp->numcmpts, sizeof(jpc_enc_ccp_t)))) { + goto error; + } + for (cmptno = 0, ccp = cp->ccps; cmptno < JAS_CAST(int, cp->numcmpts); ++cmptno, +@@ -656,7 +656,7 @@ + + if (ilyrrates && numilyrrates > 0) { + tcp->numlyrs = numilyrrates + 1; +- if (!(tcp->ilyrrates = jas_malloc((tcp->numlyrs - 1) * ++ if (!(tcp->ilyrrates = jas_alloc2((tcp->numlyrs - 1), + sizeof(jpc_fix_t)))) { + goto error; + } +@@ -940,7 +940,7 @@ + siz->tilewidth = cp->tilewidth; + siz->tileheight = cp->tileheight; + siz->numcomps = cp->numcmpts; +- siz->comps = jas_malloc(siz->numcomps * sizeof(jpc_sizcomp_t)); ++ siz->comps = jas_alloc2(siz->numcomps, sizeof(jpc_sizcomp_t)); + assert(siz->comps); + for (i = 0; i < JAS_CAST(int, cp->numcmpts); ++i) { + siz->comps[i].prec = cp->ccps[i].prec; +@@ -977,7 +977,7 @@ + return -1; + } + crg = &enc->mrk->parms.crg; +- crg->comps = jas_malloc(crg->numcomps * sizeof(jpc_crgcomp_t)); ++ crg->comps = jas_alloc2(crg->numcomps, sizeof(jpc_crgcomp_t)); + if (jpc_putms(enc->out, enc->cstate, enc->mrk)) { + jas_eprintf("cannot write CRG marker\n"); + return -1; +@@ -1955,7 +1955,7 @@ + tile->mctid = cp->tcp.mctid; + + tile->numlyrs = cp->tcp.numlyrs; +- if (!(tile->lyrsizes = jas_malloc(tile->numlyrs * ++ if (!(tile->lyrsizes = jas_alloc2(tile->numlyrs, + sizeof(uint_fast32_t)))) { + goto error; + } +@@ -1964,7 +1964,7 @@ + } + + /* Allocate an array for the per-tile-component information. */ +- if (!(tile->tcmpts = jas_malloc(cp->numcmpts * sizeof(jpc_enc_tcmpt_t)))) { ++ if (!(tile->tcmpts = jas_alloc2(cp->numcmpts, sizeof(jpc_enc_tcmpt_t)))) { + goto error; + } + /* Initialize a few members critical for error recovery. */ +@@ -2110,7 +2110,7 @@ + jas_seq2d_ystart(tcmpt->data), jas_seq2d_xend(tcmpt->data), + jas_seq2d_yend(tcmpt->data), bandinfos); + +- if (!(tcmpt->rlvls = jas_malloc(tcmpt->numrlvls * sizeof(jpc_enc_rlvl_t)))) { ++ if (!(tcmpt->rlvls = jas_alloc2(tcmpt->numrlvls, sizeof(jpc_enc_rlvl_t)))) { + goto error; + } + for (rlvlno = 0, rlvl = tcmpt->rlvls; rlvlno < tcmpt->numrlvls; +@@ -2213,7 +2213,7 @@ + rlvl->numvprcs = JPC_FLOORDIVPOW2(brprcbry - tlprctly, rlvl->prcheightexpn); + rlvl->numprcs = rlvl->numhprcs * rlvl->numvprcs; + +- if (!(rlvl->bands = jas_malloc(rlvl->numbands * sizeof(jpc_enc_band_t)))) { ++ if (!(rlvl->bands = jas_alloc2(rlvl->numbands, sizeof(jpc_enc_band_t)))) { + goto error; + } + for (bandno = 0, band = rlvl->bands; bandno < rlvl->numbands; +@@ -2290,7 +2290,7 @@ + band->synweight = bandinfo->synenergywt; + + if (band->data) { +- if (!(band->prcs = jas_malloc(rlvl->numprcs * sizeof(jpc_enc_prc_t)))) { ++ if (!(band->prcs = jas_alloc2(rlvl->numprcs, sizeof(jpc_enc_prc_t)))) { + goto error; + } + for (prcno = 0, prc = band->prcs; prcno < rlvl->numprcs; ++prcno, +@@ -2422,7 +2422,7 @@ + goto error; + } + +- if (!(prc->cblks = jas_malloc(prc->numcblks * sizeof(jpc_enc_cblk_t)))) { ++ if (!(prc->cblks = jas_alloc2(prc->numcblks, sizeof(jpc_enc_cblk_t)))) { + goto error; + } + for (cblkno = 0, cblk = prc->cblks; cblkno < prc->numcblks; Index: files/patch-src__libjasper__jpc__jpc_mqdec.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_mqdec.c diff -N files/patch-src__libjasper__jpc__jpc_mqdec.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_mqdec.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,11 @@ +--- ./src/libjasper/jpc/jpc_mqdec.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_mqdec.c 2011-12-30 03:00:54.000000000 +0000 +@@ -118,7 +118,7 @@ + mqdec->in = in; + mqdec->maxctxs = maxctxs; + /* Allocate memory for the per-context state information. */ +- if (!(mqdec->ctxs = jas_malloc(mqdec->maxctxs * sizeof(jpc_mqstate_t *)))) { ++ if (!(mqdec->ctxs = jas_alloc2(mqdec->maxctxs, sizeof(jpc_mqstate_t *)))) { + goto error; + } + /* Set the current context to the first context. */ Index: files/patch-src__libjasper__jpc__jpc_mqenc.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_mqenc.c diff -N files/patch-src__libjasper__jpc__jpc_mqenc.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_mqenc.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,11 @@ +--- ./src/libjasper/jpc/jpc_mqenc.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_mqenc.c 2011-12-30 03:00:54.000000000 +0000 +@@ -197,7 +197,7 @@ + mqenc->maxctxs = maxctxs; + + /* Allocate memory for the per-context state information. */ +- if (!(mqenc->ctxs = jas_malloc(mqenc->maxctxs * sizeof(jpc_mqstate_t *)))) { ++ if (!(mqenc->ctxs = jas_alloc2(mqenc->maxctxs, sizeof(jpc_mqstate_t *)))) { + goto error; + } + Index: files/patch-src__libjasper__jpc__jpc_qmfb.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_qmfb.c diff -N files/patch-src__libjasper__jpc__jpc_qmfb.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_qmfb.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,74 @@ +--- ./src/libjasper/jpc/jpc_qmfb.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_qmfb.c 2011-12-30 03:00:54.000000000 +0000 +@@ -321,7 +321,7 @@ + #if !defined(HAVE_VLA) + /* Get a buffer. */ + if (bufsize > QMFB_SPLITBUFSIZE) { +- if (!(buf = jas_malloc(bufsize * sizeof(jpc_fix_t)))) { ++ if (!(buf = jas_alloc2(bufsize, sizeof(jpc_fix_t)))) { + /* We have no choice but to commit suicide in this case. */ + abort(); + } +@@ -389,7 +389,7 @@ + #if !defined(HAVE_VLA) + /* Get a buffer. */ + if (bufsize > QMFB_SPLITBUFSIZE) { +- if (!(buf = jas_malloc(bufsize * sizeof(jpc_fix_t)))) { ++ if (!(buf = jas_alloc2(bufsize, sizeof(jpc_fix_t)))) { + /* We have no choice but to commit suicide in this case. */ + abort(); + } +@@ -460,7 +460,7 @@ + #if !defined(HAVE_VLA) + /* Get a buffer. */ + if (bufsize > QMFB_SPLITBUFSIZE) { +- if (!(buf = jas_malloc(bufsize * sizeof(jpc_fix_t)))) { ++ if (!(buf = jas_alloc2(bufsize, sizeof(jpc_fix_t)))) { + /* We have no choice but to commit suicide in this case. */ + abort(); + } +@@ -549,7 +549,7 @@ + #if !defined(HAVE_VLA) + /* Get a buffer. */ + if (bufsize > QMFB_SPLITBUFSIZE) { +- if (!(buf = jas_malloc(bufsize * sizeof(jpc_fix_t)))) { ++ if (!(buf = jas_alloc2(bufsize, sizeof(jpc_fix_t)))) { + /* We have no choice but to commit suicide in this case. */ + abort(); + } +@@ -633,7 +633,7 @@ + #if !defined(HAVE_VLA) + /* Allocate memory for the join buffer from the heap. */ + if (bufsize > QMFB_JOINBUFSIZE) { +- if (!(buf = jas_malloc(bufsize * sizeof(jpc_fix_t)))) { ++ if (!(buf = jas_alloc2(bufsize, sizeof(jpc_fix_t)))) { + /* We have no choice but to commit suicide. */ + abort(); + } +@@ -698,7 +698,7 @@ + #if !defined(HAVE_VLA) + /* Allocate memory for the join buffer from the heap. */ + if (bufsize > QMFB_JOINBUFSIZE) { +- if (!(buf = jas_malloc(bufsize * sizeof(jpc_fix_t)))) { ++ if (!(buf = jas_alloc2(bufsize, sizeof(jpc_fix_t)))) { + /* We have no choice but to commit suicide. */ + abort(); + } +@@ -766,7 +766,7 @@ + #if !defined(HAVE_VLA) + /* Allocate memory for the join buffer from the heap. */ + if (bufsize > QMFB_JOINBUFSIZE) { +- if (!(buf = jas_malloc(bufsize * JPC_QMFB_COLGRPSIZE * sizeof(jpc_fix_t)))) { ++ if (!(buf = jas_alloc2(bufsize, JPC_QMFB_COLGRPSIZE * sizeof(jpc_fix_t)))) { + /* We have no choice but to commit suicide. */ + abort(); + } +@@ -852,7 +852,7 @@ + #if !defined(HAVE_VLA) + /* Allocate memory for the join buffer from the heap. */ + if (bufsize > QMFB_JOINBUFSIZE) { +- if (!(buf = jas_malloc(bufsize * numcols * sizeof(jpc_fix_t)))) { ++ if (!(buf = jas_alloc3(bufsize, numcols, sizeof(jpc_fix_t)))) { + /* We have no choice but to commit suicide. */ + abort(); + } Index: files/patch-src__libjasper__jpc__jpc_t1enc.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_t1enc.c diff -N files/patch-src__libjasper__jpc__jpc_t1enc.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_t1enc.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,11 @@ +--- ./src/libjasper/jpc/jpc_t1enc.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_t1enc.c 2011-12-30 03:00:54.000000000 +0000 +@@ -219,7 +219,7 @@ + + cblk->numpasses = (cblk->numbps > 0) ? (3 * cblk->numbps - 2) : 0; + if (cblk->numpasses > 0) { +- cblk->passes = jas_malloc(cblk->numpasses * sizeof(jpc_enc_pass_t)); ++ cblk->passes = jas_alloc2(cblk->numpasses, sizeof(jpc_enc_pass_t)); + assert(cblk->passes); + } else { + cblk->passes = 0; Index: files/patch-src__libjasper__jpc__jpc_t2cod.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_t2cod.c diff -N files/patch-src__libjasper__jpc__jpc_t2cod.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_t2cod.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,11 @@ +--- ./src/libjasper/jpc/jpc_t2cod.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_t2cod.c 2011-12-30 03:00:54.000000000 +0000 +@@ -573,7 +573,7 @@ + } + if (pchglist->numpchgs >= pchglist->maxpchgs) { + newmaxpchgs = pchglist->maxpchgs + 128; +- if (!(newpchgs = jas_realloc(pchglist->pchgs, newmaxpchgs * sizeof(jpc_pchg_t *)))) { ++ if (!(newpchgs = jas_realloc2(pchglist->pchgs, newmaxpchgs, sizeof(jpc_pchg_t *)))) { + return -1; + } + pchglist->maxpchgs = newmaxpchgs; Index: files/patch-src__libjasper__jpc__jpc_t2dec.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_t2dec.c diff -N files/patch-src__libjasper__jpc__jpc_t2dec.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_t2dec.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,29 @@ +--- ./src/libjasper/jpc/jpc_t2dec.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_t2dec.c 2011-12-30 03:00:54.000000000 +0000 +@@ -478,7 +478,7 @@ + return 0; + } + pi->numcomps = dec->numcomps; +- if (!(pi->picomps = jas_malloc(pi->numcomps * sizeof(jpc_picomp_t)))) { ++ if (!(pi->picomps = jas_alloc2(pi->numcomps, sizeof(jpc_picomp_t)))) { + jpc_pi_destroy(pi); + return 0; + } +@@ -490,7 +490,7 @@ + for (compno = 0, tcomp = tile->tcomps, picomp = pi->picomps; + compno < pi->numcomps; ++compno, ++tcomp, ++picomp) { + picomp->numrlvls = tcomp->numrlvls; +- if (!(picomp->pirlvls = jas_malloc(picomp->numrlvls * ++ if (!(picomp->pirlvls = jas_alloc2(picomp->numrlvls, + sizeof(jpc_pirlvl_t)))) { + jpc_pi_destroy(pi); + return 0; +@@ -503,7 +503,7 @@ + rlvlno < picomp->numrlvls; ++rlvlno, ++pirlvl, ++rlvl) { + /* XXX sizeof(long) should be sizeof different type */ + pirlvl->numprcs = rlvl->numprcs; +- if (!(pirlvl->prclyrnos = jas_malloc(pirlvl->numprcs * ++ if (!(pirlvl->prclyrnos = jas_alloc2(pirlvl->numprcs, + sizeof(long)))) { + jpc_pi_destroy(pi); + return 0; Index: files/patch-src__libjasper__jpc__jpc_t2enc.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_t2enc.c diff -N files/patch-src__libjasper__jpc__jpc_t2enc.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_t2enc.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,29 @@ +--- ./src/libjasper/jpc/jpc_t2enc.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_t2enc.c 2011-12-30 03:00:54.000000000 +0000 +@@ -565,7 +565,7 @@ + } + pi->pktno = -1; + pi->numcomps = cp->numcmpts; +- if (!(pi->picomps = jas_malloc(pi->numcomps * sizeof(jpc_picomp_t)))) { ++ if (!(pi->picomps = jas_alloc2(pi->numcomps, sizeof(jpc_picomp_t)))) { + jpc_pi_destroy(pi); + return 0; + } +@@ -577,7 +577,7 @@ + for (compno = 0, tcomp = tile->tcmpts, picomp = pi->picomps; + compno < pi->numcomps; ++compno, ++tcomp, ++picomp) { + picomp->numrlvls = tcomp->numrlvls; +- if (!(picomp->pirlvls = jas_malloc(picomp->numrlvls * ++ if (!(picomp->pirlvls = jas_alloc2(picomp->numrlvls, + sizeof(jpc_pirlvl_t)))) { + jpc_pi_destroy(pi); + return 0; +@@ -591,7 +591,7 @@ + /* XXX sizeof(long) should be sizeof different type */ + pirlvl->numprcs = rlvl->numprcs; + if (rlvl->numprcs) { +- if (!(pirlvl->prclyrnos = jas_malloc(pirlvl->numprcs * ++ if (!(pirlvl->prclyrnos = jas_alloc2(pirlvl->numprcs, + sizeof(long)))) { + jpc_pi_destroy(pi); + return 0; Index: files/patch-src__libjasper__jpc__jpc_tagtree.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_tagtree.c diff -N files/patch-src__libjasper__jpc__jpc_tagtree.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_tagtree.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,11 @@ +--- ./src/libjasper/jpc/jpc_tagtree.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_tagtree.c 2011-12-30 03:00:54.000000000 +0000 +@@ -125,7 +125,7 @@ + ++numlvls; + } while (n > 1); + +- if (!(tree->nodes_ = jas_malloc(tree->numnodes_ * sizeof(jpc_tagtreenode_t)))) { ++ if (!(tree->nodes_ = jas_alloc2(tree->numnodes_, sizeof(jpc_tagtreenode_t)))) { + return 0; + } + Index: files/patch-src__libjasper__jpc__jpc_util.c =================================================================== RCS file: files/patch-src__libjasper__jpc__jpc_util.c diff -N files/patch-src__libjasper__jpc__jpc_util.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__jpc__jpc_util.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,11 @@ +--- ./src/libjasper/jpc/jpc_util.c.orig 2007-01-19 21:43:07.000000000 +0000 ++++ ./src/libjasper/jpc/jpc_util.c 2011-12-30 03:00:54.000000000 +0000 +@@ -109,7 +109,7 @@ + } + + if (n) { +- if (!(vs = jas_malloc(n * sizeof(double)))) { ++ if (!(vs = jas_alloc2(n, sizeof(double)))) { + return -1; + } + Index: files/patch-src__libjasper__mif__mif_cod.c =================================================================== RCS file: files/patch-src__libjasper__mif__mif_cod.c diff -N files/patch-src__libjasper__mif__mif_cod.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__libjasper__mif__mif_cod.c 30 Dec 2011 16:55:29 -0000 @@ -0,0 +1,12 @@ +--- ./src/libjasper/mif/mif_cod.c.orig 2007-01-19 21:43:05.000000000 +0000 ++++ ./src/libjasper/mif/mif_cod.c 2011-12-30 03:00:54.000000000 +0000 +@@ -438,8 +438,7 @@ + int cmptno; + mif_cmpt_t **newcmpts; + assert(maxcmpts >= hdr->numcmpts); +- newcmpts = (!hdr->cmpts) ? jas_malloc(maxcmpts * sizeof(mif_cmpt_t *)) : +- jas_realloc(hdr->cmpts, maxcmpts * sizeof(mif_cmpt_t *)); ++ newcmpts = jas_realloc2(hdr->cmpts, maxcmpts, sizeof(mif_cmpt_t *)); + if (!newcmpts) { + return -1; + } --- jasper-1.900.1_11.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 17:20:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 561F61065670; Fri, 30 Dec 2011 17:20: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 28DDE8FC13; Fri, 30 Dec 2011 17:20:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUHKN9n039694; Fri, 30 Dec 2011 17:20:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUHKNMw039690; Fri, 30 Dec 2011 17:20:23 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 17:20:23 GMT Message-Id: <201112301720.pBUHKNMw039690@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163718: [PATCH] graphics/jasper: security updates for CVE-2011-4516, CVE-2011-4517, CVE-2008-3520, CVE-2008-3522 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 17:20:23 -0000 Synopsis: [PATCH] graphics/jasper: security updates for CVE-2011-4516, CVE-2011-4517, CVE-2008-3520, CVE-2008-3522 Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 30 17:20:22 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163718 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 17:33:56 2011 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 96941106566C; Fri, 30 Dec 2011 17:33:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 497D98FC0C; Fri, 30 Dec 2011 17:33:56 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) (authenticated bits=0) by mouf.net (8.14.4/8.14.4) with ESMTP id pBUHXt2V012329 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Fri, 30 Dec 2011 12:33:55 -0500 (EST) (envelope-from swills@FreeBSD.org) Message-ID: <4EFDF603.2060109@FreeBSD.org> Date: Fri, 30 Dec 2011 12:33:55 -0500 From: Steve Wills User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111228 Thunderbird/9.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <201112301720.pBUHKBSu039350@freefall.freebsd.org> In-Reply-To: <201112301720.pBUHKBSu039350@freefall.freebsd.org> X-Enigmail-Version: 1.1.2 Content-Type: multipart/mixed; boundary="------------010608010507000904060207" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mouf.net [204.109.58.86]); Fri, 30 Dec 2011 12:33:55 -0500 (EST) X-Virus-Scanned: clamav-milter 0.97.2 at mouf.net X-Virus-Status: Clean Cc: Subject: Re: ports/163718: [PATCH] graphics/jasper: security updates for CVE-2011-4516, CVE-2011-4517, CVE-2008-3520, CVE-2008-3522 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 17:33:56 -0000 This is a multi-part message in MIME format. --------------010608010507000904060207 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I may have missed a few other patches from Fedora which may be useful. Please see attached. Not sure if they are needed or not. Steve On 12/30/11 12:20, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. It has the internal > identification `ports/163718'. The individual assigned to look at > your report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time via > this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=163718 > >> Category: ports Responsible: freebsd-ports-bugs >> Synopsis: [PATCH] graphics/jasper: security updates for >> CVE-2011-4516, CVE-2011-4517, CVE-2008-3520, CVE-2008-3522 >> Arrival-Date: Fri Dec 30 17:20:11 UTC 2011 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iQEcBAEBAgAGBQJO/fYCAAoJEPXPYrMgexuhE+8H/3rpfGeWffocsGrGqHqmVOsW MIU1s8VnrMEbmL3+aT0Tf1SnSSQDrP+lzi2Es1/vjCa+OZGi3yjHHr85taxhtguN /v5L8r82UhjQOVIzusz7k1Jx6rrcf7tafDzgt1HgtYM6CPmIe0iQO+XAqcjC7AMF yl/mxTAwnBFWX65Pmo4g/GOL8Y9B7Bhsr00S+6tpMjAstE69d/4npsOxuS1B0Txv v68wr9nruTJolgzaNxxN1zNezkgtxB/P/zECP+hJAIpNoZfqVfNYZ7EAvyvhgjOT JegOq6zq0AVjky1OOeUmxVBmBD1lCIV9d54Qy/fZlphSek4cS0MszC2yI4NlZwI= =nDl6 -----END PGP SIGNATURE----- --------------010608010507000904060207 Content-Type: text/plain; name="patch-libjasper-stepsizes-overflow.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-libjasper-stepsizes-overflow.diff" --- jasper-1.900.1.orig/src/libjasper/jpc/jpc_cs.c 2007-01-19 22:43:07.000000000 +0100 +++ jasper-1.900.1/src/libjasper/jpc/jpc_cs.c 2007-04-06 01:29:02.000000000 +0200 @@ -982,7 +982,10 @@ static int jpc_qcx_getcompparms(jpc_qcxc compparms->numstepsizes = (len - n) / 2; break; } - if (compparms->numstepsizes > 0) { + if (compparms->numstepsizes > 3 * JPC_MAXRLVLS + 1) { + jpc_qcx_destroycompparms(compparms); + return -1; + } else if (compparms->numstepsizes > 0) { compparms->stepsizes = jas_malloc(compparms->numstepsizes * sizeof(uint_fast16_t)); assert(compparms->stepsizes); --------------010608010507000904060207 Content-Type: text/plain; name="jpc_dec.c.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="jpc_dec.c.patch" diff -urN jasper-1.900.1/src/libjasper/jpc/jpc_dec.c jasper-1.900.1-fix/src/libjasper/jpc/jpc_dec.c --- jasper-1.900.1/src/libjasper/jpc/jpc_dec.c 2007-01-19 14:43:07.000000000 -0700 +++ jasper-1.900.1-fix/src/libjasper/jpc/jpc_dec.c 2008-03-06 16:51:12.000000000 -0700 @@ -1069,12 +1069,12 @@ /* Apply an inverse intercomponent transform if necessary. */ switch (tile->cp->mctid) { case JPC_MCT_RCT: - assert(dec->numcomps == 3); + assert(dec->numcomps >= 3); jpc_irct(tile->tcomps[0].data, tile->tcomps[1].data, tile->tcomps[2].data); break; case JPC_MCT_ICT: - assert(dec->numcomps == 3); + assert(dec->numcomps >= 3); jpc_iict(tile->tcomps[0].data, tile->tcomps[1].data, tile->tcomps[2].data); break; --------------010608010507000904060207 Content-Type: application/octet-stream; name="patch-libjasper-stepsizes-overflow.diff.sig" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-libjasper-stepsizes-overflow.diff.sig" iQEcBAABAgAGBQJO/fYCAAoJEPXPYrMgexuhNmgIAKDkwPUXIZEtUtL/T42l0tS8ho4rYMDS Pq4P5yjG2AXhMVMpZHsV5pgLCdEiZKUjB64WYmTOr8G8sOqdVE+1DYLdMu/UqeNmg+wtVaqY qks2MgyW8SrUPgwqdIxKK/lBZ8wk37juxrgkZBJwKtkkSF6ZDi58lXqVP5rSM0GMq1xLc3Ga JkajxreFjOUVFN68NIyCCMMpj4VyJiYFCEYTNBgc9eXDOIyXKezDdl/558tHfUKi2tVkyAyd 4vgw2uOFvWxgmiHYGHXtVaRqm1j1M4r20RhkUKOjcb4OufOMdERNUWFiK4JiApbaTQfn/zX+ VlmvXWOzAD9pTUrYoavMj3o= --------------010608010507000904060207 Content-Type: application/octet-stream; name="jpc_dec.c.patch.sig" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="jpc_dec.c.patch.sig" iQEcBAABAgAGBQJO/fYDAAoJEPXPYrMgexuhmZ4H/j82IlgqTSxyM2kKrFrFcOsMzLgoK47k nsQ8ghb/cN3KyTn6VOFQlOQjjmllJ+vOC51KLOK+jJ1j+hm22Us51NZH1Z4cnwNpbPpZVDTK lvdBIMrbu0iMUjJfv2evZhejx6Y3nD0Yfw4vC+DlKNtT5brarQuJmJ3XeBufHgHujiuT3euW dtm7AzS9HAJcMqTnUJyR5IdZA7hfULUZ3wCH8p22zRSFQjYxisD9vGb+45V4/zyo+L2iBeRd TyrVXH2w5K+WVet0adeymA4sLwUJbtPzmR8h8J3EYxqQgZPAvhvQe/ZJwrQdQC8ncHKQqUDY mBlwZdL8+B1SSWQXmud4Uzg= --------------010608010507000904060207-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 17:40:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 813621065675 for ; Fri, 30 Dec 2011 17:40: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 1AF598FC15 for ; Fri, 30 Dec 2011 17:40:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUHeF76058768 for ; Fri, 30 Dec 2011 17:40:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUHeFq8058767; Fri, 30 Dec 2011 17:40:15 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 17:40:15 GMT Resent-Message-Id: <201112301740.pBUHeFq8058767@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, Andrew Lankford Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04F3E106564A for ; Fri, 30 Dec 2011 17:37:17 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E28A38FC12 for ; Fri, 30 Dec 2011 17:37:16 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBUHbG5T052389 for ; Fri, 30 Dec 2011 17:37:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBUHbGPD052388; Fri, 30 Dec 2011 17:37:16 GMT (envelope-from nobody) Message-Id: <201112301737.pBUHbGPD052388@red.freebsd.org> Date: Fri, 30 Dec 2011 17:37:16 GMT From: Andrew Lankford To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163720: eclipse port doesn't 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, 30 Dec 2011 17:40:16 -0000 >Number: 163720 >Category: ports >Synopsis: eclipse port doesn't build >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 30 17:40:15 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Andrew Lankford >Release: 9-prerelease >Organization: >Environment: FreeBSD bogushost3 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #6: Sun Dec 18 16:56:29 EST 2011 root@bogushost3:/usr/obj/usr/src/sys/ARL9VOSTRO i386 >Description: bash# make eclipse is using libxul for gecko support, but you can change that by defining WITH_GECKO to the following values: libxul ===> Vulnerability check disabled, database not found ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for eclipse-3.5.2 ===> Extracting for eclipse-3.6.2 => SHA256 Checksum OK for eclipse/eclipse-build-0.6.1.tar.bz2. => SHA256 Checksum OK for eclipse/eclipse-3.6.2-src.tar.bz2. => SHA256 Checksum OK for eclipse/apache-ant-1.7.1-bin.tar.bz2. => SHA256 Checksum OK for eclipse/junit3.8.2.zip. => SHA256 Checksum OK for eclipse/junit-4.8.2.jar. => SHA256 Checksum OK for eclipse/com.ibm.icu_4.2.1.v20100412.jar. => SHA256 Checksum mismatch for eclipse/com.jcraft.jsch_0.1.41.v200903070017.jar. => SHA256 Checksum OK for eclipse/javax.servlet_2.5.0.v200910301333.jar. => SHA256 Checksum mismatch for eclipse/javax.servlet.jsp_2.0.0.v200806031607.jar. => SHA256 Checksum OK for eclipse/org.apache.commons.codec_1.3.0.v20100518-1140.jar. => SHA256 Checksum OK for eclipse/org.apache.commons.el_1.0.0.v201004212143.jar. => SHA256 Checksum OK for eclipse/org.apache.commons.httpclient_3.1.0.v201005080502.jar. => SHA256 Checksum OK for eclipse/org.apache.commons.logging_1.0.4.v201005080501.jar. => SHA256 Checksum OK for eclipse/org.apache.jasper_5.5.17.v201004212143.jar. => SHA256 Checksum OK for eclipse/org.apache.lucene_1.9.1.v20100518-1140.jar. => SHA256 Checksum OK for eclipse/org.apache.lucene.analysis_1.9.1.v20100518-1140.jar. => SHA256 Checksum OK for eclipse/org.mortbay.jetty.util_6.1.23.v201004211559.jar. => SHA256 Checksum OK for eclipse/org.mortbay.jetty.server_6.1.23.v201004211559.jar. => SHA256 Checksum mismatch for eclipse/org.hamcrest.core_1.1.0.v20090501071000.jar. => SHA256 Checksum OK for eclipse/org.objectweb.asm_3.2.0.v200909071300.jar. => SHA256 Checksum OK for eclipse/org.sat4j.core_2.2.0.v20100429.jar. => SHA256 Checksum OK for eclipse/org.sat4j.pb_2.2.0.v20100429.jar. ===> Refetch for 1 more times files: eclipse/com.jcraft.jsch_0.1.41.v200903070017.jar eclipse/javax.servlet.jsp_2.0.0.v200806031607.jar eclipse/org.hamcrest.core_1.1.0.v20090501071000.jar eclipse is using libxul for gecko support, but you can change that by defining WITH_GECKO to the following values: libxul ===> Vulnerability check disabled, database not found ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for eclipse-3.5.2 => com.jcraft.jsch_0.1.41.v200903070017.jar doesn't seem to exist in /usr/ports/distfiles/eclipse. => Attempting to fetch http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/bundles/com.jcraft.jsch_0.1.41.v200903070017.jar fetch: http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/bundles/com.jcraft.jsch_0.1.41.v200903070017.jar: Requested Range Not Satisfiable => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/eclipse/com.jcraft.jsch_0.1.41.v200903070017.jar => javax.servlet.jsp_2.0.0.v200806031607.jar doesn't seem to exist in /usr/ports/distfiles/eclipse. => Attempting to fetch http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/bundles/javax.servlet.jsp_2.0.0.v200806031607.jar fetch: http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/bundles/javax.servlet.jsp_2.0.0.v200806031607.jar: Requested Range Not Satisfiable => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/eclipse/javax.servlet.jsp_2.0.0.v200806031607.jar => org.hamcrest.core_1.1.0.v20090501071000.jar doesn't seem to exist in /usr/ports/distfiles/eclipse. => Attempting to fetch http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/bundles/org.hamcrest.core_1.1.0.v20090501071000.jar fetch: http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/bundles/org.hamcrest.core_1.1.0.v20090501071000.jar: Requested Range Not Satisfiable => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/eclipse/org.hamcrest.core_1.1.0.v20090501071000.jar fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/eclipse/org.hamcrest.core_1.1.0.v20090501071000.jar: size mismatch: expected 27828, actual 27827 => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/eclipse and try again. *** Error code 1 Stop in /usr/ports/java/eclipse. *** Error code 1 Stop in /usr/ports/java/eclipse. *** Error code 1 Stop in /usr/ports/java/eclipse. >How-To-Repeat: Attempt to build the port. Trying to disable the size/checksum checks doesn't result in a buildable port either. Is anyone maintaining this port? >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 18:20:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 334AD106566B for ; Fri, 30 Dec 2011 18: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 0C1A88FC14 for ; Fri, 30 Dec 2011 18:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUIKCnH094389 for ; Fri, 30 Dec 2011 18:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUIKCWU094385; Fri, 30 Dec 2011 18:20:12 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 18:20:12 GMT Resent-Message-Id: <201112301820.pBUIKCWU094385@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, Kurt Jaeger Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16A7E106566B for ; Fri, 30 Dec 2011 18:14:28 +0000 (UTC) (envelope-from pi@zfs.opsec.eu) Received: from zfs.opsec.eu (zfs.opsec.eu [IPv6:2001:14f8:200:4::18]) by mx1.freebsd.org (Postfix) with ESMTP id C625B8FC17 for ; Fri, 30 Dec 2011 18:14:27 +0000 (UTC) Received: from pi by zfs.opsec.eu with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1RggyK-000MWx-Ir; Fri, 30 Dec 2011 19:14:28 +0100 Message-Id: Date: Fri, 30 Dec 2011 19:14:28 +0100 From: Kurt Jaeger To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kamikaze@bsdforen.de Subject: ports/163721: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kurt Jaeger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 18:20:13 -0000 >Number: 163721 >Category: ports >Synopsis: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.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: Fri Dec 30 18:20:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kurt Jaeger >Release: FreeBSD 9.0-BETA2 amd64 >Organization: - >Environment: System: FreeBSD zfs.opsec.eu 9.0-BETA2 FreeBSD 9.0-BETA2 #0 r216425M: Thu Sep 15 10:20:53 CEST 2011 pi@zfs.opsec.eu:/usr/obj/usr/src/sys/VPNKERN amd64 >Description: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.1 to allow mplayer to compile with bluray support >How-To-Repeat: n/a >Fix: diff -r -u multimedia/libbluray/Makefile /usr/home/pi/myp/multimedia/libbluray/Makefile --- multimedia/libbluray/Makefile 2011-02-21 11:39:47.000000000 +0100 +++ /usr/home/pi/myp/multimedia/libbluray/Makefile 2011-12-30 08:39:18.000000000 +0100 @@ -6,9 +6,9 @@ # PORTNAME= libbluray -PORTVERSION= 0.2.20110219 +PORTVERSION= 0.2.1 CATEGORIES= multimedia -MASTER_SITES= CRITICAL +MASTER_SITES= ftp://ftp.videolan.org/pub/videolan/libbluray/0.2.1/ MAINTAINER= kamikaze@bsdforen.de COMMENT= Blu-Ray discs playback library for media players @@ -20,6 +20,7 @@ # libiconv.so.3 USE_ICONV= yes USE_LDCONFIG= yes +USE_BZIP2= yes USE_AUTOTOOLS= autoconf aclocal automake libtool HAS_CONFIGURE= yes diff -r -u multimedia/libbluray/distinfo /usr/home/pi/myp/multimedia/libbluray/distinfo --- multimedia/libbluray/distinfo 2011-02-21 11:39:47.000000000 +0100 +++ /usr/home/pi/myp/multimedia/libbluray/distinfo 2011-12-30 08:39:25.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (libbluray-0.2.20110219.tar.gz) = f14c83886d82b1ba36e97aa5912e44775b72396c73bb7da6e8ef879615d31f9d -SIZE (libbluray-0.2.20110219.tar.gz) = 237648 +SHA256 (libbluray-0.2.1.tar.bz2) = 20eb1d352e9d26e8b5b639f82c218a0c350b78cdbcb741f89d237e2202bd113a +SIZE (libbluray-0.2.1.tar.bz2) = 396405 Only in multimedia/libbluray: files >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 18:20:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A740106566C; Fri, 30 Dec 2011 18:20: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 D471F8FC0A; Fri, 30 Dec 2011 18:20:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUIKOP3094692; Fri, 30 Dec 2011 18:20:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUIKOsg094686; Fri, 30 Dec 2011 18:20:24 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 18:20:24 GMT Message-Id: <201112301820.pBUIKOsg094686@freefall.freebsd.org> To: fbsd-ports@opsec.eu, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163721: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.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, 30 Dec 2011 18:20:25 -0000 Synopsis: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.1 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Dec 30 18:20:23 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163721 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 18:30:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56BDC106566B for ; Fri, 30 Dec 2011 18:30: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 44D508FC16 for ; Fri, 30 Dec 2011 18:30:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUIUKBa003304 for ; Fri, 30 Dec 2011 18:30:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUIUKvt003301; Fri, 30 Dec 2011 18:30:20 GMT (envelope-from gnats) Date: Fri, 30 Dec 2011 18:30:20 GMT Message-Id: <201112301830.pBUIUKvt003301@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163721: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.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: Fri, 30 Dec 2011 18:30:20 -0000 The following reply was made to PR ports/163721; it has been noted by GNATS. From: Edwin Groothuis To: kamikaze@bsdforen.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/163721: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.1 Date: Fri, 30 Dec 2011 18:20:20 UT Maintainer of multimedia/libbluray, Please note that PR ports/163721 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/163721 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 18:30:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6587C1065670 for ; Fri, 30 Dec 2011 18:30: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 26A268FC12; Fri, 30 Dec 2011 18:30:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUIUL9v003361; Fri, 30 Dec 2011 18:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUIULcD003358; Fri, 30 Dec 2011 18:30:21 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 18:30:21 GMT Resent-Message-Id: <201112301830.pBUIULcD003358@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Cc: d@delphij.net Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Xin LI Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24D291065672 for ; Fri, 30 Dec 2011 18:23:41 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12B808FC08 for ; Fri, 30 Dec 2011 18:23:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUINe65002837 for ; Fri, 30 Dec 2011 18:23:40 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUINeos002836; Fri, 30 Dec 2011 18:23:40 GMT (envelope-from delphij) Message-Id: <201112301823.pBUINeos002836@freefall.freebsd.org> Date: Fri, 30 Dec 2011 18:23:40 GMT From: Xin LI To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 X-GNATS-Notify: d@delphij.net Cc: Subject: ports/163722: sysutils/gnome-settings-daemon: crash with abort trap when monitor changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Xin LI List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2011 18:30:21 -0000 >Number: 163722 >Category: ports >Synopsis: sysutils/gnome-settings-daemon: crash with abort trap when monitor changes >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: Fri Dec 30 18:30:20 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Xin LI >Release: FreeBSD 10.0-CURRENT amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD delta.delphij.net 10.0-CURRENT FreeBSD 10.0-CURRENT #23 r228966M: Thu Dec 29 12:57:14 PST 2011 delphij@delta.delphij.net:/usr/obj/usr/src/sys/DELTA amd64 The system is a Dell Laitude D630n with nVidia NVS135M. >Description: When physical display changes, e.g. connecting to an external monitor before boot, or disconect it, the first 'startx' will crash: pid 1861 (gnome-settings-daem), uid 1001: exited on signal 6 >How-To-Repeat: >Fix: It seems starting gnome-control-center, in "Monitors" click "Apply", then gnome-settings-daemon can be started properly. My gut call is that there is some invalid assert in gnome-settings-daemon but I haven't investigated that much. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 18:30:38 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E39BF106568A; Fri, 30 Dec 2011 18:30:38 +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 B84AD8FC13; Fri, 30 Dec 2011 18:30:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUIUcOU004990; Fri, 30 Dec 2011 18:30:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUIUcsP004979; Fri, 30 Dec 2011 18:30:38 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 18:30:38 GMT Message-Id: <201112301830.pBUIUcsP004979@freefall.freebsd.org> To: d@delphij.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163722: sysutils/gnome-settings-daemon: crash with abort trap when monitor 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: Fri, 30 Dec 2011 18:30:39 -0000 Synopsis: sysutils/gnome-settings-daemon: crash with abort trap when monitor changes Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 30 18:30:37 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163722 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 18:42:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6296D106566B; Fri, 30 Dec 2011 18:42:21 +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 38D1F8FC20; Fri, 30 Dec 2011 18:42:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUIgLUD021754; Fri, 30 Dec 2011 18:42:21 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUIgLtU021750; Fri, 30 Dec 2011 18:42:21 GMT (envelope-from linimon) Date: Fri, 30 Dec 2011 18:42:21 GMT Message-Id: <201112301842.pBUIgLtU021750@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-eclipse@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163720: java/eclipse doesn't 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, 30 Dec 2011 18:42:21 -0000 Old Synopsis: eclipse port doesn't build New Synopsis: java/eclipse doesn't build Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-eclipse Responsible-Changed-By: linimon Responsible-Changed-When: Fri Dec 30 18:41:28 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=163720 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 22:24:54 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52D67106566B; Fri, 30 Dec 2011 22:24:54 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 29A5E8FC13; Fri, 30 Dec 2011 22:24:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUMOs5d021818; Fri, 30 Dec 2011 22:24:54 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUMOsI4021814; Fri, 30 Dec 2011 22:24:54 GMT (envelope-from beech) Date: Fri, 30 Dec 2011 22:24:54 GMT Message-Id: <201112302224.pBUMOsI4021814@freefall.freebsd.org> To: beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org From: beech@FreeBSD.org Cc: Subject: Re: ports/163639: [PATCH] mail/qpopper: use RC_SUBR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 22:24:54 -0000 Synopsis: [PATCH] mail/qpopper: use RC_SUBR Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: beech Responsible-Changed-When: Fri Dec 30 22:24:01 UTC 2011 Responsible-Changed-Why: I'll take it http://www.freebsd.org/cgi/query-pr.cgi?pr=163639 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 22:40:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E9E91065672 for ; Fri, 30 Dec 2011 22: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 342928FC0C for ; Fri, 30 Dec 2011 22:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUMeC7w032513 for ; Fri, 30 Dec 2011 22:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUMeCXC032512; Fri, 30 Dec 2011 22:40:12 GMT (envelope-from gnats) Resent-Date: Fri, 30 Dec 2011 22:40:12 GMT Resent-Message-Id: <201112302240.pBUMeCXC032512@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DD841065670 for ; Fri, 30 Dec 2011 22:40:04 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 2382D8FC14 for ; Fri, 30 Dec 2011 22:40:04 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id pBUMdxFo013734 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 30 Dec 2011 17:40:00 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id pBUMdvX8068668; Fri, 30 Dec 2011 17:39:57 -0500 (EST) (envelope-from steve) Message-Id: <201112302239.pBUMdvX8068668@meatwad.mouf.net> Date: Fri, 30 Dec 2011 17:39:57 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: mbr@FreeBSD.org Subject: ports/163725: [PATCH] emulators/open-vm-tools: Update to latest version 2011.12.20-562307 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 22:40:12 -0000 >Number: 163725 >Category: ports >Synopsis: [PATCH] emulators/open-vm-tools: Update to latest version 2011.12.20-562307 >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 Dec 30 22:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #8: Mon Dec 19 15:53:28 EST 2011 >Description: Attached patch updates port to latest version. This would allow closing PR ports/160941. If maintainer would like, I can commit it. Added file(s): - files/patch-vmblockmounter-Makefile.in Removed file(s): - files/patch-services-Makefile Port maintainer (mbr@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- open-vm-tools-562307.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/emulators/open-vm-tools/Makefile,v retrieving revision 1.53 diff -u -u -r1.53 Makefile --- Makefile 7 Nov 2011 04:24:54 -0000 1.53 +++ Makefile 30 Dec 2011 22:37:23 -0000 @@ -8,8 +8,8 @@ PORTNAME= open-vm-tools PORTVERSION= ${BUILD_VER} CATEGORIES= emulators kld -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/stable-8.6.x -DISTNAME= open-vm-tools-${RELEASE_VER}-${BUILD_VER} +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${RELEASE_DATE} +DISTNAME= open-vm-tools-${RELEASE_DATE}-${BUILD_VER} MAINTAINER= mbr@FreeBSD.org COMMENT?= Open VMware tools for FreeBSD VMware guests @@ -17,10 +17,10 @@ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -RELEASE_VER= 8.6.0 -BUILD_VER= 425873 +RELEASE_DATE= 2011.12.20 +BUILD_VER= 562307 -WRKSRC= ${WRKDIR}/open-vm-tools-${RELEASE_VER}-${BUILD_VER} +WRKSRC= ${WRKDIR}/open-vm-tools-${RELEASE_DATE}-${BUILD_VER} GNU_CONFIGURE= yes USE_LDCONFIG= yes Index: distinfo =================================================================== RCS file: /home/pcvs/ports/emulators/open-vm-tools/distinfo,v retrieving revision 1.13 diff -u -u -r1.13 distinfo --- distinfo 14 Oct 2011 20:12:20 -0000 1.13 +++ distinfo 30 Dec 2011 22:37:23 -0000 @@ -1,2 +1,2 @@ -SHA256 (open-vm-tools-8.6.0-425873.tar.gz) = 205768023fdf77962684f275f74c98644fba97961cb2afaa0a7d8aec5d074ebf -SIZE (open-vm-tools-8.6.0-425873.tar.gz) = 3648242 +SHA256 (open-vm-tools-2011.12.20-562307.tar.gz) = 421c396d4cc345165d1f4076792c62ae95cbcd06007e5a4e930c021f90fee570 +SIZE (open-vm-tools-2011.12.20-562307.tar.gz) = 3511859 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/emulators/open-vm-tools/pkg-plist,v retrieving revision 1.27 diff -u -u -r1.27 pkg-plist --- pkg-plist 14 Oct 2011 20:12:20 -0000 1.27 +++ pkg-plist 30 Dec 2011 22:37:23 -0000 @@ -4,6 +4,8 @@ bin/vmware-xferlogs bin/vmtoolsd bin/vmware-toolbox-cmd +%%X11%%etc/xdg/autostart/vmware-user.desktop +etc/pam.d/vmtoolsd %%FUSE%%bin/vmware-vmblock-fuse lib/open-vm-tools/plugins/vmsvc/libguestInfo.so lib/open-vm-tools/plugins/vmsvc/libpowerOps.so @@ -14,7 +16,6 @@ lib/open-vm-tools/plugins/common/libvix.so lib/open-vm-tools/plugins/common/libvix.la %%X11%%lib/open-vm-tools/plugins/vmusr/libresolutionSet.so -%%X11%%lib/open-vm-tools/plugins/vmusr/libvixUser.so %%X11%%lib/open-vm-tools/plugins/vmusr/libdesktopEvents.so %%X11%%lib/open-vm-tools/plugins/vmusr/libdndcp.so lib/libhgfs.a @@ -41,16 +42,20 @@ include/vmGuestLib/vm_basic_types.h @exec mkdir -p %D/lib/vmware-tools/modules/input sbin/mount_vmhgfs -%%X11%%bin/vmware-toolbox +sbin/mount_vmblock %%X11%%bin/vmware-user-suid-wrapper share/vmware-tools/poweroff-vm-default share/vmware-tools/poweron-vm-default share/vmware-tools/resume-vm-default share/vmware-tools/suspend-vm-default share/vmware-tools/vm-support -share/open-vm-tools/messages/de/toolbox.vmsg -share/open-vm-tools/messages/ja/toolbox.vmsg -share/open-vm-tools/messages/zh_CN/toolbox.vmsg +share/open-vm-tools/messages/de/toolboxcmd.vmsg +share/open-vm-tools/messages/de/vmtoolsd.vmsg +share/open-vm-tools/messages/ja/toolboxcmd.vmsg +share/open-vm-tools/messages/ja/vmtoolsd.vmsg +share/open-vm-tools/messages/ko/toolboxcmd.vmsg +share/open-vm-tools/messages/ko/vmtoolsd.vmsg +share/open-vm-tools/messages/zh_CN/toolboxcmd.vmsg share/vmware-tools/statechange.subr share/vmware-tools/scripts/vmware/network @exec kldxref %D/lib/vmware-tools/modules/drivers 2>/dev/null || true @@ -62,8 +67,11 @@ @dirrmtry lib/vmware-tools/modules @dirrmtry lib/vmware-tools @dirrmtry etc/vmware-tools +@dirrmtry etc/xdg/autostart +@dirrmtry etc/xdg @dirrmtry share/open-vm-tools/messages/de @dirrmtry share/open-vm-tools/messages/ja +@dirrmtry share/open-vm-tools/messages/ko @dirrmtry share/open-vm-tools/messages/zh_CN @dirrmtry share/open-vm-tools/messages @dirrmtry share/open-vm-tools/scripts/vmware Index: files/patch-services-Makefile =================================================================== RCS file: files/patch-services-Makefile diff -N files/patch-services-Makefile --- files/patch-services-Makefile 15 Nov 2010 23:57:51 -0000 1.4 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,22 +0,0 @@ ---- services/Makefile.am.orig 2009-02-28 20:48:46.000000000 +0100 -+++ services/Makefile.am 2009-02-28 20:49:28.000000000 +0100 -@@ -20,6 +20,5 @@ - SUBDIRS += plugins - - install-exec-local: -- mkdir -p $(DESTDIR)/etc/vmware-tools -- ln -sf `dirname $(VMSVC_PLUGIN_INSTALLDIR)` $(DESTDIR)/etc/vmware-tools/plugins -+ mkdir -p $(prefix)/etc/vmware-tools - ---- services/Makefile.in.orig 2009-02-28 20:48:52.000000000 +0100 -+++ services/Makefile.in 2009-02-28 20:49:46.000000000 +0100 -@@ -642,8 +642,7 @@ - - - install-exec-local: -- mkdir -p $(DESTDIR)/etc/vmware-tools -- ln -sf `dirname $(VMSVC_PLUGIN_INSTALLDIR)` $(DESTDIR)/etc/vmware-tools/plugins -+ mkdir -p $(prefix)/etc/vmware-tools - - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. Index: files/patch-vmblockmounter-Makefile.in =================================================================== RCS file: files/patch-vmblockmounter-Makefile.in diff -N files/patch-vmblockmounter-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-vmblockmounter-Makefile.in 30 Dec 2011 22:37:23 -0000 @@ -0,0 +1,15 @@ +--- vmblockmounter/Makefile.in.orig 2011-12-30 22:07:00.000000000 +0000 ++++ vmblockmounter/Makefile.in 2011-12-30 22:09:04.000000000 +0000 +@@ -598,9 +598,9 @@ + @FREEBSD_TRUE@install-exec-hook: + @FREEBSD_TRUE@ mv $(DESTDIR)$(sbindir)/mount.vmblock \ + @FREEBSD_TRUE@ $(DESTDIR)$(sbindir)/mount_vmblock +-@FREEBSD_TRUE@ -$(MKDIR_P) $(DESTDIR)/sbin +-@FREEBSD_TRUE@ -$(LN_S) $(DESTDIR)$(sbindir)/mount_vmblock \ +-@FREEBSD_TRUE@ $(DESTDIR)/sbin/mount_vmblock &> /dev/null ++#@FREEBSD_TRUE@ -$(MKDIR_P) $(DESTDIR)/sbin ++#@FREEBSD_TRUE@ -$(LN_S) $(DESTDIR)$(sbindir)/mount_vmblock \ ++#@FREEBSD_TRUE@ $(DESTDIR)/sbin/mount_vmblock &> /dev/null + @FREEBSD_TRUE@uninstall-hook: + @FREEBSD_TRUE@ rm -f $(DESTDIR)$(sbindir)/mount_vmblock + @FREEBSD_FALSE@install-exec-hook: --- open-vm-tools-562307.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 30 22:40:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17051106564A; Fri, 30 Dec 2011 22:40:24 +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 E12268FC17; Fri, 30 Dec 2011 22:40:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBUMeNQd032942; Fri, 30 Dec 2011 22:40:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBUMeNx7032933; Fri, 30 Dec 2011 22:40:23 GMT (envelope-from edwin) Date: Fri, 30 Dec 2011 22:40:23 GMT Message-Id: <201112302240.pBUMeNx7032933@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mbr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163725: [PATCH] emulators/open-vm-tools: Update to latest version 2011.12.20-562307 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 30 Dec 2011 22:40:24 -0000 Synopsis: [PATCH] emulators/open-vm-tools: Update to latest version 2011.12.20-562307 Responsible-Changed-From-To: freebsd-ports-bugs->mbr Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 30 22:40:23 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163725 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 01:20:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 660DB106566B for ; Sat, 31 Dec 2011 01: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 4D7838FC0C for ; Sat, 31 Dec 2011 01:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV1K7cd081735 for ; Sat, 31 Dec 2011 01:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV1K7U1081734; Sat, 31 Dec 2011 01:20:07 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 01:20:07 GMT Message-Id: <201112310120.pBV1K7U1081734@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: wen heping Cc: Subject: Re: ports/163721: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.1 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: Sat, 31 Dec 2011 01:20:07 -0000 The following reply was made to PR ports/163721; it has been noted by GNATS. From: wen heping To: bug-followup@FreeBSD.org, fbsd-ports@opsec.eu Cc: Subject: Re: ports/163721: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.1 Date: Sat, 31 Dec 2011 09:12:48 +0800 --f46d04479f133f293804b5590c91 Content-Type: text/plain; charset=UTF-8 Hi, Here PORTEPOCH should be bumped. wen --f46d04479f133f293804b5590c91 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi,

=C2=A0 =C2=A0 Here=C2=A0PORTEPOCH should be bumped.

wen
--f46d04479f133f293804b5590c91-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 01:30:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 115F1106566B for ; Sat, 31 Dec 2011 01: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 F35FE8FC08 for ; Sat, 31 Dec 2011 01:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV1UF7l090108 for ; Sat, 31 Dec 2011 01:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV1UFNF090103; Sat, 31 Dec 2011 01:30:15 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 01:30:15 GMT Message-Id: <201112310130.pBV1UFNF090103@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Craig Leres Cc: Subject: Re: ports/156143: New port: devel/arduino-mk: Build Arduino sketches from the command line X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Craig Leres List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2011 01:30:16 -0000 The following reply was made to PR ports/156143; it has been noted by GNATS. From: Craig Leres To: bug-followup@FreeBSD.org, leres@ee.lbl.gov Cc: Subject: Re: ports/156143: New port: devel/arduino-mk: Build Arduino sketches from the command line Date: Fri, 30 Dec 2011 17:23:03 -0800 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 > patch appears broken. please resend and CC me I just tried a cut-n-paste from: http://www.freebsd.org/cgi/query-pr.cgi?pr=156143 to a file and ran /bin/sh on it and it re-created all the files, undamaged. I used shar(1) to create it; how were you guys trying to unpack it? In the 9 months passed since I submitted this, arduino 1.0 came out and there have been two new versions of arduino-mk; please download an updated version (0.6) of the port from here: http://xse.com/leres/software/arduino/arduino-mk/arduino-mk-0.6.tar.gz http://xse.com/leres/software/arduino/arduino-mk/arduino-mk-0.6.tar.gz.asc Craig -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk7+Y/cACgkQWxlAhAje3Jsq9wCgj/jMx2mQ5MCpESD2Cy4WfguY 4JIAnAogKvHXicZpeZLpfckSwQQd6vFX =1kZq -----END PGP SIGNATURE----- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 01:40:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F413106566C for ; Sat, 31 Dec 2011 01: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 63EEE8FC14 for ; Sat, 31 Dec 2011 01:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV1e7vv000445 for ; Sat, 31 Dec 2011 01:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV1e72X000444; Sat, 31 Dec 2011 01:40:07 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 01:40:07 GMT Resent-Message-Id: <201112310140.pBV1e72X000444@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, Stephen Hurd Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 909521065680 for ; Sat, 31 Dec 2011 01:36:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 654138FC17 for ; Sat, 31 Dec 2011 01:36:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBV1acAV023921 for ; Sat, 31 Dec 2011 01:36:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBV1acIY023920; Sat, 31 Dec 2011 01:36:38 GMT (envelope-from nobody) Message-Id: <201112310136.pBV1acIY023920@red.freebsd.org> Date: Sat, 31 Dec 2011 01:36:38 GMT From: Stephen Hurd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163726: sysutils/hal fills device_revision_bcd incorrectly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 01:40:07 -0000 >Number: 163726 >Category: ports >Synopsis: sysutils/hal fills device_revision_bcd incorrectly >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 31 01:40:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Stephen Hurd >Release: 8.2-RELEASE >Organization: >Environment: FreeBSD stephen.hurd.local 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: The probe-usb2-device.c:191 (as patched) fills the device revision BCD field using the USB bcd data, resulting in incorrect data being used for matching and the device revision being unavailable to clients. >How-To-Repeat: Compare the output of "lhsal" usb_devuce.device_revision_bcd fields to the corresponding "usbconfig dump_device_desc" bcdDevice field. >Fix: Change line 191 to use bcdDevice rather than bcdUSB. Updated patch for files directory attached. Patch attached with submission follows: --- hald/freebsd/probing/probe-usb2-device.c.orig 2009-08-24 05:42:29.000000000 -0700 +++ hald/freebsd/probing/probe-usb2-device.c 2011-12-30 17:20:52.000000000 -0800 @@ -148,15 +148,16 @@ bcdspeed = 0x01200; break; case LIBUSB20_SPEED_HIGH: + case LIBUSB20_SPEED_VARIABLE: speed = 480.0; bcdspeed = 0x48000; break; case LIBUSB20_SPEED_SUPER: - speed = 4800.0; - bcdspeed = 0x480000; + speed = 5000.0; + bcdspeed = 0x500000; break; default: - ; + break; } libhal_device_set_property_double(hfp_ctx, hfp_udi, "usb_device.speed", @@ -169,6 +170,9 @@ case UD_USB_2_0: version = 2.0; break; + case 0x0250: + version = 2.5; + break; case UD_USB_3_0: version = 3.0; break; @@ -184,7 +188,7 @@ libhal_device_set_property_int(hfp_ctx, hfp_udi, "usb_device.vendor_id", di.udi_vendorNo, &hfp_error); libhal_device_set_property_int(hfp_ctx, hfp_udi, - "usb_device.device_revision_bcd", ddesc->bcdUSB, &hfp_error); + "usb_device.device_revision_bcd", ddesc->bcdDevice, &hfp_error); libhal_device_set_property_string(hfp_ctx, hfp_udi, "usb_device.serial", di.udi_serial, &hfp_error); libhal_device_set_property_string(hfp_ctx, hfp_udi, >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 01:40:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D29DD106566C; Sat, 31 Dec 2011 01: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 A8E6C8FC08; Sat, 31 Dec 2011 01:40:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV1eGsr000645; Sat, 31 Dec 2011 01:40:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV1eGPh000635; Sat, 31 Dec 2011 01:40:16 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 01:40:16 GMT Message-Id: <201112310140.pBV1eGPh000635@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163726: sysutils/hal fills device_revision_bcd incorrectly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 01:40:16 -0000 Synopsis: sysutils/hal fills device_revision_bcd incorrectly Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 01:40:16 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163726 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 03:00:34 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B761106566B for ; Sat, 31 Dec 2011 03:00:34 +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 28A628FC14 for ; Sat, 31 Dec 2011 03:00:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV30XFe072162 for ; Sat, 31 Dec 2011 03:00:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV30Xri072160; Sat, 31 Dec 2011 03:00:33 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 03:00:33 GMT Message-Id: <201112310300.pBV30Xri072160@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Devin Teske Cc: Subject: Re: ports/163679: [NEW PORT] sysutils/sysrc: Utility to get or set rc.conf(5) values X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Devin Teske List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2011 03:00:34 -0000 The following reply was made to PR ports/163679; it has been noted by GNATS. From: Devin Teske To: , Cc: Marco Steinbach , Stefan Esser Subject: Re: ports/163679: [NEW PORT] sysutils/sysrc: Utility to get or set rc.conf(5) values Date: Fri, 30 Dec 2011 18:50:08 -0800 --Apple-Mail-2--899741983 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="us-ascii" Marco Steinbach found a bug in 9.0-CURRENT. The bug has been fixed in version 3.2.1 of sysrc. A new shar is attached, updating the port Makefile as necessary. Marco also found a portion of the man-page to be confusing and adds a cront= ab(5) example to the man-page. Stefan Esser also pointed out some issues in the man-page that were address= ed in this new revision. Thanks again for reviewing! --=20 Devin _____________ The information contained in this message is proprietary and/or confidentia= l. If you are not the intended recipient, please: (i) delete the message an= d all copies; (ii) do not disclose, distribute or use the message in any ma= nner; and (iii) notify the sender immediately. In addition, please be aware= that any message addressed to our domain is subject to archiving and revie= w by persons other than the intended recipient. Thank you. --Apple-Mail-2--899741983 Content-Disposition: attachment; filename="sysrc.shar" Content-Type: application/octet-stream; name="sysrc.shar" Content-Transfer-Encoding: 7bit # 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: # # sysrc # sysrc/Makefile # sysrc/distinfo # sysrc/pkg-descr # echo c - sysrc mkdir -p sysrc > /dev/null 2>&1 echo x - sysrc/Makefile sed 's/^X//' >sysrc/Makefile << 'a9f17ccaa2f1f1e163da334e1a54e608' X# New ports collection makefile for: sysrc X# Date created: 28 December 2011 X# Whom: Devin Teske X# X# $FreeBSD$ X# X XPORTNAME= sysrc XPORTVERSION= 3.2.1 XCATEGORIES= sysutils XMASTER_SITES= http://druidbsd.sourceforge.net/download/ X XMAINTAINER= dteske@vicor.com XCOMMENT= Utility to get or set rc.conf(5) values X XNO_BUILD= yes X XPLIST_FILES= sbin/${PORTNAME} XMAN8= ${PORTNAME}.8 X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin/ X ${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8/ X X.include a9f17ccaa2f1f1e163da334e1a54e608 echo x - sysrc/distinfo sed 's/^X//' >sysrc/distinfo << 'aac06a6f58bdae28f4fd75cf48d7bb8c' XSHA256 (sysrc-3.2.1.tar.gz) = bd512f4c21d6f3d8394787d97d90217f32a48f09d166de70f04d450b1c075073 XSIZE (sysrc-3.2.1.tar.gz) = 11852 aac06a6f58bdae28f4fd75cf48d7bb8c echo x - sysrc/pkg-descr sed 's/^X//' >sysrc/pkg-descr << '77c1c3577dad93d6a4a2d821a0245036' XSysrc is a robust utility for managing rc.conf(5) from the command-line without Xa text-editor. Feature-highlights include (but are not limited to): X - Environment variable taint prevention X - Shell taint checking (aka boot-regression prevention) X - File-access race-condition prevention X - File-structure sensitivity/preservation X - Intelligent syntax handling X - Execution performance optimizations X - Detailed safety measures X - Support for jails (both legacy and current) X XWWW: http://druidbsd.sourceforge.net/ 77c1c3577dad93d6a4a2d821a0245036 exit --Apple-Mail-2--899741983-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 04:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84C171065676 for ; Sat, 31 Dec 2011 04: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 604758FC16 for ; Sat, 31 Dec 2011 04:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV4KBiB045916 for ; Sat, 31 Dec 2011 04:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV4KBZl045915; Sat, 31 Dec 2011 04:20:11 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 04:20:11 GMT Resent-Message-Id: <201112310420.pBV4KBZl045915@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 6E2AA1065673 for ; Sat, 31 Dec 2011 04:17:22 +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 421208FC0A for ; Sat, 31 Dec 2011 04:17:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV4HMSO045574 for ; Sat, 31 Dec 2011 04:17:22 GMT (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV4HMYj045573; Sat, 31 Dec 2011 04:17:22 GMT (envelope-from dougb) Message-Id: <201112310417.pBV4HMYj045573@freefall.freebsd.org> Date: Sat, 31 Dec 2011 04:17:22 GMT From: Doug Barton To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163728: Improve MySQL options for lang/newlisp 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: Sat, 31 Dec 2011 04:20:11 -0000 >Number: 163728 >Category: ports >Synopsis: Improve MySQL options for lang/newlisp >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 Dec 31 04:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Doug Barton >Release: FreeBSD 8.2-STABLE i386 >Organization: AAAG >Environment: DNA >Description: Currently the port has 2 OPTIONS for specific versions of MySQL. It's better to allow the infrastructure to make the appropriate decision for which version to use. The attached patch removes the specific MySQL versions for the more generic option. This will allow the infrastructure to detect and use an already installed version, or to use the default (currently 55) if there is no version currently installed. I've tested this with 3 states, MYSQL OPTION off, with it on and no MySQL installed, and on with an existing version. It does the right thing for all 3 states. I've also tested the resulting binary with mariadb (MYSQL_VER= 52) and it seems fine. If there is a specific version that it does not work with, it can be eliminated with IGNORE_WITH_MYSQL. >How-To-Repeat: See above. >Fix: Apply the following patch. Index: Makefile =================================================================== RCS file: /home/pcvs/ports/lang/newlisp/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- Makefile 22 Dec 2011 14:38:03 -0000 1.27 +++ Makefile 31 Dec 2011 03:56:01 -0000 @@ -32,8 +32,7 @@ newlisp_index.html newlisp_manual.html \ OPTIONS= GMP "Enable GMP math library support" off \ - MYSQL5 "Build with mysql 5.0.x support" off \ - MYSQL51 "Build with mysql 5.1.x support" off \ + MYSQL "Build with mysql support" off \ PGSQL "Build with postgresql support" off \ SQLITE "Build with sqlite support" off \ GUISERV "Install GUI server (in JAVA)" off @@ -52,22 +51,12 @@ PLIST_SUB+= GMP="@comment " .endif -.if defined(WITH_MYSQL5) -USE_MYSQL=yes -WITH_MYSQL_VER= 50 +.if defined(WITH_MYSQL) +USE_MYSQL= yes MODULES+= mysql -PLIST_SUB+= MYSQL5="" +PLIST_SUB+= MYSQL="" .else -PLIST_SUB+= MYSQL5="@comment " -.endif - -.if defined(WITH_MYSQL51) -USE_MYSQL=yes -WITH_MYSQL_VER= 51 -MODULES+= mysql -PLIST_SUB+= MYSQL51="" -.else -PLIST_SUB+= MYSQL51="@comment " +PLIST_SUB+= MYSQL="@comment " .endif .if defined(WITH_PGSQL) Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/lang/newlisp/pkg-plist,v retrieving revision 1.15 diff -u -r1.15 pkg-plist --- pkg-plist 22 Dec 2011 14:38:03 -0000 1.15 +++ pkg-plist 31 Dec 2011 03:56:01 -0000 @@ -75,8 +75,7 @@ %%DATADIR%%/modules/infix.lsp %%DATADIR%%/modules/json.lsp %%DATADIR%%/modules/macro.lsp -%%MYSQL51%%%%DATADIR%%/modules/mysql.lsp -%%MYSQL5%%%%DATADIR%%/modules/mysql.lsp +%%MYSQL%%%%DATADIR%%/modules/mysql.lsp %%DATADIR%%/modules/odbc.lsp %%DATADIR%%/modules/pop3.lsp %%PGSQL%%%%DATADIR%%/modules/postgres.lsp >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 04:20:33 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66797106566B; Sat, 31 Dec 2011 04:20:33 +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 3C5A48FC19; Sat, 31 Dec 2011 04:20:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV4KXqv046390; Sat, 31 Dec 2011 04:20:33 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV4KXbu046381; Sat, 31 Dec 2011 04:20:33 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 04:20:33 GMT Message-Id: <201112310420.pBV4KXbu046381@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163728: Improve MySQL options for lang/newlisp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 04:20:33 -0000 Synopsis: Improve MySQL options for lang/newlisp Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 04:20:32 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163728 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 04:30:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BCD6106566B for ; Sat, 31 Dec 2011 04: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 68C858FC0C for ; Sat, 31 Dec 2011 04:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV4UDai054383 for ; Sat, 31 Dec 2011 04:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV4UDUh054380; Sat, 31 Dec 2011 04:30:13 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 04:30:13 GMT Resent-Message-Id: <201112310430.pBV4UDUh054380@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, Jake Smith Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03E52106566B for ; Sat, 31 Dec 2011 04:20:23 +0000 (UTC) (envelope-from jake@xz.cx) Received: from fs.xz.cx (fs.xz.cx [81.31.102.2]) by mx1.freebsd.org (Postfix) with ESMTP id E2A158FC18 for ; Sat, 31 Dec 2011 04:20:21 +0000 (UTC) Received: from fs.xz.cx (localhost [127.0.0.1]) by fs.xz.cx (8.14.4/8.14.4) with ESMTP id pBV3w6QD009733 for ; Sat, 31 Dec 2011 03:58:06 GMT (envelope-from jake@xz.cx) Received: (from root@localhost) by fs.xz.cx (8.14.4/8.14.4/Submit) id pBV3w5XA009732; Sat, 31 Dec 2011 03:58:05 GMT (envelope-from jake@xz.cx) Message-Id: <201112310358.pBV3w5XA009732@fs.xz.cx> Date: Sat, 31 Dec 2011 03:58:05 GMT From: Jake Smith To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163729: [MAINTAINER] devel/libk8055: [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: Sat, 31 Dec 2011 04:30:13 -0000 >Number: 163729 >Category: ports >Synopsis: [MAINTAINER] devel/libk8055: [SUMMARIZE CHANGES] >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 Dec 31 04:30:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jake Smith >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD fs.xz.cx 8.2-RELEASE FreeBSD 8.2-RELEASE #0 r219081M: Wed Mar 2 08:29:52 >Description: [DESCRIBE CHANGES] Added file(s): - files/patch-Makefile Fixed compile with CLANG Fixed broken on 7.x, libusb depend added Added Custom LOCALBASE and PREFIX for QATty Will only fallback to gcc if no other compiler is set Fully tested with redports.org >How-To-Repeat: >Fix: --- libk8055-0.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/libk8055/Makefile /usr/home/jake/redports/export/jake/devel/libk8055/Makefile --- /usr/ports/devel/libk8055/Makefile 2011-12-08 20:19:29.000000000 +0000 +++ /usr/home/jake/redports/export/jake/devel/libk8055/Makefile 2011-12-31 03:27:04.767185000 +0000 @@ -17,6 +17,7 @@ MAN1= k8055.1 MANCOMPRESSED= yes USE_LDCONFIG= yes +USE_CSTD= gnu89 PLIST_FILES= bin/k8055 \ lib/libk8055.c \ @@ -27,8 +28,10 @@ .include -.if ${OSVERSION} < 800000 -BROKEN= does not compile on FreeBSD 7.X +.if ${OSVERSION} < 800069 +LIB_DEPENDS+= usb:${PORTSDIR}/devel/libusb +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib .endif post-patch: diff -ruN --exclude=CVS /usr/ports/devel/libk8055/files/patch-Makefile /usr/home/jake/redports/export/jake/devel/libk8055/files/patch-Makefile --- /usr/ports/devel/libk8055/files/patch-Makefile 1970-01-01 01:00:00.000000000 +0100 +++ /usr/home/jake/redports/export/jake/devel/libk8055/files/patch-Makefile 2011-12-31 03:15:57.558476000 +0000 @@ -0,0 +1,47 @@ +--- Makefile.orig 2011-12-31 03:12:14.464658120 +0000 ++++ Makefile 2011-12-31 03:12:42.754252842 +0000 +@@ -1,22 +1,22 @@ +-cc = gcc ++CC ?= gcc + exec = k8055 +-bindir = /usr/local/bin +-libdir = /usr/local/lib +-includedir = /usr/local/include +-mandir = /usr/local/man/man1 ++bindir = ${PREFIX}/bin ++libdir = ${PREFIX}/lib ++includedir = ${PREFIX}/include ++mandir = ${MANPREFIX}/man/man1 + OBJS = main.o libk8055.o + # if your are using Linux comment out next line +-CFLAGS = -DDAEMON -Wall -D_BSD ++CFLAGS += -DDAEMON -Wall -D_BSD + # if you are using Linux incomment following line + #CFLAGS = -DDAEMON -Wall + +-libs = -lusb -L/usr/lib -lm ++libs = -lusb -L/usr/lib ${LDFLAGS} -lm + + libk8055.so.0.1: libk8055.o +- $(cc) -Wall -o libk8055.so.0.2 -shared libk8055.o ++ $(CC) -Wall -o libk8055.so.0.2 -shared libk8055.o + + libk8055.o: libk8055.c +- $(cc) -Wall -O -c -g -fPIC $(CFLAGS) libk8055.c ++ $(CC) -Wall -O -c -g -fPIC $(CFLAGS) libk8055.c + -ln -sf libk8055.so.0.2 libk8055.so + + libk8055.c: k8055.h +@@ -24,10 +24,10 @@ + all: k8055_prog libk8055.so.0.1 + + %.o: %.c +- $(cc) $(CFLAGS) -c $< ++ $(CC) $(CFLAGS) -c $< + + k8055_prog: $(OBJS) +- $(cc) $(OBJS) -o $(exec) $(libs) ++ $(CC) $(OBJS) -o $(exec) $(libs) + strip $(exec) + + clean: --- libk8055-0.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 04:30:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42E451065675 for ; Sat, 31 Dec 2011 04: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 1A7A08FC15 for ; Sat, 31 Dec 2011 04:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV4UDE3054418 for ; Sat, 31 Dec 2011 04:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV4UD6A054411; Sat, 31 Dec 2011 04:30:13 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 04:30:13 GMT Resent-Message-Id: <201112310430.pBV4UD6A054411@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, Guido Falsi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92BB11065676 for ; Sat, 31 Dec 2011 04:21:27 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from megatron.madpilot.net (megatron.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 035C78FC22 for ; Sat, 31 Dec 2011 04:21:26 +0000 (UTC) Received: from megatron.madpilot.net (localhost [127.0.0.1]) by megatron.madpilot.net (Postfix) with ESMTP id 77DD51741 for ; Sat, 31 Dec 2011 05:21:25 +0100 (CET) Received: from megatron.madpilot.net ([127.0.0.1]) by megatron.madpilot.net (megatron.madpilot.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 3Dy0GbEij1CT for ; Sat, 31 Dec 2011 05:21:21 +0100 (CET) Received: by megatron.madpilot.net (Postfix, from userid 1000) id 5B214173D; Sat, 31 Dec 2011 05:21:21 +0100 (CET) Message-Id: <20111231042121.5B214173D@megatron.madpilot.net> Date: Sat, 31 Dec 2011 05:21:21 +0100 (CET) From: Guido Falsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163730: [patch] lang/ocaml: fix configure and build on FreeBSD-10 and or with clang 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: Sat, 31 Dec 2011 04:30:14 -0000 >Number: 163730 >Category: ports >Synopsis: [patch] lang/ocaml: fix configure and build on FreeBSD-10 and or with clang >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 Dec 31 04:30:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Guido Falsi >Release: FreeBSD 9.0-RC1 amd64 >Organization: none >Environment: System: FreeBSD megatron.madpilot.net 9.0-RC1 FreeBSD 9.0-RC1 #1: Mon Oct 31 13:48:49 CET 2011 root@megatron.madpilot.net:/usr/obj/usr/src/sys/MEGATRON amd64 >Description: Fix ocaml configure script for the following problems: 1) fails to respect ${CC}, failing to confiure with any compiler not found under the name of "gcc" or "cc" 2) has a check for *freebsd-[3-9]*, which leaves out present 10-CURRENT. I noticed the problem while testing some ports on the recently annouced redports.org system. Many thanks to the people who brought us this wonderful tool! >How-To-Repeat: Try to build lang/ocaml on a system using clang as a ports compiler to show problem 1, or on a machine running 10-CURRENT to show problem 2. Trying to build on a machine running current AND clang will stop at problem 1, once that is solved problem 2 will show up. >Fix: diff -ruN ocaml.old/files/patch-configure ocaml/files/patch-configure --- ocaml.old/files/patch-configure 2011-12-31 05:11:28.755920433 +0100 +++ ocaml/files/patch-configure 2011-12-31 05:11:41.323088127 +0100 @@ -1,5 +1,5 @@ ---- configure.orig 2010-07-28 06:18:22.000000000 -0700 -+++ configure 2011-04-03 13:46:37.000000000 -0700 +--- configure.orig 2011-07-04 23:15:01.000000000 +0200 ++++ configure 2011-12-31 03:54:05.000000000 +0100 @@ -85,6 +85,8 @@ withcurses=no;; -no-shared-libs) @@ -9,15 +9,33 @@ -x11include*|--x11include*) x11_include_dir=$2; shift;; -x11lib*|--x11lib*) -@@ -629,6 +631,7 @@ - i686-*-kfreebsd*) natdynlink=true;; - x86_64-*-kfreebsd*) natdynlink=true;; +@@ -189,7 +191,7 @@ + echo "gcc found" + cc=gcc + else +- cc=cc ++ cc=${CC} + fi + else + cc="$ccoption" +@@ -521,7 +523,7 @@ + mksharedlib="$flexlink" + mkmaindll="$flexlink -maindll" + shared_libraries_supported=true;; +- *-*-linux-gnu|*-*-linux|*-*-freebsd[3-9]*|*-*-openbsd*|*-*-netbsd*|*-*-gnu*) ++ *-*-linux-gnu|*-*-linux|*-*-freebsd*|*-*-openbsd*|*-*-netbsd*|*-*-gnu*) + sharedcccompopts="-fPIC" + mksharedlib="$bytecc -shared" + bytecclinkopts="$bytecclinkopts -Wl,-E" +@@ -636,6 +638,7 @@ + i[345]86-*-netbsd*) natdynlink=true;; + x86_64-*-netbsd*) natdynlink=true;; i386-*-gnu0.3) natdynlink=true;; + *-*-freebsd*) natdynlink=true;; esac fi -@@ -680,6 +683,7 @@ +@@ -687,6 +690,7 @@ hppa*-*-gnu*) arch=hppa; system=gnu;; powerpc*-*-linux*) arch=power; model=ppc; system=elf;; powerpc-*-netbsd*) arch=power; model=ppc; system=elf;; @@ -25,7 +43,7 @@ powerpc-*-rhapsody*) arch=power; model=ppc; system=rhapsody;; powerpc-*-darwin*) arch=power; system=rhapsody if $arch64; then model=ppc64; else model=ppc; fi;; -@@ -789,6 +793,7 @@ +@@ -796,6 +800,7 @@ i386,*,bsd_elf) profiling='prof';; amd64,*,macosx) profiling='prof';; i386,*,macosx) profiling='prof';; @@ -33,7 +51,7 @@ sparc,*,solaris) profiling='prof' case "$nativecc" in gcc*) ;; *) cc_profile='-xpg';; esac;; -@@ -1249,133 +1254,24 @@ +@@ -1256,133 +1261,24 @@ x11_include="not found" x11_link="not found" @@ -178,7 +196,7 @@ else echo "Location of X11 include files: $x11_include/X11" echo "Options for linking with X11: $x11_link" -@@ -1502,7 +1398,7 @@ +@@ -1509,7 +1405,7 @@ then tk_libs="$tk_libs $dllib" elif sh ./hasgot $tk_libs -ltcl$tclmaj.$tclmin $tkauxlibs Tcl_DoOneEvent then >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 04:30:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F718106566B; Sat, 31 Dec 2011 04:30: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 475888FC1C; Sat, 31 Dec 2011 04:30:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV4UW1G055761; Sat, 31 Dec 2011 04:30:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV4UWAI055751; Sat, 31 Dec 2011 04:30:32 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 04:30:32 GMT Message-Id: <201112310430.pBV4UWAI055751@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163730: [patch] lang/ocaml: fix configure and build on FreeBSD-10 and or with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 04:30:32 -0000 Synopsis: [patch] lang/ocaml: fix configure and build on FreeBSD-10 and or with clang Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 04:30:30 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163730 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 05:40:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C0D11065676 for ; Sat, 31 Dec 2011 05:40: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 9E69C8FC13 for ; Sat, 31 Dec 2011 05:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV5eAVI020436 for ; Sat, 31 Dec 2011 05:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV5eACM020435; Sat, 31 Dec 2011 05:40:10 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 05:40:10 GMT Resent-Message-Id: <201112310540.pBV5eACM020435@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, Douglas William Thrift Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAE8F106564A for ; Sat, 31 Dec 2011 05:31:16 +0000 (UTC) (envelope-from douglas@slowhand.douglasthrift.net) Received: from slowhand.douglasthrift.net (slowhand.douglasthrift.net [69.55.236.40]) by mx1.freebsd.org (Postfix) with ESMTP id 997DF8FC08 for ; Sat, 31 Dec 2011 05:31:16 +0000 (UTC) Received: from slowhand.douglasthrift.net (douglas@slowhand.douglasthrift.net [69.55.236.40]) by slowhand.douglasthrift.net (8.14.5/8.14.5) with ESMTP id pBV5VEYr045709 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 30 Dec 2011 21:31:15 -0800 (PST) (envelope-from douglas@slowhand.douglasthrift.net) Received: (from douglas@localhost) by slowhand.douglasthrift.net (8.14.5/8.14.5/Submit) id pBV5VE7x045691; Fri, 30 Dec 2011 21:31:14 -0800 (PST) (envelope-from douglas) Message-Id: <201112310531.pBV5VE7x045691@slowhand.douglasthrift.net> Date: Fri, 30 Dec 2011 21:31:14 -0800 (PST) From: Douglas William Thrift To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163731: Update port: www/dtse Fix build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Douglas William Thrift List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2011 05:40:13 -0000 >Number: 163731 >Category: ports >Synopsis: Update port: www/dtse Fix build with clang >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 Dec 31 05:40:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Douglas William Thrift >Release: FreeBSD 8.0-RELEASE-p6 amd64 >Organization: >Environment: System: FreeBSD slowhand.douglasthrift.net 8.0-RELEASE-p6 FreeBSD 8.0-RELEASE-p6 #2: Wed Sep 28 21:40:42 PDT 2011 user@jail8.johncompanies.com:/usr/obj/usr/src/sys/jail8 amd64 >Description: Patched www/dtse to fix building with clang. >How-To-Repeat: >Fix: --- dtse.patch begins here --- diff -Nrux .svn -x work /usr/ports/www/dtse/Makefile dtse/Makefile --- /usr/ports/www/dtse/Makefile 2011-01-15 07:33:45.000000000 -0800 +++ dtse/Makefile 2011-12-30 21:07:44.000000000 -0800 @@ -17,6 +17,8 @@ LICENSE= ASL +BUILD_DEPENDS= ${LOCALBASE}/share/aclocal/ax_check_gnu_make.m4:${PORTSDIR}/devel/autoconf-archive + .if defined(WITH_OPENSSL) USE_OPENSSL= yes CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} @@ -25,6 +27,7 @@ USE_PERL5= yes USE_BZIP2= yes USE_GMAKE= yes +USE_AUTOTOOLS= aclocal:env automake:env autoconf:env HAS_CONFIGURE= yes CONFIGURE_ARGS+= --prefix=${PREFIX}/${PORTNAME} @@ -33,4 +36,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +pre-configure: + cd ${WRKSRC}; ${SH} autogen.sh + .include diff -Nrux .svn -x work /usr/ports/www/dtse/files/patch-HttpHandler.cpp dtse/files/patch-HttpHandler.cpp --- /usr/ports/www/dtse/files/patch-HttpHandler.cpp 1969-12-31 16:00:00.000000000 -0800 +++ dtse/files/patch-HttpHandler.cpp 2011-12-30 20:46:27.000000000 -0800 @@ -0,0 +1,11 @@ +--- ./HttpHandler.cpp.orig 2008-08-23 04:00:12.000000000 -0700 ++++ ./HttpHandler.cpp 2011-12-30 17:37:16.000000000 -0800 +@@ -427,7 +427,7 @@ + + void HttpHandler::putline(const string& line) + { +- sprintf(buffer, "%s\r\n", line.c_str()); ++ snprintf(buffer, BUFSIZ + 1, "%s\r\n", line.c_str()); + + #ifndef _OpenSSL_ + if (send(http, buffer, strlen(buffer), 0) == SOCKET_ERROR) diff -Nrux .svn -x work /usr/ports/www/dtse/files/patch-Indexer.cpp dtse/files/patch-Indexer.cpp --- /usr/ports/www/dtse/files/patch-Indexer.cpp 1969-12-31 16:00:00.000000000 -0800 +++ dtse/files/patch-Indexer.cpp 2011-12-30 20:46:27.000000000 -0800 @@ -0,0 +1,20 @@ +--- ./Indexer.cpp.orig 2008-08-23 04:00:12.000000000 -0700 ++++ ./Indexer.cpp 2011-12-30 17:37:16.000000000 -0800 +@@ -286,6 +286,8 @@ + case all: + restrictionsAll.insert(restriction.getURL()); + break; ++ default: ++ break; + } + } + } +@@ -332,6 +334,8 @@ + restrictions.insert(*itor); + } + break; ++ default: ++ break; + } + + cout << "done.\n"; diff -Nrux .svn -x work /usr/ports/www/dtse/files/patch-Outputter.cpp dtse/files/patch-Outputter.cpp --- /usr/ports/www/dtse/files/patch-Outputter.cpp 1969-12-31 16:00:00.000000000 -0800 +++ dtse/files/patch-Outputter.cpp 2011-12-30 20:46:27.000000000 -0800 @@ -0,0 +1,13 @@ +--- ./Outputter.cpp.orig 2008-08-23 04:00:12.000000000 -0700 ++++ ./Outputter.cpp 2011-12-30 17:37:16.000000000 -0800 +@@ -459,8 +459,8 @@ + + if (condition) + { +- line.erase(start, strlen(tag)); +- line.erase(finish - strlen(tag), 9); ++ line.erase(start, std::strlen(tag)); ++ line.erase(finish - std::strlen(tag), 9); + + begin = finish - strlen(tag) - 9; + } diff -Nrux .svn -x work /usr/ports/www/dtse/files/patch-Search.hpp dtse/files/patch-Search.hpp --- /usr/ports/www/dtse/files/patch-Search.hpp 1969-12-31 16:00:00.000000000 -0800 +++ dtse/files/patch-Search.hpp 2011-12-30 20:46:27.000000000 -0800 @@ -0,0 +1,10 @@ +--- ./Search.hpp.orig 2008-08-23 04:00:12.000000000 -0700 ++++ ./Search.hpp 2011-12-30 17:37:16.000000000 -0800 +@@ -65,6 +65,7 @@ + #include + #include + #include ++#include + #include + #include + #include diff -Nrux .svn -x work /usr/ports/www/dtse/files/patch-autogen.sh dtse/files/patch-autogen.sh --- /usr/ports/www/dtse/files/patch-autogen.sh 1969-12-31 16:00:00.000000000 -0800 +++ dtse/files/patch-autogen.sh 2011-12-30 20:46:27.000000000 -0800 @@ -0,0 +1,17 @@ +--- ./autogen.sh.orig 2011-12-30 17:37:16.000000000 -0800 ++++ ./autogen.sh 2011-12-30 17:37:16.000000000 -0800 +@@ -0,0 +1,14 @@ ++#!/bin/sh ++# ++# Douglas Thrift's Search Engine ++# ++# Douglas Thrift ++# ++# $Id$ ++ ++set -e ++cd `dirname $0` ++ ++aclocal ++automake -acf || true ++autoconf diff -Nrux .svn -x work /usr/ports/www/dtse/files/patch-configure.ac dtse/files/patch-configure.ac --- /usr/ports/www/dtse/files/patch-configure.ac 1969-12-31 16:00:00.000000000 -0800 +++ dtse/files/patch-configure.ac 2011-12-30 20:46:27.000000000 -0800 @@ -0,0 +1,57 @@ +--- ./configure.ac.orig 2008-08-23 03:29:42.000000000 -0700 ++++ ./configure.ac 2011-12-30 17:37:16.000000000 -0800 +@@ -9,36 +9,22 @@ + AC_PREFIX_DEFAULT(/usr/local/dtse) + AC_PROG_INSTALL + +-CHECK_GNU_MAKE +-if test x$_cv_gnu_make_command = x; then +- AC_MSG_ERROR(You need GNU Make.) +-fi ++AX_CHECK_GNU_MAKE ++AC_SUBST([GNUMAKE], [$_cv_gnu_make_command]) ++AS_IF([test "x$GNUMAKE" = x], [AC_MSG_ERROR([You need GNU make])]) ++AX_WITH_PERL ++AX_PROG_PERL_MODULES([File::Temp], [], [AC_MSG_ERROR([You need File::Temp.])]) ++AC_LANG([C++]) + AC_PROG_CXX +-if ! test x$GXX = x; then +- AC_MSG_CHECKING(if g++ is version 3.1 or higher) +- dt_gxx_3_x=`$CXX --version 2>&1 | grep ^$CXX` +- if test "x$dt_gxx_3_x" = "x"; then +- AC_MSG_RESULT(no) +- AC_MSG_ERROR(You need g++ 3.1 or higher.) +- else +- AC_MSG_RESULT(yes) +- fi +-fi +-AC_PROG_PERL_VERSION(5.00503, , AC_MSG_ERROR(You need a Perl 5.6 or higher.)) +-AC_MSG_CHECKING(perl path) +-AC_SUBST(which_perl, `which $PERL`) +-AC_MSG_RESULT($which_perl) +- +-AC_PROG_PERL_MODULES(File::Temp, , AC_MSG_ERROR(You need File::Temp.)) + mingw=`$CXX --version 2>&1 | grep mingw\ special` + if test "x$mingw" = "x"; then +- ETR_SOCKET_NSL ++ AX_LIB_SOCKET_NSL + LIBS="$LIBS $ETR_SOCKET_LIBS" + else + LIBS="$LIBS -lws2_32" + fi +-AC_MSG_CHECKING(if OpenSSL is wanted) +-AC_ARG_WITH(openssl, [[ --with-openssl[=DIR] enable OpenSSL [DIR=path]] ++AC_MSG_CHECKING([if OpenSSL is wanted]) ++AC_ARG_WITH([openssl], [[ --with-openssl[=DIR] enable OpenSSL [DIR=path]] + ], [ + AC_MSG_RESULT(yes) + AC_MSG_CHECKING(for OpenSSL) +@@ -62,7 +48,7 @@ + AC_SUBST(OpenSSL, -D_OpenSSL_) + else + AC_MSG_RESULT(not found); +- AC_MSG_ERROR(couldn't find OpenSSL) ++ AC_MSG_ERROR(could not find OpenSSL) + fi + ], [ AC_MSG_RESULT(no) ]) + if ! test x$openssl = x; then diff -Nrux .svn -x work /usr/ports/www/dtse/files/patch-search.cgi.in dtse/files/patch-search.cgi.in --- /usr/ports/www/dtse/files/patch-search.cgi.in 1969-12-31 16:00:00.000000000 -0800 +++ dtse/files/patch-search.cgi.in 2011-12-30 20:46:27.000000000 -0800 @@ -0,0 +1,8 @@ +--- ./search.cgi.in.orig 2004-04-05 15:50:25.000000000 -0700 ++++ ./search.cgi.in 2011-12-30 17:37:16.000000000 -0800 +@@ -1,4 +1,4 @@ +-#!@which_perl@ ++#!@PERL@ + # + # Douglas Thrift's Search Engine CGI Script + # --- dtse.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 05:40:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 686C2106564A; Sat, 31 Dec 2011 05:40: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 3E6258FC15; Sat, 31 Dec 2011 05:40:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBV5eMDq020612; Sat, 31 Dec 2011 05:40:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBV5eMmI020607; Sat, 31 Dec 2011 05:40:22 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 05:40:22 GMT Message-Id: <201112310540.pBV5eMmI020607@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163731: Update port: www/dtse Fix build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 05:40:22 -0000 Synopsis: Update port: www/dtse Fix build with clang Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 05:40:21 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163731 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 10:30:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D520E1065676 for ; Sat, 31 Dec 2011 10: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 A9AE08FC08 for ; Sat, 31 Dec 2011 10:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVAUEvW015237 for ; Sat, 31 Dec 2011 10:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVAUEs3015236; Sat, 31 Dec 2011 10:30:14 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 10:30:14 GMT Resent-Message-Id: <201112311030.pBVAUEs3015236@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 96F6D106566C for ; Sat, 31 Dec 2011 10:25:46 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 0C6868FC0C for ; Sat, 31 Dec 2011 10:25:45 +0000 (UTC) Received: from lucid-nonsense.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id pBVAPfxn097705; Sat, 31 Dec 2011 10:25:41 GMT (envelope-from matthew@lucid-nonsense.infracaninophile.co.uk) Received: (from matthew@localhost) by lucid-nonsense.infracaninophile.co.uk (8.14.5/8.14.5/Submit) id pBVAPfin097704; Sat, 31 Dec 2011 10:25:41 GMT (envelope-from matthew) Message-Id: <201112311025.pBVAPfin097704@lucid-nonsense.infracaninophile.co.uk> Date: Sat, 31 Dec 2011 10:25:41 GMT From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jaap@NLnetLabs.nl Subject: ports/163734: [patch] dns/ldns -- options settings not functional 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: Sat, 31 Dec 2011 10:30:15 -0000 >Number: 163734 >Category: ports >Synopsis: [patch] dns/ldns -- options settings not functional >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 Dec 31 10:30:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 8.2-STABLE amd64 >Organization: Infracaninophile >Environment: System: FreeBSD lucid-nonsense.infracaninophile.co.uk 8.2-STABLE FreeBSD 8.2-STABLE #0 r228845: Fri Dec 23 19:13:12 GMT 2011 root@lucid-nonsense.infracaninophile.co.uk:/usr/obj/usr/src/sys/LUCID-NONSENSE amd64 >Description: Changes to the OPTIONS configuration in the dns/ldns port have no effect. Needs to include bsd.port.options.mk Maintainer is CC'd Note: this will change the default package build, since the effect at the moment is that all options are turned off. Means that doxygen and its sundry dependencies will now be required. PORTREVISION bumped accordingly. I haven't added this in the attached patch but one request I'd ask the maintainer to consider would be turning on the EXAMPLES option by default. >How-To-Repeat: >Fix: --- ldns.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/dns/ldns/Makefile,v retrieving revision 1.28 diff -u -u -r1.28 Makefile --- Makefile 7 Nov 2011 05:47:42 -0000 1.28 +++ Makefile 31 Dec 2011 10:24:43 -0000 @@ -7,6 +7,7 @@ PORTNAME= ldns PORTVERSION= 1.6.11 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= http://www.nlnetlabs.nl/downloads/ldns/ \ CRITICAL @@ -28,6 +29,8 @@ ECDSA "With highly experimental ECDSA support" Off \ PYLDNS "Build python bindings" Off +.include + .if defined(WITH_PYLDNS) USE_PYTHON= yes .include "${PORTSDIR}/Mk/bsd.python.mk" --- ldns.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 10:30:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3575C1065676; Sat, 31 Dec 2011 10:30: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 064218FC16; Sat, 31 Dec 2011 10:30:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVAUPAt015968; Sat, 31 Dec 2011 10:30:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVAUP1s015959; Sat, 31 Dec 2011 10:30:25 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 10:30:25 GMT Message-Id: <201112311030.pBVAUP1s015959@freefall.freebsd.org> To: m.seaman@infracaninophile.co.uk, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163734: [patch] dns/ldns -- options settings not functional X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 10:30:26 -0000 Synopsis: [patch] dns/ldns -- options settings not functional State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Dec 31 10:30:25 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163734 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 10:40:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 212B61065670 for ; Sat, 31 Dec 2011 10: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 0B37D8FC13 for ; Sat, 31 Dec 2011 10:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVAeBBO027324 for ; Sat, 31 Dec 2011 10:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVAeBlb027323; Sat, 31 Dec 2011 10:40:11 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 10:40:11 GMT Message-Id: <201112311040.pBVAeBlb027323@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163734: [patch] dns/ldns -- options settings not functional 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: Sat, 31 Dec 2011 10:40:12 -0000 The following reply was made to PR ports/163734; it has been noted by GNATS. From: Edwin Groothuis To: jaap@NLnetLabs.nl Cc: bug-followup@FreeBSD.org Subject: Re: ports/163734: [patch] dns/ldns -- options settings not functional Date: Sat, 31 Dec 2011 10:30:22 UT Maintainer of dns/ldns, Please note that PR ports/163734 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/163734 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 12:00:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C238106564A for ; Sat, 31 Dec 2011 12: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 12FAD8FC15 for ; Sat, 31 Dec 2011 12:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVC0N9u002029 for ; Sat, 31 Dec 2011 12:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVC0Nnu002028; Sat, 31 Dec 2011 12:00:23 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 12:00:23 GMT Resent-Message-Id: <201112311200.pBVC0Nnu002028@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 C9E2C106566C for ; Sat, 31 Dec 2011 11:50:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9A93B8FC08 for ; Sat, 31 Dec 2011 11:50:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBVBoc4J092764 for ; Sat, 31 Dec 2011 11:50:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBVBocrD092763; Sat, 31 Dec 2011 11:50:38 GMT (envelope-from nobody) Message-Id: <201112311150.pBVBocrD092763@red.freebsd.org> Date: Sat, 31 Dec 2011 11:50:38 GMT From: Anonymous To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163735: x11-wm/stumpwm: complete the rename/split (attempt #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, 31 Dec 2011 12:00:24 -0000 >Number: 163735 >Category: ports >Synopsis: x11-wm/stumpwm: complete the rename/split (attempt #2) >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 Dec 31 12:00:23 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Anonymous >Release: >Organization: >Environment: >Description: Bring up to date ports/151318 : - minor conflicts - remove explicit PORTREVISION=0 in slave ports - restore new port header (1st line) in cl-stumpwm to be stumpwm - replace patches with exact versions upstream >How-To-Repeat: >Fix: Commit the ports in svn co https://svn.redports.org/aoeui and remove x11-wm/stumpwm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 12:10:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2FA68106564A for ; Sat, 31 Dec 2011 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 F34BF8FC0A for ; Sat, 31 Dec 2011 12:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVCADnG010858 for ; Sat, 31 Dec 2011 12:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVCADnQ010857; Sat, 31 Dec 2011 12:10:13 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 12:10:13 GMT Message-Id: <201112311210.pBVCADnQ010857@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dominic Fandrey Cc: Subject: Re: ports/163721: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.1 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: Sat, 31 Dec 2011 12:10:14 -0000 The following reply was made to PR ports/163721; it has been noted by GNATS. From: Dominic Fandrey To: bug-followup@FreeBSD.org, fbsd-ports@opsec.eu Cc: Subject: Re: ports/163721: [patch update] multimedia/libbluray 0.2.20110219 -> 0.2.1 Date: Sat, 31 Dec 2011 13:00:27 +0100 I'm testing. From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 13:07:47 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1A3E1065719; Sat, 31 Dec 2011 13:07:47 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1F388FC18; Sat, 31 Dec 2011 13:07:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVD7lJl065677; Sat, 31 Dec 2011 13:07:47 GMT (envelope-from se@freefall.freebsd.org) Received: (from se@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVD7lBP065673; Sat, 31 Dec 2011 13:07:47 GMT (envelope-from se) Date: Sat, 31 Dec 2011 13:07:47 GMT Message-Id: <201112311307.pBVD7lBP065673@freefall.freebsd.org> To: dteske@vicor.com, se@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: se@FreeBSD.org Cc: Subject: Re: ports/163679: [NEW PORT] sysutils/sysrc: Utility to get or set rc.conf(5) values X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 13:07:47 -0000 Synopsis: [NEW PORT] sysutils/sysrc: Utility to get or set rc.conf(5) values State-Changed-From-To: open->closed State-Changed-By: se State-Changed-When: Sat Dec 31 13:06:12 UTC 2011 State-Changed-Why: Latest version of port (in PR) was commited without further change. http://www.freebsd.org/cgi/query-pr.cgi?pr=163679 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 13:10:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C14B2106564A for ; Sat, 31 Dec 2011 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 ACF938FC08 for ; Sat, 31 Dec 2011 13:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVDAEWl065847 for ; Sat, 31 Dec 2011 13:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVDAEQc065846; Sat, 31 Dec 2011 13:10:14 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 13:10:14 GMT Message-Id: <201112311310.pBVDAEQc065846@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/163679: 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, 31 Dec 2011 13:10:14 -0000 The following reply was made to PR ports/163679; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163679: commit references a PR Date: Sat, 31 Dec 2011 13:06:12 +0000 (UTC) se 2011-12-31 13:06:02 UTC FreeBSD ports repository (src committer) Modified files: sysutils Makefile Added files: sysutils/sysrc+ Makefile distinfo pkg-descr Log: The sysrc utility performs easy and safe editing of rc.conf style enries in configuration files. PR: 163679 Submitted by: Devin Teske (dteske@ at vicor dot com) Feature safe: yes Revision Changes Path 1.1362 +1 -0 ports/sysutils/Makefile 1.1 +25 -0 ports/sysutils/sysrc+/Makefile (new) 1.1 +2 -0 ports/sysutils/sysrc+/distinfo (new) 1.1 +12 -0 ports/sysutils/sysrc+/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 Sat Dec 31 13:30:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8EC3106566B for ; Sat, 31 Dec 2011 13: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 9E6DB8FC12 for ; Sat, 31 Dec 2011 13:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVDUG5r084172 for ; Sat, 31 Dec 2011 13:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVDUGIv084167; Sat, 31 Dec 2011 13:30:16 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 13:30:16 GMT Message-Id: <201112311330.pBVDUGIv084167@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/163679: 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, 31 Dec 2011 13:30:16 -0000 The following reply was made to PR ports/163679; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163679: commit references a PR Date: Sat, 31 Dec 2011 13:22:55 +0000 (UTC) se 2011-12-31 13:22:47 UTC FreeBSD ports repository (src committer) Added files: sysutils/sysrc Makefile distinfo pkg-descr Removed files: sysutils/sysrc+ Makefile distinfo pkg-descr Log: The sysrc utility performs easy and safe editing of rc.conf style enries in configuration files. This port had been added from a temporary directory by accident is moved to its correct place with this commit. A commit to "modules" will follow immdetiately thereafter. Sorry! PR: 163679 Submitted by: Devin Teske (dteske@ at vicor dot com) Feature safe: yes Revision Changes Path 1.2 +0 -25 ports/sysutils/sysrc+/Makefile (dead) 1.2 +0 -2 ports/sysutils/sysrc+/distinfo (dead) 1.2 +0 -12 ports/sysutils/sysrc+/pkg-descr (dead) 1.1 +25 -0 ports/sysutils/sysrc/Makefile (new) 1.1 +2 -0 ports/sysutils/sysrc/distinfo (new) 1.1 +12 -0 ports/sysutils/sysrc/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 Sat Dec 31 14:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB717106566C for ; Sat, 31 Dec 2011 14: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 92EE98FC1C for ; Sat, 31 Dec 2011 14:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVEKBvK030713 for ; Sat, 31 Dec 2011 14:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVEKBIw030712; Sat, 31 Dec 2011 14:20:11 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 14:20:11 GMT Resent-Message-Id: <201112311420.pBVEKBIw030712@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, Kuan-Chung Chiu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9391106564A for ; Sat, 31 Dec 2011 14:14:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 79F6C8FC08 for ; Sat, 31 Dec 2011 14:14:50 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBVEEovE085593 for ; Sat, 31 Dec 2011 14:14:50 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBVEEouk085592; Sat, 31 Dec 2011 14:14:50 GMT (envelope-from nobody) Message-Id: <201112311414.pBVEEouk085592@red.freebsd.org> Date: Sat, 31 Dec 2011 14:14:50 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163737: [patch] optional support for GTK3 in textproc/ibus X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 14:20:11 -0000 >Number: 163737 >Category: ports >Synopsis: [patch] optional support for GTK3 in textproc/ibus >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 Dec 31 14:20:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: >Organization: N/A >Environment: >Description: Add option to enable building gtk3 client in textproc/ibus >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ibus.orig/Makefile ibus/Makefile --- ibus.orig/Makefile 2011-12-31 20:06:27.000000000 +0800 +++ ibus/Makefile 2011-12-31 22:12:21.000000000 +0800 @@ -7,7 +7,7 @@ PORTNAME= ibus PORTVERSION= 1.3.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} @@ -32,6 +32,7 @@ GCONF_SCHEMAS= ibus.schemas OPTIONS= ISOCODES "Use isocodecs" on \ + GTK3 "Install GTK3 client" off \ VALA "Install vala binding" on \ GINTRO "Install GObject Introspection data" on @@ -53,6 +54,14 @@ PLIST_SUB+= NLS="@comment " .endif +.if defined(WITH_GTK3) +USE_GNOME+= gtk30 +CONFIGURE_ARGS+= --enable-gtk3 +PLIST_SUB+= GTK3="" +.else +PLIST_SUB+= GTK3="@comment " +.endif + .if defined(WITH_VALA) CONFIGURE_ARGS+= --enable-vala PLIST_SUB+= VALA="" @@ -80,11 +89,17 @@ @${REINPLACE_CMD} -e 's|setpgrp ()|setpgrp (0,0)|g' ${WRKSRC}/bus/main.c post-install: + @if [ -x gtk-query-immodules-3.0 ]; then \ + gtk-query-immodules-3.0 --update-cache ; \ + fi @gtk-query-immodules-2.0 > ${LOCALBASE}/etc/gtk-2.0/gtk.immodules @${CAT} ${PKGMESSAGE} @${ECHO} To display this message again, type ${PKG_INFO} -D ${PKGNAME} post-deinstall: + @if [ -x gtk-query-immodules-3.0 ]; then \ + gtk-query-immodules-3.0 --update-cache ; \ + fi @gtk-query-immodules-2.0 > ${LOCALBASE}/etc/gtk-2.0/gtk.immodules .include diff -ruN ibus.orig/pkg-plist ibus/pkg-plist --- ibus.orig/pkg-plist 2011-12-31 20:06:27.000000000 +0800 +++ ibus/pkg-plist 2011-12-31 21:52:18.000000000 +0800 @@ -235,6 +235,8 @@ include/ibus-1.0/ibusxml.h lib/gtk-2.0/2.10.0/immodules/im-ibus.la lib/gtk-2.0/2.10.0/immodules/im-ibus.so +%%GTK3%%lib/gtk-3.0/3.0.0/immodules/im-ibus.la +%%GTK3%%lib/gtk-3.0/3.0.0/immodules/im-ibus.so lib/libibus.la lib/libibus.so lib/libibus.so.2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 14:20:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80EC7106568A; Sat, 31 Dec 2011 14:20: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 527818FC0C; Sat, 31 Dec 2011 14:20:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVEKMVn031036; Sat, 31 Dec 2011 14:20:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVEKMT8031027; Sat, 31 Dec 2011 14:20:22 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 14:20:22 GMT Message-Id: <201112311420.pBVEKMT8031027@freefall.freebsd.org> To: buganini@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163737: [patch] optional support for GTK3 in textproc/ibus X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 14:20:22 -0000 Synopsis: [patch] optional support for GTK3 in textproc/ibus State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Dec 31 14:20:21 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163737 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 14:30:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C92AF106566C for ; Sat, 31 Dec 2011 14: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 B29568FC0A for ; Sat, 31 Dec 2011 14:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVEUGVC039205 for ; Sat, 31 Dec 2011 14:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVEUGf5039200; Sat, 31 Dec 2011 14:30:16 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 14:30:16 GMT Message-Id: <201112311430.pBVEUGf5039200@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163737: [patch] optional support for GTK3 in textproc/ibus 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: Sat, 31 Dec 2011 14:30:16 -0000 The following reply was made to PR ports/163737; it has been noted by GNATS. From: Edwin Groothuis To: henry.hu.sh@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/163737: [patch] optional support for GTK3 in textproc/ibus Date: Sat, 31 Dec 2011 14:20:20 UT Maintainer of textproc/ibus, Please note that PR ports/163737 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/163737 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 15:23:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96A78106566B; Sat, 31 Dec 2011 15:23:02 +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 688A78FC12; Sat, 31 Dec 2011 15:23:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVFN2cu093712; Sat, 31 Dec 2011 15:23:02 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVFN2dv093708; Sat, 31 Dec 2011 15:23:02 GMT (envelope-from linimon) Date: Sat, 31 Dec 2011 15:23:02 GMT Message-Id: <201112311523.pBVFN2dv093708@freefall.freebsd.org> To: swell.k@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/163735: x11-wm/stumpwm: complete the rename/split (attempt #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, 31 Dec 2011 15:23:02 -0000 Synopsis: x11-wm/stumpwm: complete the rename/split (attempt #2) State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Dec 31 15:22:12 UTC 2011 State-Changed-Why: Submitter's email address bounces. Please contact bugmeister@ from a working address if you have any questions. http://www.freebsd.org/cgi/query-pr.cgi?pr=163735 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 15:50:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F550106566C for ; Sat, 31 Dec 2011 15: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 758C98FC0C for ; Sat, 31 Dec 2011 15:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVFoCrG013346 for ; Sat, 31 Dec 2011 15:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVFoC8x013345; Sat, 31 Dec 2011 15:50:12 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 15:50:12 GMT Resent-Message-Id: <201112311550.pBVFoC8x013345@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 5A696106566C for ; Sat, 31 Dec 2011 15:41:30 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id 8D40C8FC08 for ; Sat, 31 Dec 2011 15:41:29 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3639C3927; Sat, 31 Dec 2011 23:41:27 +0800 (CST) Message-Id: <20111231154127.3639C3927@sunpoet.net> Date: Sat, 31 Dec 2011 23:41:27 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clsung@FreeBSD.org Subject: ports/163738: [PATCH] security/zxid: update to 1.02 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 15:50:13 -0000 >Number: 163738 >Category: ports >Synopsis: [PATCH] security/zxid: update to 1.02 >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 Dec 31 15:50:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.0-PRERELEASE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #0: Sat Dec 24 06:18:22 CST 2011 >Description: - Update to 1.02 Added file(s): - files/patch-zx.h Port maintainer (clsung@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- zxid-1.02.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/zxid/Makefile,v retrieving revision 1.10 diff -u -u -r1.10 Makefile --- Makefile 17 Dec 2010 19:22:18 -0000 1.10 +++ Makefile 31 Dec 2011 15:41:23 -0000 @@ -6,8 +6,7 @@ # PORTNAME= zxid -PORTVERSION= 0.38 -PORTREVISION= 1 +PORTVERSION= 1.02 CATEGORIES= security www MASTER_SITES= http://zxid.org/ EXTRACT_SUFX= .tgz @@ -19,24 +18,32 @@ MAKE_JOBS_UNSAFE= yes -MAKE_ARGS+= CC="${CC}" CURL_ROOT="${LOCALBASE}" LD="${CC}" \ +CFLAGS+= -D_LSEEK_DECLARED -fPIC +MAKE_ARGS= CC="${CC}" CURL_ROOT="${LOCALBASE}" LD="${CC}" \ PREFIX="${PREFIX}" OPENSSL_ROOT="${OPENSSLBASE}" USE_GMAKE= yes USE_LDCONFIG= yes USE_OPENSSL= yes -post-install: - - ${MKDIR} ${PREFIX}/include/zxid - - ${INSTALL_PROGRAM} ${WRKSRC}/zxidhlo ${PREFIX}/bin/ - ${INSTALL_PROGRAM} ${WRKSRC}/zxididp ${PREFIX}/bin/ +ZXID_BINS= smime zxcall zxcot zxdecode zxencdectest zxid zxidhlo \ + zxidhlowsf zxidhrxmlwsc zxidhrxmlwsp zxididp zxidsimple \ + zxidwsctool zxlogview zxpasswd + +post-patch: +# @${REINPLACE_CMD} -e 's|#include |#include |' ${WRKSRC}/zxid.c +# @${REINPLACE_CMD} -e '/int lseek/ s|int offset|off_t offset|' ${WRKSRC}/platform.h - ${INSTALL_PROGRAM} ${WRKSRC}/libzxid.a ${PREFIX}/lib/ - ${INSTALL_PROGRAM} ${WRKSRC}/libzxid.so.0.0 ${PREFIX}/lib/libzxid.so.0 +post-install: + ${MKDIR} ${PREFIX}/include/zxid/ + cd ${WRKSRC}/ && ${INSTALL_PROGRAM} ${ZXID_BINS} ${PREFIX}/bin/ + ${INSTALL_LIB} ${WRKSRC}/libzxid.a ${PREFIX}/lib/ + ${INSTALL_LIB} ${WRKSRC}/libzxid.so.0.0 ${PREFIX}/lib/libzxid.so.0 ${LN} -sf libzxid.so.0 ${PREFIX}/lib/libzxid.so - - (cd ${WRKSRC} && ${INSTALL_DATA} *.h c/*.h ${PREFIX}/include/zxid/) + cd ${WRKSRC}/ && ${INSTALL_DATA} *.h c/*.h ${PREFIX}/include/zxid/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} *.pd ${DOCSDIR}/ +.endif .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/zxid/distinfo,v retrieving revision 1.5 diff -u -u -r1.5 distinfo --- distinfo 3 Jul 2011 14:03:51 -0000 1.5 +++ distinfo 31 Dec 2011 15:41:23 -0000 @@ -1,2 +1,2 @@ -SHA256 (zxid-0.38.tgz) = b6883fb5771b2d16591ab4e624fa78ceaceec45bc608b8c348947773bb2a6b91 -SIZE (zxid-0.38.tgz) = 3091109 +SHA256 (zxid-1.02.tgz) = 4e4170446892db01f2605a1bc342045b6d3b6ddf3598a911b1a26d507950732b +SIZE (zxid-1.02.tgz) = 1781540 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/zxid/pkg-plist,v retrieving revision 1.4 diff -u -u -r1.4 pkg-plist --- pkg-plist 18 Dec 2009 03:57:53 -0000 1.4 +++ pkg-plist 31 Dec 2011 15:41:23 -0000 @@ -1,13 +1,27 @@ -@comment $FreeBSD: ports/security/zxid/pkg-plist,v 1.4 2009/12/18 03:57:53 clsung Exp $ +bin/smime +bin/zxcall +bin/zxcot +bin/zxdecode +bin/zxencdectest +bin/zxid bin/zxidhlo +bin/zxidhlowsf +bin/zxidhrxmlwsc +bin/zxidhrxmlwsp bin/zxididp +bin/zxidsimple +bin/zxidwsctool +bin/zxlogview +bin/zxpasswd include/zxid/errmac.h include/zxid/logprint.h include/zxid/macglue.h include/zxid/platform.h include/zxid/saml2.h include/zxid/smimeutil.h +include/zxid/tas3.h include/zxid/wsf.h +include/zxid/yubikey.h include/zxid/zx-a-data.h include/zxid/zx-ac-data.h include/zxid/zx-as-data.h @@ -32,6 +46,7 @@ include/zxid/zx-hrxml-data.h include/zxid/zx-idhrxml-data.h include/zxid/zx-idp-data.h +include/zxid/zx-idpdisc-data.h include/zxid/zx-im-data.h include/zxid/zx-is-data.h include/zxid/zx-is12-data.h @@ -49,10 +64,13 @@ include/zxid/zx-sbf-data.h include/zxid/zx-sec-data.h include/zxid/zx-sec12-data.h +include/zxid/zx-shibmd-data.h include/zxid/zx-shps-data.h include/zxid/zx-sp-data.h include/zxid/zx-sp11-data.h include/zxid/zx-subs-data.h +include/zxid/zx-tas3-data.h +include/zxid/zx-tas3sol-data.h include/zxid/zx-wsc-data.h include/zxid/zx-wsp-data.h include/zxid/zx-wsse-data.h @@ -61,18 +79,49 @@ include/zxid/zx-xa-data.h include/zxid/zx-xac-data.h include/zxid/zx-xasa-data.h +include/zxid/zx-xasacd1-data.h include/zxid/zx-xasp-data.h +include/zxid/zx-xaspcd1-data.h include/zxid/zx-xenc-data.h include/zxid/zx-xml-data.h include/zxid/zx-xs-data.h include/zxid/zx-xsi-data.h include/zxid/zx.h +include/zxid/zx_ext_pt.h include/zxid/zxid.h include/zxid/zxidconf.h include/zxid/zxidnoswig.h +include/zxid/zxidpriv.h +include/zxid/zxidutil.h include/zxid/zxidvers.h include/zxid/zxwsc.h lib/libzxid.a lib/libzxid.so lib/libzxid.so.0 -@dirrmtry include/zxid +%%PORTDOCS%%%%DOCSDIR%%/apache.pd +%%PORTDOCS%%%%DOCSDIR%%/doc-end.pd +%%PORTDOCS%%%%DOCSDIR%%/doc-inc.pd +%%PORTDOCS%%%%DOCSDIR%%/mediawiki-zxid.pd +%%PORTDOCS%%%%DOCSDIR%%/mod_auth_saml.pd +%%PORTDOCS%%%%DOCSDIR%%/ref-inc.pd +%%PORTDOCS%%%%DOCSDIR%%/schemata.pd +%%PORTDOCS%%%%DOCSDIR%%/testplan.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-book.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-compile.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-conf.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-cot.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-faq.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-idp.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-install.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-java.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-license.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-log.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-perl.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-php.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-raw.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-ref.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-simple.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-tas3.pd +%%PORTDOCS%%%%DOCSDIR%%/zxid-wsf.pd +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm include/zxid Index: files/patch-Makefile =================================================================== RCS file: /home/ncvs/ports/security/zxid/files/patch-Makefile,v retrieving revision 1.4 diff -u -u -r1.4 patch-Makefile --- files/patch-Makefile 18 Dec 2009 03:57:54 -0000 1.4 +++ files/patch-Makefile 31 Dec 2011 15:41:23 -0000 @@ -1,22 +1,24 @@ ---- Makefile.orig 2009-10-16 19:37:47.000000000 +0400 -+++ Makefile 2009-10-30 00:02:20.000000000 +0300 -@@ -31,13 +31,13 @@ - - default: seehelp precheck zxid zxidhlo zxididp zxidhlowsf zxidsimple zxidwsctool zxlogview zxidhrxmlwsc zxidhrxmlwsp zxdecode zxcot - --all: seehelp precheck precheck_apache zxid zxidhlo zxididp zxidsimple zxlogview samlmod phpzxid javazxid apachezxid zxdecode zxcot smime -+all: seehelp precheck zxid zxidhlo zxididp zxidsimple zxlogview zxdecode zxcot smime - - ZXIDREL=0.38 - ZXIDVERSION=0x000038 +--- Makefile.orig 2011-07-25 03:56:45.000000000 +0800 ++++ Makefile 2011-12-29 17:35:47.379562021 +0800 +@@ -36,7 +36,7 @@ + + default: seehelp precheck zxid zxidhlo zxididp zxidhlowsf zxidsimple zxidwsctool zxlogview zxidhrxmlwsc zxidhrxmlwsp zxdecode zxcot zxpasswd zxcall zxencdectest + +-all: default precheck_apache samlmod phpzxid javazxid apachezxid smime zxidwspcgi ++all: default smime + + ### This is the authorative spot to set version number. Document in Changes file. + ### c/zxidvers.h is generated from these, see `make updatevers' +@@ -44,7 +44,7 @@ + ZXIDREL=1.02 ### Where package is installed (use `make PREFIX=/your/path' to change) --PREFIX=/usr/local/zxid/$(ZXIDREL) -+PREFIX?=/usr/local/zxid/$(ZXIDREL) +-PREFIX=/var/zxid/$(ZXIDREL) ++PREFIX?=/var/zxid/$(ZXIDREL) ### Where runtime configuration and temporary data is kept. ### If you change the following, be sure to edit zxidconf.h as -@@ -64,8 +64,8 @@ +@@ -72,8 +72,8 @@ ### TOP=$(shell pwd) @@ -27,32 +29,45 @@ PHP_CONFIG=php-config CSHARP_CONFIG=true PY_CONFIG=true -@@ -82,11 +82,11 @@ +@@ -90,14 +90,14 @@ SWIG=swig AR=ar -crs ARX=ar -x -CC=gcc -LD=gcc ++CC?=gcc ++LD?=gcc + GCOV=gcov + LCOV=lcov + GENHTML=genhtml -SHARED_FLAGS=-shared --export-all-symbols -Wl,-whole-archive -Wl,--allow-multiple-definition -SHARED_CLOSE=-Wl,-no-whole-archive -CFLAGS=-g -fpic -fmessage-length=0 -Wno-unused-label -Wno-unknown-pragmas -fno-strict-aliasing -+CC?=gcc -+LD?=gcc -+SHARED_FLAGS+=-shared --export-all-symbols -Wl,-whole-archive -Wl,--allow-multiple-definition -+SHARED_CLOSE+=-Wl,-no-whole-archive -+CFLAGS+=-g -fpic -fmessage-length=0 -Wno-unused-label -Wno-unknown-pragmas -fno-strict-aliasing ++SHARED_FLAGS?=-shared --export-all-symbols -Wl,-whole-archive -Wl,--allow-multiple-definition ++SHARED_CLOSE?=-Wl,-no-whole-archive ++CFLAGS?=-g -fpic -fmessage-length=0 -Wno-unused-label -Wno-unknown-pragmas -fno-strict-aliasing #CFLAGS += -Os # gcc-3.4.6 miscompiles with -Os on ix86 CFLAGS += -Wall -Wno-parentheses -DMAYBE_UNUSED='__attribute__ ((unused))' - CFLAGS += -ffunction-sections -fdata-sections -@@ -1090,11 +1090,6 @@ + #LDFLAGS += -Wl,--gc-sections +@@ -1318,7 +1318,7 @@ + endif + + libzxid.so.0.0: $(LIBZXID_A) +- $(LD) $(OUTOPT)libzxid.so.0.0 $(SHARED_FLAGS) $^ $(SHARED_CLOSE) -lcurl -lssl -lcrypt ++ $(LD) $(OUTOPT)libzxid.so.0.0 $(SHARED_FLAGS) $^ $(SHARED_CLOSE) $(LIBS) -lcurl -lssl -lcrypt + + zxid.dll zxidimp.lib: $(LIBZXID_A) + $(LD) $(OUTOPT)zxid.dll $(SHARED_FLAGS) -Wl,--output-def,zxid.def,--out-implib,zxidimp.lib $^ $(SHARED_CLOSE) $(WIN_LIBS) -mdll +@@ -1604,12 +1604,6 @@ - install: zxid libzxid.a libzxid.so.0.0 dir + install: zxid $(LIBZXID_A) libzxid.so.0.0 dir @$(ECHO) "===== Installing in $(PREFIX) (to change do make install PREFIX=/your/path)" -- -mkdir -p $(PREFIX) $(PREFIX)/bin $(PREFIX)/lib $(PREFIX)/include/zxid -- cp zxidhlo zxididp $(PREFIX)/bin -- cp libzxid.a libzxid.so* $(PREFIX)/lib -- cp libzxid.so.0.0 $(PREFIX)/lib -- cp *.h c/*.h $(PREFIX)/include/zxid +- -mkdir -p $(PREFIX) $(PREFIX)/bin $(PREFIX)/lib $(PREFIX)/include/zxid $(PREFIX)/doc +- $(CP) zxmkdirs.sh zxcall zxpasswd zxcot zxlogview zxdecode zxencdectest zxcleanlogs.sh zximport-htpasswd.pl zximport-ldif.pl xml-pretty.pl diffy.pl smime send.pl xacml2ldif.pl mockpdp.pl env.cgi zxid-java.sh zxidatsel.pl zxidnewuser.pl zxidcot.pl zxiddash.pl zxidexplo.pl zxidhlo zxidhlo.pl zxidhlo.php zxidhlo.sh zxidhlo-java.sh zxidhlocgi.php zxidhlowsf zxidhrxmlwsc zxidhrxmlwsp zxididp zxidsimple zxidwsctool zxidwspcgi zxtest.pl zxsizeof $(PREFIX)/bin +- $(CP) $(LIBZXID_A) libzxid.so* $(PREFIX)/lib +- $(CP) libzxid.so.0.0 $(PREFIX)/lib +- $(CP) *.h c/*.h $(PREFIX)/include/zxid +- $(CP) *.pd *.dia $(PREFIX)/doc @$(ECHO) "You will need to copy zxidhlo binary where your web server can find it and" @$(ECHO) "make sure your web server is configured to recognize zxidhlo as a CGI script." @$(ECHO) Index: files/patch-smime.c =================================================================== RCS file: /home/ncvs/ports/security/zxid/files/patch-smime.c,v retrieving revision 1.1 diff -u -u -r1.1 patch-smime.c --- files/patch-smime.c 18 Dec 2009 03:57:54 -0000 1.1 +++ files/patch-smime.c 31 Dec 2011 15:41:23 -0000 @@ -1,5 +1,5 @@ ---- smime.c.orig 2009-10-16 19:37:47.000000000 +0400 -+++ smime.c 2009-10-29 23:46:33.000000000 +0300 +--- smime.c.orig 2011-07-01 22:26:07.000000000 +0800 ++++ smime.c 2011-07-13 10:41:01.570539385 +0800 @@ -94,9 +94,6 @@ #include #include Index: files/patch-zx.h =================================================================== RCS file: files/patch-zx.h diff -N files/patch-zx.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-zx.h 31 Dec 2011 15:41:23 -0000 @@ -0,0 +1,10 @@ +--- zx.h.orig 2011-07-25 03:56:45.000000000 +0800 ++++ zx.h 2011-12-29 17:00:27.394555276 +0800 +@@ -25,6 +25,7 @@ + #include + #include + #include ++#include + + #ifdef USE_OPENSSL + #include --- zxid-1.02.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 15:50:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2FF0106566C; Sat, 31 Dec 2011 15: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 B4C4E8FC17; Sat, 31 Dec 2011 15:50:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVFoN1M013713; Sat, 31 Dec 2011 15:50:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVFoN8a013707; Sat, 31 Dec 2011 15:50:23 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 15:50:23 GMT Message-Id: <201112311550.pBVFoN8a013707@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163738: [PATCH] security/zxid: update to 1.02 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 15:50:24 -0000 Synopsis: [PATCH] security/zxid: update to 1.02 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 15:50:23 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163738 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 17:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10CB71065675 for ; Sat, 31 Dec 2011 17: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 D3ACD8FC13 for ; Sat, 31 Dec 2011 17:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVHA9te085212 for ; Sat, 31 Dec 2011 17:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVHA9p9085211; Sat, 31 Dec 2011 17:10:09 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 17:10:09 GMT Resent-Message-Id: <201112311710.pBVHA9p9085211@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, Guido Falsi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 083771065670 for ; Sat, 31 Dec 2011 17:01:09 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from megatron.madpilot.net (megatron.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 9D2A78FC08 for ; Sat, 31 Dec 2011 17:01:08 +0000 (UTC) Received: from megatron.madpilot.net (localhost [127.0.0.1]) by megatron.madpilot.net (Postfix) with ESMTP id 2FEA317BE for ; Sat, 31 Dec 2011 18:01:07 +0100 (CET) Received: from megatron.madpilot.net ([127.0.0.1]) by megatron.madpilot.net (megatron.madpilot.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id Yv1m00isqsW2 for ; Sat, 31 Dec 2011 18:01:04 +0100 (CET) Received: by megatron.madpilot.net (Postfix, from userid 1000) id DAAE717BD; Sat, 31 Dec 2011 18:01:03 +0100 (CET) Message-Id: <20111231170103.DAAE717BD@megatron.madpilot.net> Date: Sat, 31 Dec 2011 18:01:03 +0100 (CET) From: Guido Falsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/163739: [maintainer-update] x11/trayer-srg: upgrade to 1.1.4 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: Sat, 31 Dec 2011 17:10:10 -0000 >Number: 163739 >Category: ports >Synopsis: [maintainer-update] x11/trayer-srg: upgrade to 1.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 Dec 31 17:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Guido Falsi >Release: FreeBSD 9.0-RC1 amd64 >Organization: none >Environment: System: FreeBSD megatron.madpilot.net 9.0-RC1 FreeBSD 9.0-RC1 #1: Mon Oct 31 13:48:49 CET 2011 root@megatron.madpilot.net:/usr/obj/usr/src/sys/MEGATRON amd64 >Description: Upgrade to 1.1.4. >How-To-Repeat: >Fix: diff -ruN trayer-srg.old/Makefile trayer-srg/Makefile --- trayer-srg.old/Makefile 2011-12-31 17:55:40.777086827 +0100 +++ trayer-srg/Makefile 2011-12-31 17:56:02.436081634 +0100 @@ -7,7 +7,7 @@ # PORTNAME= trayer -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.4 CATEGORIES= x11 MASTER_SITES= http://github.com/sargon/${PORTNAME}${PKGNAMESUFFIX}/tarball/${PORTNAME}-${PORTVERSION}/ PKGNAMESUFFIX= -srg @@ -17,7 +17,7 @@ COMMENT= Lightweight GTK2-based systray for UNIX desktop - sargon fork CONFLICTS_INSTALL= trayer-1.0* -GITVERSION= 0-g2d53335 +GITVERSION= 0-g412ad31 FETCH_ARGS= -pRr WRKSRC= ${WRKDIR}/sargon-${PORTNAME}${PKGNAMESUFFIX}-${GITVERSION:S/^0-g//} USE_GNOME= gtk20 glib20 pango atk diff -ruN trayer-srg.old/distinfo trayer-srg/distinfo --- trayer-srg.old/distinfo 2011-12-31 17:55:40.774082439 +0100 +++ trayer-srg/distinfo 2011-12-31 17:56:02.433086250 +0100 @@ -1,2 +1,2 @@ -SHA256 (sargon-trayer-srg-trayer-1.1.3-0-g2d53335.tar.gz) = 03be5ea47278ecdb6ffb1d3b5115a855a6eccd6aa6702b84e89ee047ddd76558 -SIZE (sargon-trayer-srg-trayer-1.1.3-0-g2d53335.tar.gz) = 24671 +SHA256 (sargon-trayer-srg-trayer-1.1.4-0-g412ad31.tar.gz) = 9f0c484838342fbbd817e356e876c94af0702c8639182a40701ca3a2ca97ca5b +SIZE (sargon-trayer-srg-trayer-1.1.4-0-g412ad31.tar.gz) = 24792 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 17:40:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F8701065672 for ; Sat, 31 Dec 2011 17: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 D4BE28FC14 for ; Sat, 31 Dec 2011 17:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVHeAQq014386 for ; Sat, 31 Dec 2011 17:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVHeA8F014385; Sat, 31 Dec 2011 17:40:10 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 17:40:10 GMT Resent-Message-Id: <201112311740.pBVHeA8F014385@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, Alexey Illarionov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B05261065670 for ; Sat, 31 Dec 2011 17:36:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9A6DF8FC16 for ; Sat, 31 Dec 2011 17:36:25 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBVHaPT4037902 for ; Sat, 31 Dec 2011 17:36:25 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBVHaPnb037900; Sat, 31 Dec 2011 17:36:25 GMT (envelope-from nobody) Message-Id: <201112311736.pBVHaPnb037900@red.freebsd.org> Date: Sat, 31 Dec 2011 17:36:25 GMT From: Alexey Illarionov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163740: [maintainer] x11-fonts/paratype added new monospaced font PT Mono X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 17:40:11 -0000 >Number: 163740 >Category: ports >Synopsis: [maintainer] x11-fonts/paratype added new monospaced font PT Mono >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 Dec 31 17:40:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexey Illarionov >Release: >Organization: >Environment: >Description: New monospaced font added to the x11-fonts/paratype collection. http://www.paratype.com/ >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN x11-fonts/paratype.orig/Makefile x11-fonts/paratype/Makefile --- x11-fonts/paratype.orig/Makefile 2011-12-31 21:14:38.352479478 +0400 +++ x11-fonts/paratype/Makefile 2011-12-31 21:14:52.364477945 +0400 @@ -7,10 +7,11 @@ PORTNAME= paratype PORTVERSION= 2.004 +PORTREVISION= 1 CATEGORIES= x11-fonts MASTER_SITES= http://www.fontstock.com/public/ MASTER_SITE_SUBDIR= #prevent bsd.xorg.mk from setting a default subdirectory -DISTFILES= PTSansOFL.zip PTSerifOFL.zip +DISTFILES= PTSansOFL.zip PTSerifOFL.zip PTMonoOFL.zip MAINTAINER= littlesavage@rambler.ru COMMENT= ParaType font collection for the languages of Russia diff -ruN x11-fonts/paratype.orig/distinfo x11-fonts/paratype/distinfo --- x11-fonts/paratype.orig/distinfo 2011-12-31 21:14:38.352479478 +0400 +++ x11-fonts/paratype/distinfo 2011-12-31 21:14:52.381478976 +0400 @@ -2,3 +2,5 @@ SIZE (xorg/font/PTSansOFL.zip) = 1600360 SHA256 (xorg/font/PTSerifOFL.zip) = 1bf55f3cf143a5e22501de18e597677ed81aaad9c12019146a9e3735e06543a5 SIZE (xorg/font/PTSerifOFL.zip) = 1029464 +SHA256 (xorg/font/PTMonoOFL.zip) = d14a43d33abb20f137ea4cded03d1320858ade8d9f60cae2d463a951492da9ad +SIZE (xorg/font/PTMonoOFL.zip) = 100548 diff -ruN x11-fonts/paratype.orig/pkg-plist x11-fonts/paratype/pkg-plist --- x11-fonts/paratype.orig/pkg-plist 2011-12-31 21:14:38.352479478 +0400 +++ x11-fonts/paratype/pkg-plist 2011-12-31 21:14:52.364477945 +0400 @@ -4,6 +4,7 @@ %%FONTDIR%%/PTF56F.ttf %%FONTDIR%%/PTF75F.ttf %%FONTDIR%%/PTF76F.ttf +%%FONTDIR%%/PTM55F.ttf %%FONTDIR%%/PTN57F.ttf %%FONTDIR%%/PTN77F.ttf %%FONTDIR%%/PTS55F.ttf >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 18:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC174106566B for ; Sat, 31 Dec 2011 18: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 79AEB8FC0C for ; Sat, 31 Dec 2011 18:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVIKBlj050052 for ; Sat, 31 Dec 2011 18:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVIKBJx050051; Sat, 31 Dec 2011 18:20:11 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 18:20:11 GMT Resent-Message-Id: <201112311820.pBVIKBJx050051@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, Alexey Illarionov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC54A106564A for ; Sat, 31 Dec 2011 18:19:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id C72308FC14 for ; Sat, 31 Dec 2011 18:19:22 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBVIJMds008046 for ; Sat, 31 Dec 2011 18:19:22 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBVIJMNi008045; Sat, 31 Dec 2011 18:19:22 GMT (envelope-from nobody) Message-Id: <201112311819.pBVIJMNi008045@red.freebsd.org> Date: Sat, 31 Dec 2011 18:19:22 GMT From: Alexey Illarionov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163741: [patch] net-mgmt/nfdump: update to 1.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: Sat, 31 Dec 2011 18:20:11 -0000 >Number: 163741 >Category: ports >Synopsis: [patch] net-mgmt/nfdump: update to 1.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: Sat Dec 31 18:20:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexey Illarionov >Release: >Organization: >Environment: >Description: update net-mgmt/nfdump to 1.6.5 http://sourceforge.net/mailarchive/message.php?msg_id=28610880 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN net-mgmt/nfdump.orig/Makefile net-mgmt/nfdump/Makefile --- net-mgmt/nfdump.orig/Makefile 2011-12-31 20:33:34.862475652 +0400 +++ net-mgmt/nfdump/Makefile 2011-12-31 21:52:44.585476421 +0400 @@ -6,7 +6,7 @@ # PORTNAME= nfdump -PORTVERSION= 1.6.4 +PORTVERSION= 1.6.5 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} @@ -78,9 +78,6 @@ #MAN1+= sfcapd.1 .endif -post-configure: - @${REINPLACE_CMD} -E -e 's/sfcapd\.1/sfcapd\.1 nfanon\.1/' ${WRKSRC}/man/Makefile - .if !defined(NOPORTDOCS) post-install: ${MKDIR} ${DOCSDIR} diff -ruN net-mgmt/nfdump.orig/distinfo net-mgmt/nfdump/distinfo --- net-mgmt/nfdump.orig/distinfo 2011-12-31 20:33:34.871484595 +0400 +++ net-mgmt/nfdump/distinfo 2011-12-31 21:52:57.745490507 +0400 @@ -1,2 +1,2 @@ -SHA256 (nfdump-1.6.4.tar.gz) = 4ff129dad6957f2fc0b5fdf53aec10f56e05671a85f18abb2ec9a1380c68fda9 -SIZE (nfdump-1.6.4.tar.gz) = 745132 +SHA256 (nfdump-1.6.5.tar.gz) = 3980bad06c73ceabf71c89200e689750a0bc571e8b69f17b76bfd44f8daa08fb +SIZE (nfdump-1.6.5.tar.gz) = 786526 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 18:20:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83DBC1065670; Sat, 31 Dec 2011 18:20: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 550EF8FC0C; Sat, 31 Dec 2011 18:20:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVIKMtN050363; Sat, 31 Dec 2011 18:20:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVIKMeC050359; Sat, 31 Dec 2011 18:20:22 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 18:20:22 GMT Message-Id: <201112311820.pBVIKMeC050359@freefall.freebsd.org> To: littlesavage@rambler.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163741: [patch] net-mgmt/nfdump: update to 1.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: Sat, 31 Dec 2011 18:20:22 -0000 Synopsis: [patch] net-mgmt/nfdump: update to 1.6.5 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Dec 31 18:20:21 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163741 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 18:30:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E393D1065670 for ; Sat, 31 Dec 2011 18:30: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 CDAF98FC0A for ; Sat, 31 Dec 2011 18:30:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVIUIZ7058563 for ; Sat, 31 Dec 2011 18:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVIUINc058560; Sat, 31 Dec 2011 18:30:18 GMT (envelope-from gnats) Date: Sat, 31 Dec 2011 18:30:18 GMT Message-Id: <201112311830.pBVIUINc058560@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/163741: [patch] net-mgmt/nfdump: update to 1.6.5 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: Sat, 31 Dec 2011 18:30:19 -0000 The following reply was made to PR ports/163741; it has been noted by GNATS. From: Edwin Groothuis To: janos.mohacsi@bsd.hu Cc: bug-followup@FreeBSD.org Subject: Re: ports/163741: [patch] net-mgmt/nfdump: update to 1.6.5 Date: Sat, 31 Dec 2011 18:20:19 UT Maintainer of net-mgmt/nfdump, Please note that PR ports/163741 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/163741 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 20:43:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D46391065672; Sat, 31 Dec 2011 20:43:19 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A57C18FC0A; Sat, 31 Dec 2011 20:43:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVKhJcY086366; Sat, 31 Dec 2011 20:43:19 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVKhJ4f086362; Sat, 31 Dec 2011 20:43:19 GMT (envelope-from scheidell) Date: Sat, 31 Dec 2011 20:43:19 GMT Message-Id: <201112312043.pBVKhJ4f086362@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163717: [maintainer update] patch to make devel/ocaml-react work with ocamlfind X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 20:43:19 -0000 Synopsis: [maintainer update] patch to make devel/ocaml-react work with ocamlfind Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Sat Dec 31 20:42:47 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163717 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 20:52:33 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A8E21065670; Sat, 31 Dec 2011 20:52:33 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B5AC8FC12; Sat, 31 Dec 2011 20:52:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVKqX5m095176; Sat, 31 Dec 2011 20:52:33 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVKqX6X095172; Sat, 31 Dec 2011 20:52:33 GMT (envelope-from scheidell) Date: Sat, 31 Dec 2011 20:52:33 GMT Message-Id: <201112312052.pBVKqX6X095172@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163693: [maintainer] textproc/sphinxsearch -- update to 2.0.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: Sat, 31 Dec 2011 20:52:33 -0000 Synopsis: [maintainer] textproc/sphinxsearch -- update to 2.0.3 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Sat Dec 31 20:52:05 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163693 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 21:02:01 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CA071065672; Sat, 31 Dec 2011 21:02:01 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2EEB18FC08; Sat, 31 Dec 2011 21:02:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVL21Zr003696; Sat, 31 Dec 2011 21:02:01 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVL21tW003692; Sat, 31 Dec 2011 21:02:01 GMT (envelope-from scheidell) Date: Sat, 31 Dec 2011 21:02:01 GMT Message-Id: <201112312102.pBVL21tW003692@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163739: [maintainer-update] x11/trayer-srg: upgrade to 1.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, 31 Dec 2011 21:02:01 -0000 Synopsis: [maintainer-update] x11/trayer-srg: upgrade to 1.1.4 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Sat Dec 31 21:01:32 UTC 2011 Responsible-Changed-Why: I'll take it http://www.freebsd.org/cgi/query-pr.cgi?pr=163739 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:20:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC4DA106566B for ; Sat, 31 Dec 2011 22: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 62E378FC15 for ; Sat, 31 Dec 2011 22:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMK8a8068992 for ; Sat, 31 Dec 2011 22:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMK8XY068991; Sat, 31 Dec 2011 22:20:08 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 22:20:08 GMT Resent-Message-Id: <201112312220.pBVMK8XY068991@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, "A.J. Kehoe IV (Nanoman)" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C07C3106566C for ; Sat, 31 Dec 2011 22:13:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AEFCF8FC08 for ; Sat, 31 Dec 2011 22:13:26 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBVMDQje010680 for ; Sat, 31 Dec 2011 22:13:26 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBVMDQdB010674; Sat, 31 Dec 2011 22:13:26 GMT (envelope-from nobody) Message-Id: <201112312213.pBVMDQdB010674@red.freebsd.org> Date: Sat, 31 Dec 2011 22:13:26 GMT From: "A.J. Kehoe IV (Nanoman)" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163743: FreeBSD Port devel/py-sip OPTIONSFILE Patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:20:08 -0000 >Number: 163743 >Category: ports >Synopsis: FreeBSD Port devel/py-sip OPTIONSFILE Patch >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 Dec 31 22:20:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: A.J. Kehoe IV (Nanoman) >Release: 8.2 >Organization: Nanoman's Company >Environment: FreeBSD localhost 8.2-RELEASE-p3 FreeBSD 8.2-RELEASE-p3 #0: Tue Sep 27 18:07:27 UTC 2011 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Some ports management scripts override the default "OPTIONSFILE" for each port by defining it as an environment variable. In the devel/py-sip Makefile, this is overridden, thus causing problems for some ports management scripts. >How-To-Repeat: 1. Install a ports management script that overrides the default "OPTIONSFILE" for each port. 2. cd /usr/ports/devel/py-sip 3. OPTIONSFILE="/example/options" make config 4. Notice that "/example/options" was not created. >Fix: mv /usr/ports/devel/py-sip/Makefile /usr/ports/devel/py-sip/Makefile.old sed 's/^OPTIONSFILE=/OPTIONSFILE?=/' /usr/ports/devel/py-sip/Makefile.old > /usr/ports/devel/py-sip/Makefile Patch attached with submission follows: --- ports/devel/py-sip/Makefile.old 2010-05-11 06:43:07.000000000 -0400 +++ ports/devel/py-sip/Makefile 2011-12-31 17:12:31.000000000 -0500 @@ -21,7 +21,7 @@ DATADIR= ${PREFIX}/share/py-${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} -OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options +OPTIONSFILE?= ${PORT_DBDIR}/py-${PORTNAME}/options ARGS= -b ${PREFIX}/bin -d ${PYTHONPREFIX_SITELIBDIR}\ -e ${PYTHONPREFIX_INCLUDEDIR} -v ${DATADIR} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:20:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1312106566B; Sat, 31 Dec 2011 22:20: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 C7A5C8FC08; Sat, 31 Dec 2011 22:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMKIVm069262; Sat, 31 Dec 2011 22:20:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMKICc069251; Sat, 31 Dec 2011 22:20:18 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 22:20:18 GMT Message-Id: <201112312220.pBVMKICc069251@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163743: FreeBSD Port devel/py-sip OPTIONSFILE Patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:20:19 -0000 Synopsis: FreeBSD Port devel/py-sip OPTIONSFILE Patch Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 22:20:17 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163743 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:28:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF6F4106566B; Sat, 31 Dec 2011 22:28:10 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C41468FC08; Sat, 31 Dec 2011 22:28:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMSAOV077347; Sat, 31 Dec 2011 22:28:10 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMSAMJ077343; Sat, 31 Dec 2011 22:28:10 GMT (envelope-from beech) Date: Sat, 31 Dec 2011 22:28:10 GMT Message-Id: <201112312228.pBVMSAMJ077343@freefall.freebsd.org> To: jnlin@csie.nctu.edu.tw, beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org From: beech@FreeBSD.org Cc: Subject: Re: ports/163150: [patch][update] net/scribe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:28:11 -0000 Synopsis: [patch][update] net/scribe Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: beech Responsible-Changed-When: Sat Dec 31 22:27:40 UTC 2011 Responsible-Changed-Why: Mine http://www.freebsd.org/cgi/query-pr.cgi?pr=163150 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:30:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30612106566C for ; Sat, 31 Dec 2011 22: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 034218FC12 for ; Sat, 31 Dec 2011 22:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMUB2C077425 for ; Sat, 31 Dec 2011 22:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMUB6d077422; Sat, 31 Dec 2011 22:30:11 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 22:30:11 GMT Resent-Message-Id: <201112312230.pBVMUB6d077422@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, "A.J. Kehoe IV (Nanoman)" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 932C9106566B for ; Sat, 31 Dec 2011 22:21:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 81AC78FC0C for ; Sat, 31 Dec 2011 22:21:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBVMLYZN024909 for ; Sat, 31 Dec 2011 22:21:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBVMLYH1024908; Sat, 31 Dec 2011 22:21:34 GMT (envelope-from nobody) Message-Id: <201112312221.pBVMLYH1024908@red.freebsd.org> Date: Sat, 31 Dec 2011 22:21:34 GMT From: "A.J. Kehoe IV (Nanoman)" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163744: FreeBSD Port devel/py-qt4-core OPTIONSFILE Patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:30:12 -0000 >Number: 163744 >Category: ports >Synopsis: FreeBSD Port devel/py-qt4-core OPTIONSFILE Patch >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 Dec 31 22:30:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: A.J. Kehoe IV (Nanoman) >Release: 8.2 >Organization: Nanoman's Company >Environment: FreeBSD localhost 8.2-RELEASE-p3 FreeBSD 8.2-RELEASE-p3 #0: Tue Sep 27 18:07:27 UTC 2011 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Some ports management scripts override the default "OPTIONSFILE" for each port by defining it as an environment variable. In the devel/py-qt4-core Makefile, this is overridden, thus causing problems for some ports management scripts. >How-To-Repeat: 1. Install a ports management script that overrides the default "OPTIONSFILE" for each port. 2. cd /usr/ports/devel/py-qt4-core 3. OPTIONSFILE="/example/options" make config 4. Notice that "/example/options" was not created. >Fix: mv /usr/ports/devel/py-qt4-core/Makefile /usr/ports/devel/py-qt4-core/Makefile.old sed 's/^OPTIONSFILE=/OPTIONSFILE?=/' /usr/ports/devel/py-qt4-core/Makefile.old > /usr/ports/devel/py-qt4-core/Makefile Patch attached with submission follows: --- ports/devel/py-qt4-core/Makefile.old 2011-10-16 18:50:45.000000000 -0400 +++ ports/devel/py-qt4-core/Makefile 2011-12-31 17:15:49.000000000 -0500 @@ -29,7 +29,7 @@ SIPFILES "Install the QtCore SIP files" on \ TRACING "Enable tracing in generated code" off -OPTIONSFILE= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options +OPTIONSFILE?= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options SIPDIR= ${PREFIX}/share/py-sip QSCIDIR= ${PREFIX}/share/qt4/qsci CONFIGURE_ENV+= PYQT4_COMPONENT="${PORTNAME}" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:30:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 912BB1065670 for ; Sat, 31 Dec 2011 22: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 643798FC14 for ; Sat, 31 Dec 2011 22:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMUCgh077454 for ; Sat, 31 Dec 2011 22:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMUC8D077453; Sat, 31 Dec 2011 22:30:12 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 22:30:12 GMT Resent-Message-Id: <201112312230.pBVMUC8D077453@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, "A.J. Kehoe IV (Nanoman)" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11E87106566B for ; Sat, 31 Dec 2011 22:25:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id F41EB8FC08 for ; Sat, 31 Dec 2011 22:25:24 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBVMPOMX041908 for ; Sat, 31 Dec 2011 22:25:24 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBVMPOHn041907; Sat, 31 Dec 2011 22:25:24 GMT (envelope-from nobody) Message-Id: <201112312225.pBVMPOHn041907@red.freebsd.org> Date: Sat, 31 Dec 2011 22:25:24 GMT From: "A.J. Kehoe IV (Nanoman)" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163745: FreeBSD Port devel/py-qt4-dbus OPTIONSFILE Patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:30:12 -0000 >Number: 163745 >Category: ports >Synopsis: FreeBSD Port devel/py-qt4-dbus OPTIONSFILE Patch >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 Dec 31 22:30:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: A.J. Kehoe IV (Nanoman) >Release: 8.2 >Organization: Nanoman's Company >Environment: FreeBSD localhost 8.2-RELEASE-p3 FreeBSD 8.2-RELEASE-p3 #0: Tue Sep 27 18:07:27 UTC 2011 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Some ports management scripts override the default "OPTIONSFILE" for each port by defining it as an environment variable. In the devel/py-qt4-dbus Makefile, this is overridden, thus causing problems for some ports management scripts. >How-To-Repeat: 1. Install a ports management script that overrides the default "OPTIONSFILE" for each port. 2. cd /usr/ports/devel/py-qt4-dbus 3. OPTIONSFILE="/example/options" make config 4. Notice that "/example/options" was not created. >Fix: mv /usr/ports/devel/py-qt4-dbus/Makefile /usr/ports/devel/py-qt4-dbus/Makefile.old sed 's/^OPTIONSFILE=/OPTIONSFILE?=/' /usr/ports/devel/py-qt4-dbus/Makefile.old > /usr/ports/devel/py-qt4-dbus/Makefile Patch attached with submission follows: --- ports/devel/py-qt4-dbus/Makefile.old 2011-10-16 18:50:45.000000000 -0400 +++ ports/devel/py-qt4-dbus/Makefile 2011-12-31 17:23:35.000000000 -0500 @@ -34,7 +34,7 @@ TRACING "Enable tracing in generated code" off PATCHDIR= ${PORTSDIR}/devel/py-qt4-core/files -OPTIONSFILE= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options +OPTIONSFILE?= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options CONFIGURE_ENV+= PYQT4_COMPONENT="${PORTNAME}" ARGS= -b ${PREFIX}/bin\ -d ${PYTHONPREFIX_SITELIBDIR}\ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:30:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3E9710656E2; Sat, 31 Dec 2011 22:30:24 +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 8AC778FC0C; Sat, 31 Dec 2011 22:30:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMUOJK078358; Sat, 31 Dec 2011 22:30:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMUOpL078345; Sat, 31 Dec 2011 22:30:24 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 22:30:24 GMT Message-Id: <201112312230.pBVMUOpL078345@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163744: FreeBSD Port devel/py-qt4-core OPTIONSFILE Patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:30:24 -0000 Synopsis: FreeBSD Port devel/py-qt4-core OPTIONSFILE Patch Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 22:30:23 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163744 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:30:33 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 464BD1065687; Sat, 31 Dec 2011 22:30:33 +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 1CA9E8FC13; Sat, 31 Dec 2011 22:30:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMUWlj079145; Sat, 31 Dec 2011 22:30:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMUWM9079135; Sat, 31 Dec 2011 22:30:32 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 22:30:32 GMT Message-Id: <201112312230.pBVMUWM9079135@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163745: FreeBSD Port devel/py-qt4-dbus OPTIONSFILE Patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:30:33 -0000 Synopsis: FreeBSD Port devel/py-qt4-dbus OPTIONSFILE Patch Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 22:30:32 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163745 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:40:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5CA1106564A for ; Sat, 31 Dec 2011 22: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 A135D8FC14 for ; Sat, 31 Dec 2011 22:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMeCDM088194 for ; Sat, 31 Dec 2011 22:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMeCVV088193; Sat, 31 Dec 2011 22:40:12 GMT (envelope-from gnats) Resent-Date: Sat, 31 Dec 2011 22:40:12 GMT Resent-Message-Id: <201112312240.pBVMeCVV088193@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, "A.J. Kehoe IV (Nanoman)" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 963DD1065672 for ; Sat, 31 Dec 2011 22:31:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 84F558FC0A for ; Sat, 31 Dec 2011 22:31:25 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBVMVPCX042147 for ; Sat, 31 Dec 2011 22:31:25 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBVMVPuZ042146; Sat, 31 Dec 2011 22:31:25 GMT (envelope-from nobody) Message-Id: <201112312231.pBVMVPuZ042146@red.freebsd.org> Date: Sat, 31 Dec 2011 22:31:25 GMT From: "A.J. Kehoe IV (Nanoman)" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163746: FreeBSD Port x11-toolkits/py-qt4-gui OPTIONSFILE Patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:40:12 -0000 >Number: 163746 >Category: ports >Synopsis: FreeBSD Port x11-toolkits/py-qt4-gui OPTIONSFILE Patch >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 Dec 31 22:40:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: A.J. Kehoe IV (Nanoman) >Release: 8.2 >Organization: Nanoman's Company >Environment: FreeBSD localhost 8.2-RELEASE-p3 FreeBSD 8.2-RELEASE-p3 #0: Tue Sep 27 18:07:27 UTC 2011 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Some ports management scripts override the default "OPTIONSFILE" for each port by defining it as an environment variable. In the x11-toolkits/py-qt4-gui Makefile, this is overridden, thus causing problems for some ports management scripts. >How-To-Repeat: 1. Install a ports management script that overrides the default "OPTIONSFILE" for each port. 2. cd /usr/ports/x11-toolkits/py-qt4-gui 3. OPTIONSFILE="/example/options" make config 4. Notice that "/example/options" was not created. >Fix: mv /usr/ports/x11-toolkits/py-qt4-gui/Makefile /usr/ports/x11-toolkits/py-qt4-gui/Makefile.old sed 's/^OPTIONSFILE=/OPTIONSFILE?=/' /usr/ports/x11-toolkits/py-qt4-gui/Makefile.old > /usr/ports/x11-toolkits/py-qt4-gui/Makefile Patch attached with submission follows: --- ports/x11-toolkits/py-qt4-gui/Makefile.old 2011-10-16 18:50:48.000000000 -0400 +++ ports/x11-toolkits/py-qt4-gui/Makefile 2011-12-31 17:29:23.000000000 -0500 @@ -31,7 +31,7 @@ TRACING "Enable tracing in generated code" off PATCHDIR= ${PORTSDIR}/devel/py-qt4-core/files -OPTIONSFILE= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options +OPTIONSFILE?= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options SIPDIR= ${PREFIX}/share/py-sip QSCIDIR= ${PREFIX}/share/qt4/qsci CONFIGURE_ENV+= PYQT4_COMPONENT="${PORTNAME}" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 31 22:40:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9F7F1065670; Sat, 31 Dec 2011 22:40: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 C06EE8FC0A; Sat, 31 Dec 2011 22:40:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBVMeMBj088464; Sat, 31 Dec 2011 22:40:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBVMeMeu088460; Sat, 31 Dec 2011 22:40:22 GMT (envelope-from edwin) Date: Sat, 31 Dec 2011 22:40:22 GMT Message-Id: <201112312240.pBVMeMeu088460@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/163746: FreeBSD Port x11-toolkits/py-qt4-gui OPTIONSFILE Patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 31 Dec 2011 22:40:23 -0000 Synopsis: FreeBSD Port x11-toolkits/py-qt4-gui OPTIONSFILE Patch Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 31 22:40:22 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=163746