From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 01:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 388FD106566C for ; Sun, 12 Aug 2012 01:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 223CB8FC08 for ; Sun, 12 Aug 2012 01:10: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 q7C1A328072652 for ; Sun, 12 Aug 2012 01:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7C1A2BI072651; Sun, 12 Aug 2012 01:10:02 GMT (envelope-from gnats) Date: Sun, 12 Aug 2012 01:10:02 GMT Message-Id: <201208120110.q7C1A2BI072651@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Craig Leres Cc: Subject: Re: ports/170241: [PATCH] devel/libftdi: upgrade to 0.20 and fix automake brokenness 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: Sun, 12 Aug 2012 01:10:03 -0000 The following reply was made to PR ports/170241; it has been noted by GNATS. From: Craig Leres To: bug-followup@FreeBSD.org Cc: leres@ee.lbl.gov Subject: Re: ports/170241: [PATCH] devel/libftdi: upgrade to 0.20 and fix automake brokenness Date: Sat, 11 Aug 2012 18:07:26 -0700 This is a multi-part message in MIME format. --------------050503070108030308080402 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Here's an updated patchset that converts to OptionsNG and adds an option to build/install the Python bindings. This still applies: > Note that files/patch-examples_serial_read.c needs to be > removed since 0.21 replaced examples/serial_read.c with > examples/serial_test.c (which already includes stdlib.h and > does not need to be patched). Craig --------------050503070108030308080402 Content-Type: text/plain; charset=us-ascii; name="patches.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patches.txt" --- Makefile.orig 2011-09-23 15:22:03.000000000 -0700 +++ Makefile 2012-08-11 18:04:53.000000000 -0700 @@ -6,14 +6,16 @@ # PORTNAME= libftdi -PORTVERSION= 0.18 +PORTVERSION= 0.20 CATEGORIES= devel MASTER_SITES= http://www.intra2net.com/en/developer/libftdi/download/ MAINTAINER= o.davydenko@gmail.com COMMENT= A library (using libusb) to talk to FTDI chips -OPTIONS= BOOST "Build with boost" off +OPTIONS_DEFINE+= BOOST PYTHON +BOOST_DESC= Build with boost +PYTHON_DESC= Python bindings USE_AUTOTOOLS= autoconf libtool automake GNU_CONFIGURE= yes @@ -23,9 +25,9 @@ PORTDOCS= COPYING.LIB ChangeLog README -.include +.include -.if defined(WITH_BOOST) +.if ${PORT_OPTIONS:MBOOST} PLIST_SUB+= BOOST="" CONFIGURE_ARGS+= --with-boost CXXFLAGS+= "-I${LOCALBASE}/include" @@ -35,6 +37,14 @@ CONFIGURE_ARGS+= --without-boost .endif +.if ${PORT_OPTIONS:MPYTHON} +PLIST_SUB+= PYTHON="" +CONFIGURE_ARGS+= --enable-python-binding +USE_PYTHON= yes +.else +PLIST_SUB+= PYTHON="@comment " +.endif + .if ${OSVERSION} < 800069 LIB_DEPENDS+= usb-0.1:${PORTSDIR}/devel/libusb .else @@ -47,7 +57,7 @@ ${WRKSRC}/Makefile.am ${WRKSRC}/Makefile.in pre-configure: - @cd ${WRKSRC} && ${AUTORECONF} + cd ${WRKSRC} && ${AUTORECONF} --force --install post-install: .if !defined(NOPORTDOCS) @@ -55,4 +65,4 @@ ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} .endif -.include +.include --- distinfo.orig 2011-03-05 07:55:45.000000000 -0800 +++ distinfo 2012-08-11 18:01:08.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (libftdi-0.18.tar.gz) = 5b6f3c3ee51c6aa24d3b87135e01762cf68821d1c3599d87d349fea4ede74c62 -SIZE (libftdi-0.18.tar.gz) = 398380 +SHA256 (libftdi-0.20.tar.gz) = 3176d5b5986438f33f5208e690a8bfe90941be501cc0a72118ce3d338d4b838e +SIZE (libftdi-0.20.tar.gz) = 423570 --- pkg-plist.orig 2011-06-12 06:55:44.000000000 -0700 +++ pkg-plist 2012-08-11 18:01:08.000000000 -0700 @@ -4,19 +4,23 @@ bin/bitbang_cbus bin/bitbang_ft2232 bin/find_all +bin/serial_test %%BOOST%%bin/find_all_pp bin/libftdi-config -bin/serial_read bin/simple include/ftdi.h %%BOOST%%include/ftdi.hpp lib/libftdi.a lib/libftdi.la lib/libftdi.so -lib/libftdi.so.19 +lib/libftdi.so.21 %%BOOST%%lib/libftdipp.a %%BOOST%%lib/libftdipp.la %%BOOST%%lib/libftdipp.so %%BOOST%%lib/libftdipp.so.19 +%%PYTHON%%%%PYTHON_SITELIBDIR%%/_ftdi.so +%%PYTHON%%%%PYTHON_SITELIBDIR%%/ftdi.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/ftdi.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/libftdi-0.20-py2.7.egg-info libdata/pkgconfig/libftdi.pc %%BOOST%%libdata/pkgconfig/libftdipp.pc --------------050503070108030308080402-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 03:00:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B11E8106566C for ; Sun, 12 Aug 2012 03:00: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 8B2478FC0A for ; Sun, 12 Aug 2012 03:00: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 q7C307Qf085634 for ; Sun, 12 Aug 2012 03:00:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7C307to085633; Sun, 12 Aug 2012 03:00:07 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 03:00:07 GMT Resent-Message-Id: <201208120300.q7C307to085633@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, Dominic Fandrey Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 754A71065672 for ; Sun, 12 Aug 2012 02:52:28 +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 0CD8C8FC0A for ; Sun, 12 Aug 2012 02:52:28 +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 q7C2qRiW087354 for ; Sun, 12 Aug 2012 02:52:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7C2qRgA087353; Sun, 12 Aug 2012 02:52:27 GMT (envelope-from nobody) Message-Id: <201208120252.q7C2qRgA087353@red.freebsd.org> Date: Sun, 12 Aug 2012 02:52:27 GMT From: Dominic Fandrey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170548: devel/zziplib X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 03:00:07 -0000 >Number: 170548 >Category: ports >Synopsis: devel/zziplib >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 Aug 12 03:00:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dominic Fandrey >Release: RELENG_9 >Organization: private >Environment: FreeBSD 7.4-STABLE #0: Sun Aug 12 04:41:05 CEST 2012 root@tinderbox.host:/usr/src/sys/magic/kernel/path amd64 >Description: The port is marked broken für RELENG_7/amd64: .if ${OSVERSION} < 800000 && ${ARCH} == "amd64" BROKEN= segfaults during build .endif If I comment out the BROKEN line it builds perfectly fine in my Tinderbox. No segfaults. So unless it's a kernel problem, whatever caused the segfault is no longer an issue. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 03:50:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78806106564A for ; Sun, 12 Aug 2012 03:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 505948FC0C for ; Sun, 12 Aug 2012 03:50: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 q7C3o3bt092858 for ; Sun, 12 Aug 2012 03:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7C3o3mG092852; Sun, 12 Aug 2012 03:50:03 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 03:50:03 GMT Resent-Message-Id: <201208120350.q7C3o3mG092852@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, Mamoru Sakaue Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C4EA3106564A for ; Sun, 12 Aug 2012 03:44: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 9692E8FC08 for ; Sun, 12 Aug 2012 03:44: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 q7C3iPXG060557 for ; Sun, 12 Aug 2012 03:44:25 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7C3iPGL060556; Sun, 12 Aug 2012 03:44:25 GMT (envelope-from nobody) Message-Id: <201208120344.q7C3iPGL060556@red.freebsd.org> Date: Sun, 12 Aug 2012 03:44:25 GMT From: Mamoru Sakaue To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170550: Update of 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, 12 Aug 2012 03:50:03 -0000 >Number: 170550 >Category: ports >Synopsis: Update of ports-mgmt/portsreinstall >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 03:50:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mamoru Sakaue >Release: 8.3-RELEASE >Organization: MwGhennndo >Environment: FreeBSD Grubstake.EmpireNmw 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #0: Mon Jun 11 23:52:38 UTC 2012 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update of ports-mgmt/portsreinstall to the latest version 2.0.0. Specifications of the command-line interface is extended with slight change. A functionality of self-update of portsreinstall itself is implemented from this version, however, it will work from the next update to future versions. Update from the previous versions to 2.0.0 may require prior manual update of portsreinstall to the other ports/packages. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/ports-mgmt/portsreinstall/Makefile /drives/sukiyaki/MwGhennndo/technology/tinyprojects/portsreinstall/ports/2.0.0/port/ports-mgmt/portsreinstall/Makefile --- /usr/ports/ports-mgmt/portsreinstall/Makefile 2012-08-02 18:02:43.000000000 +0900 +++ /drives/sukiyaki/MwGhennndo/technology/tinyprojects/portsreinstall/ports/2.0.0/port/ports-mgmt/portsreinstall/Makefile 2012-08-12 08:55:49.000000000 +0900 @@ -6,9 +6,9 @@ # PORTNAME= portsreinstall -PORTVERSION= 1.1.0 +PORTVERSION= 2.0.0 CATEGORIES= ports-mgmt -MASTER_SITES= SFJP/${PORTNAME}/55702/ \ +MASTER_SITES= SFJP/${PORTNAME}/56629/ \ http://www.mwghennndo.com/softwares/${PORTNAME}/ MAINTAINER= sakaue.mamoru@samurai.mwghennn.net diff -ruN /usr/ports/ports-mgmt/portsreinstall/distinfo /drives/sukiyaki/MwGhennndo/technology/tinyprojects/portsreinstall/ports/2.0.0/port/ports-mgmt/portsreinstall/distinfo --- /usr/ports/ports-mgmt/portsreinstall/distinfo 2012-04-29 03:33:06.000000000 +0900 +++ /drives/sukiyaki/MwGhennndo/technology/tinyprojects/portsreinstall/ports/2.0.0/port/ports-mgmt/portsreinstall/distinfo 2012-08-12 08:58:50.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (portsreinstall-1.1.0.tar.gz) = eac3eeb0f5b4d3f05eb70964a0e07b0928656d1c1ff1baa70f096ecc706c576e -SIZE (portsreinstall-1.1.0.tar.gz) = 23969 +SHA256 (portsreinstall-2.0.0.tar.gz) = cc69ca9f67a9b4770bc6440de334a241ff9ea0ea3396a7a2828b100a63166ecf +SIZE (portsreinstall-2.0.0.tar.gz) = 27999 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 07:01:55 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B2C31065674; Sun, 12 Aug 2012 07:01:55 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C5F38FC0A; Sun, 12 Aug 2012 07:01: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 q7C71sVs020211; Sun, 12 Aug 2012 07:01:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7C71sjU020207; Sun, 12 Aug 2012 07:01:54 GMT (envelope-from edwin) Date: Sun, 12 Aug 2012 07:01:54 GMT Message-Id: <201208120701.q7C71sjU020207@freefall.freebsd.org> To: itechbear@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170532: update devel/kdbg from 2.2.0 to 2.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: Sun, 12 Aug 2012 07:01:55 -0000 Synopsis: update devel/kdbg from 2.2.0 to 2.5.1 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Aug 12 07:01:54 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170532 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 07:10:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F1A4106564A for ; Sun, 12 Aug 2012 07:10: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 0970E8FC08 for ; Sun, 12 Aug 2012 07:10: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 q7C7A3Pt020965 for ; Sun, 12 Aug 2012 07:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7C7A3lV020964; Sun, 12 Aug 2012 07:10:03 GMT (envelope-from gnats) Date: Sun, 12 Aug 2012 07:10:03 GMT Message-Id: <201208120710.q7C7A3lV020964@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170532: update devel/kdbg from 2.2.0 to 2.5.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 07:10:04 -0000 The following reply was made to PR ports/170532; it has been noted by GNATS. From: Edwin Groothuis To: thomas.sander@gmx.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/170532: update devel/kdbg from 2.2.0 to 2.5.1 Date: Sun, 12 Aug 2012 07:01:51 UT Maintainer of devel/kdbg, Please note that PR ports/170532 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/170532 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 07:16:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 83EA71065675; Sun, 12 Aug 2012 07:16: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 570958FC0C; Sun, 12 Aug 2012 07:16: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 q7C7GUjc022596; Sun, 12 Aug 2012 07:16:30 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7C7GUdl022592; Sun, 12 Aug 2012 07:16:30 GMT (envelope-from scheidell) Date: Sun, 12 Aug 2012 07:16:30 GMT Message-Id: <201208120716.q7C7GUdl022592@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170544: [MAINTAINER] dns/opendnssec: update to 1.3.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: Sun, 12 Aug 2012 07:16:30 -0000 Synopsis: [MAINTAINER] dns/opendnssec: update to 1.3.10 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Sun Aug 12 07:16:29 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170544 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 07:16:42 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B2BE106566B; Sun, 12 Aug 2012 07:16:42 +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 3F7718FC14; Sun, 12 Aug 2012 07:16: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 q7C7GgHH022710; Sun, 12 Aug 2012 07:16:42 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7C7GgIH022706; Sun, 12 Aug 2012 07:16:42 GMT (envelope-from scheidell) Date: Sun, 12 Aug 2012 07:16:42 GMT Message-Id: <201208120716.q7C7GgIH022706@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170548: devel/zziplib X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 07:16:42 -0000 Synopsis: devel/zziplib Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Sun Aug 12 07:16:41 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170548 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 08:14:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2A85106566B; Sun, 12 Aug 2012 08:14:34 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B6BC68FC15; Sun, 12 Aug 2012 08:14: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 q7C8EYjP036982; Sun, 12 Aug 2012 08:14:34 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7C8EYuj036978; Sun, 12 Aug 2012 08:14:34 GMT (envelope-from kwm) Date: Sun, 12 Aug 2012 08:14:34 GMT Message-Id: <201208120814.q7C8EYuj036978@freefall.freebsd.org> To: kwm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kwm@FreeBSD.org From: kwm@FreeBSD.org Cc: Subject: Re: ports/170078: New port: databases/mysql-workbench: a cross-platform, visual database design tool developed by MySQL X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 08:14:35 -0000 Synopsis: New port: databases/mysql-workbench: a cross-platform, visual database design tool developed by MySQL Responsible-Changed-From-To: freebsd-ports-bugs->kwm Responsible-Changed-By: kwm Responsible-Changed-When: Sun Aug 12 08:14:15 UTC 2012 Responsible-Changed-Why: grab http://www.freebsd.org/cgi/query-pr.cgi?pr=170078 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 10:10:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FB35106564A for ; Sun, 12 Aug 2012 10:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 282968FC0C for ; Sun, 12 Aug 2012 10:10: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 q7CAA1tQ052625 for ; Sun, 12 Aug 2012 10:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CAA1vk052624; Sun, 12 Aug 2012 10:10:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 10:10:01 GMT Resent-Message-Id: <201208121010.q7CAA1vk052624@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, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E895A1065672 for ; Sun, 12 Aug 2012 10:08:17 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id BAD208FC08 for ; Sun, 12 Aug 2012 10:08:17 +0000 (UTC) Received: by pbbrp2 with SMTP id rp2so5817044pbb.13 for ; Sun, 12 Aug 2012 03:08:17 -0700 (PDT) Received: by 10.66.78.9 with SMTP id x9mr10695980paw.84.1344766097256; Sun, 12 Aug 2012 03:08:17 -0700 (PDT) Received: from freebsd-9-amd64.localdomain (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPS id pt1sm3084790pbc.4.2012.08.12.03.08.15 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 12 Aug 2012 03:08:16 -0700 (PDT) Received: by freebsd-9-amd64.localdomain (Postfix, from userid 1001) id 8A5013FF83; Sun, 12 Aug 2012 20:08:10 +1000 (EST) Message-Id: <20120812100810.8A5013FF83@freebsd-9-amd64.localdomain> Date: Sun, 12 Aug 2012 20:08:10 +1000 (EST) From: Kubilay Kocak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kitche@kitchetech.com Subject: ports/170551: [PATCH] x11/sterm: update to 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: Sun, 12 Aug 2012 10:10:02 -0000 >Number: 170551 >Category: ports >Synopsis: [PATCH] x11/sterm: update to 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: Sun Aug 12 10:10:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD freebsd-9-amd64 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Sat Jul 7 21:26:56 EST >Description: - Update to 0.2.1 - Remove LICENSE_FILE for those in port.licenses.db.mk ==[QA]== port test clean redports build: https://redports.org/buildarchive/20120812015126-30614/ Note: devel/ncurses on CLANG has issues, can sterm work with base ncurses library? Worth an OPTION here? Port maintainer (kitche@kitchetech.com) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- sterm-0.2.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11/sterm/Makefile ./Makefile --- /usr/ports/x11/sterm/Makefile 2012-02-22 22:08:20.000000000 +1100 +++ ./Makefile 2012-08-12 11:49:04.000000000 +1000 @@ -6,7 +6,7 @@ # PORTNAME= sterm -PORTVERSION= 0.2 +PORTVERSION= 0.2.1 CATEGORIES= x11 MASTER_SITES= http://dl.suckless.org/st/ DISTNAME= st-${PORTVERSION} @@ -15,7 +15,6 @@ COMMENT= A simple X terminal LICENSE= BSD -LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${LOCALBASE}/share/misc/terminfo.db:${PORTSDIR}/devel/ncurses diff -ruN --exclude=CVS /usr/ports/x11/sterm/distinfo ./distinfo --- /usr/ports/x11/sterm/distinfo 2012-02-22 22:08:20.000000000 +1100 +++ ./distinfo 2012-08-12 11:49:09.000000000 +1000 @@ -1,2 +1,2 @@ -SHA256 (st-0.2.tar.gz) = 80e68ee5442188becaf02e2197fe93d0b53c78d770d87cef2e7496ee6ae7383f -SIZE (st-0.2.tar.gz) = 19421 +SHA256 (st-0.2.1.tar.gz) = 4bf5817483d3274fae9a205e692b308a5fd0cfcb55ed9f3761d2c564b4f7d897 +SIZE (st-0.2.1.tar.gz) = 19804 --- sterm-0.2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 10:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D98E106566B; Sun, 12 Aug 2012 10:10:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 30BF98FC12; Sun, 12 Aug 2012 10: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 q7CAACNe052749; Sun, 12 Aug 2012 10:10:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CAACvl052745; Sun, 12 Aug 2012 10:10:12 GMT (envelope-from edwin) Date: Sun, 12 Aug 2012 10:10:12 GMT Message-Id: <201208121010.q7CAACvl052745@freefall.freebsd.org> To: koobs.freebsd@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170551: [PATCH] x11/sterm: update to 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: Sun, 12 Aug 2012 10:10:12 -0000 Synopsis: [PATCH] x11/sterm: update to 0.2.1 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Aug 12 10:10:11 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170551 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 10:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D21A6106564A for ; Sun, 12 Aug 2012 10:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BC10E8FC0C for ; Sun, 12 Aug 2012 10: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 q7CAK39V055944 for ; Sun, 12 Aug 2012 10: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 q7CAK3MV055943; Sun, 12 Aug 2012 10:20:03 GMT (envelope-from gnats) Date: Sun, 12 Aug 2012 10:20:03 GMT Message-Id: <201208121020.q7CAK3MV055943@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170551: [PATCH] x11/sterm: update to 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: Sun, 12 Aug 2012 10:20:03 -0000 The following reply was made to PR ports/170551; it has been noted by GNATS. From: Edwin Groothuis To: kitche@kitchetech.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/170551: [PATCH] x11/sterm: update to 0.2.1 Date: Sun, 12 Aug 2012 10:10:10 UT Maintainer of x11/sterm, Please note that PR ports/170551 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/170551 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 10:20:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47C24106566B for ; Sun, 12 Aug 2012 10: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 212D38FC14 for ; Sun, 12 Aug 2012 10:20: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 q7CAK3OB055954 for ; Sun, 12 Aug 2012 10: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 q7CAK3eA055953; Sun, 12 Aug 2012 10:20:03 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 10:20:03 GMT Resent-Message-Id: <201208121020.q7CAK3eA055953@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D01561065676 for ; Sun, 12 Aug 2012 10:14:46 +0000 (UTC) (envelope-from crees@bayofrum.net) Received: from mk-outboundfilter-6.mail.uk.tiscali.com (mk-outboundfilter-6.mail.uk.tiscali.com [212.74.114.14]) by mx1.freebsd.org (Postfix) with ESMTP id 5AE9E8FC0C for ; Sun, 12 Aug 2012 10:14:45 +0000 (UTC) Received: from host-2-102-104-46.as13285.net (HELO pegasus.bayofrum.net) ([2.102.104.46]) by smtp.pipex.tiscali.co.uk with ESMTP; 12 Aug 2012 11:13:36 +0100 Received: by pegasus.bayofrum.net (Postfix, from userid 1001) id 442F414167; Sun, 12 Aug 2012 11:13:09 +0100 (BST) Message-Id: <20120812101309.442F414167@pegasus.bayofrum.net> Date: Sun, 12 Aug 2012 11:13:09 +0100 (BST) From: Chris Rees To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170552: bsd.port.mk: Fix CONFIGURE_FAIL_MESSAGE to be pkgng-aware 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: Sun, 12 Aug 2012 10:20:04 -0000 >Number: 170552 >Category: ports >Synopsis: bsd.port.mk: Fix CONFIGURE_FAIL_MESSAGE to be pkgng-aware >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 Aug 12 10:20:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Chris Rees >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD pegasus.bayofrum.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Sun Apr 29 12:29:02 BST 2012 root@pegasus.bayofrum.net:/usr/obj/usr/src/sys/PEGASUS amd64 >Description: If configure fails, a message is printed asking the user to ls /var/db/pkg to get all packages installed. For years, this has worked fine... but nowadays: [crees@pegasus]~% ls /var/db/pkg /var/db/pkg/repo.sqlite /var/db/pkg/local.sqlite >How-To-Repeat: >Fix: pkg_info -Ea and pkg info -Ea both do what is required here. Really, this shouldn't require an exp-run, but I guess it wouldn't hurt to stick it in with another change. --- bsd.port.mk-configure-fail-message.diff begins here --- Index: bsd.port.mk =================================================================== --- bsd.port.mk (revision 302404) +++ bsd.port.mk (working copy) @@ -2908,7 +2908,7 @@ CONFIGURE_LOG?= config.log # A default message to print if do-configure fails. -CONFIGURE_FAIL_MESSAGE?= "Please report the problem to ${MAINTAINER} [maintainer] and attach the \"${CONFIGURE_WRKSRC}/${CONFIGURE_LOG}\" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an \`ls ${PKG_DBDIR}\`)." +CONFIGURE_FAIL_MESSAGE?= "Please report the problem to ${MAINTAINER} [maintainer] and attach the \"${CONFIGURE_WRKSRC}/${CONFIGURE_LOG}\" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a ${PKG_INFO} -Ea)." .if defined(GNU_CONFIGURE) # Maximum command line length --- bsd.port.mk-configure-fail-message.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 10:20:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A26AF1065673; Sun, 12 Aug 2012 10:20: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 7722B8FC18; Sun, 12 Aug 2012 10: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 q7CAKJxN056064; Sun, 12 Aug 2012 10: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 q7CAKJwc056060; Sun, 12 Aug 2012 10:20:19 GMT (envelope-from edwin) Date: Sun, 12 Aug 2012 10:20:19 GMT Message-Id: <201208121020.q7CAKJwc056060@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170552: bsd.port.mk: Fix CONFIGURE_FAIL_MESSAGE to be pkgng-aware X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 10:20:19 -0000 Synopsis: bsd.port.mk: Fix CONFIGURE_FAIL_MESSAGE to be pkgng-aware Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Aug 12 10:20:19 UTC 2012 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170552 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:10:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 369671065672 for ; Sun, 12 Aug 2012 11:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0DAC48FC0A for ; Sun, 12 Aug 2012 11:10: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 q7CBA1I7061109 for ; Sun, 12 Aug 2012 11:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBA1vb061108; Sun, 12 Aug 2012 11:10:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 11:10:01 GMT Resent-Message-Id: <201208121110.q7CBA1vb061108@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1C271065672 for ; Sun, 12 Aug 2012 11:07:18 +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 CA3488FC0A for ; Sun, 12 Aug 2012 11:07:18 +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 q7CB7IKf030313 for ; Sun, 12 Aug 2012 11:07:18 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CB7ItC030312; Sun, 12 Aug 2012 11:07:18 GMT (envelope-from nobody) Message-Id: <201208121107.q7CB7ItC030312@red.freebsd.org> Date: Sun, 12 Aug 2012 11:07:18 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170553: Please import trytond_account into finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:10:02 -0000 >Number: 170553 >Category: ports >Synopsis: Please import trytond_account into finance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 11:10:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: >Organization: >Environment: >Description: This port provides data model and business logic to enable trytond to handle with accounting. >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: # # trytond_account # trytond_account/files # trytond_account/Makefile # trytond_account/distinfo # trytond_account/pkg-descr # trytond_account/pkg-plist # echo c - trytond_account mkdir -p trytond_account > /dev/null 2>&1 echo c - trytond_account/files mkdir -p trytond_account/files > /dev/null 2>&1 echo x - trytond_account/Makefile sed 's/^X//' >trytond_account/Makefile << 'a70a9f5f1957947c69fe6a98757dc9fb' X# New ports collection makefile for: trytond_account X# Date created: 12 August, 2012 X# Whom: Matthias Petermann X# X# $ $ X# X XPORTNAME= trytond_account XPORTVERSION= 2.4.1 XCATEGORIES= finance python XMASTER_SITES= http://downloads2.tryton.org/2.4/ X XMAINTAINER= matthias@petermann.it XCOMMENT= The Account Module for Tryton X XLICENSE= GPLv3 X XBUILD_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond \ X trytond_company>=2.4.0:${PORTSDIR}/finance/trytond_company \ X ${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:${PORTSDIR}/devel/py-dateutil XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS=easy_install X XSUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} \ X PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG} X X.include a70a9f5f1957947c69fe6a98757dc9fb echo x - trytond_account/distinfo sed 's/^X//' >trytond_account/distinfo << '79fafdf5d2bb4f5ba1532e5460aba091' XSHA256 (trytond_account-2.4.1.tar.gz) = 1e12c9176fc8007a1304db90c464e4866693ca3da9d01146ecda4e54a242e67e XSIZE (trytond_account-2.4.1.tar.gz) = 240508 79fafdf5d2bb4f5ba1532e5460aba091 echo x - trytond_account/pkg-descr sed 's/^X//' >trytond_account/pkg-descr << 'ccaaa50d3c6ec39c9a00d231c2581a4c' XThe account module defines fundamentals for most of accounting needs. X XWWW: http://www.tryton.org/ ccaaa50d3c6ec39c9a00d231c2581a4c echo x - trytond_account/pkg-plist sed 's/^X//' >trytond_account/pkg-plist << '62fe47cffc62ebe3e99843701e59c3bf' Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/EGG-INFO/entry_points.txt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/__init__.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/__init__.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/__init__.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/__tryton__.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/__tryton__.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/__tryton__.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/account.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/account.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/account.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/account.xml Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/aged_balance.odt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/configuration.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/configuration.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/configuration.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/configuration.xml Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/fiscalyear.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/fiscalyear.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/fiscalyear.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/fiscalyear.xml Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/general_journal.odt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/general_ledger.odt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/icons/tryton-financial.svg Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/journal.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/journal.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/journal.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/journal.xml Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/bg_BG.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/ca_ES.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/cs_CZ.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/de_DE.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/es_AR.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/es_CO.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/es_ES.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/fr_FR.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/nl_NL.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale/ru_RU.po Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/move.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/move.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/move.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/move.xml Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/party.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/party.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/party.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/party.xml Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/period.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/period.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/period.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/period.xml Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tax.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tax.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tax.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tax.xml Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tests/__init__.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tests/__init__.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tests/__init__.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tests/test_account.py Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tests/test_account.pyc Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tests/test_account.pyo Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/third_party_balance.odt Xlib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/trial_balance.odt X@dirrm lib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/tests X@dirrm lib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/locale X@dirrm lib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account/icons X@dirrm lib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules/account X@dirrm lib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond/modules X@dirrm lib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/trytond X@dirrm lib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/trytond_account-2.4.1-py2.7.egg 62fe47cffc62ebe3e99843701e59c3bf exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:10:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D7F21065675 for ; Sun, 12 Aug 2012 11:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 649F48FC17 for ; Sun, 12 Aug 2012 11:10: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 q7CBA2X2061118 for ; Sun, 12 Aug 2012 11:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBA2Yn061117; Sun, 12 Aug 2012 11:10:02 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 11:10:02 GMT Resent-Message-Id: <201208121110.q7CBA2Yn061117@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF463106566B for ; Sun, 12 Aug 2012 11:08: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 A816F8FC08 for ; Sun, 12 Aug 2012 11:08: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 q7CB8nni030397 for ; Sun, 12 Aug 2012 11:08:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CB8nRT030396; Sun, 12 Aug 2012 11:08:49 GMT (envelope-from nobody) Message-Id: <201208121108.q7CB8nRT030396@red.freebsd.org> Date: Sun, 12 Aug 2012 11:08:49 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170554: Please import trytond_account_invoice into finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:10:02 -0000 >Number: 170554 >Category: ports >Synopsis: Please import trytond_account_invoice into finance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 11:10:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: >Organization: >Environment: >Description: This port provides data model and business logic to add invoicing capabilities to the trytond module accounting. >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: # # trytond_account_invoice # trytond_account_invoice/files # trytond_account_invoice/Makefile # trytond_account_invoice/distinfo # trytond_account_invoice/pkg-descr # trytond_account_invoice/pkg-plist # echo c - trytond_account_invoice mkdir -p trytond_account_invoice > /dev/null 2>&1 echo c - trytond_account_invoice/files mkdir -p trytond_account_invoice/files > /dev/null 2>&1 echo x - trytond_account_invoice/Makefile sed 's/^X//' >trytond_account_invoice/Makefile << '3c2d9bd6b7d7f8bcf6f5ad993094d345' X# New ports collection makefile for: trytond_account_invoice X# Date created: 12 August, 2012 X# Whom: Matthias Petermann X# X# $ $ X# X XPORTNAME= trytond_account_invoice XPORTVERSION= 2.4.1 XCATEGORIES= finance python XMASTER_SITES= http://downloads2.tryton.org/2.4/ X XMAINTAINER= matthias@petermann.it XCOMMENT= The Account Invoice Module for Tryton X XLICENSE= GPLv3 X XBUILD_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond \ X trytond_account_product>=2.4.1:${PORTSDIR}/finance/trytond_account_product XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS=easy_install X XSUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} \ X PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG} X X.include 3c2d9bd6b7d7f8bcf6f5ad993094d345 echo x - trytond_account_invoice/distinfo sed 's/^X//' >trytond_account_invoice/distinfo << '7479c29f8464acbff30f8f175bad0c4b' XSHA256 (trytond_account_invoice-2.4.1.tar.gz) = 8eae98a70a4396390b5a19edf434c8e8ac1c89027199afd111f74547a1bbfa24 XSIZE (trytond_account_invoice-2.4.1.tar.gz) = 101498 7479c29f8464acbff30f8f175bad0c4b echo x - trytond_account_invoice/pkg-descr sed 's/^X//' >trytond_account_invoice/pkg-descr << 'bb3ae393437bf453ea44f6236ccd4a48' XThe account invoice module defines data model and business logic for Xcreating invoices. X XWWW: http://www.tryton.org/ bb3ae393437bf453ea44f6236ccd4a48 echo x - trytond_account_invoice/pkg-plist sed 's/^X//' >trytond_account_invoice/pkg-plist << 'ac6fe0cc8c0d7a529d2a177d9ed77f8e' Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/EGG-INFO/entry_points.txt Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/__init__.py Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/__init__.pyc Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/__init__.pyo Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/__tryton__.py Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/__tryton__.pyc Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/__tryton__.pyo Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/account.py Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/account.pyc Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/account.pyo Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/account.xml Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/invoice.odt Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/invoice.py Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/invoice.pyc Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/invoice.pyo Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/invoice.xml Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/bg_BG.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/ca_ES.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/cs_CZ.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/de_DE.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/es_AR.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/es_CO.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/es_ES.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/fr_FR.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/nl_NL.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale/ru_RU.po Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/party.py Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/party.pyc Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/party.pyo Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/party.xml Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/payment_term.py Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/payment_term.pyc Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/payment_term.pyo Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/payment_term.xml Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/tests/__init__.py Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/tests/__init__.pyc Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/tests/__init__.pyo Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/tests/test_account_invoice.py Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/tests/test_account_invoice.pyc Xlib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/tests/test_account_invoice.pyo X@dirrm lib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/tests X@dirrm lib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice/locale X@dirrm lib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules/account_invoice X@dirrm lib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond/modules X@dirrm lib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/trytond X@dirrm lib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/trytond_account_invoice-2.4.1-py2.7.egg ac6fe0cc8c0d7a529d2a177d9ed77f8e exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:17:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 211C91065673; Sun, 12 Aug 2012 11:17:39 +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 E76AD8FC0A; Sun, 12 Aug 2012 11:17: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 q7CBHcY0062924; Sun, 12 Aug 2012 11:17:38 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBHcjg062920; Sun, 12 Aug 2012 11:17:38 GMT (envelope-from crees) Date: Sun, 12 Aug 2012 11:17:38 GMT Message-Id: <201208121117.q7CBHcjg062920@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/170553: Please import trytond_account into finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:17:39 -0000 Synopsis: Please import trytond_account into finance Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: crees Class-Changed-When: Sun Aug 12 11:16:58 UTC 2012 Class-Changed-Why: Fix synopsis and reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=170553 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:19:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81067106564A; Sun, 12 Aug 2012 11:19:38 +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 5368E8FC08; Sun, 12 Aug 2012 11:19: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 q7CBJcga063225; Sun, 12 Aug 2012 11:19:38 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBJcaC063221; Sun, 12 Aug 2012 11:19:38 GMT (envelope-from crees) Date: Sun, 12 Aug 2012 11:19:38 GMT Message-Id: <201208121119.q7CBJcaC063221@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/170554: New port: finance/trytond_account_invoice X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:19:38 -0000 Old Synopsis: Please import trytond_account_invoice into finance New Synopsis: New port: finance/trytond_account_invoice Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: crees Class-Changed-When: Sun Aug 12 11:18:13 UTC 2012 Class-Changed-Why: Fix Synopsis and reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=170554 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:20:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48FB2106566B for ; Sun, 12 Aug 2012 11:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 204B38FC17 for ; Sun, 12 Aug 2012 11:20: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 q7CBK1DU063294 for ; Sun, 12 Aug 2012 11:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBK1I0063293; Sun, 12 Aug 2012 11:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 11:20:01 GMT Resent-Message-Id: <201208121120.q7CBK1I0063293@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BBD61065672 for ; Sun, 12 Aug 2012 11:11: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 563768FC0A for ; Sun, 12 Aug 2012 11:11: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 q7CBBaBn030670 for ; Sun, 12 Aug 2012 11:11:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CBBa5t030669; Sun, 12 Aug 2012 11:11:36 GMT (envelope-from nobody) Message-Id: <201208121111.q7CBBa5t030669@red.freebsd.org> Date: Sun, 12 Aug 2012 11:11:36 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170555: Please import trytond_account_product into finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:20:02 -0000 >Number: 170555 >Category: ports >Synopsis: Please import trytond_account_product into finance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 11:20:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: This port provides data model and business logic to enhance trytond module accounting by product. 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: # # trytond_account_product # trytond_account_product/files # trytond_account_product/Makefile # trytond_account_product/distinfo # trytond_account_product/pkg-descr # trytond_account_product/pkg-plist # echo c - trytond_account_product mkdir -p trytond_account_product > /dev/null 2>&1 echo c - trytond_account_product/files mkdir -p trytond_account_product/files > /dev/null 2>&1 echo x - trytond_account_product/Makefile sed 's/^X//' >trytond_account_product/Makefile << '055eca046bc596545da93749d1d0c75d' X# New ports collection makefile for: trytond_account_product X# Date created: 12 August, 2012 X# Whom: Matthias Petermann X# X# $ $ X# X XPORTNAME= trytond_account_product XPORTVERSION= 2.4.1 XCATEGORIES= finance python XMASTER_SITES= http://downloads2.tryton.org/2.4/ X XMAINTAINER= matthias@petermann.it XCOMMENT= The Account Product Module for Tryton X XLICENSE= GPLv3 X XBUILD_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond \ X trytond_account>=2.4.1:${PORTSDIR}/finance/trytond_account \ X trytond_product>=2.4.0:${PORTSDIR}/finance/trytond_product XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS=easy_install X XSUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} \ X PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG} X X.include 055eca046bc596545da93749d1d0c75d echo x - trytond_account_product/distinfo sed 's/^X//' >trytond_account_product/distinfo << 'ea855bf78021f292039d42c9a6e465d4' XSHA256 (trytond_account_product-2.4.1.tar.gz) = aa4bb4b6b08602ee28209e895412499953a25b2a0ebd17b23cc613dc0294aa15 XSIZE (trytond_account_product-2.4.1.tar.gz) = 25024 ea855bf78021f292039d42c9a6e465d4 echo x - trytond_account_product/pkg-descr sed 's/^X//' >trytond_account_product/pkg-descr << '8227d644696358c284145b793ea01172' XThe account product module defines the link between product and account. X XWWW: http://www.tryton.org/ 8227d644696358c284145b793ea01172 echo x - trytond_account_product/pkg-plist sed 's/^X//' >trytond_account_product/pkg-plist << '68861917053522218f747b90cd21baf6' Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/EGG-INFO/entry_points.txt Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/__init__.py Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/__init__.pyc Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/__init__.pyo Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/__tryton__.py Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/__tryton__.pyc Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/__tryton__.pyo Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/bg_BG.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/ca_ES.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/cs_CZ.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/de_DE.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/es_AR.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/es_CO.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/es_ES.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/fr_FR.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/nl_NL.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale/ru_RU.po Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/product.py Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/product.pyc Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/product.pyo Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/product.xml Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/tests/__init__.py Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/tests/__init__.pyc Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/tests/__init__.pyo Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/tests/test_account_product.py Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/tests/test_account_product.pyc Xlib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/tests/test_account_product.pyo X@dirrm lib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/tests X@dirrm lib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product/locale X@dirrm lib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules/account_product X@dirrm lib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond/modules X@dirrm lib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/trytond X@dirrm lib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/trytond_account_product-2.4.1-py2.7.egg 68861917053522218f747b90cd21baf6 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:20:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3ACE1065673 for ; Sun, 12 Aug 2012 11:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7B4508FC19 for ; Sun, 12 Aug 2012 11:20: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 q7CBK2GH063303 for ; Sun, 12 Aug 2012 11:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBK26x063302; Sun, 12 Aug 2012 11:20:02 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 11:20:02 GMT Resent-Message-Id: <201208121120.q7CBK26x063302@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 82356106566C for ; Sun, 12 Aug 2012 11:12: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 6B16C8FC0A for ; Sun, 12 Aug 2012 11:12: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 q7CBCn98030720 for ; Sun, 12 Aug 2012 11:12:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CBCn6e030719; Sun, 12 Aug 2012 11:12:49 GMT (envelope-from nobody) Message-Id: <201208121112.q7CBCn6e030719@red.freebsd.org> Date: Sun, 12 Aug 2012 11:12:49 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170556: Please import trytond_company into finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:20:02 -0000 >Number: 170556 >Category: ports >Synopsis: Please import trytond_company into finance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 11:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: >Organization: >Environment: >Description: This port provides data model and business logic to enable trytond deal with company entities. >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: # # trytond_company # trytond_company/files # trytond_company/Makefile # trytond_company/distinfo # trytond_company/pkg-descr # trytond_company/pkg-plist # echo c - trytond_company mkdir -p trytond_company > /dev/null 2>&1 echo c - trytond_company/files mkdir -p trytond_company/files > /dev/null 2>&1 echo x - trytond_company/Makefile sed 's/^X//' >trytond_company/Makefile << 'e278adf36305de1d3fe1eb55f865fcb2' X# New ports collection makefile for: trytond_company X# Date created: 12 August, 2012 X# Whom: Matthias Petermann X# X# $ $ X# X XPORTNAME= trytond_company XPORTVERSION= 2.4.0 XCATEGORIES= finance python XMASTER_SITES= http://downloads2.tryton.org/2.4/ X XMAINTAINER= matthias@petermann.it XCOMMENT= The Company Module for Tryton X XLICENSE= GPLv3 X XBUILD_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond \ X trytond_party>=2.4.0:${PORTSDIR}/finance/trytond_party \ X trytond_currency>=2.4.0:${PORTSDIR}/finance/trytond_currency XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS=easy_install X XSUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} \ X PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG} X X.include e278adf36305de1d3fe1eb55f865fcb2 echo x - trytond_company/distinfo sed 's/^X//' >trytond_company/distinfo << 'a1cce142f74d9a50fd82eb8a750fcb33' XSHA256 (trytond_company-2.4.0.tar.gz) = 17bc3fe4fcca0efcb5833adb4994c88f9d7d917ad56779f06379c473a4fa9d0d XSIZE (trytond_company-2.4.0.tar.gz) = 51491 a1cce142f74d9a50fd82eb8a750fcb33 echo x - trytond_company/pkg-descr sed 's/^X//' >trytond_company/pkg-descr << 'e3beb264011c6ab0b134c41ea76f5272' XThe company module defines the concepts of company and employee Xand extend the user model. X XWWW: http://www.tryton.org/ e3beb264011c6ab0b134c41ea76f5272 echo x - trytond_company/pkg-plist sed 's/^X//' >trytond_company/pkg-plist << 'e96ade5739955ee28db6a90f160cc2da' Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/EGG-INFO/entry_points.txt Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/__init__.py Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/__init__.pyc Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/__init__.pyo Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/__tryton__.py Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/__tryton__.pyc Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/__tryton__.pyo Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/company.py Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/company.pyc Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/company.pyo Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/company.xml Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/cron.py Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/cron.pyc Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/cron.pyo Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/cron.xml Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/header_A4.odt Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/letter.odt Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/bg_BG.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/ca_ES.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/cs_CZ.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/de_DE.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/es_AR.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/es_CO.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/es_ES.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/fr_FR.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/nl_NL.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale/ru_RU.po Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/party.py Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/party.pyc Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/party.pyo Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/tests/__init__.py Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/tests/__init__.pyc Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/tests/__init__.pyo Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/tests/test_company.py Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/tests/test_company.pyc Xlib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/tests/test_company.pyo X@dirrm lib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/tests X@dirrm lib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company/locale X@dirrm lib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules/company X@dirrm lib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond/modules X@dirrm lib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/trytond X@dirrm lib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/trytond_company-2.4.0-py2.7.egg e96ade5739955ee28db6a90f160cc2da exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68EF1106564A for ; Sun, 12 Aug 2012 11:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4056A8FC1D for ; Sun, 12 Aug 2012 11: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 q7CBK32G063322 for ; Sun, 12 Aug 2012 11: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 q7CBK3ko063321; Sun, 12 Aug 2012 11:20:03 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 11:20:03 GMT Resent-Message-Id: <201208121120.q7CBK3ko063321@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCB1C106566B for ; Sun, 12 Aug 2012 11:14: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 B64C88FC0A for ; Sun, 12 Aug 2012 11:14: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 q7CBEupr031647 for ; Sun, 12 Aug 2012 11:14:56 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CBEug5031643; Sun, 12 Aug 2012 11:14:56 GMT (envelope-from nobody) Message-Id: <201208121114.q7CBEug5031643@red.freebsd.org> Date: Sun, 12 Aug 2012 11:14:56 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170558: Please import trytond_currency into finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:20:03 -0000 >Number: 170558 >Category: ports >Synopsis: Please import trytond_currency into finance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 11:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: >Organization: >Environment: >Description: This port provides data model and business logic to enable trytond to handle with currencies. >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: # # trytond_currency # trytond_currency/files # trytond_currency/Makefile # trytond_currency/distinfo # trytond_currency/pkg-descr # trytond_currency/pkg-plist # echo c - trytond_currency mkdir -p trytond_currency > /dev/null 2>&1 echo c - trytond_currency/files mkdir -p trytond_currency/files > /dev/null 2>&1 echo x - trytond_currency/Makefile sed 's/^X//' >trytond_currency/Makefile << '1f2e98d48f3c8629cb1504b82ef670c0' X# New ports collection makefile for: trytond_currency X# Date created: 12 August, 2012 X# Whom: Matthias Petermann X# X# $ $ X# X XPORTNAME= trytond_currency XPORTVERSION= 2.4.0 XCATEGORIES= finance python XMASTER_SITES= http://downloads2.tryton.org/2.4/ X XMAINTAINER= matthias@petermann.it XCOMMENT= The Currency Module for Tryton X XLICENSE= GPLv3 X XBUILD_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS=easy_install X XSUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} \ X PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG} X X.include 1f2e98d48f3c8629cb1504b82ef670c0 echo x - trytond_currency/distinfo sed 's/^X//' >trytond_currency/distinfo << '19bc1a017dfb4fd5135e27b832df799e' XSHA256 (trytond_currency-2.4.0.tar.gz) = 9c0d8eb2965876641a5ab5b4991772c7bc44e35de4b27e8860af1ed30089ea62 XSIZE (trytond_currency-2.4.0.tar.gz) = 54369 19bc1a017dfb4fd5135e27b832df799e echo x - trytond_currency/pkg-descr sed 's/^X//' >trytond_currency/pkg-descr << 'f917f20a9e3d26d96209cdf2a31a8fcb' XThe currency module defines the concepts of currency and rate. X XWWW: http://www.tryton.org/ f917f20a9e3d26d96209cdf2a31a8fcb echo x - trytond_currency/pkg-plist sed 's/^X//' >trytond_currency/pkg-plist << 'e8c0d19b13d297360ae170fd656ff42c' Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/EGG-INFO/entry_points.txt Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/__init__.py Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/__init__.pyc Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/__init__.pyo Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/__tryton__.py Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/__tryton__.pyc Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/__tryton__.pyo Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/currency.py Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/currency.pyc Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/currency.pyo Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/currency.xml Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/icons/tryton-currency.svg Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/bg_BG.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/ca_ES.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/cs_CZ.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/de_DE.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/es_AR.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/es_CO.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/es_ES.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/fr_FR.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/nl_NL.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale/ru_RU.po Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/tests/__init__.py Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/tests/__init__.pyc Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/tests/__init__.pyo Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/tests/test_currency.py Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/tests/test_currency.pyc Xlib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/tests/test_currency.pyo X@dirrm lib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/tests X@dirrm lib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/locale X@dirrm lib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency/icons X@dirrm lib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules/currency X@dirrm lib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond/modules X@dirrm lib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/trytond X@dirrm lib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/trytond_currency-2.4.0-py2.7.egg e8c0d19b13d297360ae170fd656ff42c exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC73F1065676 for ; Sun, 12 Aug 2012 11:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A389E8FC1F for ; Sun, 12 Aug 2012 11: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 q7CBK3K1063365 for ; Sun, 12 Aug 2012 11: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 q7CBK3AQ063359; Sun, 12 Aug 2012 11:20:03 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 11:20:03 GMT Resent-Message-Id: <201208121120.q7CBK3AQ063359@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A58B3106566C for ; Sun, 12 Aug 2012 11:15: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 8F2758FC19 for ; Sun, 12 Aug 2012 11:15: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 q7CBFxPQ038867 for ; Sun, 12 Aug 2012 11:15:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CBFxFA038849; Sun, 12 Aug 2012 11:15:59 GMT (envelope-from nobody) Message-Id: <201208121115.q7CBFxFA038849@red.freebsd.org> Date: Sun, 12 Aug 2012 11:15:59 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170559: Please import trytond_party into finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:20:03 -0000 >Number: 170559 >Category: ports >Synopsis: Please import trytond_party into finance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 11:20:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: >Organization: >Environment: >Description: This port provides data model and business logic to enable trytond to deal with parties. >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: # # trytond_party # trytond_party/files # trytond_party/Makefile # trytond_party/distinfo # trytond_party/pkg-descr # trytond_party/pkg-plist # echo c - trytond_party mkdir -p trytond_party > /dev/null 2>&1 echo c - trytond_party/files mkdir -p trytond_party/files > /dev/null 2>&1 echo x - trytond_party/Makefile sed 's/^X//' >trytond_party/Makefile << 'bd57aa003d66392c41914256827dc1f4' X# New ports collection makefile for: trytond_party X# Date created: 12 August, 2012 X# Whom: Matthias Petermann X# X# $ $ X# X XPORTNAME= trytond_party XPORTVERSION= 2.4.0 XCATEGORIES= finance python XMASTER_SITES= http://downloads2.tryton.org/2.4/ X XMAINTAINER= matthias@petermann.it XCOMMENT= The Party Module for Tryton X XLICENSE= GPLv3 X XBUILD_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond \ X trytond_country>=2.4.0:${PORTSDIR}/finance/trytond_country \ X ${PYTHON_PKGNAMEPREFIX}vatnumber>=1.0.0:${PORTSDIR}/finance/py-vatnumber XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS=easy_install X XSUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} \ X PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG} X X.include bd57aa003d66392c41914256827dc1f4 echo x - trytond_party/distinfo sed 's/^X//' >trytond_party/distinfo << 'a451e3eaf31228ec187321ccad7c16c9' XSHA256 (trytond_party-2.4.0.tar.gz) = d0ba5a6ddf57f254c650239608997ad46950e532d3da9e1af87f0a1e4231e723 XSIZE (trytond_party-2.4.0.tar.gz) = 53011 a451e3eaf31228ec187321ccad7c16c9 echo x - trytond_party/pkg-descr sed 's/^X//' >trytond_party/pkg-descr << '9b89072ebd470566c9ee6a6d64fb6f6c' XThe party module defines the concepts of party, category and Xcontact mechanism. It also comes with reports to print labels Xand letters and a Check VIES wizard. X XWWW: http://www.tryton.org/ 9b89072ebd470566c9ee6a6d64fb6f6c echo x - trytond_party/pkg-plist sed 's/^X//' >trytond_party/pkg-plist << '54dd13e3d6d324c31875888cc4294c08' Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/EGG-INFO/entry_points.txt Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/__init__.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/__init__.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/__init__.pyo Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/__tryton__.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/__tryton__.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/__tryton__.pyo Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/address.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/address.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/address.pyo Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/address.xml Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/category.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/category.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/category.pyo Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/category.xml Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/configuration.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/configuration.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/configuration.pyo Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/configuration.xml Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/contact_mechanism.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/contact_mechanism.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/contact_mechanism.pyo Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/contact_mechanism.xml Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/icons/tryton-party.svg Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/label.odt Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/bg_BG.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/ca_ES.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/cs_CZ.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/de_DE.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/es_AR.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/es_CO.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/es_ES.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/fr_FR.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/nl_NL.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale/ru_RU.po Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/party.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/party.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/party.pyo Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/party.xml Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/tests/__init__.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/tests/__init__.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/tests/__init__.pyo Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/tests/test_party.py Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/tests/test_party.pyc Xlib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/tests/test_party.pyo X@dirrm lib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/tests X@dirrm lib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/locale X@dirrm lib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party/icons X@dirrm lib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules/party X@dirrm lib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond/modules X@dirrm lib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/trytond X@dirrm lib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/trytond_party-2.4.0-py2.7.egg 54dd13e3d6d324c31875888cc4294c08 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:20:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 322DE106566B for ; Sun, 12 Aug 2012 11: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 09FA38FC0A for ; Sun, 12 Aug 2012 11:20: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 q7CBK3Uq063393 for ; Sun, 12 Aug 2012 11: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 q7CBK3iX063392; Sun, 12 Aug 2012 11:20:03 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 11:20:03 GMT Resent-Message-Id: <201208121120.q7CBK3iX063392@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BD1C1065673 for ; Sun, 12 Aug 2012 11:17: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 160CF8FC12 for ; Sun, 12 Aug 2012 11:17: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 q7CBH0av045053 for ; Sun, 12 Aug 2012 11:17:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CBH0Gf045052; Sun, 12 Aug 2012 11:17:00 GMT (envelope-from nobody) Message-Id: <201208121117.q7CBH0Gf045052@red.freebsd.org> Date: Sun, 12 Aug 2012 11:17:00 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170560: Please import trytond_product into finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:20:04 -0000 >Number: 170560 >Category: ports >Synopsis: Please import trytond_product into finance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 11:20:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: >Organization: >Environment: >Description: This port provides data model and business logic to enable trytond to deal with products. >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: # # trytond_product # trytond_product/files # trytond_product/Makefile # trytond_product/distinfo # trytond_product/pkg-descr # trytond_product/pkg-plist # echo c - trytond_product mkdir -p trytond_product > /dev/null 2>&1 echo c - trytond_product/files mkdir -p trytond_product/files > /dev/null 2>&1 echo x - trytond_product/Makefile sed 's/^X//' >trytond_product/Makefile << 'a5f86b2c29fca656a68d71d03df53da4' X# New ports collection makefile for: trytond_product X# Date created: 12 August, 2012 X# Whom: Matthias Petermann X# X# $ $ X# X XPORTNAME= trytond_product XPORTVERSION= 2.4.0 XCATEGORIES= finance python XMASTER_SITES= http://downloads2.tryton.org/2.4/ X XMAINTAINER= matthias@petermann.it XCOMMENT= The Product Module for Tryton X XBUILD_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS=easy_install X XSUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} \ X PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG} X X.include a5f86b2c29fca656a68d71d03df53da4 echo x - trytond_product/distinfo sed 's/^X//' >trytond_product/distinfo << '4bb3cff075dbe72dae03a8a861fe6dbc' XSHA256 (trytond_product-2.4.0.tar.gz) = 2b0051c5b8576154d61f8f8f8d0817d522932f213197dbec418872695667d6e9 XSIZE (trytond_product-2.4.0.tar.gz) = 43139 4bb3cff075dbe72dae03a8a861fe6dbc echo x - trytond_product/pkg-descr sed 's/^X//' >trytond_product/pkg-descr << '21a9660a8fa0dd0c81c907a5c7c14472' XThe Product module defines the following models: XCategory of Unit of Measure, Unit of Measure, Product Template, XProduct and Product Category. X XWWW: http://www.tryton.org/ 21a9660a8fa0dd0c81c907a5c7c14472 echo x - trytond_product/pkg-plist sed 's/^X//' >trytond_product/pkg-plist << 'fc9448fa51ef56b28850c705488395a5' Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/entry_points.txt Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__init__.py Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__init__.pyc Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__init__.pyo Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__tryton__.py Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__tryton__.pyc Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__tryton__.pyo Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/category.py Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/category.pyc Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/category.pyo Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/category.xml Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/icons/tryton-product.svg Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/bg_BG.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/ca_ES.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/cs_CZ.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/de_DE.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/es_AR.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/es_CO.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/es_ES.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/fr_FR.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/nl_NL.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/ru_RU.po Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/product.py Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/product.pyc Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/product.pyo Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/product.xml Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/__init__.py Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/__init__.pyc Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/__init__.pyo Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/test_product.py Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/test_product.pyc Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/test_product.pyo Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/uom.py Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/uom.pyc Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/uom.pyo Xlib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/uom.xml X@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests X@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale X@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/icons X@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product X@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules X@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond X@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg fc9448fa51ef56b28850c705488395a5 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:22:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C29E41065672; Sun, 12 Aug 2012 11:22:01 +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 94EDF8FC0A; Sun, 12 Aug 2012 11:22: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 q7CBM1Ue063534; Sun, 12 Aug 2012 11:22:01 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBM1mH063530; Sun, 12 Aug 2012 11:22:01 GMT (envelope-from crees) Date: Sun, 12 Aug 2012 11:22:01 GMT Message-Id: <201208121122.q7CBM1mH063530@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/170555: New port: finance/trytond_account_product X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:22:01 -0000 Old Synopsis: Please import trytond_account_product into finance New Synopsis: New port: finance/trytond_account_product Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: crees Class-Changed-When: Sun Aug 12 11:20:37 UTC 2012 Class-Changed-Why: Fix Synopsis and reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=170555 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:22:48 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8650106566C; Sun, 12 Aug 2012 11:22:48 +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 662498FC12; Sun, 12 Aug 2012 11:22: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 q7CBMmeO063606; Sun, 12 Aug 2012 11:22:48 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBMmqL063602; Sun, 12 Aug 2012 11:22:48 GMT (envelope-from crees) Date: Sun, 12 Aug 2012 11:22:48 GMT Message-Id: <201208121122.q7CBMmqL063602@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/170556: New port: finance/trytond_company X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:22:48 -0000 Old Synopsis: Please import trytond_company into finance New Synopsis: New port: finance/trytond_company Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: crees Class-Changed-When: Sun Aug 12 11:22:12 UTC 2012 Class-Changed-Why: Fix Synopsis and reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=170556 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:25:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 776931065672; Sun, 12 Aug 2012 11:25:20 +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 4BB278FC08; Sun, 12 Aug 2012 11:25: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 q7CBPKkw063750; Sun, 12 Aug 2012 11:25:20 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBPKOn063746; Sun, 12 Aug 2012 11:25:20 GMT (envelope-from crees) Date: Sun, 12 Aug 2012 11:25:20 GMT Message-Id: <201208121125.q7CBPKOn063746@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/170558: New port: finance/trytond_currency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:25:20 -0000 Old Synopsis: Please import trytond_currency into finance New Synopsis: New port: finance/trytond_currency Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: crees Class-Changed-When: Sun Aug 12 11:24:44 UTC 2012 Class-Changed-Why: Fix Synopsis and reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=170558 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:25:54 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 046C4106564A; Sun, 12 Aug 2012 11:25:54 +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 CB38B8FC0A; Sun, 12 Aug 2012 11:25: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 q7CBPrGR063828; Sun, 12 Aug 2012 11:25:53 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBPrBH063824; Sun, 12 Aug 2012 11:25:53 GMT (envelope-from crees) Date: Sun, 12 Aug 2012 11:25:53 GMT Message-Id: <201208121125.q7CBPrBH063824@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/170557: New port: finance/trytond_country X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:25:54 -0000 Synopsis: New port: finance/trytond_country Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: crees Responsible-Changed-When: Sun Aug 12 11:25:36 UTC 2012 Responsible-Changed-Why: Ports PR http://www.freebsd.org/cgi/query-pr.cgi?pr=170557 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:26:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAFB41065674; Sun, 12 Aug 2012 11:26: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 AE4F78FC1D; Sun, 12 Aug 2012 11:26: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 q7CBQnWQ063885; Sun, 12 Aug 2012 11:26:49 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBQnsh063881; Sun, 12 Aug 2012 11:26:49 GMT (envelope-from crees) Date: Sun, 12 Aug 2012 11:26:49 GMT Message-Id: <201208121126.q7CBQnsh063881@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/170559: New port: finance/trytond_party X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:26:50 -0000 Old Synopsis: Please import trytond_party into finance New Synopsis: New port: finance/trytond_party Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: crees Class-Changed-When: Sun Aug 12 11:26:07 UTC 2012 Class-Changed-Why: Fix Synopsis and reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=170559 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 11:27:57 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 655A7106566B; Sun, 12 Aug 2012 11:27:57 +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 38D298FC15; Sun, 12 Aug 2012 11:27: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 q7CBRvh1063969; Sun, 12 Aug 2012 11:27:57 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CBRv23063965; Sun, 12 Aug 2012 11:27:57 GMT (envelope-from crees) Date: Sun, 12 Aug 2012 11:27:57 GMT Message-Id: <201208121127.q7CBRv23063965@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/170560: New port: finance/trytond_product X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 11:27:57 -0000 Old Synopsis: Please import trytond_product into finance New Synopsis: New port: finance/trytond_product Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: crees Class-Changed-When: Sun Aug 12 11:27:22 UTC 2012 Class-Changed-Why: Fix Synopsis and reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=170560 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 12:50:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4646E106564A for ; Sun, 12 Aug 2012 12:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D0078FC0A for ; Sun, 12 Aug 2012 12:50: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 q7CCo0xN089574 for ; Sun, 12 Aug 2012 12:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CCo0R5089573; Sun, 12 Aug 2012 12:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 12:50:00 GMT Resent-Message-Id: <201208121250.q7CCo0R5089573@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Jason E. Hale" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F38C106564A; Sun, 12 Aug 2012 12:41:19 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qa0-f47.google.com (mail-qa0-f47.google.com [209.85.216.47]) by mx1.freebsd.org (Postfix) with ESMTP id 492EA8FC12; Sun, 12 Aug 2012 12:41:18 +0000 (UTC) Received: by qadc11 with SMTP id c11so421791qad.13 for ; Sun, 12 Aug 2012 05:41:18 -0700 (PDT) Received: by 10.229.135.10 with SMTP id l10mr2486354qct.103.1344775278208; Sun, 12 Aug 2012 05:41:18 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id c5sm4613438qao.22.2012.08.12.05.41.16 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 12 Aug 2012 05:41:17 -0700 (PDT) Message-Id: <1344775277.828052.95978@mocha.verizon.net> Date: Sun, 12 Aug 2012 08:41:17 -0400 From: "Jason E. Hale" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: multimedia@FreeBSD.org Subject: ports/170561: [PATCH] multimedia/gstreamer-plugins: Remove libmusicbrainz references X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Jason E. Hale" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 12:50:01 -0000 >Number: 170561 >Category: ports >Synopsis: [PATCH] multimedia/gstreamer-plugins: Remove libmusicbrainz references >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 Aug 12 12:50:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason E. Hale >Release: FreeBSD 9.0-RELEASE i386 >Organization: none >Environment: System: FreeBSD mocha.verizon.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Thu Jan 19 11:42:41 EST 2012 Jason@mocha.verizon.net:/usr/obj/usr/src/sys/MOCHA9 i386 >Description: - Remove the musicbrainz plugin from Makefile.common since the audio/gstreamer-plugins-musicbrainz port is gone and audio/libmusicbrainz itself is soon to be removed - Note: musicbrainz should still be kept in the BAD_GST_ALL_PLUGINS variable so that the plugin remains disabled by default. If it is removed, the multimedia/gstreamer-plugins-bad port looks for libmusicbrainz. >How-To-Repeat: - Use attached diff >Fix: --- 2012-08-12-gstreamer-plugins.diff begins here --- Index: Makefile.common =================================================================== --- Makefile.common (revision 302306) +++ Makefile.common (working copy) @@ -406,12 +406,6 @@ ${GST_LIB_DIR}/libgstmusepack.so gst_musepack_DIST= bad -# musicbrainz -gst_musicbrainz_LIB_DEPENDS+= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz -gst_musicbrainz_PLIST_FILES= ${GST_LIB_DIR}/libgsttrm.so \ - ${GST_LIB_DIR}/libgsttrm.la -gst_musicbrainz_DIST= bad - # nas gst_nas_LIB_DEPENDS+= audio.2:${PORTSDIR}/audio/nas gst_nas_DIST= bad --- 2012-08-12-gstreamer-plugins.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 12:50:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E78B21065672 for ; Sun, 12 Aug 2012 12:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 854318FC14 for ; Sun, 12 Aug 2012 12:50: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 q7CCo1HO089583 for ; Sun, 12 Aug 2012 12:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CCo1c0089582; Sun, 12 Aug 2012 12:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 12:50:01 GMT Resent-Message-Id: <201208121250.q7CCo1c0089582@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Jason E. Hale" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18886106566B for ; Sun, 12 Aug 2012 12:41:36 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qa0-f54.google.com (mail-qa0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id CC8FA8FC15 for ; Sun, 12 Aug 2012 12:41:35 +0000 (UTC) Received: by qatn12 with SMTP id n12so420531qat.13 for ; Sun, 12 Aug 2012 05:41:35 -0700 (PDT) Received: by 10.224.174.72 with SMTP id s8mr18710734qaz.91.1344775294938; Sun, 12 Aug 2012 05:41:34 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id dr6sm5311300qab.16.2012.08.12.05.41.33 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 12 Aug 2012 05:41:34 -0700 (PDT) Message-Id: <1344775294.205254.96022@mocha.verizon.net> Date: Sun, 12 Aug 2012 08:41:34 -0400 From: "Jason E. Hale" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170562: [MAINTAINER] audio/libmusicbrainz: Set EXPIRATION_DATE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Jason E. Hale" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 12:50:02 -0000 >Number: 170562 >Category: ports >Synopsis: [MAINTAINER] audio/libmusicbrainz: Set EXPIRATION_DATE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 12:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason E. Hale >Release: FreeBSD 9.0-RELEASE i386 >Organization: none >Environment: System: FreeBSD mocha.verizon.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Thu Jan 19 11:42:41 EST 2012 Jason@mocha.verizon.net:/usr/obj/usr/src/sys/MOCHA9 i386 >Description: - Set EXPIRATION_DATE for audio/libmusicbrainz - No other ports depend on it now, so set the date to one month from now - While here, remove unneeded pkg-config dependency >How-To-Repeat: - Use attached diff >Fix: --- 2012-08-12-libmusicbrainz.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 302306) +++ Makefile (working copy) @@ -20,9 +20,10 @@ CONFLICTS= musicbrainz-1.* DEPRECATED= MusicBrainz RDF webservice no longer functions +EXPIRATION_DATE= 2012-09-12 USE_GMAKE= yes -USE_GNOME= gnomehack pkgconfig +USE_GNOME= gnomehack GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib --- 2012-08-12-libmusicbrainz.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 12:53:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A82C106564A; Sun, 12 Aug 2012 12:53: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 2CC568FC14; Sun, 12 Aug 2012 12:53: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 q7CCrP4J089796; Sun, 12 Aug 2012 12:53:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CCrPjh089792; Sun, 12 Aug 2012 12:53:25 GMT (envelope-from edwin) Date: Sun, 12 Aug 2012 12:53:25 GMT Message-Id: <201208121253.q7CCrPjh089792@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170561: [PATCH] multimedia/gstreamer-plugins: Remove libmusicbrainz references X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 12:53:25 -0000 Synopsis: [PATCH] multimedia/gstreamer-plugins: Remove libmusicbrainz references Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sun Aug 12 12:53:24 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170561 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:40:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44D9A106564A for ; Sun, 12 Aug 2012 13:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F4EC8FC08 for ; Sun, 12 Aug 2012 13:40: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 q7CDe35x096416 for ; Sun, 12 Aug 2012 13:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDe34c096415; Sun, 12 Aug 2012 13:40:03 GMT (envelope-from gnats) Date: Sun, 12 Aug 2012 13:40:03 GMT Message-Id: <201208121340.q7CDe34c096415@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthew Donovan Cc: Subject: Re: ports/170551: [PATCH] x11/sterm: update to 0.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Donovan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 13:40:03 -0000 The following reply was made to PR ports/170551; it has been noted by GNATS. From: Matthew Donovan To: bug-followup@freebsd.org Cc: Subject: Re: ports/170551: [PATCH] x11/sterm: update to 0.2.1 Date: Sun, 12 Aug 2012 08:31:02 -0500 --14dae93407f7a7886b04c7119657 Content-Type: text/plain; charset=ISO-8859-1 I agree with the update On Aug 12, 2012 5:10 AM, "Edwin Groothuis" wrote: > Maintainer of x11/sterm, > > Please note that PR ports/170551 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/170551 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --14dae93407f7a7886b04c7119657 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

I agree with=A0 the update

On Aug 12, 2012 5:10 AM, "Edwin Groothuis&q= uot; <edwin@freebsd.org> wro= te:
Maintainer of x11/sterm,

Please note that PR ports/170551 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
=A0 =A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/170= 551

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
--14dae93407f7a7886b04c7119657-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:53:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9688106566B; Sun, 12 Aug 2012 13:53:47 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BD4298FC15; Sun, 12 Aug 2012 13:53: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 q7CDrl5g097380; Sun, 12 Aug 2012 13:53:47 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDrlH3097376; Sun, 12 Aug 2012 13:53:47 GMT (envelope-from wen) Date: Sun, 12 Aug 2012 13:53:47 GMT Message-Id: <201208121353.q7CDrlH3097376@freefall.freebsd.org> To: matthias@d2ux.net, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/170560: New port: finance/trytond_product X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 13:53:48 -0000 Synopsis: New port: finance/trytond_product State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Sun Aug 12 13:53:47 UTC 2012 State-Changed-Why: New port added, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=170560 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:55:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B6EC106566C; Sun, 12 Aug 2012 13:55:27 +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 5D4E48FC15; Sun, 12 Aug 2012 13:55: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 q7CDtRxs097494; Sun, 12 Aug 2012 13:55:27 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDtR52097490; Sun, 12 Aug 2012 13:55:27 GMT (envelope-from wen) Date: Sun, 12 Aug 2012 13:55:27 GMT Message-Id: <201208121355.q7CDtR52097490@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/170553: New port: finance/trytond_account X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 13:55:27 -0000 Synopsis: New port: finance/trytond_account Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Sun Aug 12 13:55:26 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170553 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:55:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 398261065673; Sun, 12 Aug 2012 13:55:30 +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 0D1698FC16; Sun, 12 Aug 2012 13:55: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 q7CDtT4o097559; Sun, 12 Aug 2012 13:55:29 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDtTuT097555; Sun, 12 Aug 2012 13:55:29 GMT (envelope-from wen) Date: Sun, 12 Aug 2012 13:55:29 GMT Message-Id: <201208121355.q7CDtTuT097555@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/170554: New port: finance/trytond_account_invoice X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 13:55:30 -0000 Synopsis: New port: finance/trytond_account_invoice Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Sun Aug 12 13:55:29 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170554 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:55:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9CA3106566C; Sun, 12 Aug 2012 13:55:32 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AD4408FC08; Sun, 12 Aug 2012 13:55: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 q7CDtWFm097624; Sun, 12 Aug 2012 13:55:32 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDtWG3097620; Sun, 12 Aug 2012 13:55:32 GMT (envelope-from wen) Date: Sun, 12 Aug 2012 13:55:32 GMT Message-Id: <201208121355.q7CDtWG3097620@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/170555: New port: finance/trytond_account_product X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 13:55:33 -0000 Synopsis: New port: finance/trytond_account_product Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Sun Aug 12 13:55:32 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170555 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:55:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8315410656B4; Sun, 12 Aug 2012 13:55:35 +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 572618FC12; Sun, 12 Aug 2012 13:55: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 q7CDtZPu097693; Sun, 12 Aug 2012 13:55:35 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDtZkL097689; Sun, 12 Aug 2012 13:55:35 GMT (envelope-from wen) Date: Sun, 12 Aug 2012 13:55:35 GMT Message-Id: <201208121355.q7CDtZkL097689@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/170556: New port: finance/trytond_company X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 13:55:35 -0000 Synopsis: New port: finance/trytond_company Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Sun Aug 12 13:55:34 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170556 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:55:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DD7F106564A; Sun, 12 Aug 2012 13:55:38 +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 01DF18FC14; Sun, 12 Aug 2012 13:55: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 q7CDtbGq097758; Sun, 12 Aug 2012 13:55:37 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDtbeJ097754; Sun, 12 Aug 2012 13:55:37 GMT (envelope-from wen) Date: Sun, 12 Aug 2012 13:55:37 GMT Message-Id: <201208121355.q7CDtbeJ097754@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/170557: New port: finance/trytond_country X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 13:55:38 -0000 Synopsis: New port: finance/trytond_country Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Sun Aug 12 13:55:37 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170557 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:55:40 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE18710656AC; Sun, 12 Aug 2012 13:55:40 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1D7A8FC0C; Sun, 12 Aug 2012 13:55: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 q7CDtewt097823; Sun, 12 Aug 2012 13:55:40 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDte37097819; Sun, 12 Aug 2012 13:55:40 GMT (envelope-from wen) Date: Sun, 12 Aug 2012 13:55:40 GMT Message-Id: <201208121355.q7CDte37097819@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/170558: New port: finance/trytond_currency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 13:55:40 -0000 Synopsis: New port: finance/trytond_currency Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Sun Aug 12 13:55:40 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170558 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 13:55:43 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 79A361065673; Sun, 12 Aug 2012 13:55:43 +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 4E2D38FC0A; Sun, 12 Aug 2012 13:55: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 q7CDthBn097893; Sun, 12 Aug 2012 13:55:43 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CDthuU097889; Sun, 12 Aug 2012 13:55:43 GMT (envelope-from wen) Date: Sun, 12 Aug 2012 13:55:43 GMT Message-Id: <201208121355.q7CDthuU097889@freefall.freebsd.org> To: wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/170559: New port: finance/trytond_party X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 13:55:43 -0000 Synopsis: New port: finance/trytond_party Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Sun Aug 12 13:55:42 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170559 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 14:00:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 551C91065672 for ; Sun, 12 Aug 2012 14:00: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 3EBB28FC0C for ; Sun, 12 Aug 2012 14:00: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 q7CE08vM098052 for ; Sun, 12 Aug 2012 14:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CE08SN098051; Sun, 12 Aug 2012 14:00:08 GMT (envelope-from gnats) Date: Sun, 12 Aug 2012 14:00:08 GMT Message-Id: <201208121400.q7CE08SN098051@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/170560: 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, 12 Aug 2012 14:00:08 -0000 The following reply was made to PR ports/170560; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170560: commit references a PR Date: Sun, 12 Aug 2012 13:52:50 +0000 (UTC) Author: wen Date: Sun Aug 12 13:52:35 2012 New Revision: 302437 URL: http://svn.freebsd.org/changeset/ports/302437 Log: trytond_product is the product module for tryton, it define products, categories of product, units of measure, categories of units of measure. WWW: http://www.tryton.org/ PR: 170560 Submitted by: Matthias Petermann Added: head/finance/trytond_product/ head/finance/trytond_product/Makefile (contents, props changed) head/finance/trytond_product/distinfo (contents, props changed) head/finance/trytond_product/pkg-descr (contents, props changed) head/finance/trytond_product/pkg-plist (contents, props changed) Modified: head/finance/Makefile Modified: head/finance/Makefile ============================================================================== --- head/finance/Makefile Sun Aug 12 13:29:20 2012 (r302436) +++ head/finance/Makefile Sun Aug 12 13:52:35 2012 (r302437) @@ -103,6 +103,7 @@ SUBDIR += sql-ledger SUBDIR += tinyerp-server SUBDIR += trytond + SUBDIR += trytond_product SUBDIR += venice SUBDIR += weberp SUBDIR += wmstock Added: head/finance/trytond_product/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/trytond_product/Makefile Sun Aug 12 13:52:35 2012 (r302437) @@ -0,0 +1,22 @@ +# New ports collection makefile for: trytond_product +# Date created: 12 August, 2012 +# Whom: Matthias Petermann +# +# $FreeBSD$ +# + +PORTNAME= trytond_product +PORTVERSION= 2.4.0 +CATEGORIES= finance python +MASTER_SITES= http://downloads2.tryton.org/2.4/ + +MAINTAINER= matthias@petermann.it +COMMENT= The Product Module for Tryton + +RUN_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond +#RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_PYTHON= yes +USE_PYDISTUTILS=easy_install + +.include Added: head/finance/trytond_product/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/trytond_product/distinfo Sun Aug 12 13:52:35 2012 (r302437) @@ -0,0 +1,2 @@ +SHA256 (trytond_product-2.4.0.tar.gz) = 2b0051c5b8576154d61f8f8f8d0817d522932f213197dbec418872695667d6e9 +SIZE (trytond_product-2.4.0.tar.gz) = 43139 Added: head/finance/trytond_product/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/trytond_product/pkg-descr Sun Aug 12 13:52:35 2012 (r302437) @@ -0,0 +1,4 @@ +trytond_product is the product module for tryton, it define products, +categories of product, units of measure, categories of units of measure. + +WWW: http://www.tryton.org/ Added: head/finance/trytond_product/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/trytond_product/pkg-plist Sun Aug 12 13:52:35 2012 (r302437) @@ -0,0 +1,50 @@ +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/PKG-INFO +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/SOURCES.txt +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/dependency_links.txt +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/entry_points.txt +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/not-zip-safe +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/requires.txt +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO/top_level.txt +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__init__.py +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__init__.pyc +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__init__.pyo +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__tryton__.py +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__tryton__.pyc +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/__tryton__.pyo +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/category.py +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/category.pyc +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/category.pyo +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/category.xml +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/icons/tryton-product.svg +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/bg_BG.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/ca_ES.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/cs_CZ.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/de_DE.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/es_AR.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/es_CO.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/es_ES.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/fr_FR.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/nl_NL.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale/ru_RU.po +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/product.py +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/product.pyc +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/product.pyo +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/product.xml +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/__init__.py +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/__init__.pyc +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/__init__.pyo +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/test_product.py +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/test_product.pyc +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests/test_product.pyo +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/uom.py +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/uom.pyc +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/uom.pyo +lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/uom.xml +@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/tests +@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/locale +@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product/icons +@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules/product +@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond/modules +@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/trytond +@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg/EGG-INFO +@dirrm lib/python2.7/site-packages/trytond_product-2.4.0-py2.7.egg _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 18:27:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78650106566C; Sun, 12 Aug 2012 18:27:09 +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 4B03C8FC0A; Sun, 12 Aug 2012 18:27: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 q7CIR9N1041303; Sun, 12 Aug 2012 18:27:09 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CIR9mv041299; Sun, 12 Aug 2012 18:27:09 GMT (envelope-from scheidell) Date: Sun, 12 Aug 2012 18:27:09 GMT Message-Id: <201208121827.q7CIR9mv041299@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/169732: [NEW PORT] dns/credns: A verifier performing validation in the DNS notify/transfer-chain X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 18:27:09 -0000 Synopsis: [NEW PORT] dns/credns: A verifier performing validation in the DNS notify/transfer-chain Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Sun Aug 12 18:27:08 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=169732 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 18:50:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6847F106564A for ; Sun, 12 Aug 2012 18:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3E2A28FC0C for ; Sun, 12 Aug 2012 18:50: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 q7CIo1NE044968 for ; Sun, 12 Aug 2012 18:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CIo1lv044967; Sun, 12 Aug 2012 18:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 18:50:01 GMT Resent-Message-Id: <201208121850.q7CIo1lv044967@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9690F106564A for ; Sun, 12 Aug 2012 18:41:33 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from qmta12.emeryville.ca.mail.comcast.net (qmta12.emeryville.ca.mail.comcast.net [76.96.27.227]) by mx1.freebsd.org (Postfix) with ESMTP id 7D3318FC0A for ; Sun, 12 Aug 2012 18:41:32 +0000 (UTC) Received: from omta15.emeryville.ca.mail.comcast.net ([76.96.30.71]) by qmta12.emeryville.ca.mail.comcast.net with comcast id lpTS1j0091Y3wxoACuhY8u; Sun, 12 Aug 2012 18:41:32 +0000 Received: from kirby.cyberbotx.com ([69.244.146.119]) by omta15.emeryville.ca.mail.comcast.net with comcast id luhX1j0052anbQt8buhXTW; Sun, 12 Aug 2012 18:41:32 +0000 Received: by kirby.cyberbotx.com (Postfix, from userid 0) id 81B1E2843B; Sun, 12 Aug 2012 14:41:30 -0400 (EDT) Message-Id: <20120812184130.81B1E2843B@kirby.cyberbotx.com> Date: Sun, 12 Aug 2012 14:41:30 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170564: [MAINTAINER] x11-toolkits/scintilla: update to 3.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: Sun, 12 Aug 2012 18:50:01 -0000 >Number: 170564 >Category: ports >Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 3.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 18:50:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.2-RELEASE FreeBSD 8.2-RELEASE #3: Sun Feb 27 08:58:31 EST 2011 >Description: - Update to 3.2.1 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- scintilla-3.2.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/Makefile ./Makefile --- /usr/ports/x11-toolkits/scintilla/Makefile 2012-06-03 15:54:41.000000000 -0400 +++ ./Makefile 2012-08-12 14:40:09.000000000 -0400 @@ -6,8 +6,7 @@ # $MCom: ports/x11-toolkits/scintilla/Makefile,v 1.3 2006/09/17 21:58:56 marcus Exp $ PORTNAME= scintilla -PORTVERSION= 3.1.0 -PORTREVISION= 1 +PORTVERSION= 3.2.1 CATEGORIES= x11-toolkits MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= scite${PORTVERSION:S/.//g} diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/distinfo ./distinfo --- /usr/ports/x11-toolkits/scintilla/distinfo 2012-04-25 23:31:35.000000000 -0400 +++ ./distinfo 2012-08-12 14:26:15.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (scite310.tgz) = 09b020a331f7c54edd731440fa1c717776021d5dc775e58965f8ef71673202e3 -SIZE (scite310.tgz) = 1933322 +SHA256 (scite321.tgz) = f95c89074fd73a22b783b5582d3b23cdbd4b7eb38ab407721a702c4a1bcb678c +SIZE (scite321.tgz) = 2043490 diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/files/patch-aa ./files/patch-aa --- /usr/ports/x11-toolkits/scintilla/files/patch-aa 2012-02-27 02:22:00.000000000 -0500 +++ ./files/patch-aa 2012-08-12 14:35:08.000000000 -0400 @@ -1,12 +1,15 @@ ---- makefile.orig 2012-01-27 18:52:23.000000000 -0500 -+++ makefile 2012-02-12 14:28:24.000000000 -0500 -@@ -7,14 +7,7 @@ +--- makefile.orig 2012-06-01 04:26:24.000000000 -0400 ++++ makefile 2012-08-12 14:34:52.000000000 -0400 +@@ -7,17 +7,7 @@ # Also works with ming32-make on Windows. .SUFFIXES: .cxx .c .o .h .a -ifdef CLANG --CC = clang --CCOMP = clang +-ifdef CLANG_ANALYZE +-ANALYZE=--analyze +-endif +-CC = clang $(ANALYZE) +-CCOMP = clang $(ANALYZE) -else -CC = g++ -CCOMP = gcc @@ -16,7 +19,7 @@ RANLIB = touch ifdef GTK3 -@@ -36,7 +29,8 @@ +@@ -39,7 +29,8 @@ COMPLIB=..\bin\scintilla.a else DEL = rm -f @@ -26,7 +29,7 @@ endif vpath %.h ../src ../include ../lexlib -@@ -63,6 +57,7 @@ +@@ -66,6 +57,7 @@ CFLAGS:=$(CXXTFLAGS) CONFIGFLAGS:=$(shell pkg-config --cflags $(GTKVERSION)) @@ -34,7 +37,7 @@ MARSHALLER=scintilla-marshal.o .cxx.o: -@@ -72,7 +67,7 @@ +@@ -75,7 +67,7 @@ LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard ../lexers/Lex*.cxx)))) @@ -43,7 +46,7 @@ clean: $(DEL) *.o $(COMPLIB) -@@ -85,9 +80,11 @@ +@@ -88,9 +80,11 @@ ScintillaBase.o ContractionState.o Editor.o ExternalLexer.o PropSetSimple.o PlatGTK.o \ KeyMap.o LineMarker.o PositionCache.o ScintillaGTK.o CellBuffer.o ViewStyle.o \ RESearch.o RunStyles.o Selection.o Style.o Indicator.o AutoComplete.o UniConversion.o XPM.o \ --- scintilla-3.2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 19:00:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AECB81065673 for ; Sun, 12 Aug 2012 19:00: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 847AA8FC14 for ; Sun, 12 Aug 2012 19:00: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 q7CJ05eC045374 for ; Sun, 12 Aug 2012 19:00:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CJ057I045373; Sun, 12 Aug 2012 19:00:05 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 19:00:05 GMT Resent-Message-Id: <201208121900.q7CJ057I045373@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CCD3106564A for ; Sun, 12 Aug 2012 18:53:55 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from qmta02.emeryville.ca.mail.comcast.net (qmta02.emeryville.ca.mail.comcast.net [76.96.30.24]) by mx1.freebsd.org (Postfix) with ESMTP id 24A088FC08 for ; Sun, 12 Aug 2012 18:53:55 +0000 (UTC) Received: from omta19.emeryville.ca.mail.comcast.net ([76.96.30.76]) by qmta02.emeryville.ca.mail.comcast.net with comcast id lpuM1j0031eYJf8A2utpTt; Sun, 12 Aug 2012 18:53:49 +0000 Received: from kirby.cyberbotx.com ([69.244.146.119]) by omta19.emeryville.ca.mail.comcast.net with comcast id luto1j00Q2anbQt01utpVw; Sun, 12 Aug 2012 18:53:49 +0000 Received: by kirby.cyberbotx.com (Postfix, from userid 0) id 32D352843B; Sun, 12 Aug 2012 14:53:48 -0400 (EDT) Message-Id: <20120812185348.32D352843B@kirby.cyberbotx.com> Date: Sun, 12 Aug 2012 14:53:48 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170565: [MAINTAINER] editors/scite: update to 3.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: Sun, 12 Aug 2012 19:00:05 -0000 >Number: 170565 >Category: ports >Synopsis: [MAINTAINER] editors/scite: update to 3.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 19:00:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.2-RELEASE FreeBSD 8.2-RELEASE #3: Sun Feb 27 08:58:31 EST 2011 >Description: - Update to 3.2.1 NOTE: This PR relies on PR ports/170564 to be committed first. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- scite-3.2.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/editors/scite/Makefile ./Makefile --- /usr/ports/editors/scite/Makefile 2012-08-05 13:42:33.000000000 -0400 +++ ./Makefile 2012-08-12 14:53:08.000000000 -0400 @@ -6,8 +6,7 @@ # PORTNAME= scite -PORTVERSION= 3.1.0 -PORTREVISION= 1 +PORTVERSION= 3.2.1 CATEGORIES= editors gnome MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} diff -ruN --exclude=CVS /usr/ports/editors/scite/distinfo ./distinfo --- /usr/ports/editors/scite/distinfo 2012-04-25 23:30:25.000000000 -0400 +++ ./distinfo 2012-08-12 14:41:49.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (scite310.tgz) = 09b020a331f7c54edd731440fa1c717776021d5dc775e58965f8ef71673202e3 -SIZE (scite310.tgz) = 1933322 +SHA256 (scite321.tgz) = f95c89074fd73a22b783b5582d3b23cdbd4b7eb38ab407721a702c4a1bcb678c +SIZE (scite321.tgz) = 2043490 diff -ruN --exclude=CVS /usr/ports/editors/scite/files/patch-aa ./files/patch-aa --- /usr/ports/editors/scite/files/patch-aa 2011-10-01 11:54:19.000000000 -0400 +++ ./files/patch-aa 2012-08-12 14:48:05.000000000 -0400 @@ -1,12 +1,15 @@ ---- makefile.orig 2011-07-31 22:49:29.000000000 -0400 -+++ makefile 2011-09-27 05:23:10.000000000 -0400 -@@ -5,13 +5,6 @@ +--- makefile.orig 2012-06-01 04:26:56.000000000 -0400 ++++ makefile 2012-08-12 14:47:57.000000000 -0400 +@@ -5,16 +5,6 @@ # GNU make does not like \r\n line endings so should be saved to CVS in binary form. .SUFFIXES: .cxx .o .h .a .c -ifdef CLANG --CC = clang --CCOMP = clang +-ifdef CLANG_ANALYZE +-ANALYZE=--analyze +-endif +-CC = clang $(ANALYZE) +-CCOMP = clang $(ANALYZE) -else -CC = g++ -CCOMP = gcc @@ -14,18 +17,18 @@ AR = ar ifdef GTK3 -@@ -24,7 +17,7 @@ +@@ -27,7 +17,7 @@ CONFIGFLAGS:=$(shell pkg-config --cflags $(GTKVERSION)) - CONFIGLIB:=$(shell pkg-config --libs $(GTKVERSION) gthread-2.0) + CONFIGLIB:=$(shell pkg-config --libs $(GTKVERSION) gthread-2.0 gmodule-no-export-2.0) CONFIGTHREADS:= -gnomeprefix:=$(shell pkg-config --variable=prefix $(GTKVERSION) 2>/dev/null) +gnomeprefix:=$(PREFIX) ifndef prefix ifdef gnomeprefix prefix=$(gnomeprefix) -@@ -102,8 +95,9 @@ +@@ -107,8 +97,9 @@ $(PROG): SciTEGTK.o GUIGTK.o Widget.o \ - FilePath.o SciTEBase.o Credits.o SciTEBuffers.o SciTEIO.o StringList.o Exporters.o StringHelpers.o \ + FilePath.o SciTEBase.o FileWorker.o Cookie.o Credits.o SciTEBuffers.o SciTEIO.o StringList.o Exporters.o StringHelpers.o \ PropSetFile.o MultiplexExtension.o DirectorExtension.o SciTEProps.o StyleWriter.o Utf8_16.o \ - JobQueue.o GTKMutex.o IFaceTable.o $(COMPLIB) $(LUA_OBJS) - $(CC) `$(CONFIGTHREADS)` -rdynamic -Wl,--as-needed -Wl,--version-script lua.vers -DGTK $^ -o $@ $(CONFIGLIB) $(LIBDL) -lstdc++ diff -ruN --exclude=CVS /usr/ports/editors/scite/pkg-plist ./pkg-plist --- /usr/ports/editors/scite/pkg-plist 2012-04-04 20:16:43.000000000 -0400 +++ ./pkg-plist 2012-08-12 14:49:49.000000000 -0400 @@ -2,6 +2,7 @@ share/applications/SciTE.desktop share/pixmaps/Sci48M.png %%PORTDOCS%%%%DOCSDIR%%/CommandValues.html +%%PORTDOCS%%%%DOCSDIR%%/PaneAPI.html %%PORTDOCS%%%%DOCSDIR%%/PrintHi.png %%PORTDOCS%%%%DOCSDIR%%/SciBreak2.jpg %%PORTDOCS%%%%DOCSDIR%%/SciTE.html @@ -68,6 +69,7 @@ %%DATADIR%%/nncrontab.properties %%DATADIR%%/nsis.properties %%DATADIR%%/opal.properties +%%DATADIR%%/oscript.properties %%DATADIR%%/others.properties %%DATADIR%%/pascal.properties %%DATADIR%%/perl.properties --- scite-3.2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 19:20:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B53D7106564A for ; Sun, 12 Aug 2012 19:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 397F18FC12 for ; Sun, 12 Aug 2012 19:20: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 q7CJK1Qg048169 for ; Sun, 12 Aug 2012 19:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CJK19h048168; Sun, 12 Aug 2012 19:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 19:20:01 GMT Resent-Message-Id: <201208121920.q7CJK19h048168@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, Waitman Gobble Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1D021065672 for ; Sun, 12 Aug 2012 19:10:42 +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 BDA318FC08 for ; Sun, 12 Aug 2012 19:10:42 +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 q7CJAgqM096059 for ; Sun, 12 Aug 2012 19:10:42 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CJAg3o096058; Sun, 12 Aug 2012 19:10:42 GMT (envelope-from nobody) Message-Id: <201208121910.q7CJAg3o096058@red.freebsd.org> Date: Sun, 12 Aug 2012 19:10:42 GMT From: Waitman Gobble To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170566: update py27-opengl-3.0.1_1.tbz depends on old version of gcc4.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, 12 Aug 2012 19:20:01 -0000 >Number: 170566 >Category: ports >Synopsis: update py27-opengl-3.0.1_1.tbz depends on old version of gcc4.6.3 >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 Aug 12 19:20:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: FreeBSD 10.0-CURRENT >Organization: Waitman Gobble >Environment: FreeBSD hunny.waitman.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 11 13:25:18 PDT 2012 root@hunny.waitman.net:/usr/obj/usr/src/sys/KEYSHIA amd64 >Description: (Aug 9 09:08 py27-opengl-3.0.1_1.tbz) # pkg_add py27-opengl-3.0.1_1.tbz pkg_add: could not find package gcc-4.6.3 ! (I believe gcc4.6.4 is an update, but for some reason the file times for 4.6.3 and 4.6.4 don't seem to add up.) Jun 8 00:37 gcc-4.6.3.tbz Jun 7 03:32 gcc-4.6.4.20120511.tbz Jun 14 06:42 gcc-4.6.4.20120608.tbz Thank you >How-To-Repeat: # pkg_add py27-opengl-3.0.1_1.tbz >Fix: update port, make package >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 19:20:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6044106566B for ; Sun, 12 Aug 2012 19:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9CF118FC15 for ; Sun, 12 Aug 2012 19:20: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 q7CJK1IT048178 for ; Sun, 12 Aug 2012 19:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CJK1lM048177; Sun, 12 Aug 2012 19:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 19:20:01 GMT Resent-Message-Id: <201208121920.q7CJK1lM048177@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D2432106564A for ; Sun, 12 Aug 2012 19:15:52 +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 BB8238FC15 for ; Sun, 12 Aug 2012 19:15:52 +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 q7CJFqU0097806 for ; Sun, 12 Aug 2012 19:15:52 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CJFqnm097800; Sun, 12 Aug 2012 19:15:52 GMT (envelope-from nobody) Message-Id: <201208121915.q7CJFqnm097800@red.freebsd.org> Date: Sun, 12 Aug 2012 19:15:52 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170567: New port: finance/tryton X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 19:20:01 -0000 >Number: 170567 >Category: ports >Synopsis: New port: finance/tryton >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 Aug 12 19:20:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: >Organization: >Environment: >Description: This port provides the Tryton Gtk+ end user frontend GUI. >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: # # tryton # tryton/files # tryton/Makefile # tryton/distinfo # tryton/pkg-descr # tryton/pkg-plist # echo c - tryton mkdir -p tryton > /dev/null 2>&1 echo c - tryton/files mkdir -p tryton/files > /dev/null 2>&1 echo x - tryton/Makefile sed 's/^X//' >tryton/Makefile << 'aa90e9a0a659ff29188d6b8fa6a7278a' X# New ports collection makefile for: tryton X# Date created: 12 August, 2012 X# Whom: Matthias Petermann X# X# $ $ X# X XPORTNAME= tryton XPORTVERSION= 2.4.0 XCATEGORIES= finance python XMASTER_SITES= http://downloads2.tryton.org/2.4/ X XMAINTAINER= matthias@petermann.it XCOMMENT= The Tryton Gtk+ client X XLICENSE= GPLv3 X XBUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:${PORTSDIR}/devel/py-dateutil \ X ${PYTHON_PKGNAMEPREFIX}pytz>=2012:${PORTSDIR}/devel/py-pytz \ X ${PYTHON_PKGNAMEPREFIX}gtk>=2.24.0:${PORTSDIR}/x11-toolkits/py-gtk2 XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS=easy_install XUSE_GNOME= gtk20 desktopfileutils X XSUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} \ X PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG} X Xpost-install: X ${INSTALL_DATA} ${WRKSRC}/tryton.desktop ${PREFIX}/share/applications/tryton.desktop X ${INSTALL_DATA} ${WRKSRC}/share/pixmaps/tryton/tryton-icon.png ${PREFIX}/share/pixmaps/tryton-icon.png X -@update-desktop-database X X.include aa90e9a0a659ff29188d6b8fa6a7278a echo x - tryton/distinfo sed 's/^X//' >tryton/distinfo << '27680f39df4850f50dab90379e20883c' XSHA256 (tryton-2.4.0.tar.gz) = f9035d536760ae129a018b7dcd33225e2b8fea965dcec9bd61c7ec663081cdab XSIZE (tryton-2.4.0.tar.gz) = 625059 27680f39df4850f50dab90379e20883c echo x - tryton/pkg-descr sed 's/^X//' >tryton/pkg-descr << '814aa4c5c2f17d589cc53a3e041010e2' XThis is the Tryton Gtk+ client. It provides the GUI frontend to the Tryton Xserver (trytond). X XWWW: http://www.tryton.org/ 814aa4c5c2f17d589cc53a3e041010e2 echo x - tryton/pkg-plist sed 's/^X//' >tryton/pkg-plist << 'a61aa69860c6eb7b8cdd3f2ae2f286f7' Xbin/tryton Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO/scripts/tryton Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-attachment-hi.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-attachment.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-clear.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-close.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-connect.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-copy.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-delete.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-dialog-error.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-dialog-information.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-dialog-warning.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-disconnect.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-executable.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-find-replace.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-find.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-folder-new.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-fullscreen.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-go-home.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-go-jump.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-go-next.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-go-previous.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-help.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-icon.png Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-icon.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-list-add.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-list-remove.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-locale.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-lock.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-log-out.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-mail-message-new.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-mail-message.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-new.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-noimage.png Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-open.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-preferences-system-session.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-preferences-system.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-preferences.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-print-email.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-print-open.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-print.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-refresh.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-save-as.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-save.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-start-here.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-system-file-manager.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-system.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-text-background.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-text-foreground.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-text-markup.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-undo.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton-web-browser.svg Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton/tryton.png Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/action/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/action/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/action/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/action/main.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/action/main.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/action/main.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/client.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/client.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/client.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/button.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/button.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/button.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererbinary.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererbinary.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererbinary.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererbutton.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererbutton.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererbutton.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderercombo.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderercombo.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderercombo.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererdate.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererdate.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererdate.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererfloat.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererfloat.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererfloat.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererinteger.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererinteger.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrendererinteger.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderertext.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderertext.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderertext.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderertoggle.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderertoggle.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/cellrenderertoggle.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/common.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/common.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/common.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/date_widget.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/date_widget.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/date_widget.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/datetime_strftime.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/datetime_strftime.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/datetime_strftime.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/domain_inversion.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/domain_inversion.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/domain_inversion.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/domain_parser.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/domain_parser.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/domain_parser.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/environment.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/environment.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/environment.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/popup_menu.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/popup_menu.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common/popup_menu.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/config.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/config.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/config.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/exceptions.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/exceptions.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/exceptions.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/fingerprints.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/fingerprints.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/fingerprints.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/main.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/main.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/main.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/about.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/about.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/about.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/attachment.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/attachment.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/attachment.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/board.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/board.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/board.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbcreate.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbcreate.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbcreate.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbdumpdrop.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbdumpdrop.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbdumpdrop.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dblogin.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dblogin.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dblogin.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbrestore.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbrestore.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/dbrestore.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/email.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/email.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/email.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/form.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/form.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/form.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/limit.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/limit.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/limit.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/nomodal.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/nomodal.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/nomodal.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/preference.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/preference.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/preference.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/shortcuts.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/shortcuts.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/shortcuts.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/tabcontent.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/tabcontent.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/tabcontent.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/tips.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/tips.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/tips.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/action.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/action.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/action.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/parser.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/parser.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/parser.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/view_board.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/view_board.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board/view_board.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/field.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/field.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/field.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/group.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/group.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/group.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/record.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/record.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model/record.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/screen/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/screen/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/screen/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/screen/screen.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/screen/screen.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/screen/screen.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/binary.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/binary.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/binary.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/calendar.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/calendar.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/calendar.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/char.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/char.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/char.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/checkbox.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/checkbox.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/checkbox.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/float.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/float.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/float.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/float_time.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/float_time.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/float_time.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/image.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/image.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/image.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/integer.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/integer.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/integer.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/interface.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/interface.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/interface.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/many2many.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/many2many.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/many2many.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/many2one.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/many2one.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/many2one.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/one2many.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/one2many.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/one2many.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/one2one.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/one2one.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/one2one.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/parser.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/parser.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/parser.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/progressbar.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/progressbar.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/progressbar.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/reference.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/reference.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/reference.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/richtextbox.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/richtextbox.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/richtextbox.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/selection.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/selection.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/selection.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/textbox.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/textbox.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/textbox.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/url.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/url.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk/url.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/bar.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/bar.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/bar.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/graph.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/graph.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/graph.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/line.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/line.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/line.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/parser.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/parser.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/parser.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/pie.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/pie.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk/pie.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/interface.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/interface.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/interface.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/editabletree.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/editabletree.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/editabletree.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/parser.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/parser.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk/parser.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/screen_container.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/screen_container.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/screen_container.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/widget_parse.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/widget_parse.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/widget_parse.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_export.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_export.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_export.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_form.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_form.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_form.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_import.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_import.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_import.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_search.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_search.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/win_search.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/window.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/window.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/window.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/wizard.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/wizard.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/wizard.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/ipc.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/ipc.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/ipc.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/jsonrpc.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/jsonrpc.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/jsonrpc.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/plugins/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/plugins/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/plugins/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/plugins/translation/__init__.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/plugins/translation/__init__.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/plugins/translation/__init__.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/pyson.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/pyson.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/pyson.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/rpc.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/rpc.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/rpc.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/signal_event.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/signal_event.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/signal_event.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/translate.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/translate.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/translate.pyo Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/version.py Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/version.pyc Xlib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/version.pyo Xshare/applications/tryton.desktop Xshare/pixmaps/tryton-icon.png X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/plugins/translation X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/plugins X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/list_gtk X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/graph_gtk X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view/form_gtk X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/view X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/screen X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form/model X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_form X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window/view_board X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui/window X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/gui X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/common X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton/action X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/tryton X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps/tryton X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share/pixmaps X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/share X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO/scripts X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/tryton-2.4.0-py2.7.egg X@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true X@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true a61aa69860c6eb7b8cdd3f2ae2f286f7 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 19:46:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71126106566B; Sun, 12 Aug 2012 19:46:11 +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 434D28FC15; Sun, 12 Aug 2012 19:46: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 q7CJkBxR051692; Sun, 12 Aug 2012 19:46:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CJkAhC051687; Sun, 12 Aug 2012 19:46:10 GMT (envelope-from linimon) Date: Sun, 12 Aug 2012 19:46:10 GMT Message-Id: <201208121946.q7CJkAhC051687@freefall.freebsd.org> To: kitche@kitchetech.com, koobs.freebsd@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170551: [PATCH] x11/sterm: update to 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: Sun, 12 Aug 2012 19:46:11 -0000 Synopsis: [PATCH] x11/sterm: update to 0.2.1 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sun Aug 12 19:46:00 UTC 2012 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=170551 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 19:52:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 015B9106564A; Sun, 12 Aug 2012 19:52: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 C82BC8FC0C; Sun, 12 Aug 2012 19:52: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 q7CJqHF2052419; Sun, 12 Aug 2012 19:52:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CJqHZ5052415; Sun, 12 Aug 2012 19:52:17 GMT (envelope-from edwin) Date: Sun, 12 Aug 2012 19:52:17 GMT Message-Id: <201208121952.q7CJqHZ5052415@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170566: update graphics/py-opengl depends on old version of gcc4.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, 12 Aug 2012 19:52:18 -0000 Synopsis: update graphics/py-opengl depends on old version of gcc4.6.3 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Aug 12 19:52:17 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170566 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 20:40:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C5E77106566B for ; Sun, 12 Aug 2012 20:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9EB478FC0C for ; Sun, 12 Aug 2012 20:40: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 q7CKe1u0068230 for ; Sun, 12 Aug 2012 20:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CKe1PP068229; Sun, 12 Aug 2012 20:40:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 20:40:01 GMT Resent-Message-Id: <201208122040.q7CKe1PP068229@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pedro Giffuni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF14E106564A for ; Sun, 12 Aug 2012 20:31: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 8F6788FC16 for ; Sun, 12 Aug 2012 20:31: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 q7CKV0lT013500 for ; Sun, 12 Aug 2012 20:31:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CKUxf9013499; Sun, 12 Aug 2012 20:30:59 GMT (envelope-from nobody) Message-Id: <201208122030.q7CKUxf9013499@red.freebsd.org> Date: Sun, 12 Aug 2012 20:30:59 GMT From: Pedro Giffuni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170568: New port x11-fonts/sourcesanspro-ttf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 20:40:01 -0000 >Number: 170568 >Category: ports >Synopsis: New port x11-fonts/sourcesanspro-ttf >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 Aug 12 20:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pedro Giffuni >Release: 9.1-PRERELEASE >Organization: >Environment: FreeBSD pcbsd-8555 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Sat Jul 21 13:36:10 COT 2012 Pedro@pcbsd-8555:/sys/amd64/compile/GENERIC amd64 >Description: Adobe has made available an Open source font that is specifically designed for UI and is also very useful for Office suites like Apache OpenOffice. http://blogs.adobe.com/typblography/2012/08/source-sans-pro.html I have created an initial port of the TTF versions based on the Chrome cross-core fonts port. >How-To-Repeat: >Fix: shar file 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: # # sourcesanspro-ttf # sourcesanspro-ttf/files # sourcesanspro-ttf/files/pkg-message.in # sourcesanspro-ttf/Makefile # sourcesanspro-ttf/distinfo # sourcesanspro-ttf/pkg-descr # sourcesanspro-ttf/pkg-plist # echo c - sourcesanspro-ttf mkdir -p sourcesanspro-ttf > /dev/null 2>&1 echo c - sourcesanspro-ttf/files mkdir -p sourcesanspro-ttf/files > /dev/null 2>&1 echo x - sourcesanspro-ttf/files/pkg-message.in sed 's/^X//' >sourcesanspro-ttf/files/pkg-message.in << '86b07dba0aa2b54f626fc74a4db3559c' XYou can start using the fonts by following these instructions: X XAdd the following line to the "Files" section of your x.org configuration file: X X FontPath "%%FONTDIR%%/" 86b07dba0aa2b54f626fc74a4db3559c echo x - sourcesanspro-ttf/Makefile sed 's/^X//' >sourcesanspro-ttf/Makefile << 'ab07ebf6b9854452fa748cbc4ee1bede' X# New ports collection makefile for: SourceSansPro-ttf X# Date created: 11 Aug 2012 X# Whom: Pedro Giffuni X# X# $FreeBSD$ X# X XPORTNAME= sourcesanspro-ttf XPORTVERSION= 1.033 XCATEGORIES= x11-fonts XMASTER_SITES= SF/sourcesans.adobe XDISTNAME= SourceSansPro_FontsOnly-${PORTVERSION} X XMAINTAINER= office@FreeBSD.org XCOMMENT= A set of fonts by Adobe designed for user interfaces X XLICENSE= OFL XLICENSE_NAME= SIL OPEN FONT LICENSE Version 1.1 XLICENSE_FILE= ${WRKSRC}/LICENSE.txt XLICENSE_PERMS= auto-accept X XBUILD_DEPENDS= mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale \ X mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir X XUSE_ZIP= yes XUSE_XORG= x11 X XPLIST_SUB= FONTDIR="${FONTDIR:S|${PREFIX}/||}" X XSUB_FILES= pkg-message XPKGMESSAGE= ${WRKDIR}/pkg-message XSUB_LIST= FONTDIR=${FONTDIR} X XFONTNAME= SourceSansPro XFONTDIR= ${PREFIX}/lib/X11/fonts/${FONTNAME} XINSTDAT= fonts.dir fonts.scale X XMKFONTSCL_CMD= ${LOCALBASE}/bin/mkfontscale XMKFONTDIR_CMD= ${LOCALBASE}/bin/mkfontdir X Xdo-build: X cd ${WRKSRC}/TTF && ${MKFONTSCL_CMD} X cd ${WRKSRC}/TTF && ${MKFONTDIR_CMD} X Xdo-install: X ${MKDIR} ${FONTDIR} X cd ${WRKSRC}/TTF && \ X ${INSTALL_DATA} ${INSTDAT} *.ttf ${FONTDIR} X Xpost-install: X @${ECHO_MSG} X @${CAT} ${PKGMESSAGE} X @${ECHO_MSG} X X.include ab07ebf6b9854452fa748cbc4ee1bede echo x - sourcesanspro-ttf/distinfo sed 's/^X//' >sourcesanspro-ttf/distinfo << '2b3e46f1cd7a4d561275f751c2cec5b3' XSHA256 (SourceSansPro_FontsOnly-1.033.zip) = 6d47d19f9e8e0211af24cad254e6fd69af16f2dde8c902516039607c0f213c8d XSIZE (SourceSansPro_FontsOnly-1.033.zip) = 1372793 2b3e46f1cd7a4d561275f751c2cec5b3 echo x - sourcesanspro-ttf/pkg-descr sed 's/^X//' >sourcesanspro-ttf/pkg-descr << '2b2e4d568e1578975fe279133b4364b3' XSource Sans Pro: Adobe’s first open source type family X XSource Sans Pro was designed by Paul D. Hunt as Adobe's first open source Xtypeface family, conceived primarily as a typeface for user interfaces. XSource Sans Pro draws inspiration from the clarity and legibility of Xtwentieth-century American gothic typeface designs. X XSource Sans Pro currently supports a wide range of languages using Latin Xscript, and includes all the characters in the Adobe Latin 4 glyph set. As Xan open source project, it is expected that incremental updates will be Xmade over time to extend glyph set coverage and functionality. X XWWW: http://sourceforge.net/projects/sourcesans.adobe/ 2b2e4d568e1578975fe279133b4364b3 echo x - sourcesanspro-ttf/pkg-plist sed 's/^X//' >sourcesanspro-ttf/pkg-plist << '877dc81533841a2e482d9c9e08dd7272' X%%FONTDIR%%/SourceSansPro-Black.ttf X%%FONTDIR%%/SourceSansPro-BlackIt.ttf X%%FONTDIR%%/SourceSansPro-Bold.ttf X%%FONTDIR%%/SourceSansPro-BoldIt.ttf X%%FONTDIR%%/SourceSansPro-ExtraLight.ttf X%%FONTDIR%%/SourceSansPro-ExtraLightIt.ttf X%%FONTDIR%%/SourceSansPro-It.ttf X%%FONTDIR%%/SourceSansPro-Light.ttf X%%FONTDIR%%/SourceSansPro-LightIt.ttf X%%FONTDIR%%/SourceSansPro-Regular.ttf X%%FONTDIR%%/SourceSansPro-Semibold.ttf X%%FONTDIR%%/SourceSansPro-SemiboldIt.ttf X%%FONTDIR%%/fonts.dir X%%FONTDIR%%/fonts.scale X@unexec rm %D/%%FONTDIR%%/fonts.cache-1 2>/dev/null || /usr/bin/true X@dirrm %%FONTDIR%% 877dc81533841a2e482d9c9e08dd7272 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 20:50:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A59E21065672 for ; Sun, 12 Aug 2012 20:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 663DB8FC16 for ; Sun, 12 Aug 2012 20:50: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 q7CKo1ud068991 for ; Sun, 12 Aug 2012 20:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CKo100068990; Sun, 12 Aug 2012 20:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 20:50:01 GMT Resent-Message-Id: <201208122050.q7CKo100068990@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Polstra Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5824C106564A for ; Sun, 12 Aug 2012 20:42: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 4380C8FC12 for ; Sun, 12 Aug 2012 20:42: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 q7CKglVs028264 for ; Sun, 12 Aug 2012 20:42:47 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CKgknD028263; Sun, 12 Aug 2012 20:42:46 GMT (envelope-from nobody) Message-Id: <201208122042.q7CKgknD028263@red.freebsd.org> Date: Sun, 12 Aug 2012 20:42:46 GMT From: John Polstra To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170569: sysutils/sec does not start automatically at boot time X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 20:50:01 -0000 >Number: 170569 >Category: ports >Synopsis: sysutils/sec does not start automatically at boot time >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 Aug 12 20:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: John Polstra >Release: 9.0-RELEASE-p4 >Organization: >Environment: FreeBSD rock.polstra.com 9.0-RELEASE-p4 FreeBSD 9.0-RELEASE-p4 #29: Sun Aug 12 12:04:16 PDT 2012 jdp@rock.polstra.com:/usr/obj/usr/src/sys/ROCK amd64 >Description: Among other ports, I have a standard installation of sysutils/sec on this machine. Here are the relevant lines in /etc/rc.conf: sec_enable="YES" sec_flags="-syslog=daemon -debug=4 -intevents \ -input=/var/log/auth.log -input=/var/log/maillog" When I reboot the machine, sec does not start up. All of my other daemon-based ports start as they should. There are no error messages concerning sec. After the machine has booted, I can start sec manually without any problems: rock# /usr/local/etc/rc.d/sec status sec is not running. rock# /usr/local/etc/rc.d/sec start Performing sanity check of sec configuration: OK Starting sec. SEC (Simple Event Correlator) 2.5.1 Changing working directory to / Reading configuration from /usr/local/etc/sec.conf rock# I cannot see anything unusual in sec's startup script, yet it consistently is ignored by the rc subsystem at boot time. >How-To-Repeat: Install sysutils/sec. Add "sec_enable=YES" to /etc/rc.conf. Reboot. See if sec starts up automatically. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 20:50:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00BE11065673 for ; Sun, 12 Aug 2012 20:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CA8938FC18 for ; Sun, 12 Aug 2012 20:50: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 q7CKo1sW069001 for ; Sun, 12 Aug 2012 20:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CKo1C5069000; Sun, 12 Aug 2012 20:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 20:50:01 GMT Resent-Message-Id: <201208122050.q7CKo1C5069000@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Jason E. Hale" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D15AB106593B for ; Sun, 12 Aug 2012 20:45:44 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8C7DA8FC19 for ; Sun, 12 Aug 2012 20:45:44 +0000 (UTC) Received: by qcsg15 with SMTP id g15so2287842qcs.13 for ; Sun, 12 Aug 2012 13:45:44 -0700 (PDT) Received: by 10.224.194.137 with SMTP id dy9mr20855505qab.67.1344804344043; Sun, 12 Aug 2012 13:45:44 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id gq10sm6796849qab.18.2012.08.12.13.45.43 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 12 Aug 2012 13:45:43 -0700 (PDT) Message-Id: <1344804343.539799.46684@mocha.verizon.net> Date: Sun, 12 Aug 2012 16:45:43 -0400 From: "Jason E. Hale" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170570: [MAINTAINER] security/gpa: Update to 0.9.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Jason E. Hale" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 20:50:02 -0000 >Number: 170570 >Category: ports >Synopsis: [MAINTAINER] security/gpa: Update to 0.9.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: Sun Aug 12 20:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason E. Hale >Release: FreeBSD 9.0-RELEASE i386 >Organization: none >Environment: System: FreeBSD mocha.verizon.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Thu Jan 19 11:42:41 EST 2012 Jason@mocha.verizon.net:/usr/obj/usr/src/sys/MOCHA9 i386 >Description: - Update security/gpa to 0.9.3 bugfix release - Clean up COMMENT - Drop ABI numbers from LIB_DEPENDS - pkg-config is needed for build - Make sure we are picking up version 2.x of gpg during configure - Convert to OPTIONSng >How-To-Repeat: - Use attached diff >Fix: --- 2012-08-12-gpa.diff begins here --- Index: distinfo =================================================================== --- distinfo (revision 302434) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (gpa-0.9.2.tar.bz2) = d0262b2ddd61c66c16168b61b758c4f387613e776454db2e50356d29eda49662 -SIZE (gpa-0.9.2.tar.bz2) = 710552 +SHA256 (gpa-0.9.3.tar.bz2) = 9c5b67a562d2831689d4659cf377fb4db521f55f08ba6e0bd47b88e69d70c014 +SIZE (gpa-0.9.3.tar.bz2) = 711197 Index: Makefile =================================================================== --- Makefile (revision 302434) +++ Makefile (working copy) @@ -6,31 +6,35 @@ # PORTNAME= gpa -PORTVERSION= 0.9.2 +PORTVERSION= 0.9.3 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= gpa MAINTAINER= bsdkaffee@gmail.com -COMMENT= A graphical frontend for the GNU Privacy Guard +COMMENT= GTK2+ frontend for the GNU Privacy Guard LICENSE= GPLv3 -LIB_DEPENDS= assuan.0:${PORTSDIR}/security/libassuan \ - gpgme.19:${PORTSDIR}/security/gpgme +LIB_DEPENDS= assuan:${PORTSDIR}/security/libassuan \ + gpgme:${PORTSDIR}/security/gpgme BUILD_DEPENDS= gpgv2:${PORTSDIR}/security/gnupg RUN_DEPENDS= gpgv2:${PORTSDIR}/security/gnupg USE_BZIP2= yes USE_GMAKE= yes +USE_PKGCONFIG= build USE_GNOME= gtk20 GNU_CONFIGURE= yes -CONFIGURE_ENV+= GPGKEYS_LDAP="${LOCALBASE}/libexec/gpg2keys_ldap" +CONFIGURE_ENV+= GPGKEYS_LDAP="${LOCALBASE}/libexec/gpg2keys_ldap" \ + GPG="${LOCALBASE}/bin/gpgv2" +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib MAKE_JOBS_SAFE= yes MAN1= gpa.1 -OPTIONS= NLS "Native language support" on +OPTIONS_DEFINE= NLS .include @@ -38,7 +42,7 @@ IGNORE= requires gpgsm. (Re)Install security/gnupg with the GPGSM option ON, then rebuild security/gpgme if installed .endif -.if defined(WITHOUT_NLS) +.if empty(PORT_OPTIONS:MNLS) CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .else --- 2012-08-12-gpa.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 20:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 897E81065677; Sun, 12 Aug 2012 20:50:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 576E98FC0A; Sun, 12 Aug 2012 20: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 q7CKoC10069153; Sun, 12 Aug 2012 20:50:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CKoC6V069149; Sun, 12 Aug 2012 20:50:12 GMT (envelope-from edwin) Date: Sun, 12 Aug 2012 20:50:12 GMT Message-Id: <201208122050.q7CKoC6V069149@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jdp@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170569: sysutils/sec does not start automatically at boot time X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 20:50:12 -0000 Synopsis: sysutils/sec does not start automatically at boot time Responsible-Changed-From-To: freebsd-ports-bugs->jdp Responsible-Changed-By: edwin Responsible-Changed-When: Sun Aug 12 20:50:11 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170569 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 21:10:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29FA5106566C for ; Sun, 12 Aug 2012 21:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F38CE8FC12 for ; Sun, 12 Aug 2012 21:10: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 q7CLA5gj070556 for ; Sun, 12 Aug 2012 21:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CLA5Tm070555; Sun, 12 Aug 2012 21:10:05 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 21:10:05 GMT Resent-Message-Id: <201208122110.q7CLA5Tm070555@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, Veniamin Gvozdikov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D87F0106564A for ; Sun, 12 Aug 2012 21:02:48 +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 C09DB8FC0C for ; Sun, 12 Aug 2012 21:02:48 +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 q7CL2mxQ057932 for ; Sun, 12 Aug 2012 21:02:48 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CL2m10057931; Sun, 12 Aug 2012 21:02:48 GMT (envelope-from nobody) Message-Id: <201208122102.q7CL2m10057931@red.freebsd.org> Date: Sun, 12 Aug 2012 21:02:48 GMT From: Veniamin Gvozdikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170571: [new port]: misc/leechcraft Cross-platform modular internet-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 21:10:06 -0000 >Number: 170571 >Category: ports >Synopsis: [new port]: misc/leechcraft Cross-platform modular internet-client >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 Aug 12 21:10:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Veniamin Gvozdikov >Release: FreeBSD 8.2-RELEASE >Organization: >Environment: FreeBSD ololo 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Aug 18 11:19:07 MSD 2011 root@ololo:/usr/obj/usr/src/sys/OLOLO amd64 >Description: LeechCraft is a free open source cross-platform modular live environment. LeechCraft has modules for everything: it allows one to browse the web, chat via instant messaging, read RSS/Atom feeds, download files via BitTorrent and other protocols, automatically download, play or stream podcasts (and other media files) and much more. depended by: ports/170416 ports/170418 ports/170419 danfe@, please take it for full package. >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: # # leechcraft # leechcraft/pkg-descr # leechcraft/pkg-plist # leechcraft/Makefile # leechcraft/distinfo # echo c - leechcraft mkdir -p leechcraft > /dev/null 2>&1 echo x - leechcraft/pkg-descr sed 's/^X//' >leechcraft/pkg-descr << 'bebe1be0feb293f41772a733c5f4853f' XLeechCraft allows to browse the web, read RSS/Atom feeds, download files Xvia BitTorrent, FTP, HTTP and DC, automatically download, play or stream Xpodcasts (and other media files) and much more X XWWW: http://leechcraft.org/ bebe1be0feb293f41772a733c5f4853f echo x - leechcraft/pkg-plist sed 's/^X//' >leechcraft/pkg-plist << 'e46939d71a4e4dc244b56f9b49b801d3' Xshare/icons/hicolor/96x96/apps/leechcraft_main.png Xshare/icons/hicolor/72x72/apps/leechcraft_main.png Xshare/icons/hicolor/64x64/apps/leechcraft_main.png Xshare/icons/hicolor/48x48/apps/leechcraft_main.png Xshare/icons/hicolor/36x36/apps/leechcraft_main.png Xshare/icons/hicolor/32x32/apps/leechcraft_main.png Xshare/icons/hicolor/24x24/apps/leechcraft_main.png Xshare/icons/hicolor/22x22/apps/leechcraft_main.png Xshare/icons/hicolor/192x192/apps/leechcraft_main.png Xshare/icons/hicolor/16x16/apps/leechcraft_main.png Xshare/icons/hicolor/14x14/apps/leechcraft_main.png Xshare/icons/hicolor/128x128/apps/leechcraft_main.png Xshare/cmake/Modules/InitLCPlugin.cmake Xshare/applications/leechcraft.desktop Xlib/libxmlsettingsdialog.so.0.3.0 Xlib/libxmlsettingsdialog.so Xlib/liblcutil.so.0.5.0 Xlib/liblcutil.so Xinclude/leechcraft/xmlsettingsdialog/xsdconfig.h Xinclude/leechcraft/xmlsettingsdialog/xmlsettingsdialog.h Xinclude/leechcraft/xmlsettingsdialog/datasourceroles.h Xinclude/leechcraft/xmlsettingsdialog/basesettingsmanager.h Xinclude/leechcraft/util/utilconfig.h Xinclude/leechcraft/util/util.h Xinclude/leechcraft/util/util.cpp Xinclude/leechcraft/util/ui_backendselector.h Xinclude/leechcraft/util/tags/tagslineedit.h Xinclude/leechcraft/util/tags/tagslineedit.cpp Xinclude/leechcraft/util/tags/tagsfiltermodel.h Xinclude/leechcraft/util/tags/tagsfiltermodel.cpp Xinclude/leechcraft/util/tags/tagscompletionmodel.h Xinclude/leechcraft/util/tags/tagscompletionmodel.cpp Xinclude/leechcraft/util/tags/tagscompleter.h Xinclude/leechcraft/util/tags/tagscompleter.cpp Xinclude/leechcraft/util/tags/categoryselector.h Xinclude/leechcraft/util/tags/categoryselector.cpp Xinclude/leechcraft/util/sysinfo.h Xinclude/leechcraft/util/sysinfo.cpp Xinclude/leechcraft/util/sync/versionactionmapper.h Xinclude/leechcraft/util/sync/syncops.h Xinclude/leechcraft/util/sync/syncops.cpp Xinclude/leechcraft/util/sync/syncdeltamanager.h Xinclude/leechcraft/util/sync/syncdeltamanager.cpp Xinclude/leechcraft/util/structuresops.h Xinclude/leechcraft/util/structuresops.cpp Xinclude/leechcraft/util/socketerrorstrings.h Xinclude/leechcraft/util/socketerrorstrings.cpp Xinclude/leechcraft/util/shortcuts/shortcutmanager.h Xinclude/leechcraft/util/shortcuts/shortcutmanager.cpp Xinclude/leechcraft/util/resourceloader.h Xinclude/leechcraft/util/resourceloader.cpp Xinclude/leechcraft/util/passutils.h Xinclude/leechcraft/util/passutils.cpp Xinclude/leechcraft/util/notificationactionhandler.h Xinclude/leechcraft/util/notificationactionhandler.cpp Xinclude/leechcraft/util/models/treeitem.h Xinclude/leechcraft/util/models/treeitem.cpp Xinclude/leechcraft/util/models/mergemodel.h Xinclude/leechcraft/util/models/mergemodel.cpp Xinclude/leechcraft/util/models/listmodel.h Xinclude/leechcraft/util/models/listmodel.cpp Xinclude/leechcraft/util/models/flattofoldersproxymodel.h Xinclude/leechcraft/util/models/flattofoldersproxymodel.cpp Xinclude/leechcraft/util/models/flattenfiltermodel.h Xinclude/leechcraft/util/models/flattenfiltermodel.cpp Xinclude/leechcraft/util/moc_tagslineedit.cpp Xinclude/leechcraft/util/moc_tagsfiltermodel.cpp Xinclude/leechcraft/util/moc_tagscompletionmodel.cpp Xinclude/leechcraft/util/moc_tagscompleter.cpp Xinclude/leechcraft/util/moc_syncdeltamanager.cpp Xinclude/leechcraft/util/moc_shortcutmanager.cpp Xinclude/leechcraft/util/moc_selectablebrowser.cpp Xinclude/leechcraft/util/moc_resourceloader.cpp Xinclude/leechcraft/util/moc_notificationactionhandler.cpp Xinclude/leechcraft/util/moc_mergemodel.cpp Xinclude/leechcraft/util/moc_listmodel.cpp Xinclude/leechcraft/util/moc_flattofoldersproxymodel.cpp Xinclude/leechcraft/util/moc_flattenfiltermodel.cpp Xinclude/leechcraft/util/moc_customnetworkreply.cpp Xinclude/leechcraft/util/moc_customcookiejar.cpp Xinclude/leechcraft/util/moc_categoryselector.cpp Xinclude/leechcraft/util/moc_basehookinterconnector.cpp Xinclude/leechcraft/util/moc_backendselector.cpp Xinclude/leechcraft/util/liblcutil.so.0.5.0 Xinclude/leechcraft/util/liblcutil.so Xinclude/leechcraft/util/lcutil_automoc.cpp Xinclude/leechcraft/util/idpool.h Xinclude/leechcraft/util/gui/selectablebrowser.h Xinclude/leechcraft/util/gui/selectablebrowser.cpp Xinclude/leechcraft/util/gui/flowlayout.h Xinclude/leechcraft/util/gui/flowlayout.cpp Xinclude/leechcraft/util/guarded.h Xinclude/leechcraft/util/fileremoveguard.h Xinclude/leechcraft/util/fileremoveguard.cpp Xinclude/leechcraft/util/exceptions.h Xinclude/leechcraft/util/exceptions.cpp Xinclude/leechcraft/util/defaulthookproxy.h Xinclude/leechcraft/util/defaulthookproxy.cpp Xinclude/leechcraft/util/dblock.h Xinclude/leechcraft/util/dblock.cpp Xinclude/leechcraft/util/customnetworkreply.h Xinclude/leechcraft/util/customnetworkreply.cpp Xinclude/leechcraft/util/customcookiejar.h Xinclude/leechcraft/util/customcookiejar.cpp Xinclude/leechcraft/util/cmake_install.cmake Xinclude/leechcraft/util/basehookinterconnector.h Xinclude/leechcraft/util/basehookinterconnector.cpp Xinclude/leechcraft/util/backendselector.ui Xinclude/leechcraft/util/backendselector.h Xinclude/leechcraft/util/backendselector.cpp Xinclude/leechcraft/util/Makefile Xinclude/leechcraft/util/CMakeLists.txt Xinclude/leechcraft/util/CMakeFiles/progress.marks Xinclude/leechcraft/util/CMakeFiles/lcutil_automoc.dir/progress.make Xinclude/leechcraft/util/CMakeFiles/lcutil_automoc.dir/depend.make Xinclude/leechcraft/util/CMakeFiles/lcutil_automoc.dir/depend.internal Xinclude/leechcraft/util/CMakeFiles/lcutil_automoc.dir/cmake_clean.cmake Xinclude/leechcraft/util/CMakeFiles/lcutil_automoc.dir/build.make Xinclude/leechcraft/util/CMakeFiles/lcutil_automoc.dir/DependInfo.cmake Xinclude/leechcraft/util/CMakeFiles/lcutil_automoc.dir/AutomocOldMocDefinitions.cmake Xinclude/leechcraft/util/CMakeFiles/lcutil_automoc.dir/AutomocInfo.cmake Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/util.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/tags/tagslineedit.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/tags/tagsfiltermodel.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/tags/tagscompletionmodel.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/tags/tagscompleter.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/tags/categoryselector.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/sysinfo.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/sync/syncops.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/sync/syncdeltamanager.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/structuresops.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/socketerrorstrings.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/shortcuts/shortcutmanager.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/resourceloader.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/progress.make Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/passutils.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/notificationactionhandler.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/models/treeitem.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/models/mergemodel.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/models/listmodel.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/models/flattofoldersproxymodel.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/models/flattenfiltermodel.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/link.txt Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/lcutil_automoc.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/gui/selectablebrowser.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/gui/flowlayout.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/flags.make Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/fileremoveguard.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/exceptions.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/depend.make Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/depend.internal Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/defaulthookproxy.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/dblock.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/customnetworkreply.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/customcookiejar.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/cmake_clean.cmake Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/build.make Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/basehookinterconnector.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/backendselector.cpp.o Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/DependInfo.cmake Xinclude/leechcraft/util/CMakeFiles/lcutil.dir/CXX.includecache Xinclude/leechcraft/util/CMakeFiles/CMakeDirectoryInformation.cmake Xinclude/leechcraft/interfaces/vfs/iprotocolengine.h Xinclude/leechcraft/interfaces/vfs/iengineprovider.h Xinclude/leechcraft/interfaces/vfs/ienginebase.h Xinclude/leechcraft/interfaces/vfs/icontainerengine.h Xinclude/leechcraft/interfaces/structures.h Xinclude/leechcraft/interfaces/media/isimilarartists.h Xinclude/leechcraft/interfaces/media/irecommendedartists.h Xinclude/leechcraft/interfaces/media/irecentreleases.h Xinclude/leechcraft/interfaces/media/iradiostationprovider.h Xinclude/leechcraft/interfaces/media/iradiostation.h Xinclude/leechcraft/interfaces/media/ipendingsimilarartists.h Xinclude/leechcraft/interfaces/media/ilyricsfinder.h Xinclude/leechcraft/interfaces/media/iaudioscrobbler.h Xinclude/leechcraft/interfaces/media/iartistbiofetcher.h Xinclude/leechcraft/interfaces/media/ialbumartprovider.h Xinclude/leechcraft/interfaces/media/audiostructs.h Xinclude/leechcraft/interfaces/iwindow.h Xinclude/leechcraft/interfaces/iwebbrowser.h Xinclude/leechcraft/interfaces/itexteditor.h Xinclude/leechcraft/interfaces/itaggablejobs.h Xinclude/leechcraft/interfaces/isyncable.h Xinclude/leechcraft/interfaces/isummaryrepresentation.h Xinclude/leechcraft/interfaces/istartupwizard.h Xinclude/leechcraft/interfaces/iscriptloader.h Xinclude/leechcraft/interfaces/iremovabledevmanager.h Xinclude/leechcraft/interfaces/ipluginready.h Xinclude/leechcraft/interfaces/ipluginadaptor.h Xinclude/leechcraft/interfaces/iplugin2.h Xinclude/leechcraft/interfaces/imwproxy.h Xinclude/leechcraft/interfaces/imediaplayer.h Xinclude/leechcraft/interfaces/ijobholder.h Xinclude/leechcraft/interfaces/iinfo.h Xinclude/leechcraft/interfaces/iimportexport.h Xinclude/leechcraft/interfaces/ihavetabs.h Xinclude/leechcraft/interfaces/ihaveshortcuts.h Xinclude/leechcraft/interfaces/ihavesettings.h Xinclude/leechcraft/interfaces/ihaverecoverabletabs.h Xinclude/leechcraft/interfaces/ihavediaginfo.h Xinclude/leechcraft/interfaces/ifinder.h Xinclude/leechcraft/interfaces/ientityhandler.h Xinclude/leechcraft/interfaces/idownload.h Xinclude/leechcraft/interfaces/ianemitter.h Xinclude/leechcraft/interfaces/iactionsexporter.h Xinclude/leechcraft/interfaces/entitytesthandleresult.h Xinclude/leechcraft/interfaces/core/itagsmanager.h Xinclude/leechcraft/interfaces/core/ipluginsmanager.h Xinclude/leechcraft/interfaces/core/ihookproxy.h Xinclude/leechcraft/interfaces/core/icoretabwidget.h Xinclude/leechcraft/interfaces/core/icoreproxy.h Xinclude/leechcraft/config.h Xbin/leechcraft-add-file Xbin/leechcraft X%%YANDEXDISK%%lib/leechcraft/plugins/libleechcraft_netstoremanager_yandexdisk.so X%%YANDEXDISK%%%%DATADIR%%/translations/leechcraft_netstoremanager_yandexdisk_uk_UA.qm X%%YANDEXDISK%%%%DATADIR%%/translations/leechcraft_netstoremanager_yandexdisk_ru_RU.qm X%%YANDEXDISK%%%%DATADIR%%/translations/leechcraft_netstoremanager_yandexdisk_es.qm X%%YANDEXDISK%%%%DATADIR%%/translations/leechcraft_netstoremanager_yandexdisk_en.qm X%%XPROXY%%lib/leechcraft/plugins/libleechcraft_xproxy.so X%%XPROXY%%%%DATADIR%%/translations/leechcraft_xproxy_ru_RU.qm X%%XPROXY%%%%DATADIR%%/translations/leechcraft_xproxy_en.qm X%%XPROXY%%%%DATADIR%%/settings/xproxysettings.xml X%%VROOBY%%lib/leechcraft/plugins/libleechcraft_vrooby.so X%%VROOBY%%%%DATADIR%%/translations/leechcraft_vrooby_ru_RU.qm X%%VROOBY%%%%DATADIR%%/translations/leechcraft_vrooby_en.qm X%%VGRABBER%%lib/leechcraft/plugins/libleechcraft_vgrabber.so X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_uk_UA.qm X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_ru_RU.qm X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_pl.qm X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_oc.qm X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_it.qm X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_fr.qm X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_en.qm X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_de.qm X%%VGRABBER%%%%DATADIR%%/translations/leechcraft_vgrabber_ar.qm X%%VGRABBER%%%%DATADIR%%/settings/vgrabbersettings.xml X%%TORRENT%%lib/leechcraft/plugins/libleechcraft_bittorrent.so X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_uk_UA.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_ru_RU.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_pl.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_oc.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_it.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_fr.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_es.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_eo.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_en.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_de.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_be.qm X%%TORRENT%%%%DATADIR%%/translations/leechcraft_bittorrent_ar.qm X%%TORRENT%%%%DATADIR%%/settings/torrentsettings.xml X%%TABSLIST%%lib/leechcraft/plugins/libleechcraft_tabslist.so X%%TABSLIST%%%%DATADIR%%/translations/leechcraft_tabslist_uk_UA.qm X%%TABSLIST%%%%DATADIR%%/translations/leechcraft_tabslist_ru_RU.qm X%%TABSLIST%%%%DATADIR%%/translations/leechcraft_tabslist_en.qm X%%TABSESSMANAGER%%lib/leechcraft/plugins/libleechcraft_tabsessmanager.so X%%TABSESSMANAGER%%%%DATADIR%%/translations/leechcraft_tabsessmanager_ru_RU.qm X%%TABSESSMANAGER%%%%DATADIR%%/translations/leechcraft_tabsessmanager_en.qm X%%SYNCER%%lib/leechcraft/plugins/libleechcraft_syncer.so X%%SYNCER%%%%DATADIR%%/translations/leechcraft_syncer_ru_RU.qm X%%SYNCER%%%%DATADIR%%/translations/leechcraft_syncer_en.qm X%%SYNCER%%%%DATADIR%%/settings/syncersettings.xml X%%SUMMARY%%lib/leechcraft/plugins/libleechcraft_summary.so X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_uk_UA.qm X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_ru_RU.qm X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_it.qm X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_fr.qm X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_es.qm X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_en.qm X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_de.qm X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_be.qm X%%SUMMARY%%%%DATADIR%%/translations/leechcraft_summary_ar.qm X%%SNAILS%%lib/leechcraft/plugins/libleechcraft_snails.so X%%SNAILS%%%%DATADIR%%/translations/leechcraft_snails_ru_RU.qm X%%SNAILS%%%%DATADIR%%/translations/leechcraft_snails_en.qm X%%SNAILS%%%%DATADIR%%/translations/leechcraft_popishu_es.qm X%%SNAILS%%%%DATADIR%%/translations/leechcraft_glance_es.qm X%%SNAILS%%%%DATADIR%%/snails/msgview/default/msgview.html X%%SNAILS%%%%DATADIR%%/settings/snailssettings.xml X%%SIDEBAR%%lib/leechcraft/plugins/libleechcraft_sidebar.so X%%SHELLOPEN%%lib/leechcraft/plugins/libleechcraft_shellopen.so X%%SHELLOPEN%%%%DATADIR%%/translations/leechcraft_shellopen_uk_UA.qm X%%SHELLOPEN%%%%DATADIR%%/translations/leechcraft_shellopen_ru_RU.qm X%%SHELLOPEN%%%%DATADIR%%/translations/leechcraft_shellopen_en.qm X%%SEEKTHRU%%lib/leechcraft/plugins/libleechcraft_seekthru.so X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_uk_UA.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_ru_RU.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_pl.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_fr.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_es.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_eo.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_en.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_de.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_be.qm X%%SEEKTHRU%%%%DATADIR%%/translations/leechcraft_seekthru_ar.qm X%%SEEKTHRU%%%%DATADIR%%/settings/seekthrusettings.xml X%%SECMAN%%lib/leechcraft/plugins/libleechcraft_secman_simplestorage.so X%%SECMAN%%lib/leechcraft/plugins/libleechcraft_secman.so X%%SECMAN%%include/leechcraft/interfaces/secman/istorageplugin.h X%%QROSP%%lib/leechcraft/plugins/libleechcraft_qrosp.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_pogooglue.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_onlinebookmarks_readitlater.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_onlinebookmarks_delicious.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_onlinebookmarks.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_keywords.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_fua.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_filescheme.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_fatape.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku_cleanweb.so X%%POSHUKU%%lib/leechcraft/plugins/libleechcraft_poshuku.so X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_pogooglue_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_pogooglue_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_pogooglue_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_pl.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_readitlater_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_readitlater_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_readitlater_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_it.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_fr.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_delicious_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_delicious_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_delicious_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_onlinebookmarks_de.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_it.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_pl.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_it.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_fr.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_es.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_eo.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_de.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fua_ar.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fr.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_pl.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_it.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_fr.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_es.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_eo.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_de.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_filescheme_ar.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fatape_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fatape_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fatape_it.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_fatape_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_es.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_eo.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_de.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_uk_UA.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_ru_RU.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_pl.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_it.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_fr.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_es.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_eo.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_en.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_de.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_cleanweb_ar.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_be.qm X%%POSHUKU%%%%DATADIR%%/translations/leechcraft_poshuku_ar.qm X%%POSHUKU%%%%DATADIR%%/settings/poshukusettings.xml X%%POSHUKU%%%%DATADIR%%/settings/poshukuonlinebookmarkssettings.xml X%%POSHUKU%%%%DATADIR%%/settings/poshukukeywordssettings.xml X%%POSHUKU%%%%DATADIR%%/settings/poshukufuasettings.xml X%%POSHUKU%%%%DATADIR%%/settings/poshukufatapesettings.xml X%%POSHUKU%%%%DATADIR%%/settings/poshukucleanwebsettings.xml X%%POSHUKU%%%%DATADIR%%/installed/poshuku/LeechCraft.Poshuku X%%POPISHU%%lib/leechcraft/plugins/libleechcraft_popishu.so X%%POPISHU%%%%DATADIR%%/translations/leechcraft_popishu_uk_UA.qm X%%POPISHU%%%%DATADIR%%/translations/leechcraft_popishu_ru_RU.qm X%%POPISHU%%%%DATADIR%%/translations/leechcraft_popishu_it.qm X%%POPISHU%%%%DATADIR%%/translations/leechcraft_popishu_fr.qm X%%POPISHU%%%%DATADIR%%/translations/leechcraft_popishu_en.qm X%%POPISHU%%%%DATADIR%%/translations/leechcraft_popishu_de.qm X%%POPISHU%%%%DATADIR%%/settings/popishusettings.xml X%%PINTAB%%lib/leechcraft/plugins/libleechcraft_pintab.so X%%PINTAB%%%%DATADIR%%/translations/leechcraft_pintab_ru_RU.qm X%%PINTAB%%%%DATADIR%%/translations/leechcraft_pintab_en.qm X%%OTZERKALU%%lib/leechcraft/plugins/libleechcraft_otzerkalu.so X%%NEWLIFE%%lib/leechcraft/plugins/libleechcraft_newlife.so X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_uk_UA.qm X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_ru_RU.qm X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_pl.qm X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_it.qm X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_fr.qm X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_en.qm X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_de.qm X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_be.qm X%%NEWLIFE%%%%DATADIR%%/translations/leechcraft_newlife_ar.qm X%%NETWORKMONITOR%%lib/leechcraft/plugins/libleechcraft_networkmonitor.so X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_uk_UA.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_ru_RU.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_pl.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_it.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_fr.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_es.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_eo.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_en.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_de.qm X%%NETWORKMONITOR%%%%DATADIR%%/translations/leechcraft_networkmonitor_ar.qm X%%NETSTOREMANAGER%%lib/leechcraft/plugins/libleechcraft_netstoremanager.so X%%NETSTOREMANAGER%%%%DATADIR%%/translations/leechcraft_netstoremanager_uk_UA.qm X%%NETSTOREMANAGER%%%%DATADIR%%/translations/leechcraft_netstoremanager_ru_RU.qm X%%NETSTOREMANAGER%%%%DATADIR%%/translations/leechcraft_netstoremanager_es.qm X%%NETSTOREMANAGER%%%%DATADIR%%/translations/leechcraft_netstoremanager_en.qm X%%NETSTOREMANAGER%%%%DATADIR%%/settings/netstoremanagersettings.xml X%%NACHEKU%%lib/leechcraft/plugins/libleechcraft_nacheku.so X%%NACHEKU%%%%DATADIR%%/settings/nachekusettings.xml X%%MONOCLE%%lib/leechcraft/plugins/libleechcraft_monocle_pdf.so X%%MONOCLE%%lib/leechcraft/plugins/libleechcraft_monocle_fxb.so X%%MONOCLE%%lib/leechcraft/plugins/libleechcraft_monocle.so X%%MONOCLE%%%%DATADIR%%/translations/leechcraft_monocle_ru_RU.qm X%%MONOCLE%%%%DATADIR%%/translations/leechcraft_monocle_en.qm X%%MONOCLE%%%%DATADIR%%/settings/monoclesettings.xml X%%LMP%%lib/leechcraft/plugins/libleechcraft_lmp_mp3tunes.so X%%LMP%%lib/leechcraft/plugins/libleechcraft_lmp_dumbsync.so X%%LMP%%lib/leechcraft/plugins/libleechcraft_lmp.so X%%LMP%%include/leechcraft/interfaces/lmp/isyncplugin.h X%%LMP%%include/leechcraft/interfaces/lmp/iplaylistprovider.h X%%LMP%%include/leechcraft/interfaces/lmp/ilocalcollection.h X%%LMP%%include/leechcraft/interfaces/lmp/ilmpproxy.h X%%LMP%%include/leechcraft/interfaces/lmp/ilmpplugin.h X%%LMP%%include/leechcraft/interfaces/lmp/icloudstorageplugin.h X%%LMP%%%%DATADIR%%/translations/leechcraft_lmp_ru_RU.qm X%%LMP%%%%DATADIR%%/translations/leechcraft_lmp_es.qm X%%LMP%%%%DATADIR%%/translations/leechcraft_lmp_en.qm X%%LMP%%%%DATADIR%%/settings/lmpsettings.xml X%%LMP%%%%DATADIR%%/settings/lmpmp3tunessettings.xml X%%LHTR%%lib/leechcraft/plugins/libleechcraft_lhtr.so X%%LHTR%%%%DATADIR%%/translations/leechcraft_lhtr_uk_UA.qm X%%LHTR%%%%DATADIR%%/translations/leechcraft_lhtr_ru_RU.qm X%%LHTR%%%%DATADIR%%/translations/leechcraft_lhtr_es.qm X%%LHTR%%%%DATADIR%%/translations/leechcraft_lhtr_en.qm X%%LAURE%%lib/leechcraft/plugins/libleechcraft_laure.so X%%LAURE%%%%DATADIR%%/translations/leechcraft_laure_uk_UA.qm X%%LAURE%%%%DATADIR%%/translations/leechcraft_laure_ru_RU.qm X%%LAURE%%%%DATADIR%%/translations/leechcraft_laure_en.qm X%%LAURE%%%%DATADIR%%/settings/lauresettings.xml X%%LACKMAN%%lib/leechcraft/plugins/libleechcraft_lackman.so X%%LACKMAN%%%%DATADIR%%/translations/leechcraft_lackman_uk_UA.qm X%%LACKMAN%%%%DATADIR%%/translations/leechcraft_lackman_ru_RU.qm X%%LACKMAN%%%%DATADIR%%/translations/leechcraft_lackman_it.qm X%%LACKMAN%%%%DATADIR%%/translations/leechcraft_lackman_fr.qm X%%LACKMAN%%%%DATADIR%%/translations/leechcraft_lackman_es.qm X%%LACKMAN%%%%DATADIR%%/translations/leechcraft_lackman_en.qm X%%LACKMAN%%%%DATADIR%%/translations/leechcraft_lackman_de.qm X%%LACKMAN%%%%DATADIR%%/settings/lackmansettings.xml X%%KNOWHOW%%lib/leechcraft/plugins/libleechcraft_knowhow.so X%%KNOWHOW%%%%DATADIR%%/settings/knowhowsettings.xml X%%KNOWHOW%%%%DATADIR%%/knowhow/tips/tips_ru.xml X%%KNOWHOW%%%%DATADIR%%/knowhow/tips/tips_en.xml X%%KINOTIFY%%lib/leechcraft/plugins/libleechcraft_kinotify.so X%%KINOTIFY%%%%DATADIR%%/settings/kinotifysettings.xml X%%KINOTIFY%%%%DATADIR%%/kinotify/themes/notification/Commie/tmp.html X%%KINOTIFY%%%%DATADIR%%/kinotify/themes/notification/Commie/img/back.png X%%KINOTIFY%%%%DATADIR%%/kinotify/themes/notification/Adaptive/tmp.html X%%HTTP%%lib/leechcraft/plugins/libleechcraft_cstp.so X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_uk_UA.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_ru_RU.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_pl.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_oc.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_it.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_fr.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_es.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_eo.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_en.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_de.qm X%%HTTP%%%%DATADIR%%/translations/leechcraft_cstp_ar.qm X%%HTTP%%%%DATADIR%%/settings/cstpsettings.xml X%%HISTORYHOLDER%%lib/leechcraft/plugins/libleechcraft_historyholder.so X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_uk_UA.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_ru_RU.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_pl.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_oc.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_it.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_fr.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_es.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_en.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_de.qm X%%HISTORYHOLDER%%%%DATADIR%%/translations/leechcraft_historyholder_ar.qm X%%GNOTIFI%%lib/leechcraft/plugins/libleechcraft_gmailnotifier.so X%%GNOTIFI%%%%DATADIR%%/translations/leechcraft_gmailnotifier_uk_UA.qm X%%GNOTIFI%%%%DATADIR%%/translations/leechcraft_gmailnotifier_ru_RU.qm X%%GNOTIFI%%%%DATADIR%%/translations/leechcraft_gmailnotifier_it.qm X%%GNOTIFI%%%%DATADIR%%/translations/leechcraft_gmailnotifier_fr.qm X%%GNOTIFI%%%%DATADIR%%/translations/leechcraft_gmailnotifier_es.qm X%%GNOTIFI%%%%DATADIR%%/translations/leechcraft_gmailnotifier_en.qm X%%GNOTIFI%%%%DATADIR%%/translations/leechcraft_gmailnotifier_de.qm X%%GNOTIFI%%%%DATADIR%%/settings/gmailnotifiersettings.xml X%%GLANCE%%lib/leechcraft/plugins/libleechcraft_glance.so X%%GLANCE%%%%DATADIR%%/translations/leechcraft_glance_uk_UA.qm X%%GLANCE%%%%DATADIR%%/translations/leechcraft_glance_ru_RU.qm X%%GLANCE%%%%DATADIR%%/translations/leechcraft_glance_en.qm X%%DOLOZHEE%%lib/leechcraft/plugins/libleechcraft_dolozhee.so X%%DOLOZHEE%%%%DATADIR%%/translations/leechcraft_dolozhee_ru_RU.qm X%%DOLOZHEE%%%%DATADIR%%/translations/leechcraft_dolozhee_en.qm X%%DEADLYRICS%%lib/leechcraft/plugins/libleechcraft_deadlyrics.so X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_uk_UA.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_ru_RU.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_pl.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_oc.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_it.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_fr.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_es.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_eo.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_en.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_de.qm X%%DEADLYRICS%%%%DATADIR%%/translations/leechcraft_deadlyrics_ar.qm X%%DEADLYRICS%%%%DATADIR%%/settings/deadlyricssettings.xml X%%DBUSMANAGER%%lib/leechcraft/plugins/libleechcraft_dbusmanager.so X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_uk_UA.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_ru_RU.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_pl.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_it.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_fr.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_es.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_eo.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_en.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_de.qm X%%DBUSMANAGER%%%%DATADIR%%/translations/leechcraft_dbusmanager_ar.qm X%%DBUSMANAGER%%%%DATADIR%%/settings/dbusmanagersettings.xml X%%DATADIR%%/translations/leechcraft_uk_UA.qm X%%DATADIR%%/translations/leechcraft_tt.qm X%%DATADIR%%/translations/leechcraft_tr.qm X%%DATADIR%%/translations/leechcraft_ru_RU.qm X%%DATADIR%%/translations/leechcraft_pl.qm X%%DATADIR%%/translations/leechcraft_it.qm X%%DATADIR%%/translations/leechcraft_fr.qm X%%DATADIR%%/translations/leechcraft_es.qm X%%DATADIR%%/translations/leechcraft_eo.qm X%%DATADIR%%/translations/leechcraft_en.qm X%%DATADIR%%/translations/leechcraft_de.qm X%%DATADIR%%/translations/leechcraft_be.qm X%%DATADIR%%/translations/leechcraft_ar.qm X%%DATADIR%%/settings/coresettings.xml X%%DATADIR%%/cmake/FindLeechCraft.cmake X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_xtazy.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_xoox.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_vader.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_standardstyles.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_rosenthal.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_p100q.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_nativeemoticons.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_modnok.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_metacontacts.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_lastseen.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_keeso.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_juick.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_isterique.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_hili.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_herbicide.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_embedmedia.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_depester.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_chathistory.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_autopaste.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_autoidler.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_adiumstyles.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth_acetamide.so X%%AZOTH%%lib/leechcraft/plugins/libleechcraft_azoth.so X%%AZOTH%%include/leechcraft/interfaces/azoth/iurihandler.h X%%AZOTH%%include/leechcraft/interfaces/azoth/itransfermanager.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupporttune.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportriex.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportpgp.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportmood.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportmicroblogs.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportmediacalls.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportimport.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportgeolocation.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportbookmarks.h X%%AZOTH%%include/leechcraft/interfaces/azoth/isupportactivity.h X%%AZOTH%%include/leechcraft/interfaces/azoth/irichtextmessage.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iresourceplugin.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iproxyobject.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iprotocolplugin.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iprotocol.h X%%AZOTH%%include/leechcraft/interfaces/azoth/imucperms.h X%%AZOTH%%include/leechcraft/interfaces/azoth/imucjoinwidget.h X%%AZOTH%%include/leechcraft/interfaces/azoth/imucentry.h X%%AZOTH%%include/leechcraft/interfaces/azoth/imucbookmarkeditorwidget.h X%%AZOTH%%include/leechcraft/interfaces/azoth/imessage.h X%%AZOTH%%include/leechcraft/interfaces/azoth/imediacall.h X%%AZOTH%%include/leechcraft/interfaces/azoth/ilastactivityprovider.h X%%AZOTH%%include/leechcraft/interfaces/azoth/ihistoryplugin.h X%%AZOTH%%include/leechcraft/interfaces/azoth/ihaveservicediscovery.h X%%AZOTH%%include/leechcraft/interfaces/azoth/ihavesearch.h X%%AZOTH%%include/leechcraft/interfaces/azoth/ihavemicroblogs.h X%%AZOTH%%include/leechcraft/interfaces/azoth/ihavedirectedstatus.h X%%AZOTH%%include/leechcraft/interfaces/azoth/ihaveconsole.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iextselfinfoaccount.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iconfigurablemuc.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iclentry.h X%%AZOTH%%include/leechcraft/interfaces/azoth/ichatstyleresourcesource.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iauthable.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iadvancedmessage.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iadvancedclentry.h X%%AZOTH%%include/leechcraft/interfaces/azoth/iaccount.h X%%AZOTH%%include/leechcraft/interfaces/azoth/azothutil.h X%%AZOTH%%include/leechcraft/interfaces/azoth/azothcommon.h X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xtazy_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xtazy_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xtazy_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xtazy_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xoox_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xoox_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xoox_it.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xoox_fr.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xoox_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xoox_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_xoox_de.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_vader_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_vader_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_vader_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_vader_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_rosenthal_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_rosenthal_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_rosenthal_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_rosenthal_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_p100q_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_p100q_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_p100q_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_p100q_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_modnok_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_modnok_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_modnok_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_modnok_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_metacontacts_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_metacontacts_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_metacontacts_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_metacontacts_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_lastseen_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_lastseen_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_lastseen_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_lastseen_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_isterique_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_isterique_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_isterique_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_hili_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_hili_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_hili_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_hili_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_herbicide_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_herbicide_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_herbicide_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_herbicide_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_depester_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_depester_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_depester_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_depester_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_chathistory_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_chathistory_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_chathistory_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_chathistory_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_autopaste_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_autopaste_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_autopaste_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_autopaste_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_autoidler_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_autoidler_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_autoidler_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_autoidler_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_acetamide_uk_UA.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_acetamide_ru_RU.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_acetamide_it.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_acetamide_fr.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_acetamide_es.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_acetamide_en.qm X%%AZOTH%%%%DATADIR%%/translations/leechcraft_azoth_acetamide_de.qm X%%AZOTH%%%%DATADIR%%/settings/azothxtazysettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothvadersettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothsettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothrosenthalsettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothp100qsettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothmodnoksettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothisteriquesettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothhilisettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothherbicidesettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothautopastesettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothautoidlersettings.xml X%%AZOTH%%%%DATADIR%%/settings/azothacetamidesettings.xml X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/streaky/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/hoar/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/hacker clone/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/black-and-white/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Slim/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Rinc_black/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Rinc/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Plazma/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Mint/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Marine/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Hello-LC/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Gajim/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Black/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/standard/Basic/viewcontents.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/main.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/images/system.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/images/state-sending.gif X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/images/state-error.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/images/important.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/images/action.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Variants/_compact_Contact_color.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Variants/_compact_.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Variants/Contact_color.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Variants/Big_pictures.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Status.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Outgoing/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Outgoing/StateSending.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Outgoing/StateError.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Outgoing/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Outgoing/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Outgoing/Action.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Incoming/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Incoming/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Incoming/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Incoming/Action.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Header.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Footer.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/gpl.txt X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/README X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/main.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/images/state-sending.gif X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/images/state-sending-white.gif X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/images/state-error.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/images/kopete.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/images/background2.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/images/background.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants/Light2.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants/Light2-Noback.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants/Light.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants/Light-Noback.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants/Dark2.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants/Dark2-Noback.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants/Dark.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants/Dark-Noback.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Status.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing/StateSending.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing/StateError.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing/NextContext.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing/Context.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing/Action.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Incoming/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Incoming/NextContext.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Incoming/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Incoming/Context.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Incoming/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Incoming/Action.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Header.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Footer.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/Contents/Info.plist X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Hacker/COPYRIGHT X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/main.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/incoming_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/transGrey.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/messageShadow.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/gloss.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/divider.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageUndersea.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageSteel.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageMutation.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageLava.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageDelaware.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageCrimson.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageCosmic.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUserImage.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundUndersea.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundSteel.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundMutation.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundLava.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundHeader.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundDelaware.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundCrimson.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundCosmic.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundBarGreen.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/backgroundBarBlue.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images/background.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Undersea.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Steel.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Standard.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Mutation.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Lava Flow.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Delaware Punch.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Crimson.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Cosmic.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/Undersea.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/Steel.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/Mutation.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/Lava Flow.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/Delaware Punch.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/Crimson.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants/Cosmic.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Status.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Outgoing/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Outgoing/NextContext.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Outgoing/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Outgoing/Context.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Incoming/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Incoming/NextContext.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Incoming/Context.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Incoming/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Header.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Footer.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Info.plist X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/main.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/incoming_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/transGrey.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/messageShadow.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/gloss.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/divider.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageMarg.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageFire.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageCosmos.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageArctic.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundUserImage.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundMargarita.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundHeader.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundFirelight.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundCosmos.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundBarGreen.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundBarBlue.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/backgroundArctic.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images/background.jpg X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Standard.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Margarita.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Firelight.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Cosmos.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Arctic.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/Margarita.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/Firelight.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/Cosmos.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants/Arctic.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Status.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Outgoing/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Outgoing/NextContext.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Outgoing/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Outgoing/Context.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Incoming/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Incoming/NextContext.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Incoming/Context.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Incoming/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Header.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Footer.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Info.plist X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/main.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/state-sending.gif X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/state-error.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/icon-you.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/icon-time.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/icon-me.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/icon-internal.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/icon-highlighted.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/icon-action.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/header-outbound-right.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/header-outbound-left.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/header-outbound-background.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/header-inbound-right.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/header-inbound-left.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/header-inbound-background.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/footer-outbound-right.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/footer-outbound-left.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/footer-outbound-background.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/footer-inbound-right.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/footer-inbound-left.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/footer-inbound-background.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-outbound-right.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-outbound-left.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-outbound-avatar.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-outbound-arrow.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-inbound-right.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-inbound-left.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-inbound-background.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-inbound-avatar.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-inbound-arrow.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images/body-background.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Variants/No_avatars.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Status.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Outgoing/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Outgoing/StateSending.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Outgoing/StateError.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Outgoing/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Outgoing/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Outgoing/Action.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Incoming/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Incoming/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Incoming/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Incoming/Action.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Header.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Footer.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/main.css X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/images/state-sending.gif X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/images/state-error.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/images/internal.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/images/important.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/images/action.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Status.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Outgoing/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Outgoing/StateSending.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Outgoing/StateError.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Outgoing/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Outgoing/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Outgoing/Action.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Incoming/buddy_icon.png X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Incoming/NextContent.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Incoming/Content.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Incoming/Action.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Header.html X%%AZOTH%%%%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Footer.html X%%AZOTH%%%%DATADIR%%/azoth/lc_azoth_modnok_latexconvert.sh X%%AZOTH%%%%DATADIR%%/azoth/iconsets/system/default/notification_roster_tune.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/system/default/notification_chat_send.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/system/default/notification_chat_receive.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/system/default/notification_chat_info.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/system/default/notification_chat_delivery_ok.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/system/default/geolocation.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/system/default/default_avatar.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Worried.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Weak.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Undefined.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Tired.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Thirsty.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Thankful.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Surprised.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Strong.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Stressed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Spontaneous.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Sleepy.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Sick.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Shy.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Shocked.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Serious.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Sarcastic.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Sad.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Restless.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Remorseful.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Relieved.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Relaxed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Readme.txt X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Proud.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Playful.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Outraged.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Offended.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Neutral.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Nervous.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Moody.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Mean.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Lucky.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Lonely.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Jealous.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Invincible.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Intoxicated.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Interested.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Indignant.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/In_love.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/In_awe.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Impressed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Hurt.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Hungry.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Humiliated.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Humbled.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Hot.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Hopeful.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Happy.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Guilty.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Grumpy.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Frustrated.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Flirtatious.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Excited.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Envious.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Embarrassed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Distracted.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Dismayed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Disgusted.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Disappointed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Depressed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Dejected.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Curious.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Creative.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Crazy.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Cranky.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Contented.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Contemplative.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Confused.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Confident.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Cold.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Cautious.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Calm.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Brave.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Bored.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Ashamed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Aroused.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Anxious.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Annoyed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Angry.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Amorous.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Amazed.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/moods/default/Afraid.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/xa.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/system.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/ready2chat.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/perr.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/online.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/offline.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/noauth.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/message.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/invisible.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/file.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/dnd.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/connect.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/chatty.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/chat.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/away.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/oxygen/ask.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/Likey/xa.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/Likey/perr.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/Likey/online.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/Likey/offline.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/Likey/dnd.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/Likey/connect.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/Likey/chatty.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/contactlist/Likey/away.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/yapp.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/yaonlinesymbian.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/yaonlinej2me.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/yaonline.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/yahoo.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/yabber.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/xfire.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/xeus.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/webicq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/weather.com.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/wannachat.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/vmicq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/vkontakte.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/vacuum.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/unknown.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/uim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/twitter.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/trillianpro.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/trillianbasic.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/trillian.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/tkabber.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/tipicim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/telepathy.freedesktop.org.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/talkonaut.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/talkgadget.google.com.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/talk.google.com.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/swift.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/sticq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/spectrum.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/spark.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/smaper.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/smack.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/smack-api.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/slick.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/sip-communicator.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/sim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/siejc.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/sapo.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/sameplace.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/rss.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/rq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/rnq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/radio-t.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/qxmpp.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/qutim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/qq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/qnext.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/qippda.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/qipmobile.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/qipinfium.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/qip2010.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/pyvk-t.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/pymsnt.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/pyicq-t.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/pyaim-t.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/psto.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/psiplus.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/psi.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/pjc_lib.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/pigeon.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/pidgin.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/phpicq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/papla.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/pandion.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/palringo.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/ovi-chat.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/osiris.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/oneteamiphone.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/oneteam.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/omnipresence.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/om.beeonline.ru.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/nimbuzz.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/nicq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/naticq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/msnwebmessenger.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/msnmessenger.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/movamessenger.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/morange.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mirandahotcoffee.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/miranda.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mip.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mig33.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/meetro.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/meebo.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mchat.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mcabber.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mailruagent.sis.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mailruagent.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mailruagent.mob.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mail.google.com.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/magnet.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/mabber.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/libpurple.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/leechcraft-azoth.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/lampiro.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/kopete.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/koolim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/juick.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jubo.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jtalk.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jmiranda.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jit.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jimm.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jimm-aspro.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jicq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jeti.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jbother.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jasmine.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/japyt.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jappix.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jajc.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jabiru.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jabbroid.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jabbin.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jabbim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/jabber.el.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/isida-bot.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/instango.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/inluxmessenger.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/implus.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/imov.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/imadering.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/icq-mobile.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/ichat.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/ichabber.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gush.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gossip.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/google.com.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/google-talkwidget.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/google-mail.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/goim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gluxibot.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/glu.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gizmo.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gismeteo.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gajim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gaim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gadugadu.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/gabber.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/fring.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/freqbot.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/fatal-bot.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/facebook.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/exodus.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/emess.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/ebuddy.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/digsby.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/dictbot.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/dichat.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/corepager.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/colibry.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/coccinella.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/centerim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/centericq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/buddydroid.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bot.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombusqd.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombusplus.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombuspl.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombusng.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombusng-md.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombusmod.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombus.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombus-klub.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bombus-avalon.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bluejabb.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bitlbee.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/beejive.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/bayanicq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/barracuda-im.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/ayttm.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/asterisk.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/aqq.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/apple.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/android.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/anastasiya.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/akeni.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/aim.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/agilemessenger.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/adium.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/clients/default/1end1.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/psi/owner.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/psi/outcast.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/psi/noaffiliation.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/psi/member.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/psi/admin.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/default/owner.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/default/outcast.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/default/noaffiliation.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/default/member.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/affiliations/default/admin.svg X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/working_writing.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/working_working.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/working_studying.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/working_in_a_meeting.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/working_coding.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/unknown.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_walking.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_on_a_trip.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_on_a_train.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_on_a_plane.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_on_a_bus.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_in_a_car.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_driving.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_cycling.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling_commuting.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/traveling.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/talking_on_video_phone.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/talking_on_the_phone.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/talking_in_real_life.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/talking.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_watching_tv.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_watching_a_movie.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_sunbathing.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_socializing.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_smoking.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_shopping.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_rehearsing.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_reading.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_partying.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_going_out.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_gaming.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing_fishing.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/relaxing.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive_thinking.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive_sleeping.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive_scheduled_holiday.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive_praying.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive_on_vacation.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive_hiding.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive_hanging_out.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive_day_off.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/inactive.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/icondef.xml X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/having_appointment.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/grooming_taking_a_shower.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/grooming_taking_a_bath.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/grooming_shaving.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/grooming_getting_a_haircut.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/grooming_brushing_teeth.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/grooming_at_the_spa.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/grooming.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_working_out.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_swimming.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_skiing.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_running.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_playing_sports.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_jogging.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_hiking.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_dancing.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising_cycling.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/exercising.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/eating_having_lunch.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/eating_having_dinner.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/eating_having_breakfast.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/eating_having_a_snack.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/eating.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/drinking_having_tea.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/drinking_having_coffee.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/drinking_having_a_beer.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/drinking.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_walking_the_dog.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_running_an_errand.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_gardening.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_doing_the_laundry.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_doing_the_dishes.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_doing_maintenance.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_cooking.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_cleaning.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores_buying_groceries.png X%%AZOTH%%%%DATADIR%%/azoth/iconsets/activities/default/doing_chores.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/yes.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/wink.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/unhappy.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/tongue.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/stare.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/star.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/smile.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/rainbow.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/pussy.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/photo.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/phone.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/oh.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/no.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/music.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/mapping.txt X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/mail.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/lamp.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/kiss.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/hugright.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/hugleft.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/heart.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/girl.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/frowning.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/flower.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/drink.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/devil.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/cuffs.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/cry.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/coolglasses.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/coffee.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/brheart.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/brflower.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/boy.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/blush.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/biggrin.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/beer.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/bat.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Default/angry.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/mapping.txt X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/27.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/26.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/25.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/24.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/23.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/22.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/21.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/20.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/19.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/18.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/17.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/16.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/15.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/14.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/13.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/12.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/11.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/10.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/09.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/08.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/07.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/06.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/05.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/04.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/03.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/02.png X%%AZOTH%%%%DATADIR%%/azoth/emoticons/native/Android/01.png X%%AUSCRIE%%lib/leechcraft/plugins/libleechcraft_auscrie.so X%%AUSCRIE%%%%DATADIR%%/translations/leechcraft_auscrie_uk_UA.qm X%%AUSCRIE%%%%DATADIR%%/translations/leechcraft_auscrie_ru_RU.qm X%%AUSCRIE%%%%DATADIR%%/translations/leechcraft_auscrie_oc.qm X%%AUSCRIE%%%%DATADIR%%/translations/leechcraft_auscrie_it.qm X%%AUSCRIE%%%%DATADIR%%/translations/leechcraft_auscrie_fr.qm X%%AUSCRIE%%%%DATADIR%%/translations/leechcraft_auscrie_es.qm X%%AUSCRIE%%%%DATADIR%%/translations/leechcraft_auscrie_en.qm X%%AUSCRIE%%%%DATADIR%%/translations/leechcraft_auscrie_de.qm X%%ANOTIFI%%lib/leechcraft/plugins/libleechcraft_advancednotifications.so X%%ANOTIFI%%%%DATADIR%%/translations/leechcraft_advancednotifications_uk_UA.qm X%%ANOTIFI%%%%DATADIR%%/translations/leechcraft_advancednotifications_ru_RU.qm X%%ANOTIFI%%%%DATADIR%%/translations/leechcraft_advancednotifications_es.qm X%%ANOTIFI%%%%DATADIR%%/translations/leechcraft_advancednotifications_en.qm X%%ANOTIFI%%%%DATADIR%%/sounds/oxygen/org-event-due.ogg X%%ANOTIFI%%%%DATADIR%%/sounds/oxygen/im-muc-highlight.ogg X%%ANOTIFI%%%%DATADIR%%/sounds/oxygen/im-incoming-message.ogg X%%ANOTIFI%%%%DATADIR%%/sounds/oxygen/im-contact-out.ogg X%%ANOTIFI%%%%DATADIR%%/sounds/oxygen/im-contact-in.ogg X%%ANOTIFI%%%%DATADIR%%/sounds/oxygen/im-auth-requested.ogg X%%ANOTIFI%%%%DATADIR%%/sounds/oxygen/im-attention.ogg X%%ANOTIFI%%%%DATADIR%%/settings/advancednotificationssettings.xml X%%ANOTIFI%%%%DATADIR%%/qml/advancednotifications/visualnotificationsview.qml X%%ANOTIFI%%%%DATADIR%%/qml/advancednotifications/TextButton.qml X%%AGGREGATOR%%lib/leechcraft/plugins/libleechcraft_aggregator_bodyfetch.so X%%AGGREGATOR%%lib/leechcraft/plugins/libleechcraft_aggregator.so X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_uk_UA.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_ru_RU.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_pl.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_oc.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_it.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_fr.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_es.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_eo.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_en.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_de.qm X%%AGGREGATOR%%%%DATADIR%%/translations/leechcraft_aggregator_ar.qm X%%AGGREGATOR%%%%DATADIR%%/settings/aggregatorsettings.xml X%%AGGREGATOR%%%%DATADIR%%/scripts/aggregator/recipes/qtscript/opennet.ru.js X%%AGGREGATOR%%%%DATADIR%%/scripts/aggregator/recipes/qtscript/membrana.ru.js X%%AGGREGATOR%%%%DATADIR%%/scripts/aggregator/recipes/qtscript/ixbt.com.js X%%AGGREGATOR%%%%DATADIR%%/scripts/aggregator/recipes/qtscript/habrahabr.js X%%AGGREGATOR%%%%DATADIR%%/scripts/aggregator/recipes/qtscript/3dnews.ru.js X%%SNAILS%%@dirrm %%DATADIR%%/snails/msgview/default X%%SNAILS%%@dirrm %%DATADIR%%/snails/msgview X%%SNAILS%%@dirrm %%DATADIR%%/snails X%%SECMAN%%@dirrm include/leechcraft/interfaces/secman X%%POSHUKU%%@dirrm %%DATADIR%%/installed/poshuku X%%POSHUKU%%@dirrm %%DATADIR%%/installed X%%LMP%%@dirrm include/leechcraft/interfaces/lmp X%%KNOWHOW%%@dirrm %%DATADIR%%/knowhow/tips X%%KNOWHOW%%@dirrm %%DATADIR%%/knowhow X%%KINOTIFY%%@dirrm %%DATADIR%%/kinotify/themes/notification/Commie/img X%%KINOTIFY%%@dirrm %%DATADIR%%/kinotify/themes/notification/Commie X%%KINOTIFY%%@dirrm %%DATADIR%%/kinotify/themes/notification/Adaptive X%%KINOTIFY%%@dirrm %%DATADIR%%/kinotify/themes/notification X%%KINOTIFY%%@dirrm %%DATADIR%%/kinotify/themes X%%KINOTIFY%%@dirrm %%DATADIR%%/kinotify X%%AZOTH%%@dirrm include/leechcraft/interfaces/azoth X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/streaky X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/hoar X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/hacker clone X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/black-and-white X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Slim X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Rinc_black X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Rinc X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Plazma X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Mint X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Marine X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Hello-LC X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Gajim X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Black X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard/Basic X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/standard X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/images X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Variants X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Outgoing X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources/Incoming X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Kopete/Contents/Resources X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Kopete/Contents X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Kopete X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/images X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Variants X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Outgoing X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources/Incoming X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Hacker/Contents/Resources X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Hacker/Contents X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Hacker X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/images X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Variants X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Outgoing X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources/Incoming X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents/Resources X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle/Contents X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark.AdiumMessageStyle X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/images X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Variants X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Outgoing X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources/Incoming X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents/Resources X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle/Contents X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/GoneDark Polarized.AdiumMessageStyle X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/images X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Variants X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Outgoing X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources/Incoming X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clear/Contents/Resources X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clear/Contents X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clear X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/images X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Outgoing X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources/Incoming X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clean/Contents/Resources X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clean/Contents X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium/Clean X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles/adium X%%AZOTH%%@dirrm %%DATADIR%%/azoth/styles X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/system/default X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/system X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/moods/default X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/moods X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/contactlist/oxygen X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/contactlist/Likey X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/contactlist X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/clients/default X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/clients X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/affiliations/psi X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/affiliations/default X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/affiliations X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/activities/default X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets/activities X%%AZOTH%%@dirrm %%DATADIR%%/azoth/iconsets X%%AZOTH%%@dirrm %%DATADIR%%/azoth/emoticons/native/Default X%%AZOTH%%@dirrm %%DATADIR%%/azoth/emoticons/native/Android X%%AZOTH%%@dirrm %%DATADIR%%/azoth/emoticons/native X%%AZOTH%%@dirrm %%DATADIR%%/azoth/emoticons X%%AZOTH%%@dirrm %%DATADIR%%/azoth X%%ANOTIFI%%@dirrm %%DATADIR%%/qml/advancednotifications X%%AGGREGATOR%%@dirrm %%DATADIR%%/scripts/aggregator/recipes/qtscript X%%AGGREGATOR%%@dirrm %%DATADIR%%/scripts/aggregator/recipes X%%AGGREGATOR%%@dirrm %%DATADIR%%/scripts/aggregator X%%AGGREGATOR%%@dirrm %%DATADIR%%/scripts X@dirrmtry share/icons/oxygen/32x32/actions X@dirrmtry share/icons/oxygen/32x32 X@dirrmtry share/icons/oxygen X@dirrmtry share/icons/hicolor/96x96/apps X@dirrmtry share/icons/hicolor/72x72/apps X@dirrmtry share/icons/hicolor/64x64/apps X@dirrmtry share/icons/hicolor/48x48/apps X@dirrmtry share/icons/hicolor/36x36/apps X@dirrmtry share/icons/hicolor/32x32/apps X@dirrmtry share/icons/hicolor/24x24/apps X@dirrmtry share/icons/hicolor/22x22/apps X@dirrmtry share/icons/hicolor/192x192/apps X@dirrmtry share/icons/hicolor/16x16/apps X@dirrmtry share/icons/hicolor/14x14/apps X@dirrmtry share/icons/hicolor/128x128/apps X@dirrmtry share/icons/hicolor/96x96 X@dirrmtry share/icons/hicolor/72x72 X@dirrmtry share/icons/hicolor/64x64 X@dirrmtry share/icons/hicolor/48x48 X@dirrmtry share/icons/hicolor/36x36 X@dirrmtry share/icons/hicolor/32x32 X@dirrmtry share/icons/hicolor/24x24 X@dirrmtry share/icons/hicolor/22x22 X@dirrmtry share/icons/hicolor/192x192 X@dirrmtry share/icons/hicolor/16x16 X@dirrmtry share/icons/hicolor/14x14 X@dirrmtry share/icons/hicolor/128x128 X@dirrmtry share/icons/hicolor X@dirrmtry share/icons X@dirrmtry share/cmake/Modules X@dirrmtry share/cmake X@dirrm lib/leechcraft/plugins X@dirrm lib/leechcraft X@dirrm include/leechcraft/xmlsettingsdialog X@dirrm include/leechcraft/util/tags X@dirrm include/leechcraft/util/sync X@dirrm include/leechcraft/util/shortcuts X@dirrm include/leechcraft/util/models X@dirrm include/leechcraft/util/gui X@dirrm include/leechcraft/util/CMakeFiles/lcutil_automoc.dir X@dirrm include/leechcraft/util/CMakeFiles/lcutil.dir/tags X@dirrm include/leechcraft/util/CMakeFiles/lcutil.dir/sync X@dirrm include/leechcraft/util/CMakeFiles/lcutil.dir/shortcuts X@dirrm include/leechcraft/util/CMakeFiles/lcutil.dir/models X@dirrm include/leechcraft/util/CMakeFiles/lcutil.dir/gui X@dirrm include/leechcraft/util/CMakeFiles/lcutil.dir X@dirrm include/leechcraft/util/CMakeFiles X@dirrm include/leechcraft/util X@dirrm include/leechcraft/interfaces/vfs X@dirrm include/leechcraft/interfaces/media X@dirrm include/leechcraft/interfaces/core X@dirrm include/leechcraft/interfaces X@dirrm include/leechcraft X@dirrm %%DATADIR%%/translations X%%ANOTIFI%%@dirrm %%DATADIR%%/sounds/oxygen X%%ANOTIFI%%@dirrm %%DATADIR%%/sounds X@dirrm %%DATADIR%%/settings X%%ANOTIFI%%@dirrm %%DATADIR%%/qml e46939d71a4e4dc244b56f9b49b801d3 echo x - leechcraft/Makefile sed 's/^X//' >leechcraft/Makefile << '18ab75b6a5f0c1417983be2529589033' X# New ports collection makefile for: leechcraft X# Date created: 2010-07-20 X# Whom: Gvozdikov Veniamin X# X# $FreeBSD$ X# X XPORTNAME= leechcraft XPORTVERSION= 0.5.75 XCATEGORIES= misc XMASTER_SITES= SF/${PORTNAME}/LeechCraft/0.5.75/ XDISTNAME= ${PORTNAME}-${PORTVERSION} XDISTNAME= ${PORTNAME}-${PORTVERSION}-${LC_REV} X XMAINTAINER= g.veniamin@googlemail.com XCOMMENT= Cross-platform modular internet-client X XLICENSE= GPLv3 X XBUILD_DEPENDS= chrpath:${PORTSDIR}/devel/chrpath XLIB_DEPENDS= poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 \ X qca:${PORTSDIR}/devel/qca \ X hunspell-1.3:${PORTSDIR}/textproc/hunspell \ X boost_program_options:${PORTSDIR}/devel/boost-libs X XLC_REV= 145-g5f6d720 XINSTALLS_ICONS= yes XUSE_GETTEXT= yes XUSE_LDCONFIG= yes XUSE_XZ= yes XUSE_CMAKE= yes XUSE_GCC= 4.6+ XUSE_QT_VER= 4 XQT_COMPONENTS= corelib gui linguist moc network qmake rcc script sql \ X sql-sqlite3 svg uic xml XCMAKE_ARGS+= -DQJSON_LIBRARIES=${LOCALBASE}/lib/libqjson.so.0 \ X -DCMAKE_LIBRARY_PATH:PATH="${LOCALBASE}/lib:${PREFIX}/lib" \ X -DCMAKE_SKIP_RPATH:BOOL=ON \ X -DENABLE_LIZNOO=OFF \ X -DENABLE_LADS=OFF X XWRKSRC= ${WRKDIR}/${DISTNAME}/src XGCC_LIBS= ${LOCALBASE}/lib/${_GCC_BUILD_DEPENDS} X XMAN1= ${PORTNAME}.1 X XOPTIONS_DEFINE= AGGREGATOR ANHERO ANOTIFI AUSCRIE AZOTH DBUSMANAGER DEADLYRICS \ X DOLOZHEE GLANCE GNOTIFI HISTORYHOLDER HTTP KINOTIFY KNOWHOW \ X LACKMAN LAURE LHTR LMP MONOCLE NACHEKU NETSTOREMANAGER NETWORKMONITOR \ X NEWLIFE OTZERKALU PINTAB POPISHU POSHUKU QROSP SECMAN SEEKTHRU \ X SHELLOPEN SIDEBAR SNAILS SUMMARY SYNCER TABSESSMANAGER TABSLIST \ X TORRENT VGRABBER VROOBY XPROXY YANDEXDISK X XAGGREGATOR_DESC= RSS/Atom feed reader XANHERO_DESC= Crash handler XANOTIFI_DESC= Advanced Notifications module XAUSCRIE_DESC= Auto screenshooter XAZOTH_DESC= IM client XDBUSMANAGER_DESC= D-Bus support for the LeechCraft XDEADLYRICS_DESC= client for the lyricwiki.org site XDOLOZHEE_DESC= The feature request and bug reporter XGLANCE_DESC= Quick overview of tabs XGNOTIFI_DESC= Build GMail Notifier XHISTORYHOLDER_DESC= Keeper of the history XHTTP_DESC= HTTP implementation XKINOTIFY_DESC= Fancy kinetic notifications XKNOWHOW_DESC= KnowHow for displaying tips of the day XLACKMAN_DESC= Package manager for LeechCraft XLAURE_DESC= Laure audio/video player XLHTR_DESC= LeechCraft HTML Text editoR XLMP_DESC= LeechCraft Media Previewer XMONOCLE_DESC= Monocle, modular document viewer XNACHEKU_DESC= Nacheku, clipboard/download dir watcher XNETSTOREMANAGER_DESC= Managing data storages like Yandex.Disk XNETWORKMONITOR_DESC= Monitor for HTTP requests XNEWLIFE_DESC= Settings importer XOTZERKALU_DESC= Otzerkalu, download web sites recursively XPINTAB_DESC= Pintab for pinning important tabs XPOPISHU_DESC= Scripting support plugin (devel) XPOSHUKU_DESC= WWW Browser XQROSP_DESC= Scripting support plugin (devel) XSECMAN_DESC= Security & personal data manager XSEEKTHRU_DESC= Client for the OpenSearch-aware XSHELLOPEN_DESC= Handling entities external applications XSIDEBAR_DESC= Sidebar, a nice side bar with quick launch XSNAILS_DESC= (need new qt)Snails, LeechCraft mail client XSUMMARY_DESC= Shows a handy summary of the stuff going on XSYNCER_DESC= Syncer, the synchronization plugin XTABSESSMANAGER_DESC= Tab Session Manager XTABSLIST_DESC= Quick overview of tabs XTORRENT_DESC= BitTorrent client XVGRABBER_DESC= Vkontakte.ru music/video getter XVROOBY_DESC= Vrooby, removable storage devices manager XXPROXY_DESC= XProxy, the advanced proxy manager XYANDEXDISK_DESC=Yandex disk support X XOPTIONS_DEFAULT=AGGREGATOR ANHERO ANOTIFI AUSCRIE AZOTH DBUSMANAGER DEADLYRICS \ X DOLOZHEE GLANCE GNOTIFI HISTORYHOLDER HTTP KINOTIFY KNOWHOW \ X LACKMAN LAURE LHTR LMP MONOCLE NACHEKU NETSTOREMANAGER NETWORKMONITOR \ X NEWLIFE OTZERKALU PINTAB POPISHU POSHUKU QROSP SECMAN SEEKTHRU \ X SHELLOPEN SIDEBAR SNAILS SUMMARY SYNCER TABSESSMANAGER TABSLIST \ X VGRABBER VROOBY XPROXY YANDEXDISK X X.include X Xpre-configure: X @${REINPLACE_CMD} -e '/man1/d' \ X ${WRKSRC}/CMakeLists.txt \ X ${WRKSRC}/plugins/eiskaltdcpp/eiskaltdcpp-qt/CMakeLists.txt X Xpost-build: X @${LOCALBASE}/bin/chrpath -r "${GCC_LIBS}" "${WRKSRC}/${PORTNAME}" X Xpost-install: X @${INSTALL_MAN} ${WRKSRC}/data/${PORTNAME}.1 ${MANPREFIX}/man/man1/ X X.if ${PORT_OPTIONS:MSUMMARY} XPLIST_SUB+= SUMMARY="" X.else XCMAKE_ARGS+= -DENABLE_SUMMARY=OFF XPLIST_SUB+= SUMMARY="@comment " X.endif X X.if ${PORT_OPTIONS:MTORRENT} XPLIST_SUB+= TORRENT="" XLIB_DEPENDS+= torrent-rasterbar:${PORTSDIR}/net-p2p/libtorrent-rasterbar-16 X.else XCMAKE_ARGS+= -DENABLE_TORRENT=OFF XPLIST_SUB+= TORRENT="@comment " X.endif X X.if ${PORT_OPTIONS:MSHELLOPEN} XCMAKE_ARGS+= -DENABLE_SHELLOPEN=ON XPLIST_SUB+= SHELLOPEN="" X.else XCMAKE_ARGS+= -DENABLE_SHELLOPEN=OFF XPLIST_SUB+= SHELLOPEN="@comment " X.endif X X.if ${PORT_OPTIONS:MAGGREGATOR} XCMAKE_ARGS+= -DENABLE_AGGREGATOR=ON XPLIST_SUB+= AGGREGATOR="" X.else XCMAKE_ARGS+= -DENABLE_AGGREGATOR=OFF XPLIST_SUB+= AGGREGATOR="@comment " X.endif X X.if ${PORT_OPTIONS:MPOSHUKU} XCMAKE_ARGS+= -DENABLE_POSHUKU=ON XPLIST_SUB+= POSHUKU="" XLIB_DEPENDS+= qjson:${PORTSDIR}/devel/qjson XQT_COMPONENTS+= webkit X.else XCMAKE_ARGS+= -DENABLE_POSHUKU=OFF XPLIST_SUB+= POSHUKU="@comment " X.endif X X.if ${PORT_OPTIONS:MHTTP} XCMAKE_ARGS+= -DENABLE_HTTP=ON XPLIST_SUB+= HTTP="" X.else XCMAKE_ARGS+= -DENABLE_HTTP=OFF XPLIST_SUB+= HTTP="@comment " X.endif X X.if ${PORT_OPTIONS:MLMP} XCMAKE_ARGS+= -DENABLE_LMP=ON XPLIST_SUB+= LMP="" XLIB_DEPENDS+= tag:${PORTSDIR}/audio/taglib XQT_COMPONENTS+= phonon X.else XCMAKE_ARGS+= -DENABLE_LMP=OFF XPLIST_SUB+= LMP="@comment " X.endif X X.if ${PORT_OPTIONS:MDBUSMANAGER} XCMAKE_ARGS+= -DENABLE_DBUSMANAGER=ON XPLIST_SUB+= DBUSMANAGER="" XQT_COMPONENTS+= dbus X.else XCMAKE_ARGS+= -DENABLE_DBUSMANAGER=OFF XPLIST_SUB+= DBUSMANAGER="@comment " X.endif X X.if ${PORT_OPTIONS:MDEADLYRICS} XCMAKE_ARGS+= -DENABLE_DEADLYRICS=ON XPLIST_SUB+= DEADLYRICS="" X.else XCMAKE_ARGS+= -DENABLE_DEADLYRICS=OFF XPLIST_SUB+= DEADLYRICS="@comment " X.endif X X.if ${PORT_OPTIONS:MSEEKTHRU} XCMAKE_ARGS+= -DENABLE_SEEKTHRU=ON XPLIST_SUB+= SEEKTHRU="" XCPPFLAGS+= -fvisibility-hidden XCMAKE_ARGS+= -DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" X.else XCMAKE_ARGS+= -DENABLE_SEEKTHRU=OFF XPLIST_SUB+= SEEKTHRU="@comment " X.endif X X.if ${PORT_OPTIONS:MNETWORKMONITOR} XCMAKE_ARGS+= -DENABLE_NETWORKMONITOR=ON XPLIST_SUB+= NETWORKMONITOR="" X.else XCMAKE_ARGS+= -DENABLE_NETWORKMONITOR=OFF XPLIST_SUB+= NETWORKMONITOR="@comment " X.endif X X.if ${PORT_OPTIONS:MHISTORYHOLDER} XCMAKE_ARGS+= -DENABLE_HISTORYHOLDER=ON XPLIST_SUB+= HISTORYHOLDER="" X.else XCMAKE_ARGS+= -DENABLE_HISTORYHOLDER=OFF XPLIST_SUB+= HISTORYHOLDER="@comment " X.endif X X.if ${PORT_OPTIONS:MNEWLIFE} XCMAKE_ARGS+= -DENABLE_NEWLIFE=ON XPLIST_SUB+= NEWLIFE="" X.else XCMAKE_ARGS+= -DENABLE_NEWLIFE=OFF XPLIST_SUB+= NEWLIFE="@comment " X.endif X X.if ${PORT_OPTIONS:MANHERO} XCMAKE_ARGS+= -DENABLE_ANHERO=ON X.else XCMAKE_ARGS+= -DENABLE_ANHERO=OFF X.endif X X.if ${PORT_OPTIONS:MVGRABBER} XPLIST_SUB+= VGRABBER="" X.else XCMAKE_ARGS+= -DENABLE_VGRABBER=OFF XPLIST_SUB+= VGRABBER="@comment " X.endif X X.if ${PORT_OPTIONS:MKINOTIFY} XCMAKE_ARGS+= -DENABLE_KINOTIFY=ON XPLIST_SUB+= KINOTIFY="" X.else XCMAKE_ARGS+= -DENABLE_KINOTIFY=OFF XPLIST_SUB+= KINOTIFY="@comment " X.endif X X.if ${PORT_OPTIONS:MAUSCRIE} XCMAKE_ARGS+= -DENABLE_AUSCRIE=ON XPLIST_SUB+= AUSCRIE="" X.else XCMAKE_ARGS+= -DENABLE_AUSCRIE=OFF XPLIST_SUB+= AUSCRIE="@comment " X.endif X X.if ${PORT_OPTIONS:MAZOTH} XCMAKE_ARGS+= -DENABLE_AZOTH=ON XPLIST_SUB+= AZOTH="" XQT_COMPONENTS+= multimedia XLIB_DEPENDS+= speex:${PORTSDIR}/audio/speex XBUILD_DEPENDS+= ${LOCALBASE}/lib/libqxmpp-lc.a:${PORTSDIR}/net-im/qxmpp-leechcraft XCONFLICTS= qxmpp-[0-9]* X.else XCMAKE_ARGS+= -DENABLE_AZOTH=OFF XPLIST_SUB+= AZOTH="@comment " X.endif X X.if ${PORT_OPTIONS:MSECMAN} XCMAKE_ARGS+= -DENABLE_SECMAN=ON XPLIST_SUB+= SECMAN="" X.else XCMAKE_ARGS+= -DENABLE_SECMAN=OFF XPLIST_SUB+= SECMAN="@comment " X.endif X X.if ${PORT_OPTIONS:MQROSP} XCMAKE_ARGS+= -DENABLE_QROSP=ON XPLIST_SUB+= QROSP="" XLIB_DEPENDS+= qrosscore:${PORTSDIR}/devel/qross XRUN_DEPENDS+= ${LOCALBASE}/lib/qrosspython.so:${PORTSDIR}/devel/qrosspython X.else XCMAKE_ARGS+= -DENABLE_QROSP=OFF XPLIST_SUB+= QROSP="@comment " X.endif X X.if ${PORT_OPTIONS:MPOPISHU} XCMAKE_ARGS+= -DENABLE_POPISHU=ON XPLIST_SUB+= POPISHU="" XLIB_DEPENDS+= qscintilla2:${PORTSDIR}/devel/qscintilla2 X.else XCMAKE_ARGS+= -DENABLE_POPISHU=OFF XPLIST_SUB+= POPISHU="@comment " X.endif X X.if ${PORT_OPTIONS:MLACKMAN} XCMAKE_ARGS+= -DENABLE_LACKMAN=ON XPLIST_SUB+= LACKMAN="" X.else XCMAKE_ARGS+= -DENABLE_LACKMAN=OFF XPLIST_SUB+= LACKMAN="@comment " X.endif X X.if ${PORT_OPTIONS:MGLANCE} XCMAKE_ARGS+= -DENABLE_GLANCE=ON XPLIST_SUB+= GLANCE="" X.else XCMAKE_ARGS+= -DENABLE_GLANCE=OFF XPLIST_SUB+= GLANCE="@comment " X.endif X X.if ${PORT_OPTIONS:MKNOWHOW} XCMAKE_ARGS+= -DENABLE_KNOWHOW=ON XPLIST_SUB+= KNOWHOW="" X.else XCMAKE_ARGS+= -DENABLE_KNOWHOW=OFF XPLIST_SUB+= KNOWHOW="@comment " X.endif X X.if ${PORT_OPTIONS:MSIDEBAR} XCMAKE_ARGS+= -DENABLE_SIDEBAR=ON XPLIST_SUB+= SIDEBAR="" X.else XCMAKE_ARGS+= -DENABLE_SIDEBAR=OFF XPLIST_SUB+= SIDEBAR="@comment " X.endif X X.if ${PORT_OPTIONS:MSNAILS} XCMAKE_ARGS+= -DENABLE_SNAILS=ON XPLIST_SUB+= SNAILS="" XLIB_DEPENDS+= vmime:${PORTSDIR}/mail/libvmime X.else XCMAKE_ARGS+= -DENABLE_SNAILS=OFF XPLIST_SUB+= SNAILS="@comment " X.endif X X.if ${PORT_OPTIONS:MTABSLIST} XCMAKE_ARGS+= -DENABLE_TABSLIST=ON XPLIST_SUB+= TABSLIST="" X.else XCMAKE_ARGS+= -DENABLE_TABSLIST=OFF XPLIST_SUB+= TABSLIST="@comment " X.endif X X.if ${PORT_OPTIONS:MSYNCER} XCMAKE_ARGS+= -DENABLE_SYNCER=ON XPLIST_SUB+= SYNCER="" X.else XCMAKE_ARGS+= -DENABLE_SYNCER=OFF XPLIST_SUB+= SYNCER="@comment " X.endif X X.if ${PORT_OPTIONS:MANOTIFI} XCMAKE_ARGS+= -DENABLE_ADVANCEDNOTIFICATIONS=ON XPLIST_SUB+= ANOTIFI="" X.else XCMAKE_ARGS+= -DENABLE_ADVANCEDNOTIFICATIONS=OFF XPLIST_SUB+= ANOTIFI="@comment " X.endif X X.if ${PORT_OPTIONS:MGNOTIFI} XCMAKE_ARGS+= -DENABLE_GMAILNOTIFIER=ON XPLIST_SUB+= GNOTIFI="" X.else XCMAKE_ARGS+= -DENABLE_GMAILNOTIFIER=OFF XPLIST_SUB+= GNOTIFI="@comment " X.endif X X.if ${PORT_OPTIONS:MLAURE} XCMAKE_ARGS+= -DENABLE_LAURE=ON XPLIST_SUB+= LAURE="" XLIB_DEPENDS+= vlc:${PORTSDIR}/multimedia/vlc X.else XCMAKE_ARGS+= -DENABLE_LAURE=OFF XPLIST_SUB+= LAURE="@comment " X.endif X X.if ${PORT_OPTIONS:MOTZERKALU} XCMAKE_ARGS+= -DENABLE_OTZERKALU=ON XPLIST_SUB+= OTZERKALU="" X.else XCMAKE_ARGS+= -DENABLE_OTZERKALU=OFF XPLIST_SUB+= OTZERKALU="@comment " X.endif X X.if ${PORT_OPTIONS:MMONOCLE} XCMAKE_ARGS+= -DENABLE_MONOCLE=ON XPLIST_SUB+= MONOCLE="" X.else XCMAKE_ARGS+= -DENABLE_MONOCLE=OFF XPLIST_SUB+= MONOCLE="@comment " X.endif X X.if ${PORT_OPTIONS:MXPROXY} XCMAKE_ARGS+= -DENABLE_XPROXY=ON XPLIST_SUB+= XPROXY="" X.else XCMAKE_ARGS+= -DENABLE_XPROXY=OFF XPLIST_SUB+= XPROXY="@comment " X.endif X X.if ${PORT_OPTIONS:MPINTAB} XCMAKE_ARGS+= -DENABLE_PINTAB=ON XPLIST_SUB+= PINTAB="" X.else XCMAKE_ARGS+= -DENABLE_PINTAB=OFF XPLIST_SUB+= PINTAB="@comment " X.endif X X.if ${PORT_OPTIONS:MVROOBY} XCMAKE_ARGS+= -DENABLE_VROOBY=ON XPLIST_SUB+= VROOBY="" X.else XCMAKE_ARGS+= -DENABLE_VROOBY=OFF XPLIST_SUB+= VROOBY="@comment " X.endif X X.if ${PORT_OPTIONS:MDOLOZHEE} XCMAKE_ARGS+= -DENABLE_DOLOZHEE=ON XPLIST_SUB+= DOLOZHEE="" X.else XCMAKE_ARGS+= -DENABLE_DOLOZHEE=OFF XPLIST_SUB+= DOLOZHEE="@comment " X.endif X X.if ${PORT_OPTIONS:MLHTR} XCMAKE_ARGS+= -DENABLE_LHTR=ON XPLIST_SUB+= LHTR="" X.else XCMAKE_ARGS+= -DENABLE_LHTR=OFF XPLIST_SUB+= LHTR="@comment " X.endif X X.if ${PORT_OPTIONS:MNACHEKU} XCMAKE_ARGS+= -DENABLE_NACHEKU=ON XPLIST_SUB+= NACHEKU="" X.else XCMAKE_ARGS+= -DENABLE_NACHEKU=OFF XPLIST_SUB+= NACHEKU="@comment " X.endif X X.if ${PORT_OPTIONS:MTABSESSMANAGER} XCMAKE_ARGS+= -DENABLE_TABSESSMANAGER=ON XPLIST_SUB+= TABSESSMANAGER="" X.else XCMAKE_ARGS+= -DENABLE_TABSESSMANAGER=OFF XPLIST_SUB+= TABSESSMANAGER="@comment " X.endif X X.if ${PORT_OPTIONS:MYANDEXDISK} XCMAKE_ARGS+= -DENABLE_NETSTOREMANAGER_YANDEXDISK=ON XPLIST_SUB+= YANDEXDISK="" X.else XCMAKE_ARGS+= -DENABLE_NETSTOREMANAGER_YANDEXDISK=OFF XPLIST_SUB+= YANDEXDISK="@comment " X.endif X X.if ${PORT_OPTIONS:MNETSTOREMANAGER} XCMAKE_ARGS+= -DENABLE_NETSTOREMANAGER=ON XPLIST_SUB+= NETSTOREMANAGER="" X.else XCMAKE_ARGS+= -DENABLE_NETSTOREMANAGER=OFF XPLIST_SUB+= NETSTOREMANAGER="@comment " X.endif X X.include 18ab75b6a5f0c1417983be2529589033 echo x - leechcraft/distinfo sed 's/^X//' >leechcraft/distinfo << '9cb78f318ef6e675afb8aa298373352b' XSHA256 (leechcraft-0.5.75-145-g5f6d720.tar.xz) = 1c4244cdf30e3739bd6f378af04f415b995a818321127d7a45bdf658316aab23 XSIZE (leechcraft-0.5.75-145-g5f6d720.tar.xz) = 4866648 9cb78f318ef6e675afb8aa298373352b exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 22:10:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BC7A106566B for ; Sun, 12 Aug 2012 22:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2075A8FC12 for ; Sun, 12 Aug 2012 22:10: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 q7CMA1HT080228 for ; Sun, 12 Aug 2012 22:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CMA1Tn080227; Sun, 12 Aug 2012 22:10:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 22:10:01 GMT Resent-Message-Id: <201208122210.q7CMA1Tn080227@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78C6A1065672 for ; Sun, 12 Aug 2012 22:03:57 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from qmta09.emeryville.ca.mail.comcast.net (qmta09.emeryville.ca.mail.comcast.net [76.96.30.96]) by mx1.freebsd.org (Postfix) with ESMTP id 5E52E8FC0C for ; Sun, 12 Aug 2012 22:03:57 +0000 (UTC) Received: from omta08.emeryville.ca.mail.comcast.net ([76.96.30.12]) by qmta09.emeryville.ca.mail.comcast.net with comcast id lxZ31j0040FhH24A9y3rJU; Sun, 12 Aug 2012 22:03:51 +0000 Received: from kirby.cyberbotx.com ([69.244.146.119]) by omta08.emeryville.ca.mail.comcast.net with comcast id ly3p1j0042anbQt8Uy3p1j; Sun, 12 Aug 2012 22:03:50 +0000 Received: by kirby.cyberbotx.com (Postfix, from userid 0) id D53F92843B; Sun, 12 Aug 2012 18:03:48 -0400 (EDT) Message-Id: <20120812220348.D53F92843B@kirby.cyberbotx.com> Date: Sun, 12 Aug 2012 18:03:48 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170572: [MAINTAINER] print/fontforge: update to 20120731-b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 22:10:02 -0000 >Number: 170572 >Category: ports >Synopsis: [MAINTAINER] print/fontforge: update to 20120731-b >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 22:10:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.2-RELEASE FreeBSD 8.2-RELEASE #3: Sun Feb 27 08:58:31 EST 2011 >Description: - Update to 20120731-b Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- fontforge-20120731.b.patch begins here --- diff -ruN --exclude=CVS /usr/ports/print/fontforge/Makefile ./Makefile --- /usr/ports/print/fontforge/Makefile 2012-06-03 15:53:28.000000000 -0400 +++ ./Makefile 2012-08-12 15:13:44.000000000 -0400 @@ -6,34 +6,31 @@ # PORTNAME= fontforge -PORTVERSION= 20110222 -PORTREVISION= 5 +DISTVERSION= 20120731-b CATEGORIES= print MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-source DISTFILES= ${EXTRACT_ONLY} -EXTRACT_ONLY= ${PORTNAME}_full-${PORTVERSION}.tar.bz2 +EXTRACT_ONLY= ${PORTNAME}_full-${DISTVERSION}.tar.bz2 MAINTAINER= cyberbotx@cyberbotx.com COMMENT= Type 1/TrueType/OpenType/bitmap font editor -LIB_DEPENDS= uninameslist.0:${PORTSDIR}/textproc/libuninameslist \ - tiff.4:${PORTSDIR}/graphics/tiff \ - jpeg.11:${PORTSDIR}/graphics/jpeg \ +LIB_DEPENDS= uninameslist:${PORTSDIR}/textproc/libuninameslist \ + tiff:${PORTSDIR}/graphics/tiff \ + jpeg:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png \ - gif.5:${PORTSDIR}/graphics/giflib \ - freetype.9:${PORTSDIR}/print/freetype2 \ - xml2.5:${PORTSDIR}/textproc/libxml2 \ - spiro.0:${PORTSDIR}/graphics/libspiro + gif:${PORTSDIR}/graphics/giflib \ + freetype:${PORTSDIR}/print/freetype2 \ + xml2:${PORTSDIR}/textproc/libxml2 \ + spiro:${PORTSDIR}/graphics/libspiro .if defined(FONTFORGE_WITH_TTF_DEBUGGER) -FREETYPE_VERSION= 2.4.4 +FREETYPE_VERSION= 2.4.9 EXTRACT_ONLY+= freetype-${FREETYPE_VERSION}.tar.bz2 .endif .if !defined(NOPORTDOCS) -#DOC_VERSION= ${PORTVERSION} -# This version of Fontforge has a different version number for the docs as opposed to the actual source -DOC_VERSION= 20110221 +DOC_VERSION= ${DISTVERSION} MASTER_SITES+= SF/${PORTNAME}/${PORTNAME}-docs:docs DOCFILES= ${PORTNAME}_htdocs-${DOC_VERSION}.tar.bz2 DISTFILES+= ${DOCFILES:C/$/:docs/} @@ -88,7 +85,7 @@ .endif .if defined(WITH_CAIRO) -LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo +LIB_DEPENDS+= cairo:${PORTSDIR}/graphics/cairo CONFIGURE_ARGS+= --with-cairo .else CONFIGURE_ARGS+= --without-cairo diff -ruN --exclude=CVS /usr/ports/print/fontforge/distinfo ./distinfo --- /usr/ports/print/fontforge/distinfo 2011-03-14 23:29:25.000000000 -0400 +++ ./distinfo 2012-08-12 15:12:20.000000000 -0400 @@ -1,6 +1,6 @@ -SHA256 (fontforge_full-20110222.tar.bz2) = 8fa2818026f84bb7b8a77451d21cab7e9dea8aa904e5218afa158be6a320433e -SIZE (fontforge_full-20110222.tar.bz2) = 5126031 -SHA256 (freetype-2.4.4.tar.bz2) = 4b8281c7dc4d375c6b65d3c6f4808e488a313fab47d7be82aad2c871c8480fef -SIZE (freetype-2.4.4.tar.bz2) = 1442053 -SHA256 (fontforge_htdocs-20110221.tar.bz2) = 7a81b9a30fa8f287e63abcfee568d7fcfd1a21c75c5c69effe95fe677d963fec -SIZE (fontforge_htdocs-20110221.tar.bz2) = 3129839 +SHA256 (fontforge_full-20120731-b.tar.bz2) = 1b6184caff211e315783a029256f56cf05f1d4fd3cbcb41820d21c7745040fb6 +SIZE (fontforge_full-20120731-b.tar.bz2) = 5541994 +SHA256 (freetype-2.4.9.tar.bz2) = c4204ac1d48e99d4375a2f32bf4f3f92780a9d9f015e64e57e852f6c004859b9 +SIZE (freetype-2.4.9.tar.bz2) = 1504819 +SHA256 (fontforge_htdocs-20120731-b.tar.bz2) = 6c3f178484d21814762c52859ffead25564a93e88cd5fe7cc9877e4b7e85105d +SIZE (fontforge_htdocs-20120731-b.tar.bz2) = 3506833 diff -ruN --exclude=CVS /usr/ports/print/fontforge/pkg-plist ./pkg-plist --- /usr/ports/print/fontforge/pkg-plist 2011-03-14 23:29:25.000000000 -0400 +++ ./pkg-plist 2012-08-12 15:57:58.000000000 -0400 @@ -160,6 +160,7 @@ %%PORTDOCS%%%%DOCSDIR%%/FVVMetrics.png %%PORTDOCS%%%%DOCSDIR%%/FlatSerif.png %%PORTDOCS%%%%DOCSDIR%%/FontDisplay.png +%%PORTDOCS%%%%DOCSDIR%%/FontForge.css %%PORTDOCS%%%%DOCSDIR%%/FontForgeSplash.png %%PORTDOCS%%%%DOCSDIR%%/FontImage.png %%PORTDOCS%%%%DOCSDIR%%/FontSample.png @@ -227,6 +228,8 @@ %%PORTDOCS%%%%DOCSDIR%%/MassRename.png %%PORTDOCS%%%%DOCSDIR%%/MenuWithMacIcons.png %%PORTDOCS%%%%DOCSDIR%%/MenuWithoutMacIcons.png +%%PORTDOCS%%%%DOCSDIR%%/Metal-fontforge-600.jpeg +%%PORTDOCS%%%%DOCSDIR%%/MetalType.jpeg %%PORTDOCS%%%%DOCSDIR%%/MetricsView-features.png %%PORTDOCS%%%%DOCSDIR%%/MetricsView.png %%PORTDOCS%%%%DOCSDIR%%/MultiPrint.png @@ -354,6 +357,7 @@ %%PORTDOCS%%%%DOCSDIR%%/cidmenu.html %%PORTDOCS%%%%DOCSDIR%%/cliargs.html %%PORTDOCS%%%%DOCSDIR%%/colorbutton.png +%%PORTDOCS%%%%DOCSDIR%%/colorpicker.jpeg %%PORTDOCS%%%%DOCSDIR%%/contextchain-class.png %%PORTDOCS%%%%DOCSDIR%%/contextchain-classlist.png %%PORTDOCS%%%%DOCSDIR%%/contextchain-coverage.png @@ -361,6 +365,9 @@ %%PORTDOCS%%%%DOCSDIR%%/contextchain-glyphlists.png %%PORTDOCS%%%%DOCSDIR%%/contextchain-pickglyph.png %%PORTDOCS%%%%DOCSDIR%%/contextchain-rcover.png +%%PORTDOCS%%%%DOCSDIR%%/contextchain-simpleclasses.png +%%PORTDOCS%%%%DOCSDIR%%/contextchain-simplecoverage.png +%%PORTDOCS%%%%DOCSDIR%%/contextchain-simpleglyph.png %%PORTDOCS%%%%DOCSDIR%%/contextchain.html %%PORTDOCS%%%%DOCSDIR%%/copyfeatures.png %%PORTDOCS%%%%DOCSDIR%%/corpchar.html @@ -459,6 +466,9 @@ %%PORTDOCS%%%%DOCSDIR%%/ffi-refs.png %%PORTDOCS%%%%DOCSDIR%%/ffi-rmoverlap.png %%PORTDOCS%%%%DOCSDIR%%/ffi-unlink.png +%%PORTDOCS%%%%DOCSDIR%%/fftype16.png +%%PORTDOCS%%%%DOCSDIR%%/fftype300.svg +%%PORTDOCS%%%%DOCSDIR%%/fftype32.png %%PORTDOCS%%%%DOCSDIR%%/fi.png %%PORTDOCS%%%%DOCSDIR%%/filemenu.html %%PORTDOCS%%%%DOCSDIR%%/files.html @@ -473,7 +483,9 @@ %%PORTDOCS%%%%DOCSDIR%%/floating-A.png %%PORTDOCS%%%%DOCSDIR%%/fontcompdlg.png %%PORTDOCS%%%%DOCSDIR%%/fontcompresults.png +%%PORTDOCS%%%%DOCSDIR%%/fontforge-banner-420.jpeg %%PORTDOCS%%%%DOCSDIR%%/fontforge-themes.html +%%PORTDOCS%%%%DOCSDIR%%/fontforge-tutorial.pdf %%PORTDOCS%%%%DOCSDIR%%/fontimage.html %%PORTDOCS%%%%DOCSDIR%%/fontinfo-charsets.png %%PORTDOCS%%%%DOCSDIR%%/fontinfo-cid.png @@ -654,10 +666,6 @@ %%PORTDOCS%%%%DOCSDIR%%/oldchangelog.html %%PORTDOCS%%%%DOCSDIR%%/openfont.png %%PORTDOCS%%%%DOCSDIR%%/otherlinks.html -%%PORTDOCS%%%%DOCSDIR%%/ott2.png -%%PORTDOCS%%%%DOCSDIR%%/ott2_5.png -%%PORTDOCS%%%%DOCSDIR%%/ott3.png -%%PORTDOCS%%%%DOCSDIR%%/ott5.png %%PORTDOCS%%%%DOCSDIR%%/outlinechar.png %%PORTDOCS%%%%DOCSDIR%%/overlappedlines.png %%PORTDOCS%%%%DOCSDIR%%/overshoot.png @@ -807,6 +815,37 @@ %%PORTDOCS%%%%DOCSDIR%%/xItalic.png %%PORTDOCS%%%%DOCSDIR%%/xim.html %%PORTDOCS%%%%DOCSDIR%%/xres.html +%%DATADIR%%/pixmaps/chooseraudio.png +%%DATADIR%%/pixmaps/chooserback.png +%%DATADIR%%/pixmaps/chooserbookmark.png +%%DATADIR%%/pixmaps/choosercid.png +%%DATADIR%%/pixmaps/choosercompressed.png +%%DATADIR%%/pixmaps/chooserconfigtool.png +%%DATADIR%%/pixmaps/choosercore.png +%%DATADIR%%/pixmaps/chooserdir.png +%%DATADIR%%/pixmaps/chooserforward.png +%%DATADIR%%/pixmaps/chooserhomefolder.png +%%DATADIR%%/pixmaps/chooserimage.png +%%DATADIR%%/pixmaps/choosermac.png +%%DATADIR%%/pixmaps/choosermacttf.png +%%DATADIR%%/pixmaps/choosernobookmark.png +%%DATADIR%%/pixmaps/chooserobject.png +%%DATADIR%%/pixmaps/choosertar.png +%%DATADIR%%/pixmaps/choosertextbdf.png +%%DATADIR%%/pixmaps/choosertextc.png +%%DATADIR%%/pixmaps/choosertextcss.png +%%DATADIR%%/pixmaps/choosertextfontps.png +%%DATADIR%%/pixmaps/choosertextfontsfd.png +%%DATADIR%%/pixmaps/choosertexthtml.png +%%DATADIR%%/pixmaps/choosertextjava.png +%%DATADIR%%/pixmaps/choosertextmake.png +%%DATADIR%%/pixmaps/choosertextplain.png +%%DATADIR%%/pixmaps/choosertextps.png +%%DATADIR%%/pixmaps/choosertextxml.png +%%DATADIR%%/pixmaps/chooserttf.png +%%DATADIR%%/pixmaps/chooserunknown.png +%%DATADIR%%/pixmaps/chooserupdir.png +%%DATADIR%%/pixmaps/chooservideo.png %%DATADIR%%/pixmaps/colorwheel.png %%DATADIR%%/pixmaps/editclear.png %%DATADIR%%/pixmaps/editclearback.png @@ -840,7 +879,7 @@ %%DATADIR%%/pixmaps/elementbdfinfo.png %%DATADIR%%/pixmaps/elementbitmapsavail.png %%DATADIR%%/pixmaps/elementbuildaccent.png -%%DATADIR%%/pixmaps/elementbuildcomposit.png +%%DATADIR%%/pixmaps/elementbuildcomposite.png %%DATADIR%%/pixmaps/elementclockwise.png %%DATADIR%%/pixmaps/elementcomparefonts.png %%DATADIR%%/pixmaps/elementcomparelayers.png @@ -909,6 +948,64 @@ %%DATADIR%%/pixmaps/overlapfindinter.png %%DATADIR%%/pixmaps/overlapintersection.png %%DATADIR%%/pixmaps/overlaprm.png +%%DATADIR%%/pixmaps/palette3drotate.png +%%DATADIR%%/pixmaps/palettecorner.png +%%DATADIR%%/pixmaps/palettecurve.png +%%DATADIR%%/pixmaps/paletteelipse.png +%%DATADIR%%/pixmaps/paletteflip.png +%%DATADIR%%/pixmaps/palettefreehand.png +%%DATADIR%%/pixmaps/palettehand.png +%%DATADIR%%/pixmaps/palettehvcurve.png +%%DATADIR%%/pixmaps/paletteknife.png +%%DATADIR%%/pixmaps/paletteline.png +%%DATADIR%%/pixmaps/palettemagnify.png +%%DATADIR%%/pixmaps/palettepen.png +%%DATADIR%%/pixmaps/palettepencil.png +%%DATADIR%%/pixmaps/paletteperspective.png +%%DATADIR%%/pixmaps/palettepointer.png +%%DATADIR%%/pixmaps/palettepoly.png +%%DATADIR%%/pixmaps/paletterect.png +%%DATADIR%%/pixmaps/paletterotate.png +%%DATADIR%%/pixmaps/paletteruler.png +%%DATADIR%%/pixmaps/palettescale.png +%%DATADIR%%/pixmaps/paletteshift.png +%%DATADIR%%/pixmaps/paletteskew.png +%%DATADIR%%/pixmaps/palettesmall3drotate.png +%%DATADIR%%/pixmaps/palettesmallcorner.png +%%DATADIR%%/pixmaps/palettesmallcurve.png +%%DATADIR%%/pixmaps/palettesmallelipse.png +%%DATADIR%%/pixmaps/palettesmallflip.png +%%DATADIR%%/pixmaps/palettesmallhand.png +%%DATADIR%%/pixmaps/palettesmallhvcurve.png +%%DATADIR%%/pixmaps/palettesmallknife.png +%%DATADIR%%/pixmaps/palettesmallmag.png +%%DATADIR%%/pixmaps/palettesmallpen.png +%%DATADIR%%/pixmaps/palettesmallpencil.png +%%DATADIR%%/pixmaps/palettesmallperspective.png +%%DATADIR%%/pixmaps/palettesmallpointer.png +%%DATADIR%%/pixmaps/palettesmallpoly.png +%%DATADIR%%/pixmaps/palettesmallrect.png +%%DATADIR%%/pixmaps/palettesmallrotate.png +%%DATADIR%%/pixmaps/palettesmallruler.png +%%DATADIR%%/pixmaps/palettesmallscale.png +%%DATADIR%%/pixmaps/palettesmallskew.png +%%DATADIR%%/pixmaps/palettesmallspirocorner.png +%%DATADIR%%/pixmaps/palettesmallspirocurve.png +%%DATADIR%%/pixmaps/palettesmallspirog2curve.png +%%DATADIR%%/pixmaps/palettesmallspiroleft.png +%%DATADIR%%/pixmaps/palettesmallspiroright.png +%%DATADIR%%/pixmaps/palettesmallstar.png +%%DATADIR%%/pixmaps/palettesmalltangent.png +%%DATADIR%%/pixmaps/palettespirocorner.png +%%DATADIR%%/pixmaps/palettespirocurve.png +%%DATADIR%%/pixmaps/palettespirodisabled.png +%%DATADIR%%/pixmaps/palettespirodown.png +%%DATADIR%%/pixmaps/palettespirog2curve.png +%%DATADIR%%/pixmaps/palettespiroleft.png +%%DATADIR%%/pixmaps/palettespiroright.png +%%DATADIR%%/pixmaps/palettespiroup.png +%%DATADIR%%/pixmaps/palettestar.png +%%DATADIR%%/pixmaps/palettetangent.png %%DATADIR%%/pixmaps/pointsG2curve.png %%DATADIR%%/pixmaps/pointsaddanchor.png %%DATADIR%%/pixmaps/pointscorner.png @@ -920,6 +1017,10 @@ %%DATADIR%%/pixmaps/pointsspironext.png %%DATADIR%%/pixmaps/pointsspiroprev.png %%DATADIR%%/pixmaps/pointstangent.png +%%DATADIR%%/pixmaps/ptinfocorner.png +%%DATADIR%%/pixmaps/ptinfocurve.png +%%DATADIR%%/pixmaps/ptinfohvcurve.png +%%DATADIR%%/pixmaps/ptinfotangent.png %%DATADIR%%/pixmaps/python.png %%DATADIR%%/pixmaps/styleschangeweight.png %%DATADIR%%/pixmaps/styleschangexheight.png @@ -941,7 +1042,7 @@ %%DATADIR%%/pixmaps/toolspen.png %%DATADIR%%/pixmaps/toolsperspective.png %%DATADIR%%/pixmaps/toolspointer.png -%%DATADIR%%/pixmaps/toolspoly.png +%%DATADIR%%/pixmaps/toolspolygon.png %%DATADIR%%/pixmaps/toolsrect.png %%DATADIR%%/pixmaps/toolsrotate.png %%DATADIR%%/pixmaps/toolsruler.png @@ -956,6 +1057,15 @@ %%DATADIR%%/pixmaps/transformrotateccw.png %%DATADIR%%/pixmaps/transformrotatecw.png %%DATADIR%%/pixmaps/transformskew.png +%%DATADIR%%/pixmaps/ttdebugcontinue.png +%%DATADIR%%/pixmaps/ttdebugexit.png +%%DATADIR%%/pixmaps/ttdebugmenudelta.png +%%DATADIR%%/pixmaps/ttdebugstepinto.png +%%DATADIR%%/pixmaps/ttdebugstepout.png +%%DATADIR%%/pixmaps/ttdebugstepover.png +%%DATADIR%%/pixmaps/ttdebugstop.png +%%DATADIR%%/pixmaps/ttdebugstopped.png +%%DATADIR%%/pixmaps/ttdebugwatchpnt.png %%DATADIR%%/pixmaps/viewbiggersize.png %%DATADIR%%/pixmaps/viewfindinfont.png %%DATADIR%%/pixmaps/viewfit.png @@ -963,6 +1073,7 @@ %%DATADIR%%/pixmaps/viewgoto.png %%DATADIR%%/pixmaps/viewinsertafter.png %%DATADIR%%/pixmaps/viewinsertbefore.png +%%DATADIR%%/pixmaps/viewlayers.png %%DATADIR%%/pixmaps/viewnext.png %%DATADIR%%/pixmaps/viewnextdef.png %%DATADIR%%/pixmaps/viewpalettes.png @@ -979,6 +1090,7 @@ %%NO_PLUGINS%%%%DATADIR%%/plugins/gb12345.so %%NO_PLUGINS%%%%DATADIR%%/plugins/gb12345.so.0 %%DATADIR%%/python/excepthook.py +share/locale/ca/LC_MESSAGES/FontForge.mo share/locale/de/LC_MESSAGES/FontForge.mo share/locale/el/LC_MESSAGES/FontForge.mo share/locale/en_GB/LC_MESSAGES/FontForge.mo --- fontforge-20120731.b.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 23:00:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D81D7106564A for ; Sun, 12 Aug 2012 23:00:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 95D908FC14 for ; Sun, 12 Aug 2012 23:00: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 q7CN02Vb090004 for ; Sun, 12 Aug 2012 23:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CN02oL090003; Sun, 12 Aug 2012 23:00:02 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 23:00:02 GMT Resent-Message-Id: <201208122300.q7CN02oL090003@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A8D4106566B for ; Sun, 12 Aug 2012 22:52:50 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from qmta03.emeryville.ca.mail.comcast.net (qmta03.emeryville.ca.mail.comcast.net [76.96.30.32]) by mx1.freebsd.org (Postfix) with ESMTP id 314AE8FC0C for ; Sun, 12 Aug 2012 22:52:49 +0000 (UTC) Received: from omta20.emeryville.ca.mail.comcast.net ([76.96.30.87]) by qmta03.emeryville.ca.mail.comcast.net with comcast id lr701j0041smiN4A3yspTQ; Sun, 12 Aug 2012 22:52:49 +0000 Received: from kirby.cyberbotx.com ([69.244.146.119]) by omta20.emeryville.ca.mail.comcast.net with comcast id lyso1j0092anbQt8gysof9; Sun, 12 Aug 2012 22:52:49 +0000 Received: by kirby.cyberbotx.com (Postfix, from userid 0) id 04D3C2843B; Sun, 12 Aug 2012 18:52:48 -0400 (EDT) Message-Id: <20120812225248.04D3C2843B@kirby.cyberbotx.com> Date: Sun, 12 Aug 2012 18:52:48 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170574: [MAINTAINER] devel/doxygen: update to 1.8.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, 12 Aug 2012 23:00:02 -0000 >Number: 170574 >Category: ports >Synopsis: [MAINTAINER] devel/doxygen: update to 1.8.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: Sun Aug 12 23:00:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.2-RELEASE FreeBSD 8.2-RELEASE #3: Sun Feb 27 08:58:31 EST 2011 >Description: - Update to 1.8.2 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- doxygen-1.8.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/doxygen/Makefile ./Makefile --- /usr/ports/devel/doxygen/Makefile 2012-08-05 13:42:07.000000000 -0400 +++ ./Makefile 2012-08-12 18:52:31.000000000 -0400 @@ -6,8 +6,7 @@ # PORTNAME= doxygen -PORTVERSION= 1.8.0 -PORTREVISION= 1 +PORTVERSION= 1.8.2 CATEGORIES= devel MASTER_SITES= ftp://ftp.stack.nl/pub/users/dimitri/ \ http://ftp.stack.nl/pub/users/dimitri/ diff -ruN --exclude=CVS /usr/ports/devel/doxygen/distinfo ./distinfo --- /usr/ports/devel/doxygen/distinfo 2012-03-09 20:21:39.000000000 -0500 +++ ./distinfo 2012-08-12 18:04:51.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (doxygen-1.8.0.src.tar.gz) = 70fa9034bbe964654e95bdeffcefeb28cd4bf2f73dea8b951143f3cbd19cd533 -SIZE (doxygen-1.8.0.src.tar.gz) = 5636443 +SHA256 (doxygen-1.8.2.src.tar.gz) = 5258244e3e225511dbacbbc58be958f114c11e35461a893473d356182b949d54 +SIZE (doxygen-1.8.2.src.tar.gz) = 6063256 --- doxygen-1.8.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 23:00:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5623A106566B for ; Sun, 12 Aug 2012 23:00:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 13C318FC16 for ; Sun, 12 Aug 2012 23:00: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 q7CN02is090022 for ; Sun, 12 Aug 2012 23:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CN02d9090021; Sun, 12 Aug 2012 23:00:02 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 23:00:02 GMT Resent-Message-Id: <201208122300.q7CN02d9090021@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4781C106564A for ; Sun, 12 Aug 2012 22:54:59 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from qmta09.emeryville.ca.mail.comcast.net (qmta09.emeryville.ca.mail.comcast.net [76.96.30.96]) by mx1.freebsd.org (Postfix) with ESMTP id 2DD1A8FC0A for ; Sun, 12 Aug 2012 22:54:59 +0000 (UTC) Received: from omta14.emeryville.ca.mail.comcast.net ([76.96.30.60]) by qmta09.emeryville.ca.mail.comcast.net with comcast id lxRZ1j0011HpZEsA9yuzzn; Sun, 12 Aug 2012 22:54:59 +0000 Received: from kirby.cyberbotx.com ([69.244.146.119]) by omta14.emeryville.ca.mail.comcast.net with comcast id lyux1j00d2anbQt8ayuyBY; Sun, 12 Aug 2012 22:54:58 +0000 Received: by kirby.cyberbotx.com (Postfix, from userid 0) id 6CFAF2843B; Sun, 12 Aug 2012 18:54:57 -0400 (EDT) Message-Id: <20120812225457.6CFAF2843B@kirby.cyberbotx.com> Date: Sun, 12 Aug 2012 18:54:57 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170575: [MAINTAINER] math/mingw32-libgmp: update to 5.0.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, 12 Aug 2012 23:00:03 -0000 >Number: 170575 >Category: ports >Synopsis: [MAINTAINER] math/mingw32-libgmp: update to 5.0.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 12 23:00:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.2-RELEASE FreeBSD 8.2-RELEASE #3: Sun Feb 27 08:58:31 EST 2011 >Description: - Update to 5.0.5 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- mingw32-libgmp-5.0.5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/math/mingw32-libgmp/Makefile ./Makefile --- /usr/ports/math/mingw32-libgmp/Makefile 2012-02-27 02:20:56.000000000 -0500 +++ ./Makefile 2012-08-12 18:53:45.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= libgmp -PORTVERSION= 5.0.4 +PORTVERSION= 5.0.5 CATEGORIES= math devel MASTER_SITES= GNU MASTER_SITE_SUBDIR= gmp diff -ruN --exclude=CVS /usr/ports/math/mingw32-libgmp/distinfo ./distinfo --- /usr/ports/math/mingw32-libgmp/distinfo 2012-02-27 02:20:56.000000000 -0500 +++ ./distinfo 2012-08-12 18:53:49.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (gmp-5.0.4.tar.bz2) = 35d4aade3e4bdf0915c944599b10d23f108ffedf6c3188aeec52221c5cf9a06f -SIZE (gmp-5.0.4.tar.bz2) = 2031540 +SHA256 (gmp-5.0.5.tar.bz2) = 1f588aaccc41bb9aed946f9fe38521c26d8b290d003c5df807f65690f2aadec9 +SIZE (gmp-5.0.5.tar.bz2) = 2052144 --- mingw32-libgmp-5.0.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 12 23:10:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9067106564A for ; Sun, 12 Aug 2012 23:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ADE3A8FC17 for ; Sun, 12 Aug 2012 23:10: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 q7CNA1OY092137 for ; Sun, 12 Aug 2012 23:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7CNA1YV092136; Sun, 12 Aug 2012 23:10:01 GMT (envelope-from gnats) Resent-Date: Sun, 12 Aug 2012 23:10:01 GMT Resent-Message-Id: <201208122310.q7CNA1YV092136@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Hein Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 461FA1065672 for ; Sun, 12 Aug 2012 23:08:59 +0000 (UTC) (envelope-from jhein@symmetricom.us) Received: from duck.timing.com (duck.symmetricom.us [206.168.13.214]) by mx1.freebsd.org (Postfix) with ESMTP id F2BE88FC1B for ; Sun, 12 Aug 2012 23:08:58 +0000 (UTC) Received: from fbsd8-build.timing.com (fbsd8-build.symmetricom.us [206.168.13.187]) by duck.timing.com (8.14.5/8.14.5) with ESMTP id q7CN8Fbc013896; Sun, 12 Aug 2012 17:08:15 -0600 (MDT) (envelope-from jhein@timing.com) Received: from fbsd8-build.timing.com (localhost [127.0.0.1]) by fbsd8-build.timing.com (8.14.5/8.14.4) with ESMTP id q7CN8oP1031018; Sun, 12 Aug 2012 17:08:50 -0600 (MDT) (envelope-from jhein@fbsd8-build.timing.com) Received: (from jhein@localhost) by fbsd8-build.timing.com (8.14.5/8.14.5/Submit) id q7CN8oWh031017; Sun, 12 Aug 2012 17:08:50 -0600 (MDT) (envelope-from jhein) Message-Id: <201208122308.q7CN8oWh031017@fbsd8-build.timing.com> Date: Sun, 12 Aug 2012 17:08:50 -0600 (MDT) From: John Hein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170576: [NEW PORT] net/bbcp: Secure and fast copy utility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 12 Aug 2012 23:10:02 -0000 >Number: 170576 >Category: ports >Synopsis: [NEW PORT] net/bbcp: Secure and fast copy utility >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 Aug 12 23:10:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: John Hein >Release: FreeBSD 8.3-STABLE-20120810 amd64 >Organization: >Environment: System: >Description: Securely and quickly copy data from source to target. WWW: http://www.slac.stanford.edu/~abh/bbcp/ tested on redports... https://redports.org/buildarchive/20120812230514-55796/ Generated with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: --- .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: # # clean # clean/Makefile # clean/pkg-descr # clean/distinfo # echo c - clean mkdir -p clean > /dev/null 2>&1 echo x - clean/Makefile sed 's/^X//' >clean/Makefile << '55df4b959c5157c298ac213647fb0204' X# New ports collection makefile for: bbcp X# Date created: 2012-08-10 X# Whom: John Hein X# X# $FreeBSD$ X# X XPORTNAME= bbcp XPORTVERSION= 20120520 XCATEGORIES= net XMASTER_SITES= https://bitbucket.org/jhein/bbcp/downloads/ X XMAINTAINER= jhein@symmetricom.com XCOMMENT= Secure and fast copy utility X XBUILD_WRKSRC= ${WRKSRC}/src XFETCH_ARGS= -Fpr XPLIST_FILES= bin/bbcp XUSE_XZ= yes X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/bin/FreeBSD/bbcp ${PREFIX}/bin X X.include 55df4b959c5157c298ac213647fb0204 echo x - clean/pkg-descr sed 's/^X//' >clean/pkg-descr << '4f3c5ab4753ce40da79176475209b0c9' XSecurely and quickly copy data from source to target. X XWWW: http://www.slac.stanford.edu/~abh/bbcp/ 4f3c5ab4753ce40da79176475209b0c9 echo x - clean/distinfo sed 's/^X//' >clean/distinfo << 'c72d62f8aa93c3e5daa0262cfd0da963' XSHA256 (bbcp-20120520.tar.xz) = 9d4c59ca08b6a40b96b4240ee836c09ccae4407149c21eb259d6ecd0ddf599e2 XSIZE (bbcp-20120520.tar.xz) = 109104 c72d62f8aa93c3e5daa0262cfd0da963 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 00:00:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CC98106566C for ; Mon, 13 Aug 2012 00:00: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 643548FC0A for ; Mon, 13 Aug 2012 00:00: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 q7D007F3002577 for ; Mon, 13 Aug 2012 00:00:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D00750002568; Mon, 13 Aug 2012 00:00:07 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 00:00:07 GMT Resent-Message-Id: <201208130000.q7D00750002568@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, Artis Caune Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B6831065672 for ; Sun, 12 Aug 2012 23:56:08 +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 3D1448FC08 for ; Sun, 12 Aug 2012 23:56:08 +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 q7CNu8D7017473 for ; Sun, 12 Aug 2012 23:56:08 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7CNu8PA017450; Sun, 12 Aug 2012 23:56:08 GMT (envelope-from nobody) Message-Id: <201208122356.q7CNu8PA017450@red.freebsd.org> Date: Sun, 12 Aug 2012 23:56:08 GMT From: Artis Caune To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170577: [PATCH] mail/opensmtpd: fix rc.subr REQUIRE keyword, update to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 00:00:07 -0000 >Number: 170577 >Category: ports >Synopsis: [PATCH] mail/opensmtpd: fix rc.subr REQUIRE keyword, update to latest version >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 Aug 13 00:00:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Artis Caune >Release: stable/9 >Organization: >Environment: FreeBSD freebsd 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE r239148: Fri Aug 10 00:00:00 UTC 2012 root@freebsd:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Current opensmtpd version has broken resolver. Mails are queued for relay, but I can not see any DNS packets and it fail with: 6a916bb35d3ef6aa: to=, delay=805, relay=(none) [], stat=LocalError (MX lookup failed temporarily) smtpd.conf: listen on 127.0.0.1 accept for all relay Upgrading to latest version fixed problem. There is error in rc.d/smtpd: REQUIRE keyword is not expanded in INSTALL script. rcorder: requirement `%%REQUIRE%%' in file `/usr/local/etc/rc.d/smtpd' has no providers. >How-To-Repeat: - install opensmtpd - send test message >Fix: Upgrade to newer version and fix REQUIRE keyword in smtpd.in Patch attached with submission follows: --- Makefile.orig 2012-08-12 23:15:52.692682349 +0000 +++ Makefile 2012-08-08 23:16:18.062692070 +0000 @@ -6,7 +6,7 @@ # PORTNAME= opensmtpd -PORTVERSION= 201207281129 +PORTVERSION= 201207311144 CATEGORIES= mail MASTER_SITES= http://www.opensmtpd.org/archives/ \ http://distfiles.pirateparty.in/ashish/ --- distinfo.orig 2012-08-12 23:16:47.512671228 +0000 +++ distinfo 2012-08-08 22:30:11.332694438 +0000 @@ -1,2 +1,2 @@ -SHA256 (opensmtpd-201207281129.tar.gz) = abadaea95eb1836c87060ae53ba4a791e8ea02e8f7a6cd022df94de8d997ed17 -SIZE (opensmtpd-201207281129.tar.gz) = 244926 +SHA256 (opensmtpd-201207311144.tar.gz) = 59259c2f51410b3faeb5f6e82fee58328c40ce4ee0f7ef7496f9ef3329c5d99e +SIZE (opensmtpd-201207311144.tar.gz) = 246356 --- files/smtpd.in.orig 2012-08-12 23:17:35.757298915 +0000 +++ files/smtpd.in 2012-08-12 23:17:58.372692040 +0000 @@ -3,7 +3,7 @@ # $FreeBSD: ports/mail/opensmtpd/files/smtpd.in,v 1.1 2012/05/14 13:12:32 ashish Exp $ # # PROVIDE: smtpd mail -# REQUIRE: %%REQUIRE%% +# REQUIRE: LOGIN # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf to enable smtpd: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 00:00:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69E73106564A; Mon, 13 Aug 2012 00:00:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3B1A58FC12; Mon, 13 Aug 2012 00: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 q7D00Nbg002740; Mon, 13 Aug 2012 00:00:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D00Nue002730; Mon, 13 Aug 2012 00:00:23 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 00:00:23 GMT Message-Id: <201208130000.q7D00Nue002730@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ashish@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170577: [PATCH] mail/opensmtpd: fix rc.subr REQUIRE keyword, update to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 00:00:23 -0000 Synopsis: [PATCH] mail/opensmtpd: fix rc.subr REQUIRE keyword, update to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ashish Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 00:00:22 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170577 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 00:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 416C51065676 for ; Mon, 13 Aug 2012 00: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 011428FC14 for ; Mon, 13 Aug 2012 00: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 q7D0K7KW011003 for ; Mon, 13 Aug 2012 00: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 q7D0K7vc011002; Mon, 13 Aug 2012 00:20:07 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 00:20:07 GMT Resent-Message-Id: <201208130020.q7D0K7vc011002@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1AB24106564A for ; Mon, 13 Aug 2012 00:17:09 +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 C02198FC08 for ; Mon, 13 Aug 2012 00:17:09 +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 q7D0H96U050710 for ; Mon, 13 Aug 2012 00:17:09 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D0H9QE050709; Mon, 13 Aug 2012 00:17:09 GMT (envelope-from nobody) Message-Id: <201208130017.q7D0H9QE050709@red.freebsd.org> Date: Mon, 13 Aug 2012 00:17:09 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170578: [patch] update devel/rubygem-gettext to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 00:20:08 -0000 >Number: 170578 >Category: ports >Synopsis: [patch] update devel/rubygem-gettext to latest version >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 Aug 13 00:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: see attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/gettext-2.2.0.gem) = 3c687dffd0046c6cbf0b066feb9c5236905f30949af389eba1d3f420b6ff6532 -SIZE (rubygem/gettext-2.2.0.gem) = 169472 +SHA256 (rubygem/gettext-2.2.1.gem) = 80880a4e0fa6d04eb5f774768e62f98dc82c549ba905195370e99b5cb8c6a573 +SIZE (rubygem/gettext-2.2.1.gem) = 172032 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= gettext -PORTVERSION= 2.2.0 +PORTVERSION= 2.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 00:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96F96106566B; Mon, 13 Aug 2012 00: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 6B2498FC18; Mon, 13 Aug 2012 00: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 q7D0KIRD011100; Mon, 13 Aug 2012 00: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 q7D0KIxj011096; Mon, 13 Aug 2012 00:20:18 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 00:20:18 GMT Message-Id: <201208130020.q7D0KIxj011096@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, knu@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170578: [patch] update devel/rubygem-gettext to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 00:20:18 -0000 Synopsis: [patch] update devel/rubygem-gettext to latest version Responsible-Changed-From-To: freebsd-ports-bugs->knu Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 00:20:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170578 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 00:26:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61C8D1065672; Mon, 13 Aug 2012 00:26:21 +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 358218FC0C; Mon, 13 Aug 2012 00:26: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 q7D0QLLo011354; Mon, 13 Aug 2012 00:26:21 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D0QL5d011350; Mon, 13 Aug 2012 00:26:21 GMT (envelope-from jgh) Date: Mon, 13 Aug 2012 00:26:21 GMT Message-Id: <201208130026.q7D0QL5d011350@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170576: [NEW PORT] net/bbcp: Secure and fast copy utility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 00:26:21 -0000 Synopsis: [NEW PORT] net/bbcp: Secure and fast copy utility Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Mon Aug 13 00:26:20 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170576 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 00:50:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4632106564A for ; Mon, 13 Aug 2012 00:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 833AF8FC0A for ; Mon, 13 Aug 2012 00:50: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 q7D0o3Et016992 for ; Mon, 13 Aug 2012 00:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D0o3V8016991; Mon, 13 Aug 2012 00:50:03 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 00:50:03 GMT Resent-Message-Id: <201208130050.q7D0o3V8016991@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEB20106564A for ; Mon, 13 Aug 2012 00:42:00 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id BDAC78FC12 for ; Mon, 13 Aug 2012 00:41:59 +0000 (UTC) Received: (qmail invoked by alias); 13 Aug 2012 00:41:57 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp070) with SMTP; 13 Aug 2012 02:41:57 +0200 Received: by something.email.com (sSMTP sendmail emulation); Mon, 13 Aug 2012 02:41:56 +0200 Message-Id: <20120813004200.DEB20106564A@hub.freebsd.org> Date: Mon, 13 Aug 2012 02:41:56 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dhn@FreeBSD.org Subject: ports/170579: [PATCH] multimedia/youtube-viewer: update to 2.5.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: Mon, 13 Aug 2012 00:50:04 -0000 >Number: 170579 >Category: ports >Synopsis: [PATCH] multimedia/youtube-viewer: update to 2.5.9 >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 Aug 13 00:50:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: - Update to 2.5.9 Makefile simplified PORTNAME and MASTER_SITES changed PORTNAME= youtube-viewer MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE:S|youtube-viewer|trizen|g} \ ${MASTER_SITE_GENTOO} \ ${MASTER_SITE_LOCAL} Removed -PKGNAMESUFFIX= -viewer LICENSE added accordingly http://gpo.zugaina.org/AJAX/Ebuild/2512925/View https://aur.archlinux.org/packages.php?ID=37779 LICENSE= GPLv3 Changed pkg-descr accordingly WWW site Port maintainer (dhn@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- youtube-viewer-2.5.9.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/youtube-viewer/Makefile ./Makefile --- /usr/ports/multimedia/youtube-viewer/Makefile 2012-06-29 18:27:41.000000000 +0200 +++ ./Makefile 2012-08-13 00:40:31.000000000 +0200 @@ -5,19 +5,19 @@ # $FreeBSD: ports/multimedia/youtube-viewer/Makefile,v 1.11 2012/06/29 16:27:41 az Exp $ # -PORTNAME= youtube -PORTVERSION= 2.5.5 -PORTREVISION= 1 +PORTNAME= youtube-viewer +PORTVERSION= 2.5.9 CATEGORIES= multimedia -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE:S|youtube|trizen|g} \ +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE:S|youtube-viewer|trizen|g} \ + ${MASTER_SITE_GENTOO} \ ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= dhn -PKGNAMESUFFIX= -viewer -DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} MAINTAINER= dhn@FreeBSD.org COMMENT= Search and play YouTube videos streaming in MPlayer +LICENSE= GPLv3 + RUN_DEPENDS= p5-XML-Fast>=0:${PORTSDIR}/net/p5-XML-Fast \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-Term-ANSIColor>=0:${PORTSDIR}/devel/p5-Term-ANSIColor \ diff -ruN --exclude=CVS /usr/ports/multimedia/youtube-viewer/distinfo ./distinfo --- /usr/ports/multimedia/youtube-viewer/distinfo 2012-02-04 11:33:33.000000000 +0100 +++ ./distinfo 2012-08-13 00:18:05.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (youtube-viewer-2.5.5.tar.gz) = 180a8c060d3e7966df25248e822c962a978257055d80fd3eb642cb1ea9b377b4 -SIZE (youtube-viewer-2.5.5.tar.gz) = 16213 +SHA256 (youtube-viewer-2.5.9.tar.gz) = 35bd5afb24ed61ef13773321cc8a3555c6421f92051483f52fdf58cf45ef0591 +SIZE (youtube-viewer-2.5.9.tar.gz) = 19041 diff -ruN --exclude=CVS /usr/ports/multimedia/youtube-viewer/pkg-descr ./pkg-descr --- /usr/ports/multimedia/youtube-viewer/pkg-descr 2010-08-18 18:56:10.000000000 +0200 +++ ./pkg-descr 2012-08-13 00:24:23.000000000 +0200 @@ -1,5 +1,6 @@ -Youtube Viewer - -This script plays a clip from YouTube with MPlayer, supports 720p and 1080p. +Youtube Viewer is a CLI application dedicated for searching and streaming +Youtube Videos with MPlayer. It has been written in Perl and plays videos +from Youtube at the best quality available without using a flash player. +WWW: https://code.google.com/p/trizen/ WWW: http://trizen.go.ro/ --- youtube-viewer-2.5.9.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 00:50:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E378106564A; Mon, 13 Aug 2012 00:50: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 E4B8C8FC12; Mon, 13 Aug 2012 00: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 q7D0oE4Z017089; Mon, 13 Aug 2012 00:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D0oEVb017085; Mon, 13 Aug 2012 00:50:14 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 00:50:14 GMT Message-Id: <201208130050.q7D0oEVb017085@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dhn@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170579: [PATCH] multimedia/youtube-viewer: update to 2.5.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: Mon, 13 Aug 2012 00:50:15 -0000 Synopsis: [PATCH] multimedia/youtube-viewer: update to 2.5.9 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 00:50:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170579 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 01:10:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 37CE51065675 for ; Mon, 13 Aug 2012 01:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1104D8FC16 for ; Mon, 13 Aug 2012 01:10: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 q7D1A002018512 for ; Mon, 13 Aug 2012 01:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D1A0QO018511; Mon, 13 Aug 2012 01:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 01:10:00 GMT Resent-Message-Id: <201208130110.q7D1A0QO018511@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78D9C106566B for ; Mon, 13 Aug 2012 01:08:02 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id DA0438FC14 for ; Mon, 13 Aug 2012 01:08:01 +0000 (UTC) Received: (qmail invoked by alias); 13 Aug 2012 01:07:59 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp030) with SMTP; 13 Aug 2012 03:07:59 +0200 Received: by something.email.com (sSMTP sendmail emulation); Mon, 13 Aug 2012 03:07:59 +0200 Message-Id: <20120813010802.78D9C106566B@hub.freebsd.org> Date: Mon, 13 Aug 2012 03:07:59 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170580: [NEW PORT] multimedia/gtk-youtube-viewer: GTK Search and play YouTube videos streaming in MPlayer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 01:10:01 -0000 >Number: 170580 >Category: ports >Synopsis: [NEW PORT] multimedia/gtk-youtube-viewer: GTK Search and play YouTube videos streaming in MPlayer >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 Aug 13 01:10:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: GTK Youtube Viewer is created to be a flexible and reliable open-source Linux application which is dedicated to streaming Youtube Videos with MPlayer. WWW: https://code.google.com/p/trizen/ WWW: http://trizen.go.ro/ Generated and tested manually, tested with port test and with RedPorts (all RELEASES), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: --- .shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gtk-youtube-viewer # gtk-youtube-viewer/Makefile # gtk-youtube-viewer/pkg-descr # gtk-youtube-viewer/distinfo # echo c - gtk-youtube-viewer mkdir -p gtk-youtube-viewer > /dev/null 2>&1 echo x - gtk-youtube-viewer/Makefile sed 's/^X//' >gtk-youtube-viewer/Makefile << 'f58971ac29ec10e0e19dfadcca9b1568' X# New ports collection makefile for: gtk-youtube-viewer X# Date created: 2012-08-13 X# Whom: nemysis@gmx.ch X# X# $FreeBSD$ X# X XPORTNAME= gtk-youtube-viewer XPORTVERSION= 2.0.5 XCATEGORIES= multimedia XMASTER_SITES= ${MASTER_SITE_GOOGLE_CODE:S|gtk-youtube-viewer|trizen|g} \ X ${MASTER_SITE_GENTOO} X XMAINTAINER= nemysis@gmx.ch XCOMMENT= GTK Search and play YouTube videos streaming in MPlayer X XLICENSE= GPLv3 X XRUN_DEPENDS= p5-XML-Fast>=0:${PORTSDIR}/net/p5-XML-Fast \ X p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ X p5-Term-ANSIColor>=0:${PORTSDIR}/devel/p5-Term-ANSIColor \ X ${LOCALBASE}/bin/mplayer:${PORTSDIR}/multimedia/mplayer X XOPTIONS_DEFINE= DATA GCAP XOPT2_DESC= Enable GCAP support XOPTIONS_DEFAULT= DATA X XWRKSRC= ${WRKDIR}/${PORTNAME}/src XDATADIR= ${PREFIX}/share/${PORTNAME} X XUSE_PERL5_RUN= yes XNO_BUILD= yes X XPLIST_FILES= bin/${PORTNAME} \ X share/pixmaps/${PORTNAME}.png \ X share/applications/${PORTNAME}.desktop XPLIST_DIRSTRY= share/applications X XPORTDATA= * X X.include X Xpost-patch: X @(cd ${WRKSRC} && ${REINPLACE_CMD} -e "s|#!/usr/bin/perl|#!${PERL}|g" gtk-youtube-viewer.pl \ X youtube-viewer && ${REINPLACE_CMD} -e "s|/usr/share/|${PREFIX}/share/|g" gtk-youtube-viewer) X Xdo-install: X ${MKDIR} ${DATADIR} X ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ X @${CHMOD} +x ${WRKSRC}/youtube-viewer X ${INSTALL_SCRIPT} ${WRKSRC}/youtube-viewer ${DATADIR} X X# Data X.if ${PORT_OPTIONS:MDATA} X @(cd ${WRKSRC} && ${COPYTREE_SHARE} lib ${DATADIR}) X ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.pl ${DATADIR} X ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.glade ${DATADIR} X.endif X X# Pixmaps and Desktop X ${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.png ${PREFIX}/share/pixmaps/ X ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${PREFIX}/share/applications/ X X.include f58971ac29ec10e0e19dfadcca9b1568 echo x - gtk-youtube-viewer/pkg-descr sed 's/^X//' >gtk-youtube-viewer/pkg-descr << '8fdade74c0d89f82b5426b1b58f4730f' XGTK Youtube Viewer is created to be a flexible and reliable open-source XLinux application which is dedicated to streaming Youtube Videos with MPlayer. X XWWW: https://code.google.com/p/trizen/ XWWW: http://trizen.go.ro/ 8fdade74c0d89f82b5426b1b58f4730f echo x - gtk-youtube-viewer/distinfo sed 's/^X//' >gtk-youtube-viewer/distinfo << '84db43257a04a0eb2504ac553e7571ae' XSHA256 (gtk-youtube-viewer-2.0.5.tar.gz) = 28cce3956d58659849db451e9d016e426577bfd8791000678f87ac8929c6def0 XSIZE (gtk-youtube-viewer-2.0.5.tar.gz) = 165777 84db43257a04a0eb2504ac553e7571ae exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 01:30:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 253BC106564A for ; Mon, 13 Aug 2012 01:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0FC218FC08 for ; Mon, 13 Aug 2012 01:30:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7D1U59k020936 for ; Mon, 13 Aug 2012 01:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D1U5i3020933; Mon, 13 Aug 2012 01:30:05 GMT (envelope-from gnats) Date: Mon, 13 Aug 2012 01:30:05 GMT Message-Id: <201208130130.q7D1U5i3020933@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/170580 multimedia/gtk-youtube-viewer: GTK Search and play YouTube videos streaming in MPlayer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 01:30:06 -0000 The following reply was made to PR ports/170580; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170580 multimedia/gtk-youtube-viewer: GTK Search and play YouTube videos streaming in MPlayer Date: Mon, 13 Aug 2012 03:29:41 +0200 --MP_/wTA8xXv.kUgnx_7Ayc49yFW Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline --MP_/wTA8xXv.kUgnx_7Ayc49yFW Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=gtk-youtube-viewer.diff diff -ruN gtk-youtube-viewer.orig/Makefile gtk-youtube-viewer/Makefile --- gtk-youtube-viewer.orig/Makefile 2012-08-13 03:24:53.000000000 +0200 +++ gtk-youtube-viewer/Makefile 2012-08-13 03:22:13.000000000 +0200 @@ -52,7 +52,7 @@ # Data .if ${PORT_OPTIONS:MDATA} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} lib ${DATADIR}) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "icons lib" ${DATADIR}) ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.pl ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.glade ${DATADIR} .endif --MP_/wTA8xXv.kUgnx_7Ayc49yFW-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 01:40:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E928A1065673 for ; Mon, 13 Aug 2012 01:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A9A0C8FC0C for ; Mon, 13 Aug 2012 01:40: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 q7D1e1b0023653 for ; Mon, 13 Aug 2012 01:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D1e1uD023652; Mon, 13 Aug 2012 01:40:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 01:40:01 GMT Resent-Message-Id: <201208130140.q7D1e1uD023652@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFDEB106564A for ; Mon, 13 Aug 2012 01:38: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 9BAC68FC12 for ; Mon, 13 Aug 2012 01:38: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 q7D1c0Jr093833 for ; Mon, 13 Aug 2012 01:38:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D1c0JO093832; Mon, 13 Aug 2012 01:38:00 GMT (envelope-from nobody) Message-Id: <201208130138.q7D1c0JO093832@red.freebsd.org> Date: Mon, 13 Aug 2012 01:38:00 GMT From: Steven Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170581: [patch] update devel/rubygem-systemu to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 01:40:02 -0000 >Number: 170581 >Category: ports >Synopsis: [patch] update devel/rubygem-systemu to latest version >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 Aug 13 01:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steven Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/systemu-2.2.0.gem) = 19ccf5b2bf20bf47dfc0ad720d143c7786ea701235ddd1c0f4ec5bb243214f6c -SIZE (rubygem/systemu-2.2.0.gem) = 11264 +SHA256 (rubygem/systemu-2.5.2.gem) = 19ba2254fad0c4017bb95b7604e243403a7951b22e8c2b63ee84a7d7a4220341 +SIZE (rubygem/systemu-2.5.2.gem) = 12800 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= systemu -PORTVERSION= 2.2.0 +PORTVERSION= 2.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 01:40:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38B1C1065676 for ; Mon, 13 Aug 2012 01:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 04F2F8FC14 for ; Mon, 13 Aug 2012 01:40: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 q7D1e1Mp023662 for ; Mon, 13 Aug 2012 01:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D1e131023661; Mon, 13 Aug 2012 01:40:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 01:40:01 GMT Resent-Message-Id: <201208130140.q7D1e131023661@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20B861065673 for ; Mon, 13 Aug 2012 01:38: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 0C6DB8FC0A for ; Mon, 13 Aug 2012 01:38: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 q7D1chpN093860 for ; Mon, 13 Aug 2012 01:38:43 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D1chgB093859; Mon, 13 Aug 2012 01:38:43 GMT (envelope-from nobody) Message-Id: <201208130138.q7D1chgB093859@red.freebsd.org> Date: Mon, 13 Aug 2012 01:38:43 GMT From: Steven Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170582: [patch] update sysutils/rubygem-ohai to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 01:40:02 -0000 >Number: 170582 >Category: ports >Synopsis: [patch] update sysutils/rubygem-ohai to latest version >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 Aug 13 01:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steven Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/ohai-0.6.10.gem) = 221ebda60b428a49f50ae8d0bfb02e0deabb92b9da88f35516891eae1ae789b6 -SIZE (rubygem/ohai-0.6.10.gem) = 86528 +SHA256 (rubygem/ohai-6.14.0.gem) = 71a52511bf0bccda69ea415436bf984b403f6025db9b6e39b7705cd197f0f1e2 +SIZE (rubygem/ohai-6.14.0.gem) = 109056 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,17 +6,18 @@ # PORTNAME= ohai -PORTVERSION= 0.6.10 +PORTVERSION= 6.14.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Ohai profiles your system and emits JSON -RUN_DEPENDS= rubygem-mixlib-log>=0:${PORTSDIR}/devel/rubygem-mixlib-log \ +RUN_DEPENDS= rubygem-ipaddress>=0:${PORTSDIR}/net/rubygem-ipaddress \ + rubygem-mixlib-log>=0:${PORTSDIR}/devel/rubygem-mixlib-log \ rubygem-mixlib-config>=0:${PORTSDIR}/devel/rubygem-mixlib-config \ rubygem-mixlib-cli>=0:${PORTSDIR}/devel/rubygem-mixlib-cli \ - rubygem-systemu=2.2.0:${PORTSDIR}/devel/rubygem-systemu \ + rubygem-systemu>=0:${PORTSDIR}/devel/rubygem-systemu \ rubygem-yajl-ruby>=0:${PORTSDIR}/devel/rubygem-yajl-ruby USE_RUBY= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 01:40:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DBFB106564A; Mon, 13 Aug 2012 01:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 615318FC08; Mon, 13 Aug 2012 01: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 q7D1eBBC023791; Mon, 13 Aug 2012 01:40:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D1eBvv023787; Mon, 13 Aug 2012 01:40:11 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 01:40:11 GMT Message-Id: <201208130140.q7D1eBvv023787@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170581: [patch] update devel/rubygem-systemu to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 01:40:11 -0000 Synopsis: [patch] update devel/rubygem-systemu to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 01:40:11 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170581 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 01:40:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5E681065691; Mon, 13 Aug 2012 01: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 79FE08FC18; Mon, 13 Aug 2012 01: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 q7D1eOMK024001; Mon, 13 Aug 2012 01:40:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D1eOLE023997; Mon, 13 Aug 2012 01:40:24 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 01:40:24 GMT Message-Id: <201208130140.q7D1eOLE023997@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170582: [patch] update sysutils/rubygem-ohai to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 01:40:24 -0000 Synopsis: [patch] update sysutils/rubygem-ohai to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 01:40:24 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170582 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 01:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73F8A106566C for ; Mon, 13 Aug 2012 01: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 4C1C88FC12 for ; Mon, 13 Aug 2012 01: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 q7D1o8tL024924 for ; Mon, 13 Aug 2012 01: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 q7D1o8oC024923; Mon, 13 Aug 2012 01:50:08 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 01:50:08 GMT Resent-Message-Id: <201208130150.q7D1o8oC024923@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, Waitman Gobble Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 549AB1065679 for ; Mon, 13 Aug 2012 01:41: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 3F81E8FC22 for ; Mon, 13 Aug 2012 01:41: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 q7D1ex3G094008 for ; Mon, 13 Aug 2012 01:40:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D1exGM094007; Mon, 13 Aug 2012 01:40:59 GMT (envelope-from nobody) Message-Id: <201208130140.q7D1exGM094007@red.freebsd.org> Date: Mon, 13 Aug 2012 01:40:59 GMT From: Waitman Gobble To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170583: UPDATE PORT: ucommon to 5.5.0, David Sugar said it would be cool. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 01:50:08 -0000 >Number: 170583 >Category: ports >Synopsis: UPDATE PORT: ucommon to 5.5.0, David Sugar said it would be cool. >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 Aug 13 01:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: FreeBSD 10.0-CURRENT amd64 >Organization: Waitman Gobble >Environment: System: FreeBSD hunny.waitman.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 11 13:25:18 PDT 2012 root@hunny.waitman.net:/usr/obj/usr/src/sys/KEYSHIA amd64 >Description: Update /usr/ports/devel/ucommon to latest avail. version. 5.5.0 (attached). Thank you. >How-To-Repeat: na >Fix: na 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: # # ucommon # ucommon/Makefile # ucommon/distinfo # ucommon/files # ucommon/files/CVS # ucommon/files/CVS/Root # ucommon/files/CVS/Repository # ucommon/files/CVS/Entries # ucommon/files/CVS/Tag # ucommon/files/patch-ucommon.pc.in # ucommon/pkg-descr # ucommon/pkg-plist # echo c - ucommon mkdir -p ucommon > /dev/null 2>&1 echo x - ucommon/Makefile sed 's/^X//' >ucommon/Makefile << '1755ca65db565c0182b0de27b13e23c8' X# New ports collection Makefile for: ucommon X# Date created: 12 August 2012 X# Whom: wgobble X# X# $FreeBSD: ports/devel/ucommon/Makefile,v 1.19 2012/08/12 18:32:06 cs Exp $ X# X XPORTNAME= ucommon XPORTVERSION= 5.5.0 XCATEGORIES= devel XMASTER_SITES= http://www.gnutelephony.org/dist/tarballs/ http://www.da3m0n8t3r.com/gnutelephony/www.gnutelephony.org/dist/tarballs/ X XMAINTAINER= uzimac@da3m0n8t3r.com XCOMMENT= A very lightweight C++ design patternlibrary X XLICENSE= LGPL3 X XUSE_GNOME= pkgconfig gnomehack XUSE_LDCONFIG= yes XGNU_CONFIGURE= yes XCFLAGS+= -D__BSD_VISIBLE XLDFLAGS+= ${PTHREAD_LIBS} XCONFIGURE_ARGS+=--bindir=${PREFIX}/bin/${PORTNAME} X XMAN1= args.1 car.1 commoncpp-config.1 mdsum.1 pdetach.1 \ X scrub-files.1 sockaddr.1 ucommon-config.1 zerofill.1 X Xpost-patch: X ${REINPLACE_CMD} -e '/HAVE_OPENSSL_FIPS_H/s/define/undef/' \ X ${WRKSRC}/${CONFIGURE_SCRIPT} X Xtest: build X cd ${WRKSRC}/test && ${MAKE} check X X.include 1755ca65db565c0182b0de27b13e23c8 echo x - ucommon/distinfo sed 's/^X//' >ucommon/distinfo << 'c13f5e11193357ded70e8dd193de2fd7' XSHA256 (ucommon-5.5.0.tar.gz) = d2d2ced679ca22d1a1f3d8ef40412860be750f675572aaa0335439d1aa697e50 XSIZE (ucommon-5.5.0.tar.gz) = 800739 c13f5e11193357ded70e8dd193de2fd7 echo c - ucommon/files mkdir -p ucommon/files > /dev/null 2>&1 echo c - ucommon/files/CVS mkdir -p ucommon/files/CVS > /dev/null 2>&1 echo x - ucommon/files/CVS/Root sed 's/^X//' >ucommon/files/CVS/Root << '7d58f4da05eabd9555f015ea562aa19f' X/home/ncvs 7d58f4da05eabd9555f015ea562aa19f echo x - ucommon/files/CVS/Repository sed 's/^X//' >ucommon/files/CVS/Repository << '561bec729446411a16461a22fea59892' Xports/devel/ucommon/files 561bec729446411a16461a22fea59892 echo x - ucommon/files/CVS/Entries sed 's/^X//' >ucommon/files/CVS/Entries << 'f7c23bf7d4c3ccb92ba0cdada68a7ef7' X/patch-ucommon.pc.in/1.1/Tue Mar 22 15:40:39 2011//TRELEASE_9_0_0 XD f7c23bf7d4c3ccb92ba0cdada68a7ef7 echo x - ucommon/files/CVS/Tag sed 's/^X//' >ucommon/files/CVS/Tag << '063fcb2106ff52e607d26bf220b410e7' XNRELEASE_9_0_0 063fcb2106ff52e607d26bf220b410e7 echo x - ucommon/files/patch-ucommon.pc.in sed 's/^X//' >ucommon/files/patch-ucommon.pc.in << '44a40f1c7dec8748d455f631c38f8938' X--- ucommon.pc.in.orig 2011-03-21 13:02:55.000000000 +0100 X+++ ucommon.pc.in 2011-03-21 13:03:05.000000000 +0100 X@@ -5,5 +5,5 @@ X Name: ucommon X Description: GNU uCommon C++ class framework X Version: @VERSION@ X-Libs: -lusecure -lucommon @SECURE_LIBS@ @UCOMMON_LINKED@ X+Libs: -lusecure -lucommon -lpthread @SECURE_LIBS@ @UCOMMON_LINKED@ X Cflags: @UCOMMON_FLAGS@ 44a40f1c7dec8748d455f631c38f8938 echo x - ucommon/pkg-descr sed 's/^X//' >ucommon/pkg-descr << '25294242925b9fc586a1d8b2bd0cbeb6' XGNU uCommon C++ is meant as a very light-weight C++ library to facilitate using XC++ design patterns even for very deeply embedded applications, such as for Xsystems using uclibc along with posix threading support. For this reason, GNU XuCommon C++ disables language features that consume memory or introduce runtime Xoverhead, such as rtti and exception handling, and assumes one will mostly be Xlinking applications with other pure C based libraries rather than using the Xoverhead of the standard C++ library and other similar class frameworks. X XWWW: http://www.gnutelephony.org/index.php/GNU_uCommon_C%2B%2B 25294242925b9fc586a1d8b2bd0cbeb6 echo x - ucommon/pkg-plist sed 's/^X//' >ucommon/pkg-plist << '9b94d548c416f1d2d01cb4df846bab81' Xbin/ucommon/args Xbin/ucommon/car Xbin/ucommon/commoncpp-config Xbin/ucommon/mdsum Xbin/ucommon/pdetach Xbin/ucommon/scrub-files Xbin/ucommon/sockaddr Xbin/ucommon/ucommon-config Xbin/ucommon/zerofill Xinclude/commoncpp/address.h Xinclude/commoncpp/applog.h Xinclude/commoncpp/commoncpp.h Xinclude/commoncpp/config.h Xinclude/commoncpp/dccp.h Xinclude/commoncpp/exception.h Xinclude/commoncpp/export.h Xinclude/commoncpp/file.h Xinclude/commoncpp/mime.h Xinclude/commoncpp/numbers.h Xinclude/commoncpp/object.h Xinclude/commoncpp/pointer.h Xinclude/commoncpp/process.h Xinclude/commoncpp/serial.h Xinclude/commoncpp/slog.h Xinclude/commoncpp/socket.h Xinclude/commoncpp/string.h Xinclude/commoncpp/tcp.h Xinclude/commoncpp/thread.h Xinclude/commoncpp/tokenizer.h Xinclude/commoncpp/udp.h Xinclude/ucommon/access.h Xinclude/ucommon/atomic.h Xinclude/ucommon/bitmap.h Xinclude/ucommon/buffer.h Xinclude/ucommon/containers.h Xinclude/ucommon/counter.h Xinclude/ucommon/cpr.h Xinclude/ucommon/datetime.h Xinclude/ucommon/export.h Xinclude/ucommon/fsys.h Xinclude/ucommon/generics.h Xinclude/ucommon/keydata.h Xinclude/ucommon/linked.h Xinclude/ucommon/mapped.h Xinclude/ucommon/memory.h Xinclude/ucommon/numbers.h Xinclude/ucommon/object.h Xinclude/ucommon/persist.h Xinclude/ucommon/platform.h Xinclude/ucommon/protocols.h Xinclude/ucommon/secure.h Xinclude/ucommon/shell.h Xinclude/ucommon/socket.h Xinclude/ucommon/stl.h Xinclude/ucommon/stream.h Xinclude/ucommon/string.h Xinclude/ucommon/thread.h Xinclude/ucommon/timers.h Xinclude/ucommon/ucommon.h Xinclude/ucommon/unicode.h Xinclude/ucommon/vector.h Xinclude/ucommon/xml.h Xlib/libcommoncpp.a Xlib/libcommoncpp.la Xlib/libcommoncpp.so Xlib/libcommoncpp.so.5 Xlib/libucommon.a Xlib/libucommon.la Xlib/libucommon.so Xlib/libucommon.so.5 Xlib/libusecure.a Xlib/libusecure.la Xlib/libusecure.so Xlib/libusecure.so.5 Xlibdata/pkgconfig/commoncpp.pc Xlibdata/pkgconfig/ucommon.pc X@dirrm include/ucommon X@dirrm include/commoncpp X@dirrm bin/ucommon 9b94d548c416f1d2d01cb4df846bab81 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 02:00:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1AB97106564A for ; Mon, 13 Aug 2012 02:00: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 EF22C8FC12 for ; Mon, 13 Aug 2012 02:00: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 q7D203FE025221 for ; Mon, 13 Aug 2012 02:00:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D203rn025205; Mon, 13 Aug 2012 02:00:03 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 02:00:03 GMT Resent-Message-Id: <201208130200.q7D203rn025205@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21EC2106566B for ; Mon, 13 Aug 2012 01:54: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 0CF7D8FC08 for ; Mon, 13 Aug 2012 01:54: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 q7D1ssTY009644 for ; Mon, 13 Aug 2012 01:54:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D1ss4J009638; Mon, 13 Aug 2012 01:54:54 GMT (envelope-from nobody) Message-Id: <201208130154.q7D1ss4J009638@red.freebsd.org> Date: Mon, 13 Aug 2012 01:54:54 GMT From: Steven Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170584: [patch] update devel/rubygem-test-unit to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 02:00:16 -0000 >Number: 170584 >Category: ports >Synopsis: [patch] update devel/rubygem-test-unit to latest version >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 Aug 13 02:00:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steven Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/test-unit-2.4.3.gem) = 59c16010c2614fffd21c38f7936034c1e4f561dd83efd966cba9f5cb790bb5fe -SIZE (rubygem/test-unit-2.4.3.gem) = 96256 +SHA256 (rubygem/test-unit-2.5.1.gem) = e8e94050afff5bbfd3ee2bc03ebfece1625d9e97c6b76d46e4199ed1db65e3e8 +SIZE (rubygem/test-unit-2.5.1.gem) = 99840 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= test-unit -PORTVERSION= 2.4.3 +PORTVERSION= 2.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 02:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D92A9106566B; Mon, 13 Aug 2012 02:00:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AD50F8FC15; Mon, 13 Aug 2012 02: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 q7D20QEt025494; Mon, 13 Aug 2012 02:00:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D20Qfh025489; Mon, 13 Aug 2012 02:00:26 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 02:00:26 GMT Message-Id: <201208130200.q7D20Qfh025489@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170584: [patch] update devel/rubygem-test-unit to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 02:00:27 -0000 Synopsis: [patch] update devel/rubygem-test-unit to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 02:00:26 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170584 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 02:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B581F106564A for ; Mon, 13 Aug 2012 02:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 692C28FC17 for ; Mon, 13 Aug 2012 02:10: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 q7D2A3Aq026378 for ; Mon, 13 Aug 2012 02:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D2A3NU026376; Mon, 13 Aug 2012 02:10:03 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 02:10:03 GMT Resent-Message-Id: <201208130210.q7D2A3NU026376@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B92C7106564A for ; Mon, 13 Aug 2012 02:02:24 +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 A46DD8FC0C for ; Mon, 13 Aug 2012 02:02: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 q7D22OgV023282 for ; Mon, 13 Aug 2012 02:02:24 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D22OUZ023281; Mon, 13 Aug 2012 02:02:24 GMT (envelope-from nobody) Message-Id: <201208130202.q7D22OUZ023281@red.freebsd.org> Date: Mon, 13 Aug 2012 02:02:24 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170585: [patch] update devel/rubygem-unicode to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 02:10:03 -0000 >Number: 170585 >Category: ports >Synopsis: [patch] update devel/rubygem-unicode to latest version >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 Aug 13 02:10:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/test-unit-2.4.3.gem) = 59c16010c2614fffd21c38f7936034c1e4f561dd83efd966cba9f5cb790bb5fe -SIZE (rubygem/test-unit-2.4.3.gem) = 96256 +SHA256 (rubygem/test-unit-2.5.1.gem) = e8e94050afff5bbfd3ee2bc03ebfece1625d9e97c6b76d46e4199ed1db65e3e8 +SIZE (rubygem/test-unit-2.5.1.gem) = 99840 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= test-unit -PORTVERSION= 2.4.3 +PORTVERSION= 2.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 02:10:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1EA3106564A; Mon, 13 Aug 2012 02:10:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 73E568FC08; Mon, 13 Aug 2012 02:10: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 q7D2AIX5026456; Mon, 13 Aug 2012 02:10:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D2AI9P026452; Mon, 13 Aug 2012 02:10:18 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 02:10:18 GMT Message-Id: <201208130210.q7D2AI9P026452@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170585: [patch] update devel/rubygem-unicode to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 02:10:18 -0000 Synopsis: [patch] update devel/rubygem-unicode to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 02:10:18 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170585 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 03:00:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 030B8106566B for ; Mon, 13 Aug 2012 03:00: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 C8AD48FC0A for ; Mon, 13 Aug 2012 03:00:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7D306jN032460 for ; Mon, 13 Aug 2012 03:00:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D306q6032455; Mon, 13 Aug 2012 03:00:06 GMT (envelope-from gnats) Date: Mon, 13 Aug 2012 03:00:06 GMT Message-Id: <201208130300.q7D306q6032455@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Henry Hu Cc: Subject: Re: ports/169165: sysutils/fusefs-kmod: calling fchown(2) on sshfs filesystem causes panic X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Henry Hu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 03:00:07 -0000 The following reply was made to PR ports/169165; it has been noted by GNATS. From: Henry Hu To: bug-followup@freebsd.org, dh@bsd.ee, mirror176@cox.net Cc: Subject: Re: ports/169165: sysutils/fusefs-kmod: calling fchown(2) on sshfs filesystem causes panic Date: Sun, 12 Aug 2012 22:57:51 -0400 I'm hitting the same problem. When I copy files to a NTFS partition mounted with ntfs-3g, the machine panics. The panic message is nearly identical. It's also a fchown syscall which leads to page fault at address 0, and the problem is that eip is 0. The patch in this post should fix the problem: http://www.mail-archive.com/freebsd-users-jp@jp.freebsd.org/msg04947.html I tried this patch and it works. It seems like that the problem is the new fields, fo_chmod and fo_chown, in struct fileops, which is introduced in r224914 for file sys/sys/file.h, is not initialized by fusefs-kmod. It's similar to another problem: http://www.freebsd.org/cgi/query-pr.cgi?pr=149674 http://www.freebsd.org/cgi/query-pr.cgi?pr=149538 http://forums.freebsd.org/archive/index.php/t-16759.html which is fixed with a similar patch. This problem is caused by new field fo_truncate in struct fileops. Panic message: -- Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 01 fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x20:0x0 stack pointer = 0x28:0xef885c28 frame pointer = 0x28:0xef885c50 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 6163 (cp) trap number = 12 panic: page fault cpuid = 1 KDB: stack backtrace: db_trace_self_wrapper(c09f0277,0,c0c5efe0,7a3,c5f2b7f0,...) at 0xc04d88b6 = db_trace_self_wrapper+0x26 kdb_backtrace(c0a28b7b,1,c09b9cae,ef885abc,1,...) at 0xc06deaca = kdb_backtrace+0x2a panic(c09b9cae,c0a29702,c826ba54,1,1,...) at 0xc06ab27f = panic+0x16f trap_fatal(101a4,3e9,0,ed00ff0e,8713,...) at 0xc096f093 = trap_fatal+0x323 trap_pfault(0,0,0,c7db6580,cc705b40,...) at 0xc096f17c = trap_pfault+0xdc trap(ef885be8) at 0xc0970093 = trap+0x423 calltrap() at 0xc095970c = calltrap+0x6 --- trap 0xc, eip = 0, esp = 0xef885c28, ebp = 0xef885c50 --- (null)(c826b8a0,ef885ccc,c,ef885d60,16,...) at 0 syscall(ef885d08) at 0xc096f7e1 = syscall+0x331 Xint0x80_syscall() at 0xc0959771 = Xint0x80_syscall+0x21 --- syscall (123, FreeBSD ELF32, sys_fchown), eip = 0x280bd95b, esp = 0xbfbfe52c, ebp = 0xbfbfe5b8 --- Cheers, Henry From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 04:17:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFF07106564A; Mon, 13 Aug 2012 04:17:34 +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 B2C228FC12; Mon, 13 Aug 2012 04:17: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 q7D4HYZ6042069; Mon, 13 Aug 2012 04:17:34 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D4HYuU042065; Mon, 13 Aug 2012 04:17:34 GMT (envelope-from jgh) Date: Mon, 13 Aug 2012 04:17:34 GMT Message-Id: <201208130417.q7D4HYuU042065@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170580: [NEW PORT] multimedia/gtk-youtube-viewer: GTK Search and play YouTube videos streaming in MPlayer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 04:17:35 -0000 Synopsis: [NEW PORT] multimedia/gtk-youtube-viewer: GTK Search and play YouTube videos streaming in MPlayer Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Mon Aug 13 04:17:34 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170580 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 04:30:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32D9F1065672 for ; Mon, 13 Aug 2012 04:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0A68E8FC0C for ; Mon, 13 Aug 2012 04:30: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 q7D4U1jn042649 for ; Mon, 13 Aug 2012 04:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D4U1Nj042648; Mon, 13 Aug 2012 04:30:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 04:30:01 GMT Resent-Message-Id: <201208130430.q7D4U1Nj042648@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, Waitman Gobble Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBB8A106564A for ; Mon, 13 Aug 2012 04:22:58 +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 B65018FC0A for ; Mon, 13 Aug 2012 04:22:58 +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 q7D4Mwqg029495 for ; Mon, 13 Aug 2012 04:22:58 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D4Mw62029494; Mon, 13 Aug 2012 04:22:58 GMT (envelope-from nobody) Message-Id: <201208130422.q7D4Mw62029494@red.freebsd.org> Date: Mon, 13 Aug 2012 04:22:58 GMT From: Waitman Gobble To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170586: [UPDATE PORT] devel/commoncpp 1.8.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, 13 Aug 2012 04:30:02 -0000 >Number: 170586 >Category: ports >Synopsis: [UPDATE PORT] devel/commoncpp 1.8.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 04:30:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: FreeBSD 10.0-CURRENT amd64 >Organization: Waitman Gobble >Environment: FreeBSD hunny.waitman.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 11 13:25:18 PDT 2012 root@hunny.waitman.net:/usr/obj/usr/src/sys/KEYSHIA amd64 >Description: update commoncpp to 1.8.1 Common C++ offers a highly portable C++ application development framework. Common C++ provides classes for threads, sockets, daemon management, system logging, object synchronization, realtime network development, persistent object management, and file access. Thank you >How-To-Repeat: na >Fix: na 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: # # commoncpp # commoncpp/files # commoncpp/files/patch-include-cc++_address.h # commoncpp/files/patch-src_mutex.cpp # commoncpp/files/patch-src_thread.cpp # commoncpp/files/patch-src_timer.cpp # commoncpp/files/patch-src_applog.cpp # commoncpp/Makefile # commoncpp/pkg-descr # commoncpp/pkg-plist # commoncpp/distinfo # echo c - commoncpp mkdir -p commoncpp > /dev/null 2>&1 echo c - commoncpp/files mkdir -p commoncpp/files > /dev/null 2>&1 echo x - commoncpp/files/patch-include-cc++_address.h sed 's/^X//' >commoncpp/files/patch-include-cc++_address.h << '3fbd99508184e8bb61b64b30e49c7ad7' X--- inc/cc++/address.h 2010-10-31 15:22:45.000000000 -0700 X+++ inc/cc++/address.h 2012-08-12 20:17:20.000000000 -0700 X@@ -237,10 +237,10 @@ X bool isMember(const struct in_addr &inaddr) const; X X inline bool operator==(const struct sockaddr *a) const X- {return isMember(a);}; X+ {return isMember(a);} X X inline bool operator==(const struct in_addr &a) const X- {return isMember(a);}; X+ {return isMember(a);} X }; X X #ifdef CCXX_IPV6 X@@ -325,10 +325,10 @@ X bool isMember(const struct in6_addr &inaddr) const; X X inline bool operator==(const struct sockaddr *sa) const X- {return isMember(sa);}; X+ {return isMember(sa);} X X inline bool operator==(const struct in6_addr &a) const X- {return isMember(a);}; X+ {return isMember(a);} X }; X X #endif 3fbd99508184e8bb61b64b30e49c7ad7 echo x - commoncpp/files/patch-src_mutex.cpp sed 's/^X//' >commoncpp/files/patch-src_mutex.cpp << 'f0045b92043e27f0d22ad4f10699042a' X--- src/mutex.cpp 2010-10-31 16:56:23.000000000 -0700 X+++ src/mutex.cpp 2012-08-12 20:34:58.000000000 -0700 X@@ -50,6 +50,8 @@ X using namespace __gnu_cxx; X #endif X X+using namespace std; X+ X #ifdef CCXX_NAMESPACES X namespace ost { X using namespace std; f0045b92043e27f0d22ad4f10699042a echo x - commoncpp/files/patch-src_thread.cpp sed 's/^X//' >commoncpp/files/patch-src_thread.cpp << '1555561b4c165d5689fe97de17ae1afb' X--- src/thread.cpp 2010-10-31 17:58:07.000000000 -0700 X+++ src/thread.cpp 2012-08-12 20:26:53.000000000 -0700 X@@ -796,7 +796,7 @@ X cctid_t Thread::getId(void) const X { X if(!priv) X- return (cctid_t)-1; X+ return (cctid_t)false; X X return priv->_tid; X } 1555561b4c165d5689fe97de17ae1afb echo x - commoncpp/files/patch-src_timer.cpp sed 's/^X//' >commoncpp/files/patch-src_timer.cpp << 'a1ae1de84e49ac62ceb1314a51d42944' X--- src/timer.cpp 2010-10-31 18:00:33.000000000 -0700 X+++ src/timer.cpp 2012-08-12 20:29:31.000000000 -0700 X@@ -118,7 +118,7 @@ X active = true; X } X X-#ifdef HAVE_HIRES_TIMER X+#if defined(HAVE_HIRES_TIMER) && !defined(__FreeBSD__) X void TimerPort::sleepTimer(void) X { X struct timespec ts; a1ae1de84e49ac62ceb1314a51d42944 echo x - commoncpp/files/patch-src_applog.cpp sed 's/^X//' >commoncpp/files/patch-src_applog.cpp << '12ec98883a4168acd83cd82bd55bb71c' X--- src/applog.cpp 2010-10-31 16:11:55.000000000 -0700 X+++ src/applog.cpp 2012-08-12 20:50:40.000000000 -0700 X@@ -45,6 +45,7 @@ X #include X #include X #include X+#include X X // TODO sc: test if has to move up now that it is into commoncpp X // NOTE: the order of inclusion is important do not move following include line X@@ -53,6 +54,8 @@ X // local includes X #include X X+using namespace std; X+ X #ifdef CCXX_NAMESPACES X using namespace std; X namespace ost 12ec98883a4168acd83cd82bd55bb71c echo x - commoncpp/Makefile sed 's/^X//' >commoncpp/Makefile << '3cde6297fde01f172627db52dc24b88e' X# New ports collection makefile for: CommonC++ X# Date created: 12 August 2012 X# Whom: Waitman Gobble X# X# X XPORTNAME= commoncpp XPORTVERSION= 1.8.1 XPORTEPOCH= 2 XCATEGORIES= devel XMASTER_SITES= http://www.gnutelephony.org/dist/tarballs/ http://www.da3m0n8t3r.com/gnutelephony/www.gnutelephony.org/dist/tarballs/ XDISTNAME= ${PORTNAME:S/$/2/}-${PORTVERSION} X XMAINTAINER= uzimac@da3m0n8t3r.com XCOMMENT= GNU project portable class framework for C++ X XLICENSE= GPLv2 X XUSE_LDCONFIG= yes XUSE_GNOME= gnomehack XUSE_GMAKE= yes XGNU_CONFIGURE= yes XCONFIGURE_ENV= ac_cv_path_DOXYGEN=no X XINFO= commoncpp2 X XCPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} XLDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} X X.include 3cde6297fde01f172627db52dc24b88e echo x - commoncpp/pkg-descr sed 's/^X//' >commoncpp/pkg-descr << '168b1f9fc128e33ff33e1e542898fbfa' XCommon C++ offers a highly portable C++ application development Xframework. Common C++ provides classes for threads, sockets, daemon Xmanagement, system logging, object synchronization, realtime network Xdevelopment, persistent object management, and file access. X XWWW: http://www.gnutelephony.org/ 168b1f9fc128e33ff33e1e542898fbfa echo x - commoncpp/pkg-plist sed 's/^X//' >commoncpp/pkg-plist << '8393ede3675dfff8c4e40f4eb6b9ab94' Xbin/ccgnu2-config Xinclude/cc++/address.h Xinclude/cc++/applog.h Xinclude/cc++/buffer.h Xinclude/cc++/cmdoptns.h Xinclude/cc++/common.h Xinclude/cc++/config.h Xinclude/cc++/counter.h Xinclude/cc++/digest.h Xinclude/cc++/exception.h Xinclude/cc++/export.h Xinclude/cc++/file.h Xinclude/cc++/functions.h Xinclude/cc++/mime.h Xinclude/cc++/misc.h Xinclude/cc++/missing.h Xinclude/cc++/network.h Xinclude/cc++/numbers.h Xinclude/cc++/objcount.h Xinclude/cc++/object.h Xinclude/cc++/objlink.h Xinclude/cc++/objmap.h Xinclude/cc++/objsync.h Xinclude/cc++/oststring.h Xinclude/cc++/persist.h Xinclude/cc++/pointer.h Xinclude/cc++/process.h Xinclude/cc++/serial.h Xinclude/cc++/slog.h Xinclude/cc++/socket.h Xinclude/cc++/socketport.h Xinclude/cc++/strchar.h Xinclude/cc++/string.h Xinclude/cc++/template.h Xinclude/cc++/thread.h Xinclude/cc++/tokenizer.h Xinclude/cc++/unix.h Xinclude/cc++/url.h Xinclude/cc++/xml.h Xinclude/cc++/zstream.h Xlib/libccext2-1.8.so Xlib/libccext2-1.8.so.0 Xlib/libccext2.a Xlib/libccext2.la Xlib/libccext2.so Xlib/libccgnu2-1.8.so Xlib/libccgnu2-1.8.so.0 Xlib/libccgnu2.a Xlib/libccgnu2.la Xlib/libccgnu2.so Xlibdata/pkgconfig/libccext2.pc Xlibdata/pkgconfig/libccgnu2.pc Xshare/aclocal/ost_check2.m4 X@dirrm include/cc++ 8393ede3675dfff8c4e40f4eb6b9ab94 echo x - commoncpp/distinfo sed 's/^X//' >commoncpp/distinfo << 'f7621f7e6b4baee16402b2bb73d26823' XSHA256 (commoncpp2-1.8.1.tar.gz) = 53ced4aff74e28a1d8018eb2b4974519028db3c12471ab6dff1c873578c9af4e XSIZE (commoncpp2-1.8.1.tar.gz) = 908678 f7621f7e6b4baee16402b2bb73d26823 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 04:30:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A68B106564A; Mon, 13 Aug 2012 04:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E1EE68FC08; Mon, 13 Aug 2012 04: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 q7D4UGQS043529; Mon, 13 Aug 2012 04:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D4UG4C043523; Mon, 13 Aug 2012 04:30:16 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 04:30:16 GMT Message-Id: <201208130430.q7D4UG4C043523@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, acm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170586: [UPDATE PORT] devel/commoncpp 1.8.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, 13 Aug 2012 04:30:17 -0000 Synopsis: [UPDATE PORT] devel/commoncpp 1.8.1 Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 04:30:16 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170586 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 04:32:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 740A7106566B; Mon, 13 Aug 2012 04:32:45 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47B128FC0A; Mon, 13 Aug 2012 04:32: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 q7D4WjfF044811; Mon, 13 Aug 2012 04:32:45 GMT (envelope-from pfg@freefall.freebsd.org) Received: (from pfg@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D4Wjg7044807; Mon, 13 Aug 2012 04:32:45 GMT (envelope-from pfg) Date: Mon, 13 Aug 2012 04:32:45 GMT Message-Id: <201208130432.q7D4Wjg7044807@freefall.freebsd.org> To: pfg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, office@FreeBSD.org From: pfg@FreeBSD.org Cc: Subject: Re: ports/170568: New port x11-fonts/sourcesanspro-ttf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 04:32:45 -0000 Synopsis: New port x11-fonts/sourcesanspro-ttf Responsible-Changed-From-To: freebsd-ports-bugs->office@FreeBSD.org Responsible-Changed-By: pfg Responsible-Changed-When: Mon Aug 13 04:31:44 UTC 2012 Responsible-Changed-Why: Assign to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=170568 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 04:40:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F7A8106566C for ; Mon, 13 Aug 2012 04:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 286FE8FC17 for ; Mon, 13 Aug 2012 04:40: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 q7D4e1bx045752 for ; Mon, 13 Aug 2012 04:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D4e1VP045751; Mon, 13 Aug 2012 04:40:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 04:40:01 GMT Resent-Message-Id: <201208130440.q7D4e1VP045751@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 115F3106566B for ; Mon, 13 Aug 2012 04:34: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 E68178FC08 for ; Mon, 13 Aug 2012 04:34: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 q7D4YLSS044226 for ; Mon, 13 Aug 2012 04:34:21 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D4YL50044222; Mon, 13 Aug 2012 04:34:21 GMT (envelope-from nobody) Message-Id: <201208130434.q7D4YL50044222@red.freebsd.org> Date: Mon, 13 Aug 2012 04:34:21 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170587: [maintainer-update] devel/cmake-fedora 1.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: Mon, 13 Aug 2012 04:40:01 -0000 >Number: 170587 >Category: ports >Synopsis: [maintainer-update] devel/cmake-fedora 1.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: Mon Aug 13 04:40:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: >Organization: Sixnology Inc. >Environment: >Description: Update devel/cmake-fedora to 1.0.3, including a patch for date(1) argument. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/devel/cmake-fedora/Makefile b/devel/cmake-fedora/Makefile index 7b1daa9..215932f 100644 --- a/devel/cmake-fedora/Makefile +++ b/devel/cmake-fedora/Makefile @@ -6,7 +6,7 @@ # PORTNAME= cmake-fedora -PORTVERSION= 0.8.1 +PORTVERSION= 1.0.3 CATEGORIES= devel MASTER_SITES= https://fedorahosted.org/releases/c/m/cmake-fedora/ DISTNAME= ${PORTNAME}-${PORTVERSION}-modules-only diff --git a/devel/cmake-fedora/distinfo b/devel/cmake-fedora/distinfo index ea79bfd..e54692e 100644 --- a/devel/cmake-fedora/distinfo +++ b/devel/cmake-fedora/distinfo @@ -1,2 +1,2 @@ -SHA256 (cmake-fedora-0.8.1-modules-only.tar.gz) = 019b1d6727430e305996eb042410be83af9c780bcaf197501b16aca42ee68643 -SIZE (cmake-fedora-0.8.1-modules-only.tar.gz) = 26660 +SHA256 (cmake-fedora-1.0.3-modules-only.tar.gz) = 263e9f93e7fb3112d3837da4ad302b7e877c994120ecdd5e60e585c330bd5473 +SIZE (cmake-fedora-1.0.3-modules-only.tar.gz) = 25290 diff --git a/devel/cmake-fedora/files/patch-DateTimeFormat.cmake b/devel/cmake-fedora/files/patch-DateTimeFormat.cmake new file mode 100644 index 0000000..042c70e --- /dev/null +++ b/devel/cmake-fedora/files/patch-DateTimeFormat.cmake @@ -0,0 +1,11 @@ +--- DateTimeFormat.cmake.orig 2012-08-13 12:04:36.000000000 +0800 ++++ DateTimeFormat.cmake 2012-08-13 12:04:42.000000000 +0800 +@@ -28,7 +28,7 @@ + IF(_locale) + SET(ENV{LC_ALL} ${_locale}) + ENDIF(_locale) +- COMMAND_OUTPUT_TO_VARIABLE(${date_var} date --utc "${format}") ++ COMMAND_OUTPUT_TO_VARIABLE(${date_var} date -u "${format}") + ENDMACRO(TODAY date_var format) + + TODAY(TODAY_CHANGELOG "+%a %b %d %Y" "C") diff --git a/devel/cmake-fedora/pkg-plist b/devel/cmake-fedora/pkg-plist index a280df3..40cf3bb 100644 --- a/devel/cmake-fedora/pkg-plist +++ b/devel/cmake-fedora/pkg-plist @@ -1,20 +1,22 @@ -share/cmake/Modules/CMakeVersion.cmake share/cmake/Modules/DateTimeFormat.cmake +share/cmake/Modules/DateTimeFormat.cmake.orig +share/cmake/Modules/ManageAPIDoc.cmake +share/cmake/Modules/ManageArchive.cmake share/cmake/Modules/ManageEnvironment.cmake -share/cmake/Modules/ManageMaintainerTargets.cmake +share/cmake/Modules/ManageGConf.cmake +share/cmake/Modules/ManageInstall.cmake share/cmake/Modules/ManageMessage.cmake +share/cmake/Modules/ManageRPM.cmake share/cmake/Modules/ManageRelease.cmake -share/cmake/Modules/ManageReleaseOnFedora.cmake +share/cmake/Modules/ManageReleaseFedora.cmake share/cmake/Modules/ManageSourceVersionControl.cmake share/cmake/Modules/ManageString.cmake +share/cmake/Modules/ManageTarget.cmake share/cmake/Modules/ManageTranslation.cmake share/cmake/Modules/ManageUninstall.cmake +share/cmake/Modules/ManageUpload.cmake share/cmake/Modules/ManageVariable.cmake share/cmake/Modules/ManageVersion.cmake -share/cmake/Modules/PackRPM.cmake -share/cmake/Modules/PackSource.cmake -share/cmake/Modules/UseDoxygen.cmake -share/cmake/Modules/UseGConf.cmake share/cmake/Modules/cmake_uninstall.cmake.in @dirrmtry share/cmake/Modules @dirrmtry share/cmake >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 04:50:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 334FB106566C for ; Mon, 13 Aug 2012 04:50:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D7128FC14 for ; Mon, 13 Aug 2012 04:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7D4o5qq046568 for ; Mon, 13 Aug 2012 04:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D4o5At046567; Mon, 13 Aug 2012 04:50:05 GMT (envelope-from gnats) Date: Mon, 13 Aug 2012 04:50:05 GMT Message-Id: <201208130450.q7D4o5At046567@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Waitman Gobble" Cc: Subject: Re: ports/170583: UPDATE PORT: ucommon to 5.5.0, David Sugar said it would be cool. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Waitman Gobble List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 04:50:06 -0000 The following reply was made to PR ports/170583; it has been noted by GNATS. From: "Waitman Gobble" To: bug-followup@FreeBSD.org, uzimac@da3m0n8t3r.com Cc: Subject: Re: ports/170583: UPDATE PORT: ucommon to 5.5.0, David Sugar said it would be cool. Date: Sun, 12 Aug 2012 21:38:45 -0700 (PDT) This is a multi-part message in MIME format. --bound1344832725 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit updated shar file (attached). removed extraneous CVS references in original. -- Waitman Gobble San Jose California USA --bound1344832725 Content-type: text/plain; name="ucommon.shar.txt" Content-Disposition: attachment; filename="ucommon.shar.txt" Content-Transfer-Encoding: base64 IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUgYW55 dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50ZXJpbmcg InNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBmaWxlcyBhbmQg ZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBkZWZhdWx0IHBlcm1p c3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJdWNvbW1vbgojCXVjb21tb24v TWFrZWZpbGUKIwl1Y29tbW9uL2Rpc3RpbmZvCiMJdWNvbW1vbi9maWxlcwojCXVjb21tb24vZmls ZXMvcGF0Y2gtdWNvbW1vbi5wYy5pbgojCXVjb21tb24vcGtnLWRlc2NyCiMJdWNvbW1vbi9wa2ct cGxpc3QKIwplY2hvIGMgLSB1Y29tbW9uCm1rZGlyIC1wIHVjb21tb24gPiAvZGV2L251bGwgMj4m MQplY2hvIHggLSB1Y29tbW9uL01ha2VmaWxlCnNlZCAncy9eWC8vJyA+dWNvbW1vbi9NYWtlZmls ZSA8PCAnMTc1NWNhNjVkYjU2NWMwMTgyYjBkZTI3YjEzZTIzYzgnClgjIE5ldyBwb3J0cyBjb2xs ZWN0aW9uIE1ha2VmaWxlIGZvcjoJdWNvbW1vbgpYIyBEYXRlIGNyZWF0ZWQ6CQkJCTEyIEF1Z3Vz dCAyMDEyClgjIFdob206CQkJCQl3Z29iYmxlClgjClgjICRGcmVlQlNEOiBwb3J0cy9kZXZlbC91 Y29tbW9uL01ha2VmaWxlLHYgMS4xOSAyMDEyLzA4LzEyIDE4OjMyOjA2IGNzIEV4cCAkClgjClgK WFBPUlROQU1FPQl1Y29tbW9uClhQT1JUVkVSU0lPTj0JNS41LjAKWENBVEVHT1JJRVM9CWRldmVs ClhNQVNURVJfU0lURVM9CWh0dHA6Ly93d3cuZ251dGVsZXBob255Lm9yZy9kaXN0L3RhcmJhbGxz LyBodHRwOi8vd3d3LmRhM20wbjh0M3IuY29tL2dudXRlbGVwaG9ueS93d3cuZ251dGVsZXBob255 Lm9yZy9kaXN0L3RhcmJhbGxzLwpYClhNQUlOVEFJTkVSPQl1emltYWNAZGEzbTBuOHQzci5jb20K WENPTU1FTlQ9CUEgdmVyeSBsaWdodHdlaWdodCBDKysgZGVzaWduIHBhdHRlcm5saWJyYXJ5ClgK WExJQ0VOU0U9CUxHUEwzClgKWFVTRV9HTk9NRT0JcGtnY29uZmlnIGdub21laGFjawpYVVNFX0xE Q09ORklHPQl5ZXMKWEdOVV9DT05GSUdVUkU9CXllcwpYQ0ZMQUdTKz0JLURfX0JTRF9WSVNJQkxF ClhMREZMQUdTKz0JJHtQVEhSRUFEX0xJQlN9ClhDT05GSUdVUkVfQVJHUys9LS1iaW5kaXI9JHtQ UkVGSVh9L2Jpbi8ke1BPUlROQU1FfQpYClhNQU4xPQlhcmdzLjEgY2FyLjEgY29tbW9uY3BwLWNv bmZpZy4xIG1kc3VtLjEgcGRldGFjaC4xIFwKWAlzY3J1Yi1maWxlcy4xIHNvY2thZGRyLjEgdWNv bW1vbi1jb25maWcuMSB6ZXJvZmlsbC4xClgKWHBvc3QtcGF0Y2g6ClgJJHtSRUlOUExBQ0VfQ01E fSAtZSAnL0hBVkVfT1BFTlNTTF9GSVBTX0gvcy9kZWZpbmUvdW5kZWYvJyBcClgJICAgJHtXUktT UkN9LyR7Q09ORklHVVJFX1NDUklQVH0KWApYdGVzdDoJYnVpbGQKWAljZCAke1dSS1NSQ30vdGVz dCAmJiAke01BS0V9IGNoZWNrClgKWC5pbmNsdWRlIDxic2QucG9ydC5taz4KMTc1NWNhNjVkYjU2 NWMwMTgyYjBkZTI3YjEzZTIzYzgKZWNobyB4IC0gdWNvbW1vbi9kaXN0aW5mbwpzZWQgJ3MvXlgv LycgPnVjb21tb24vZGlzdGluZm8gPDwgJ2MxM2Y1ZTExMTkzMzU3ZGVkNzBlOGRkMTkzZGUyZmQ3 JwpYU0hBMjU2ICh1Y29tbW9uLTUuNS4wLnRhci5neikgPSBkMmQyY2VkNjc5Y2EyMmQxYTFmM2Q4 ZWY0MDQxMjg2MGJlNzUwZjY3NTU3MmFhYTAzMzU0MzlkMWFhNjk3ZTUwClhTSVpFICh1Y29tbW9u LTUuNS4wLnRhci5neikgPSA4MDA3MzkKYzEzZjVlMTExOTMzNTdkZWQ3MGU4ZGQxOTNkZTJmZDcK ZWNobyBjIC0gdWNvbW1vbi9maWxlcwpta2RpciAtcCB1Y29tbW9uL2ZpbGVzID4gL2Rldi9udWxs IDI+JjEKZWNobyB4IC0gdWNvbW1vbi9maWxlcy9wYXRjaC11Y29tbW9uLnBjLmluCnNlZCAncy9e WC8vJyA+dWNvbW1vbi9maWxlcy9wYXRjaC11Y29tbW9uLnBjLmluIDw8ICc0NGE0MGYxYzdkZWM4 NzQ4ZDQ1NWY2MzFjMzhmODkzOCcKWC0tLSB1Y29tbW9uLnBjLmluLm9yaWcJMjAxMS0wMy0yMSAx MzowMjo1NS4wMDAwMDAwMDAgKzAxMDAKWCsrKyB1Y29tbW9uLnBjLmluCTIwMTEtMDMtMjEgMTM6 MDM6MDUuMDAwMDAwMDAwICswMTAwClhAQCAtNSw1ICs1LDUgQEAKWCBOYW1lOiB1Y29tbW9uClgg RGVzY3JpcHRpb246IEdOVSB1Q29tbW9uIEMrKyBjbGFzcyBmcmFtZXdvcmsKWCBWZXJzaW9uOiBA VkVSU0lPTkAKWC1MaWJzOiAgLWx1c2VjdXJlIC1sdWNvbW1vbiBAU0VDVVJFX0xJQlNAIEBVQ09N TU9OX0xJTktFREAgClgrTGliczogIC1sdXNlY3VyZSAtbHVjb21tb24gLWxwdGhyZWFkIEBTRUNV UkVfTElCU0AgQFVDT01NT05fTElOS0VEQApYIENmbGFnczogQFVDT01NT05fRkxBR1NAIAo0NGE0 MGYxYzdkZWM4NzQ4ZDQ1NWY2MzFjMzhmODkzOAplY2hvIHggLSB1Y29tbW9uL3BrZy1kZXNjcgpz ZWQgJ3MvXlgvLycgPnVjb21tb24vcGtnLWRlc2NyIDw8ICcyNTI5NDI0MjkyNWI5ZmM1ODZhMWQ4 YjJiZDBjYmViNicKWEdOVSB1Q29tbW9uIEMrKyBpcyBtZWFudCBhcyBhIHZlcnkgbGlnaHQtd2Vp Z2h0IEMrKyBsaWJyYXJ5IHRvIGZhY2lsaXRhdGUgdXNpbmcKWEMrKyBkZXNpZ24gcGF0dGVybnMg ZXZlbiBmb3IgdmVyeSBkZWVwbHkgZW1iZWRkZWQgYXBwbGljYXRpb25zLCBzdWNoIGFzIGZvcgpY c3lzdGVtcyB1c2luZyB1Y2xpYmMgYWxvbmcgd2l0aCBwb3NpeCB0aHJlYWRpbmcgc3VwcG9ydC4g Rm9yIHRoaXMgcmVhc29uLCBHTlUKWHVDb21tb24gQysrIGRpc2FibGVzIGxhbmd1YWdlIGZlYXR1 cmVzIHRoYXQgY29uc3VtZSBtZW1vcnkgb3IgaW50cm9kdWNlIHJ1bnRpbWUKWG92ZXJoZWFkLCBz dWNoIGFzIHJ0dGkgYW5kIGV4Y2VwdGlvbiBoYW5kbGluZywgYW5kIGFzc3VtZXMgb25lIHdpbGwg bW9zdGx5IGJlClhsaW5raW5nIGFwcGxpY2F0aW9ucyB3aXRoIG90aGVyIHB1cmUgQyBiYXNlZCBs aWJyYXJpZXMgcmF0aGVyIHRoYW4gdXNpbmcgdGhlClhvdmVyaGVhZCBvZiB0aGUgc3RhbmRhcmQg QysrIGxpYnJhcnkgYW5kIG90aGVyIHNpbWlsYXIgY2xhc3MgZnJhbWV3b3Jrcy4gClgKWFdXVzog aHR0cDovL3d3dy5nbnV0ZWxlcGhvbnkub3JnL2luZGV4LnBocC9HTlVfdUNvbW1vbl9DJTJCJTJC CjI1Mjk0MjQyOTI1YjlmYzU4NmExZDhiMmJkMGNiZWI2CmVjaG8geCAtIHVjb21tb24vcGtnLXBs aXN0CnNlZCAncy9eWC8vJyA+dWNvbW1vbi9wa2ctcGxpc3QgPDwgJzliOTRkNTQ4YzQxNmYxZDJk MDFjYjRkZjg0NmJhYjgxJwpYYmluL3Vjb21tb24vYXJncwpYYmluL3Vjb21tb24vY2FyClhiaW4v dWNvbW1vbi9jb21tb25jcHAtY29uZmlnClhiaW4vdWNvbW1vbi9tZHN1bQpYYmluL3Vjb21tb24v cGRldGFjaApYYmluL3Vjb21tb24vc2NydWItZmlsZXMKWGJpbi91Y29tbW9uL3NvY2thZGRyClhi aW4vdWNvbW1vbi91Y29tbW9uLWNvbmZpZwpYYmluL3Vjb21tb24vemVyb2ZpbGwKWGluY2x1ZGUv Y29tbW9uY3BwL2FkZHJlc3MuaApYaW5jbHVkZS9jb21tb25jcHAvYXBwbG9nLmgKWGluY2x1ZGUv Y29tbW9uY3BwL2NvbW1vbmNwcC5oClhpbmNsdWRlL2NvbW1vbmNwcC9jb25maWcuaApYaW5jbHVk ZS9jb21tb25jcHAvZGNjcC5oClhpbmNsdWRlL2NvbW1vbmNwcC9leGNlcHRpb24uaApYaW5jbHVk ZS9jb21tb25jcHAvZXhwb3J0LmgKWGluY2x1ZGUvY29tbW9uY3BwL2ZpbGUuaApYaW5jbHVkZS9j b21tb25jcHAvbWltZS5oClhpbmNsdWRlL2NvbW1vbmNwcC9udW1iZXJzLmgKWGluY2x1ZGUvY29t bW9uY3BwL29iamVjdC5oClhpbmNsdWRlL2NvbW1vbmNwcC9wb2ludGVyLmgKWGluY2x1ZGUvY29t bW9uY3BwL3Byb2Nlc3MuaApYaW5jbHVkZS9jb21tb25jcHAvc2VyaWFsLmgKWGluY2x1ZGUvY29t bW9uY3BwL3Nsb2cuaApYaW5jbHVkZS9jb21tb25jcHAvc29ja2V0LmgKWGluY2x1ZGUvY29tbW9u Y3BwL3N0cmluZy5oClhpbmNsdWRlL2NvbW1vbmNwcC90Y3AuaApYaW5jbHVkZS9jb21tb25jcHAv dGhyZWFkLmgKWGluY2x1ZGUvY29tbW9uY3BwL3Rva2VuaXplci5oClhpbmNsdWRlL2NvbW1vbmNw cC91ZHAuaApYaW5jbHVkZS91Y29tbW9uL2FjY2Vzcy5oClhpbmNsdWRlL3Vjb21tb24vYXRvbWlj LmgKWGluY2x1ZGUvdWNvbW1vbi9iaXRtYXAuaApYaW5jbHVkZS91Y29tbW9uL2J1ZmZlci5oClhp bmNsdWRlL3Vjb21tb24vY29udGFpbmVycy5oClhpbmNsdWRlL3Vjb21tb24vY291bnRlci5oClhp bmNsdWRlL3Vjb21tb24vY3ByLmgKWGluY2x1ZGUvdWNvbW1vbi9kYXRldGltZS5oClhpbmNsdWRl L3Vjb21tb24vZXhwb3J0LmgKWGluY2x1ZGUvdWNvbW1vbi9mc3lzLmgKWGluY2x1ZGUvdWNvbW1v bi9nZW5lcmljcy5oClhpbmNsdWRlL3Vjb21tb24va2V5ZGF0YS5oClhpbmNsdWRlL3Vjb21tb24v bGlua2VkLmgKWGluY2x1ZGUvdWNvbW1vbi9tYXBwZWQuaApYaW5jbHVkZS91Y29tbW9uL21lbW9y eS5oClhpbmNsdWRlL3Vjb21tb24vbnVtYmVycy5oClhpbmNsdWRlL3Vjb21tb24vb2JqZWN0LmgK WGluY2x1ZGUvdWNvbW1vbi9wZXJzaXN0LmgKWGluY2x1ZGUvdWNvbW1vbi9wbGF0Zm9ybS5oClhp bmNsdWRlL3Vjb21tb24vcHJvdG9jb2xzLmgKWGluY2x1ZGUvdWNvbW1vbi9zZWN1cmUuaApYaW5j bHVkZS91Y29tbW9uL3NoZWxsLmgKWGluY2x1ZGUvdWNvbW1vbi9zb2NrZXQuaApYaW5jbHVkZS91 Y29tbW9uL3N0bC5oClhpbmNsdWRlL3Vjb21tb24vc3RyZWFtLmgKWGluY2x1ZGUvdWNvbW1vbi9z dHJpbmcuaApYaW5jbHVkZS91Y29tbW9uL3RocmVhZC5oClhpbmNsdWRlL3Vjb21tb24vdGltZXJz LmgKWGluY2x1ZGUvdWNvbW1vbi91Y29tbW9uLmgKWGluY2x1ZGUvdWNvbW1vbi91bmljb2RlLmgK WGluY2x1ZGUvdWNvbW1vbi92ZWN0b3IuaApYaW5jbHVkZS91Y29tbW9uL3htbC5oClhsaWIvbGli Y29tbW9uY3BwLmEKWGxpYi9saWJjb21tb25jcHAubGEKWGxpYi9saWJjb21tb25jcHAuc28KWGxp Yi9saWJjb21tb25jcHAuc28uNQpYbGliL2xpYnVjb21tb24uYQpYbGliL2xpYnVjb21tb24ubGEK WGxpYi9saWJ1Y29tbW9uLnNvClhsaWIvbGlidWNvbW1vbi5zby41ClhsaWIvbGlidXNlY3VyZS5h ClhsaWIvbGlidXNlY3VyZS5sYQpYbGliL2xpYnVzZWN1cmUuc28KWGxpYi9saWJ1c2VjdXJlLnNv LjUKWGxpYmRhdGEvcGtnY29uZmlnL2NvbW1vbmNwcC5wYwpYbGliZGF0YS9wa2djb25maWcvdWNv bW1vbi5wYwpYQGRpcnJtIGluY2x1ZGUvdWNvbW1vbgpYQGRpcnJtIGluY2x1ZGUvY29tbW9uY3Bw ClhAZGlycm0gYmluL3Vjb21tb24KOWI5NGQ1NDhjNDE2ZjFkMmQwMWNiNGRmODQ2YmFiODEKZXhp dAoK --bound1344832725-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 481E9106566C for ; Mon, 13 Aug 2012 05:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32E5C8FC08 for ; Mon, 13 Aug 2012 05:10: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 q7D5A2sS047629 for ; Mon, 13 Aug 2012 05:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5A2cc047628; Mon, 13 Aug 2012 05:10:02 GMT (envelope-from gnats) Date: Mon, 13 Aug 2012 05:10:02 GMT Message-Id: <201208130510.q7D5A2cc047628@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Thomas Sander Cc: Subject: Re: ports/170532: update devel/kdbg from 2.2.0 to 2.5.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas Sander List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 05:10:03 -0000 The following reply was made to PR ports/170532; it has been noted by GNATS. From: Thomas Sander To: bug-followup@freebsd.org Cc: Subject: Re: ports/170532: update devel/kdbg from 2.2.0 to 2.5.1 Date: Mon, 13 Aug 2012 07:06:22 +0200 --f46d04463224a9adfd04c71ea7a5 Content-Type: text/plain; charset=ISO-8859-1 I approve the patch. Thanks. 2012/8/12 Edwin Groothuis > approve --f46d04463224a9adfd04c71ea7a5 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I=A0 approve=A0the patch.

T= hanks.


2012/8/12 Edwin Gr= oothuis <edwin@freebsd.org>
approve

--f46d04463224a9adfd04c71ea7a5-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:12:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 31E8D106566B; Mon, 13 Aug 2012 05:12:34 +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 04E018FC08; Mon, 13 Aug 2012 05:12: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 q7D5CXSs047755; Mon, 13 Aug 2012 05:12:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5CXs6047751; Mon, 13 Aug 2012 05:12:33 GMT (envelope-from linimon) Date: Mon, 13 Aug 2012 05:12:33 GMT Message-Id: <201208130512.q7D5CXs6047751@freefall.freebsd.org> To: thomas.sander@gmx.de, itechbear@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170532: update devel/kdbg from 2.2.0 to 2.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: Mon, 13 Aug 2012 05:12:34 -0000 Synopsis: update devel/kdbg from 2.2.0 to 2.5.1 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Mon Aug 13 05:12:27 UTC 2012 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=170532 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:37:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D9AA1065691; Mon, 13 Aug 2012 05:37:12 +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 F37408FC1B; Mon, 13 Aug 2012 05:37: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 q7D5bB0F052949; Mon, 13 Aug 2012 05:37:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5bBus052944; Mon, 13 Aug 2012 05:37:11 GMT (envelope-from linimon) Date: Mon, 13 Aug 2012 05:37:11 GMT Message-Id: <201208130537.q7D5bBus052944@freefall.freebsd.org> To: hselasky@c2i.net, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170511: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 05:37:12 -0000 Synopsis: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Aug 13 05:36:37 UTC 2012 State-Changed-Why: Misfiled followup to ports/170508; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 13 05:36:37 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=170511 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:37:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C52B106567C; Mon, 13 Aug 2012 05:37:53 +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 E3A5D8FC14; Mon, 13 Aug 2012 05:37: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 q7D5bq8N053026; Mon, 13 Aug 2012 05:37:52 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5bqSt053022; Mon, 13 Aug 2012 05:37:52 GMT (envelope-from linimon) Date: Mon, 13 Aug 2012 05:37:52 GMT Message-Id: <201208130537.q7D5bqSt053022@freefall.freebsd.org> To: bsdkaffee@gmail.com, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170512: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 05:37:53 -0000 Synopsis: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Aug 13 05:37:13 UTC 2012 State-Changed-Why: Misfiled followup to ports/170508; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 13 05:37:13 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=170512 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:38:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C1E001065672; Mon, 13 Aug 2012 05:38:26 +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 950228FC1B; Mon, 13 Aug 2012 05:38: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 q7D5cQ6o053075; Mon, 13 Aug 2012 05:38:26 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5cQ70053071; Mon, 13 Aug 2012 05:38:26 GMT (envelope-from linimon) Date: Mon, 13 Aug 2012 05:38:26 GMT Message-Id: <201208130538.q7D5cQ70053071@freefall.freebsd.org> To: hselasky@c2i.net, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170516: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 05:38:26 -0000 Synopsis: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Aug 13 05:37:54 UTC 2012 State-Changed-Why: Misfiled followup to ports/170508; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 13 05:37:54 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=170516 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:39:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BF1F1065672; Mon, 13 Aug 2012 05:39:11 +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 3E1FA8FC0A; Mon, 13 Aug 2012 05:39: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 q7D5dB7J053132; Mon, 13 Aug 2012 05:39:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5dBXM053128; Mon, 13 Aug 2012 05:39:11 GMT (envelope-from linimon) Date: Mon, 13 Aug 2012 05:39:11 GMT Message-Id: <201208130539.q7D5dBXM053128@freefall.freebsd.org> To: bsdkaffee@gmail.com, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170518: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 05:39:11 -0000 Synopsis: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Aug 13 05:38:28 UTC 2012 State-Changed-Why: Misfiled followup to ports/170508; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 13 05:38:28 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=170518 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:39:57 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E98F1065672; Mon, 13 Aug 2012 05:39:57 +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 70B578FC08; Mon, 13 Aug 2012 05:39: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 q7D5dvAf053187; Mon, 13 Aug 2012 05:39:57 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5dvBE053183; Mon, 13 Aug 2012 05:39:57 GMT (envelope-from linimon) Date: Mon, 13 Aug 2012 05:39:57 GMT Message-Id: <201208130539.q7D5dvBE053183@freefall.freebsd.org> To: hselasky@c2i.net, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170527: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 05:39:57 -0000 Synopsis: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Aug 13 05:39:12 UTC 2012 State-Changed-Why: Misfiled followup to ports/170508; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 13 05:39:12 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=170527 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:40:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58B6E1065672 for ; Mon, 13 Aug 2012 05:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 322148FC0C for ; Mon, 13 Aug 2012 05:40: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 q7D5e11h053223 for ; Mon, 13 Aug 2012 05:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5e1h5053222; Mon, 13 Aug 2012 05:40:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 05:40:01 GMT Resent-Message-Id: <201208130540.q7D5e1h5053222@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 Linimon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7EDE61065765 for ; Mon, 13 Aug 2012 05:35:08 +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 69F348FC0C; Mon, 13 Aug 2012 05:35: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 q7D5Z8EH052585; Mon, 13 Aug 2012 05:35:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5Z8M5052583; Mon, 13 Aug 2012 05:35:08 GMT (envelope-from linimon) Message-Id: <201208130535.q7D5Z8M5052583@freefall.freebsd.org> Date: Mon, 13 Aug 2012 05:35:08 GMT From: Mark Linimon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: wemm@FreeBSD.org Subject: ports/170588: update net/nss-pam-ldapd to 0.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 05:40:01 -0000 >Number: 170588 >Category: ports >Synopsis: update net/nss-pam-ldapd to 0.8.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 05:40:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mark Linimon >Release: FreeBSD 9.0-STABLE i386 >Organization: FreeBSD >Environment: System: FreeBSD freefall.freebsd.org 9.0-STABLE FreeBSD 9.0-STABLE #6 r235139: Tue May 8 21:19:03 UTC 2012 simon@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: Update to 0.8.10. (note: I have not yet tested this update, sorry) diff of NEWS: +changes from 0.8.9 to 0.8.10 +---------------------------- + +* documentation improvements +* fix a problem that causes the PAM module to prompt for a new password + even though the old one was wrong +* log successful password change in nslcd +* install default configuration file with reduced permissions (further + protection for CVE-2009-1073) >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/FreeBSD/pcvs/ports/net/nss-pam-ldapd/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 30 May 2012 15:33:09 -0000 1.14 +++ Makefile 13 Aug 2012 05:26:51 -0000 @@ -8,7 +8,7 @@ # PORTNAME= nss-pam-ldapd -PORTVERSION= 0.8.9 +PORTVERSION= 0.8.10 CATEGORIES= net MASTER_SITES= http://arthurdejong.org/nss-pam-ldapd/ Index: distinfo =================================================================== RCS file: /home/FreeBSD/pcvs/ports/net/nss-pam-ldapd/distinfo,v retrieving revision 1.7 diff -u -r1.7 distinfo --- distinfo 30 May 2012 15:33:09 -0000 1.7 +++ distinfo 13 Aug 2012 05:27:05 -0000 @@ -1,2 +1,2 @@ -SHA256 (nss-pam-ldapd-0.8.9.tar.gz) = 722a010718c0a5073207d05f1f091e679aa32f2643a3c173dc6f916c2bfcc0d2 -SIZE (nss-pam-ldapd-0.8.9.tar.gz) = 475138 +SHA256 (nss-pam-ldapd-0.8.10.tar.gz) = 673a5e235a40fd9aac74082bc64d2ac2280fc155fb00b21092650d2c963e79cc +SIZE (nss-pam-ldapd-0.8.10.tar.gz) = 475884 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:40:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48D9F106566C; Mon, 13 Aug 2012 05:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1BD048FC0C; Mon, 13 Aug 2012 05: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 q7D5eAKY053352; Mon, 13 Aug 2012 05:40:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5eAN2053348; Mon, 13 Aug 2012 05:40:10 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 05:40:10 GMT Message-Id: <201208130540.q7D5eAN2053348@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, linimon@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170588: update net/nss-pam-ldapd to 0.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: Mon, 13 Aug 2012 05:40:11 -0000 Synopsis: update net/nss-pam-ldapd to 0.8.10 Responsible-Changed-From-To: freebsd-ports-bugs->linimon Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 05:40:10 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170588 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:40:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FDBA1065675; Mon, 13 Aug 2012 05:40:29 +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 E77438FC0A; Mon, 13 Aug 2012 05:40: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 q7D5eS5a053518; Mon, 13 Aug 2012 05:40:28 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5eSTo053514; Mon, 13 Aug 2012 05:40:28 GMT (envelope-from linimon) Date: Mon, 13 Aug 2012 05:40:28 GMT Message-Id: <201208130540.q7D5eSTo053514@freefall.freebsd.org> To: bsdkaffee@gmail.com, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170528: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 05:40:29 -0000 Synopsis: Re: [PATCH] multimedia/libv4l: Don't link to -lpthread State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Aug 13 05:39:59 UTC 2012 State-Changed-Why: Misfiled followup to ports/170508; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 13 05:39:59 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=170528 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:50:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 005671065675 for ; Mon, 13 Aug 2012 05: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 CBAC68FC18 for ; Mon, 13 Aug 2012 05:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7D5o6K9054641 for ; Mon, 13 Aug 2012 05: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 q7D5o6px054640; Mon, 13 Aug 2012 05:50:06 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 05:50:06 GMT Resent-Message-Id: <201208130550.q7D5o6px054640@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, Takuya Harada Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17C79106564A for ; Mon, 13 Aug 2012 05:48: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 016498FC08 for ; Mon, 13 Aug 2012 05:48: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 q7D5mAL9054140 for ; Mon, 13 Aug 2012 05:48:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5mAiK054139; Mon, 13 Aug 2012 05:48:10 GMT (envelope-from gnats) Message-Id: <201208130548.q7D5mAiK054139@freefall.freebsd.org> Date: Mon, 13 Aug 2012 05:48:10 GMT From: Takuya Harada To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170589: java/openjdk7 build failed with segmentation fault(core dumped) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 05:50:07 -0000 >Number: 170589 >Category: ports >Synopsis: java/openjdk7 build failed with segmentation fault(core dumped) >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 Aug 13 05:50:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Takuya Harada >Release: 10.0-current >Organization: Ohu University >Environment: FreeBSD amd64machine.noway.com 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 4 18:57:36 JST 2012 root@amd64machine.noway.com/usr/obj/usr/src/sys/GENERIC amd64 >Description: Script started on Wed Aug 8 06:50:15 2012 command: portmaster java/openjdk7 ]0;portmaster: openjdk-7.4.22_2 ===>>> Currently installed version: openjdk-7.4.22_2 ===>>> Port directory: /usr/ports/java/openjdk7 ===>>> Launching 'make checksum' for java/openjdk7 in background ===>>> Gathering dependency list for java/openjdk7 from ports ===>>> Initial dependency check complete for java/openjdk7 ]0;portmaster: openjdk-7.4.22_2 ===>>> Starting build for java/openjdk7 <<<=== ===>>> All dependencies are up to date ===> Cleaning for openjdk-7.5.06 ===> License GPLv2 accepted by the user ===> Found saved configuration for openjdk-7.4.22_1 ===> Extracting for openjdk-7.5.06 => SHA256 Checksum OK for openjdk-7u4-fcs-src-b22-02_may_2012.zip. => SHA256 Checksum OK for jaxp145_01.zip. => SHA256 Checksum OK for jdk7-jaxws2_2_4-b04-2011_06_01.zip. => SHA256 Checksum OK for jdk7-jaf-2010_08_19.zip. => SHA256 Checksum OK for apache-ant-1.8.3-bin.zip. ===> openjdk-7.5.06 depends on file: /usr/local/bin/unzip - found ===> Patching for openjdk-7.5.06 ===> Applying FreeBSD patches for openjdk-7.5.06 ===> openjdk-7.5.06 depends on executable: zip - found ===> openjdk-7.5.06 depends on executable: unzip - found ===> openjdk-7.5.06 depends on file: /usr/local/include/cups/cups.h - found ===> openjdk-7.5.06 depends on executable: gmake - found ===> openjdk-7.5.06 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> openjdk-7.5.06 depends on file: /usr/local/libdata/pkgconfig/xext.pc - found ===> openjdk-7.5.06 depends on file: /usr/local/libdata/pkgconfig/xi.pc - found ===> openjdk-7.5.06 depends on file: /usr/local/libdata/pkgconfig/xrender.pc - found ===> openjdk-7.5.06 depends on file: /usr/local/libdata/pkgconfig/xt.pc - found ===> openjdk-7.5.06 depends on file: /usr/local/libdata/pkgconfig/xtst.pc - found ===> openjdk-7.5.06 depends on shared library: freetype.9 - found ===> openjdk-7.5.06 depends on shared library: asound.2 - found ===> openjdk-7.5.06 depends on shared library: iconv.3 - found ===> Configuring for openjdk-7.5.06 ===> Building for openjdk-7.5.06 ( cd ./jdk/make && \ gmake sanity HOTSPOT_IMPORT_CHECK=false JDK_TOPDIR=/usr/ports/java/openjdk7/work/openjdk/jdk JDK_MAKE_SHARED_DIR=/usr/ports/java/openjdk7/work/openjdk/jdk/make/common/shared EXTERNALSANITYCONTROL=true SOURCE_LANGUAGE_VERSION=7 TARGET_CLASS_VERSION=7 MILESTONE=fcs BUILD_NUMBER=b06 JDK_BUILD_NUMBER=b06 FULL_VERSION=1.7.0_05-b06 PREVIOUS_JDK_VERSION=1.6. JDK_VERSION=1.7.0_05 JDK_MKTG_VERSION=7 JDK_MAJOR_VERSION=1 JDK_MINOR_VERSION=7 JDK_MICRO_VERSION=0_05 PREVIOUS_MAJOR_VERSION=1 PREVIOUS_MINOR_VERSION=6 PREVIOUS_MICRO_VERSION= ARCH_DATA_MODEL=64 COOKED_BUILD_NUMBER=6 ANT_HOME="/usr/ports/java/openjdk7/work/apache-ant-1.8.3" ALT_OUTPUTDIR=/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64 ALT_LANGTOOLS_DIST=/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/langtools/dist ALT_CORBA_DIST=/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/corba/dist ALT_JAXP_DIST=/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/jaxp/dist ALT_JAXWS_DIST=/usr/ports/java/openjdk7/work/openjdk /build/bsd-amd64/jaxws/dist ALT_HOTSPOT_IMPORT_PATH=/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/hotspot/import BUILD_HOTSPOT=true ; ) gmake[1]: Entering directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make' gmake[1]: Leaving directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make' Build Machine Information: build machine = mt7900.develop.localnet Build Directory Structure: CWD = /usr/ports/java/openjdk7/work/openjdk TOPDIR = . LANGTOOLS_TOPDIR = ./langtools JAXP_TOPDIR = ./jaxp JAXWS_TOPDIR = ./jaxws CORBA_TOPDIR = ./corba HOTSPOT_TOPDIR = ./hotspot JDK_TOPDIR = ./jdk Build Directives: BUILD_LANGTOOLS = true BUILD_JAXP = true BUILD_JAXWS = true BUILD_CORBA = true BUILD_HOTSPOT = true BUILD_JDK = true DEBUG_CLASSFILES = DEBUG_BINARIES = [25044 lines deleted by bugmeister] gmake[4]: Leaving directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make/java/redist' gmake[4]: Entering directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make/java/verify' /bin/mkdir -p /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/bin /bin/mkdir -p /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/ext Building lib:/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so Begin parallel compiles: /usr/ports/java/openjdk7/work/openjdk/jdk/make/java/verify gmake[5]: Entering directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make/java/verify' /usr/bin/gcc -O3 -fno-strict-aliasing -fPIC -W -Wall -Wno-unused -Wno-parentheses -pipe -m64 -fno-omit-frame-pointer -D_LITTLE_ENDIAN -DNDEBUG -DARCH='"amd64"' -Damd64 -D_ALLBSD_SOURCE -DRELEASE='"1.7.0_05"' -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT -D_LP64=1 -I. -I/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/tmp/java/verify/CClassHeaders -I../../../src/solaris/javavm/export -I../../../src/share/javavm/export -c -o /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/tmp/java/verify/obj64/check_code.o ../../../src/share/native/common/check_code.c /usr/bin/gcc -O3 -fno-strict-aliasing -fPIC -W -Wall -Wno-unused -Wno-parentheses -pipe -m64 -fno-omit-frame-pointer -D_LITTLE_ENDIAN -DNDEBUG -DARCH='"amd64"' -Damd64 -D_ALLBSD_SOURCE -DRELEASE='"1.7.0_05"' -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT -D_LP64=1 -I. -I/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/tmp/java/verify/CClassHeaders -I../../../src/solaris/javavm/export -I../../../src/share/javavm/export -c -o /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/tmp/java/verify/obj64/check_format.o ../../../src/share/native/common/check_format.c ./../../src/share/native/common/check_code.c: In function 'check_and_push': ./../../src/share/native/common/check_code.c:4061: warning: passing argument 1 of 'free_block' discards qualifiers from pointer target type gmake[5]: Leaving directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make/java/verify' Done with parallel compiles: /usr/ports/java/openjdk7/work/openjdk/jdk/make/java/verify STATS: LIBRARY=verify, PRODUCT=java, OPTIMIZATION_LEVEL=HIGHER Rebuilding /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so because of /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/tmp/java/verify/obj64/.files_compiled mapfile-vers /usr/bin/gcc -O3 -fno-strict-aliasing -fPIC -W -Wall -Wno-unused -Wno-parentheses -pipe -m64 -fno-omit-frame-pointer -D_LITTLE_ENDIAN -DNDEBUG -DARCH='"amd64"' -Damd64 -D_ALLBSD_SOURCE -DRELEASE='"1.7.0_05"' -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT -D_LP64=1 -I. -I/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/tmp/java/verify/CClassHeaders -I../../../src/solaris/javavm/export -I../../../src/share/javavm/export -Xlinker -O1 -m64 -Xlinker -z -Xlinker origin -Xlinker -rpath -Xlinker \$ORIGIN -L/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64 -Wl,-soname=libverify.so -shared -o /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/tmp/java/verify/obj64/check_code.o /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/tmp/java/verify/obj64/check_format.o -Xlinker -rpath -Xlinker /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/server -L/usr/ports /java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/server -ljvm Checking for mapfile use in: /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so WARNING: File was not built with a mapfile: /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so Library loads for: /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so: libjvm.so => /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/server/libjvm.so (0x80160f000) libc.so.7 => /lib/libc.so.7 (0x80081c000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x80233f000) libm.so.5 => /lib/libm.so.5 (0x802640000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x802861000) libthr.so.3 => /lib/libthr.so.3 (0x802a6e000) RUNPATH for: /usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so Segmentation fault (core dumped) gmake[4]: *** [/usr/ports/java/openjdk7/work/openjdk/build/bsd-amd64/lib/amd64/libverify.so] Error 1 gmake[4]: Leaving directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make/java/verify' gmake[3]: *** [all] Error 1 gmake[3]: Leaving directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make/java' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/openjdk7/work/openjdk/jdk/make' gmake[1]: *** [jdk-build] Error 2 gmake[1]: Leaving directory `/usr/ports/java/openjdk7/work/openjdk' gmake: *** [build_product_image] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/java/openjdk7. ===>>> make failed for java/openjdk7 ===>>> Aborting update Terminated ===>>> You can restart from the point of failure with this command line: portmaster java/openjdk7 Script done on Wed Aug 8 07:01:52 2012 >How-To-Repeat: portmaster java/openjdk7 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 05:50:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39D68106566B; Mon, 13 Aug 2012 05: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 AD39F8FC18; Mon, 13 Aug 2012 05:50: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 q7D5oInL054741; Mon, 13 Aug 2012 05:50:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D5oI6m054737; Mon, 13 Aug 2012 05:50:18 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 05:50:18 GMT Message-Id: <201208130550.q7D5oI6m054737@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glewis@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170589: java/openjdk7 build failed with segmentation fault(core dumped) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 05:50:19 -0000 Synopsis: java/openjdk7 build failed with segmentation fault(core dumped) Responsible-Changed-From-To: freebsd-ports-bugs->glewis Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 05:50:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170589 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 07:20:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 275321065673 for ; Mon, 13 Aug 2012 07:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F28618FC14 for ; Mon, 13 Aug 2012 07:20: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 q7D7K1l9068658 for ; Mon, 13 Aug 2012 07:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D7K1b1068657; Mon, 13 Aug 2012 07:20:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 07:20:01 GMT Resent-Message-Id: <201208130720.q7D7K1b1068657@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, Emanuel Haupt Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D36E31065673 for ; Mon, 13 Aug 2012 07:11:17 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BD9E08FC08 for ; Mon, 13 Aug 2012 07:11: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 q7D7BHui066678 for ; Mon, 13 Aug 2012 07:11:17 GMT (envelope-from ehaupt@freefall.freebsd.org) Received: (from ehaupt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D7BHNo066677; Mon, 13 Aug 2012 09:11:17 +0200 (CEST) (envelope-from ehaupt) Message-Id: <201208130711.q7D7BHNo066677@freefall.freebsd.org> Date: Mon, 13 Aug 2012 09:11:17 +0200 (CEST) From: Emanuel Haupt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170590: update: sysutils/synergy-devel update to 1.4.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Emanuel Haupt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 07:20:02 -0000 >Number: 170590 >Category: ports >Synopsis: update: sysutils/synergy-devel update to 1.4.10 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 07:20:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Emanuel Haupt >Release: FreeBSD 9.0-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 9.0-STABLE FreeBSD 9.0-STABLE #6 r235139: Tue May 8 21:19:03 UTC 2012 simon@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: - Update sysutils/synergy-devel to 1.4.10 (latest beta release) - While here, replace some single whitespaces with a tab >From the Changelog: 1.4.10 ====== Bug #2799 - Right shift broken (Windows server, Mac OS X client) Bug #3302 - GUI does not show/hide when tray icon is double clicked (Windows) Bug #3303 - Mac OS X IPC integ test fails intermittently Feature #2974 - Gesture Support for Magic Mouse/Trackpad Feature #3172 - Button to stop Synergy when in service mode Feature #3241 - Option to elevate synergyc/s when in service mode Feature #3242 - Show a list of available IP addresses and screen name on the main screen Feature #3296 - 64-bit Windows installer should display helpful message on 32-bit Windows Feature #3300 - Make service mode default mode (now that we have elevate option) Feature #3301 - Add process mode option to settings (remove startup wizard page) Feature #3306 - Gatekeeper compatibility on Mac OS X 10.8 1.4.9 ===== Bug #3159 - In service mode, server doesn't start unless GUI is running Bug #3214 - Client sometimes can't connect if GUI is closed Bug #56 - Mac OS X server not sending keystrokes to client Bug #3161 - First time GUI appears, service doesn't send logging Bug #3164 - In service mode, you need to add a firewall exception Bug #3166 - Service shutdown stalls when GUI is closed Bug #3216 - Fatal error if plugins folder doesn't exist Bug #3221 - ERROR: could not connect to service, error: 2 Feature #3192 - Add support for JOYINFOEX structure to poll game device info Feature #3202 - Plugin support (sending for primary screen events on Windows only) Feature #3155 - Cross-platform TCP IPC between GUI and service Task #3177 - Fix Mac buildslave to build multiple versions Task #3193 - Add Micro Synergy to repository Task #3275 - Change hostname label to "IP address or hostname" Task #3276 - Installation recovery mechanism for synrgyhk.dll 1.4.8 ===== Bug #143: Cursor on Mac OS X goes to center when inactive Bug #146: Screen Resize causes problems with moving off right-hand side of screen Bug #3058: Modifier keys not working on Mac OS X server Bug #3139: Double click too strict (click, move, click should not count) Bug #3195: Service install can fail first time Bug #3196: Wizard buttons not visible Bug #3197: GUI doesn't take focus after install Bug #3202: Hook DLL (synrgyhk.dll) is not released Feature #3143: Setup wizard for first time users Feature #3145: Check for updates Feature #3174: Startup mode wizard page Feature #3184: New service for process management >How-To-Repeat: >Fix: --- synergy-devel.patch begins here --- Index: distinfo =================================================================== --- distinfo (revision 302458) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (synergy-1.4.7-Source.tar.gz) = e224d2ab822dc7b6e90a87587ed7d9e32f27d05efebc8430ecf61b3610baea3b -SIZE (synergy-1.4.7-Source.tar.gz) = 2998229 +SHA256 (synergy-1.4.10-Source.tar.gz) = 06d5a2ceb4cf8808cdab22441897c7b54ec8b4bc8351ac116f9accf54c720fbe +SIZE (synergy-1.4.10-Source.tar.gz) = 3598533 Index: Makefile =================================================================== --- Makefile (revision 302458) +++ Makefile (working copy) @@ -6,11 +6,11 @@ # PORTNAME= synergy -PORTVERSION= 1.4.7 +PORTVERSION= 1.4.10 DISTVERSIONSUFFIX= -Source CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE -PKGNAMESUFFIX= -devel +PKGNAMESUFFIX= -devel MAINTAINER= gnn@FreeBSD.org COMMENT= Mouse and keyboard sharing utility --- synergy-devel.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 07:20:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 959A31065678; Mon, 13 Aug 2012 07: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 2D4718FC16; Mon, 13 Aug 2012 07: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 q7D7KF7P068810; Mon, 13 Aug 2012 07: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 q7D7KFtG068806; Mon, 13 Aug 2012 07:20:15 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 07:20:15 GMT Message-Id: <201208130720.q7D7KFtG068806@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnn@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170590: update: sysutils/synergy-devel update to 1.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, 13 Aug 2012 07:20:15 -0000 Synopsis: update: sysutils/synergy-devel update to 1.4.10 Responsible-Changed-From-To: freebsd-ports-bugs->gnn Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 07:20:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170590 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 07:29:48 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 15FD91065672; Mon, 13 Aug 2012 07:29:48 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DDBCB8FC0A; Mon, 13 Aug 2012 07:29: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 q7D7Tle6070914; Mon, 13 Aug 2012 07:29:47 GMT (envelope-from gahr@freefall.freebsd.org) Received: (from gahr@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D7TlGI070910; Mon, 13 Aug 2012 07:29:47 GMT (envelope-from gahr) Date: Mon, 13 Aug 2012 07:29:47 GMT Message-Id: <201208130729.q7D7TlGI070910@freefall.freebsd.org> To: gahr@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: gahr@FreeBSD.org Cc: Subject: Re: ports/170583: UPDATE PORT: ucommon to 5.5.0, David Sugar said it would be cool. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 07:29:48 -0000 Synopsis: UPDATE PORT: ucommon to 5.5.0, David Sugar said it would be cool. Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: gahr Responsible-Changed-When: Mon Aug 13 07:29:47 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170583 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 08:10:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29401106566B for ; Mon, 13 Aug 2012 08:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DBD198FC0C for ; Mon, 13 Aug 2012 08:10: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 q7D8A1H1080953 for ; Mon, 13 Aug 2012 08:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D8A1A2080950; Mon, 13 Aug 2012 08:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 08:10:01 GMT Resent-Message-Id: <201208130810.q7D8A1A2080950@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, Bo-Yi Wu Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E55C106566C for ; Mon, 13 Aug 2012 08:06:16 +0000 (UTC) (envelope-from appleboy@freebsd.ee.ccu.edu.tw) Received: from freebsd.ee.ccu.edu.tw (freebsd.ee.ccu.edu.tw [140.123.107.202]) by mx1.freebsd.org (Postfix) with ESMTP id F39228FC08 for ; Mon, 13 Aug 2012 08:06:15 +0000 (UTC) Received: from freebsd.ee.ccu.edu.tw (localhost [127.0.0.1]) by freebsd.ee.ccu.edu.tw (8.14.3/8.14.3) with ESMTP id q7D7xGET021258; Mon, 13 Aug 2012 15:59:16 +0800 (CST) (envelope-from appleboy@freebsd.ee.ccu.edu.tw) Received: (from root@localhost) by freebsd.ee.ccu.edu.tw (8.14.3/8.14.3/Submit) id q7D7xGX1021257; Mon, 13 Aug 2012 15:59:16 +0800 (CST) (envelope-from appleboy) Message-Id: <201208130759.q7D7xGX1021257@freebsd.ee.ccu.edu.tw> Date: Mon, 13 Aug 2012 15:59:16 +0800 (CST) From: Bo-Yi Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Bo-Yi Wu Subject: ports/170591: [MAINTAINER] www/codeigniter: update to 2.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: Mon, 13 Aug 2012 08:10:02 -0000 >Number: 170591 >Category: ports >Synopsis: [MAINTAINER] www/codeigniter: update to 2.1.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: Mon Aug 13 08:10:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Bo-Yi Wu >Release: FreeBSD 7.1-RELEASE-p13 i386 >Organization: >Environment: System: FreeBSD freebsd.ee.ccu.edu.tw 7.1-RELEASE-p13 FreeBSD 7.1-RELEASE-p13 #0: Mon Jul 12 17:44:51 UTC 2010 >Description: - Update to 2.1.2 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- codeigniter-2.1.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/codeigniter/Makefile /root/codeigniter/Makefile --- /usr/ports/www/codeigniter/Makefile 2012-06-16 05:13:27.000000000 +0800 +++ /root/codeigniter/Makefile 2012-08-13 15:54:55.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= codeigniter -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 CATEGORIES= www MASTER_SITES= http://downloads.codeigniter.com/reactor/ \ http://www.codeigniter.org.tw/download_files/ diff -ruN --exclude=CVS /usr/ports/www/codeigniter/distinfo /root/codeigniter/distinfo --- /usr/ports/www/codeigniter/distinfo 2012-06-16 05:13:27.000000000 +0800 +++ /root/codeigniter/distinfo 2012-08-13 15:55:17.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (CodeIgniter_2.1.1.zip) = ae57494d7659837cc4aa33f7532d6c8373a984acc9c087f69fc96724f582a789 -SIZE (CodeIgniter_2.1.1.zip) = 2318153 +SHA256 (CodeIgniter_2.1.2.zip) = 775ffeb9f8faf6faa9a987d68a9432c0ff478afe85cac9a63cf0d5f51d91d657 +SIZE (CodeIgniter_2.1.2.zip) = 2319509 --- codeigniter-2.1.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 08:50:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81A0A106566B for ; Mon, 13 Aug 2012 08:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4100C8FC15 for ; Mon, 13 Aug 2012 08:50: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 q7D8o2E0089035 for ; Mon, 13 Aug 2012 08:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D8o2sd089034; Mon, 13 Aug 2012 08:50:02 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 08:50:02 GMT Resent-Message-Id: <201208130850.q7D8o2sd089034@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, Eugene Grosbein Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E2DF106566C; Mon, 13 Aug 2012 08:44:40 +0000 (UTC) (envelope-from eugen@eg.sd.rdtc.ru) Received: from eg.sd.rdtc.ru (eg.sd.rdtc.ru [IPv6:2a03:3100:c:13::5]) by mx1.freebsd.org (Postfix) with ESMTP id 88C598FC0A; Mon, 13 Aug 2012 08:44:38 +0000 (UTC) Received: from eg.sd.rdtc.ru (localhost [127.0.0.1]) by eg.sd.rdtc.ru (8.14.5/8.14.5) with ESMTP id q7D8iarn006372; Mon, 13 Aug 2012 15:44:36 +0700 (NOVT) (envelope-from eugen@eg.sd.rdtc.ru) Received: (from eugen@localhost) by eg.sd.rdtc.ru (8.14.5/8.14.5/Submit) id q7D8ia3N006371; Mon, 13 Aug 2012 15:44:36 +0700 (NOVT) (envelope-from eugen) Message-Id: <201208130844.q7D8ia3N006371@eg.sd.rdtc.ru> Date: Mon, 13 Aug 2012 15:44:36 +0700 (NOVT) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dougb@FreeBSD.org Subject: ports/170592: Last changee of net-mgmt/ng_ipacct broke its installation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eugene Grosbein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 08:50:03 -0000 >Number: 170592 >Category: ports >Synopsis: Last changee of net-mgmt/ng_ipacct broke its installation >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 Aug 13 08:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 8.3-STABLE i386 >Organization: RDTC JSC >Environment: System: FreeBSD eg.sd.rdtc.ru 8.3-STABLE FreeBSD 8.3-STABLE #51: Wed Jun 13 12:30:15 NOVT 2012 root@eg.sd.rdtc.ru:/usr/local/obj/usr/local/src/sys/EG i386 >Description: SVN revision 302141 labeled "Move the rc.d scripts of the form *.sh.in to *.in" broke net-mgmt/ng_ipacct installation. >How-To-Repeat: # make -dl -C /usr/ports/net-mgmt/ng_ipacct all install true /usr/bin/sed -e s!%%PREFIX%%!/usr/local!g -e s!%%LOCALBASE%%!/usr/local!g -e s!%%DATADIR%%!/usr/local/share/ng_ipacct!g -e s!%%DOCSDIR%%!/usr/local/share/doc/ng_ipacct!g -e s!%%EXAMPLESDIR%%!/usr/local/share/examples/ng_ipacct!g -e s!%%WWWDIR%%!/usr/local/www/ng_ipacct!g -e s!%%ETCDIR%%!/usr/local/etc/ng_ipacct!g -e '/^@comment /d' /usr/local/ports/net-mgmt/ng_ipacct/files/pkg-message.in > /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/pkg-message /usr/bin/sed -e s!%%PREFIX%%!/usr/local!g -e s!%%LOCALBASE%%!/usr/local!g -e s!%%DATADIR%%!/usr/local/share/ng_ipacct!g -e s!%%DOCSDIR%%!/usr/local/share/doc/ng_ipacct!g -e s!%%EXAMPLESDIR%%!/usr/local/share/examples/ng_ipacct!g -e s!%%WWWDIR%%!/usr/local/www/ng_ipacct!g -e s!%%ETCDIR%%!/usr/local/etc/ng_ipacct!g -e '/^@comment /d' /usr/local/ports/net-mgmt/ng_ipacct/files/ng_ipacct.in > /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/ng_ipacct cannot create /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/ng_ipacct: Is a directory *** Error code 2 >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 08:50:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED666106566C for ; Mon, 13 Aug 2012 08:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A7A768FC18 for ; Mon, 13 Aug 2012 08:50: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 q7D8o2de089044 for ; Mon, 13 Aug 2012 08:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D8o2of089043; Mon, 13 Aug 2012 08:50:02 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 08:50:02 GMT Resent-Message-Id: <201208130850.q7D8o2of089043@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, Eugene Grosbein Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FFE71065672; Mon, 13 Aug 2012 08:46:00 +0000 (UTC) (envelope-from eugen@eg.sd.rdtc.ru) Received: from eg.sd.rdtc.ru (eg.sd.rdtc.ru [IPv6:2a03:3100:c:13::5]) by mx1.freebsd.org (Postfix) with ESMTP id 9C4398FC0A; Mon, 13 Aug 2012 08:45:59 +0000 (UTC) Received: from eg.sd.rdtc.ru (localhost [127.0.0.1]) by eg.sd.rdtc.ru (8.14.5/8.14.5) with ESMTP id q7D8iarn006372; Mon, 13 Aug 2012 15:44:36 +0700 (NOVT) (envelope-from eugen@eg.sd.rdtc.ru) Received: (from eugen@localhost) by eg.sd.rdtc.ru (8.14.5/8.14.5/Submit) id q7D8ia3N006371; Mon, 13 Aug 2012 15:44:36 +0700 (NOVT) (envelope-from eugen) Message-Id: <201208130844.q7D8ia3N006371@eg.sd.rdtc.ru> Date: Mon, 13 Aug 2012 15:44:36 +0700 (NOVT) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dougb@FreeBSD.org Subject: ports/170593: Last changee of net-mgmt/ng_ipacct broke its installation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eugene Grosbein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 08:50:04 -0000 >Number: 170593 >Category: ports >Synopsis: Last changee of net-mgmt/ng_ipacct broke its installation >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 Aug 13 08:50:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 8.3-STABLE i386 >Organization: RDTC JSC >Environment: System: FreeBSD eg.sd.rdtc.ru 8.3-STABLE FreeBSD 8.3-STABLE #51: Wed Jun 13 12:30:15 NOVT 2012 root@eg.sd.rdtc.ru:/usr/local/obj/usr/local/src/sys/EG i386 >Description: SVN revision 302141 labeled "Move the rc.d scripts of the form *.sh.in to *.in" broke net-mgmt/ng_ipacct installation. >How-To-Repeat: # make -dl -C /usr/ports/net-mgmt/ng_ipacct all install true /usr/bin/sed -e s!%%PREFIX%%!/usr/local!g -e s!%%LOCALBASE%%!/usr/local!g -e s!%%DATADIR%%!/usr/local/share/ng_ipacct!g -e s!%%DOCSDIR%%!/usr/local/share/doc/ng_ipacct!g -e s!%%EXAMPLESDIR%%!/usr/local/share/examples/ng_ipacct!g -e s!%%WWWDIR%%!/usr/local/www/ng_ipacct!g -e s!%%ETCDIR%%!/usr/local/etc/ng_ipacct!g -e '/^@comment /d' /usr/local/ports/net-mgmt/ng_ipacct/files/pkg-message.in > /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/pkg-message /usr/bin/sed -e s!%%PREFIX%%!/usr/local!g -e s!%%LOCALBASE%%!/usr/local!g -e s!%%DATADIR%%!/usr/local/share/ng_ipacct!g -e s!%%DOCSDIR%%!/usr/local/share/doc/ng_ipacct!g -e s!%%EXAMPLESDIR%%!/usr/local/share/examples/ng_ipacct!g -e s!%%WWWDIR%%!/usr/local/www/ng_ipacct!g -e s!%%ETCDIR%%!/usr/local/etc/ng_ipacct!g -e '/^@comment /d' /usr/local/ports/net-mgmt/ng_ipacct/files/ng_ipacct.in > /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/ng_ipacct cannot create /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/ng_ipacct: Is a directory *** Error code 2 >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 08:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8702F1065673 for ; Mon, 13 Aug 2012 08: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 191B78FC1A for ; Mon, 13 Aug 2012 08:50: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 q7D8o22p089054 for ; Mon, 13 Aug 2012 08:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D8o225089053; Mon, 13 Aug 2012 08:50:02 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 08:50:02 GMT Resent-Message-Id: <201208130850.q7D8o225089053@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, Eugene Grosbein Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7013D1065673; Mon, 13 Aug 2012 08:46:00 +0000 (UTC) (envelope-from eugen@eg.sd.rdtc.ru) Received: from eg.sd.rdtc.ru (eg.sd.rdtc.ru [IPv6:2a03:3100:c:13::5]) by mx1.freebsd.org (Postfix) with ESMTP id 9D0F28FC0C; Mon, 13 Aug 2012 08:45:59 +0000 (UTC) Received: from eg.sd.rdtc.ru (localhost [127.0.0.1]) by eg.sd.rdtc.ru (8.14.5/8.14.5) with ESMTP id q7D8jwoe002264; Mon, 13 Aug 2012 15:45:58 +0700 (NOVT) (envelope-from eugen@eg.sd.rdtc.ru) Received: (from eugen@localhost) by eg.sd.rdtc.ru (8.14.5/8.14.5/Submit) id q7D8ia3N006371; Mon, 13 Aug 2012 15:44:36 +0700 (NOVT) (envelope-from eugen) Message-Id: <201208130844.q7D8ia3N006371@eg.sd.rdtc.ru> Date: Mon, 13 Aug 2012 15:44:36 +0700 (NOVT) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dougb@FreeBSD.org Subject: ports/170594: Last changee of net-mgmt/ng_ipacct broke its installation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eugene Grosbein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 08:50:08 -0000 >Number: 170594 >Category: ports >Synopsis: Last changee of net-mgmt/ng_ipacct broke its installation >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 Aug 13 08:50:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 8.3-STABLE i386 >Organization: RDTC JSC >Environment: System: FreeBSD eg.sd.rdtc.ru 8.3-STABLE FreeBSD 8.3-STABLE #51: Wed Jun 13 12:30:15 NOVT 2012 root@eg.sd.rdtc.ru:/usr/local/obj/usr/local/src/sys/EG i386 >Description: SVN revision 302141 labeled "Move the rc.d scripts of the form *.sh.in to *.in" broke net-mgmt/ng_ipacct installation. >How-To-Repeat: # make -dl -C /usr/ports/net-mgmt/ng_ipacct all install true /usr/bin/sed -e s!%%PREFIX%%!/usr/local!g -e s!%%LOCALBASE%%!/usr/local!g -e s!%%DATADIR%%!/usr/local/share/ng_ipacct!g -e s!%%DOCSDIR%%!/usr/local/share/doc/ng_ipacct!g -e s!%%EXAMPLESDIR%%!/usr/local/share/examples/ng_ipacct!g -e s!%%WWWDIR%%!/usr/local/www/ng_ipacct!g -e s!%%ETCDIR%%!/usr/local/etc/ng_ipacct!g -e '/^@comment /d' /usr/local/ports/net-mgmt/ng_ipacct/files/pkg-message.in > /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/pkg-message /usr/bin/sed -e s!%%PREFIX%%!/usr/local!g -e s!%%LOCALBASE%%!/usr/local!g -e s!%%DATADIR%%!/usr/local/share/ng_ipacct!g -e s!%%DOCSDIR%%!/usr/local/share/doc/ng_ipacct!g -e s!%%EXAMPLESDIR%%!/usr/local/share/examples/ng_ipacct!g -e s!%%WWWDIR%%!/usr/local/www/ng_ipacct!g -e s!%%ETCDIR%%!/usr/local/etc/ng_ipacct!g -e '/^@comment /d' /usr/local/ports/net-mgmt/ng_ipacct/files/ng_ipacct.in > /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/ng_ipacct cannot create /var/tmp/usr/local/ports/net-mgmt/ng_ipacct/work/ng_ipacct: Is a directory *** Error code 2 >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 08:50:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08AE01065672; Mon, 13 Aug 2012 08:50: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 D04848FC08; Mon, 13 Aug 2012 08: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 q7D8oErW089203; Mon, 13 Aug 2012 08:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D8oEfL089199; Mon, 13 Aug 2012 08:50:14 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 08:50:14 GMT Message-Id: <201208130850.q7D8oEfL089199@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170592: Last changee of net-mgmt/ng_ipacct broke its installation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 08:50:15 -0000 Synopsis: Last changee of net-mgmt/ng_ipacct broke its installation Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 08:50:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170592 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 08:50:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F02F1106564A; Mon, 13 Aug 2012 08:50:53 +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 C386B8FC0A; Mon, 13 Aug 2012 08:50: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 q7D8orhC089323; Mon, 13 Aug 2012 08:50:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D8orpr089319; Mon, 13 Aug 2012 08:50:53 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 08:50:53 GMT Message-Id: <201208130850.q7D8orpr089319@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170593: Last changee of net-mgmt/ng_ipacct broke its installation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 08:50:54 -0000 Synopsis: Last changee of net-mgmt/ng_ipacct broke its installation Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 08:50:53 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170593 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 08:50:59 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44D5D1065674; Mon, 13 Aug 2012 08:50:59 +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 17DD28FC1D; Mon, 13 Aug 2012 08:50: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 q7D8owSW089404; Mon, 13 Aug 2012 08:50:58 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D8owkT089400; Mon, 13 Aug 2012 08:50:58 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 08:50:58 GMT Message-Id: <201208130850.q7D8owkT089400@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170594: Last changee of net-mgmt/ng_ipacct broke its installation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 08:50:59 -0000 Synopsis: Last changee of net-mgmt/ng_ipacct broke its installation Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 08:50:58 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170594 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 09:00:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10B051065674 for ; Mon, 13 Aug 2012 09:00:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C49418FC17 for ; Mon, 13 Aug 2012 09:00: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 q7D9049Y089619 for ; Mon, 13 Aug 2012 09:00:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D904eF089618; Mon, 13 Aug 2012 09:00:04 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 09:00:04 GMT Resent-Message-Id: <201208130900.q7D904eF089618@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, Veniamin Gvozdikov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26A2A10656ED for ; Mon, 13 Aug 2012 08:51: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 1206F8FC0C for ; Mon, 13 Aug 2012 08:51: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 q7D8p0x1030128 for ; Mon, 13 Aug 2012 08:51:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D8p0V6030127; Mon, 13 Aug 2012 08:51:00 GMT (envelope-from nobody) Message-Id: <201208130851.q7D8p0V6030127@red.freebsd.org> Date: Mon, 13 Aug 2012 08:51:00 GMT From: Veniamin Gvozdikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170595: [update]: devel/bison up to date X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 09:00:06 -0000 >Number: 170595 >Category: ports >Synopsis: [update]: devel/bison up to date >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 Aug 13 09:00:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Veniamin Gvozdikov >Release: FreeBSD 8.2-RELEASE >Organization: >Environment: FreeBSD ololo 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Aug 18 11:19:07 MSD 2011 root@ololo:/usr/obj/usr/src/sys/OLOLO amd64 >Description: Up to new version. >How-To-Repeat: >Fix: diff -ruN bison.orig/Makefile bison/Makefile --- bison.orig/Makefile 2012-08-13 12:48:54.808810498 +0400 +++ bison/Makefile 2012-08-13 12:48:46.990749543 +0400 @@ -6,7 +6,7 @@ # PORTNAME= bison -PORTVERSION= 2.5.1 +PORTVERSION= 2.6.1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} diff -ruN bison.orig/distinfo bison/distinfo --- bison.orig/distinfo 2012-08-13 12:48:54.808810498 +0400 +++ bison/distinfo 2012-08-13 12:48:46.995789570 +0400 @@ -1,2 +1,2 @@ -SHA256 (bison-2.5.1.tar.xz) = fec90caed650270484955ba6ee73ddb01186608799a27fcaaf868e5274c030d8 -SIZE (bison-2.5.1.tar.xz) = 1608376 +SHA256 (bison-2.6.1.tar.xz) = 06f190bbfa553694a41c6832af1e308fd37d69fc180224b6474c22bea6db3a79 +SIZE (bison-2.6.1.tar.xz) = 1646404 diff -ruN bison.orig/pkg-plist bison/pkg-plist --- bison.orig/pkg-plist 2012-08-13 12:48:54.808810498 +0400 +++ bison/pkg-plist 2012-08-13 12:48:47.002845494 +0400 @@ -5,6 +5,7 @@ %%DATADIR%%/c++-skel.m4 %%DATADIR%%/c++.m4 %%DATADIR%%/c-skel.m4 +%%DATADIR%%/c-like.m4 %%DATADIR%%/c.m4 %%DATADIR%%/glr.c %%DATADIR%%/glr.cc >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 09:00:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 695941065675 for ; Mon, 13 Aug 2012 09:00:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4148E8FC19 for ; Mon, 13 Aug 2012 09:00:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7D904Ox089629 for ; Mon, 13 Aug 2012 09:00:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D9040V089628; Mon, 13 Aug 2012 09:00:04 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 09:00:04 GMT Resent-Message-Id: <201208130900.q7D9040V089628@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, Veniamin Gvozdikov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A8ACF106566B for ; Mon, 13 Aug 2012 08:58:08 +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 91D6C8FC17 for ; Mon, 13 Aug 2012 08:58:08 +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 q7D8w8mV044838 for ; Mon, 13 Aug 2012 08:58:08 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D8w8SJ044837; Mon, 13 Aug 2012 08:58:08 GMT (envelope-from nobody) Message-Id: <201208130858.q7D8w8SJ044837@red.freebsd.org> Date: Mon, 13 Aug 2012 08:58:08 GMT From: Veniamin Gvozdikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170596: [update]: ports-mgmt/p5-FusionInventory-Agent up to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 09:00:06 -0000 >Number: 170596 >Category: ports >Synopsis: [update]: ports-mgmt/p5-FusionInventory-Agent up to new version >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 Aug 13 09:00:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Veniamin Gvozdikov >Release: FreeBSD 8.2-RELEASE >Organization: >Environment: FreeBSD ololo 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Aug 18 11:19:07 MSD 2011 root@ololo:/usr/obj/usr/src/sys/OLOLO amd64 >Description: Up to new version >How-To-Repeat: >Fix: diff -ruN p5-FusionInventory-Agent.orig/Makefile p5-FusionInventory-Agent/Makefile --- p5-FusionInventory-Agent.orig/Makefile 2012-08-13 12:53:45.448052916 +0400 +++ p5-FusionInventory-Agent/Makefile 2012-08-13 11:53:01.101689621 +0400 @@ -6,8 +6,7 @@ # PORTNAME= FusionInventory-Agent -PORTVERSION= 2.1.13 -PORTREVISION= 1 +PORTVERSION= 2.2.4 CATEGORIES= net-mgmt MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:FUSINV @@ -39,19 +38,49 @@ TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception PERL_CONFIGURE= yes +MAN3PREFIX= ${PREFIX} -MAN1= fusioninventory-agent-config.1 \ - fusioninventory-agent.1 \ +MAN1= fusioninventory-agent.1 \ fusioninventory-injector.1 -MAN3= FusionInventory::Agent::Network.3 \ - FusionInventory::Agent::RPC.3 \ + +MAN3= FusionInventory::Agent.3 \ + FusionInventory::Agent::Config.3 \ + FusionInventory::Agent::HTTP::Client.3 \ + FusionInventory::Agent::HTTP::Client::Fusion.3 \ + FusionInventory::Agent::HTTP::Client::OCS.3 \ + FusionInventory::Agent::HTTP::Protocol::https.3 \ + FusionInventory::Agent::HTTP::Server.3 \ + FusionInventory::Agent::Logger.3 \ + FusionInventory::Agent::Logger::Backend.3 \ + FusionInventory::Agent::Logger::File.3 \ + FusionInventory::Agent::Logger::Stderr.3 \ + FusionInventory::Agent::Logger::Syslog.3 \ + FusionInventory::Agent::Scheduler.3 \ FusionInventory::Agent::Storage.3 \ + FusionInventory::Agent::Target.3 \ + FusionInventory::Agent::Target::Local.3 \ + FusionInventory::Agent::Target::Server.3 \ + FusionInventory::Agent::Target::Stdout.3 \ + FusionInventory::Agent::Task.3 \ FusionInventory::Agent::Task::Inventory.3 \ + FusionInventory::Agent::Task::Inventory::Inventory.3 \ + FusionInventory::Agent::Task::WakeOnLan.3 \ FusionInventory::Agent::Tools.3 \ + FusionInventory::Agent::Tools::AIX.3 \ + FusionInventory::Agent::Tools::Generic.3 \ + FusionInventory::Agent::Tools::HPUX.3 \ + FusionInventory::Agent::Tools::Hostname.3 \ + FusionInventory::Agent::Tools::Linux.3 \ FusionInventory::Agent::Tools::MacOS.3 \ + FusionInventory::Agent::Tools::Network.3 \ + FusionInventory::Agent::Tools::Screen.3 \ + FusionInventory::Agent::Tools::Solaris.3 \ + FusionInventory::Agent::Tools::Unix.3 \ FusionInventory::Agent::Tools::Win32.3 \ + FusionInventory::Agent::XML::Query.3 \ FusionInventory::Agent::XML::Query::Inventory.3 \ - FusionInventory::Agent::XML::Query::SimpleMessage.3 + FusionInventory::Agent::XML::Query::Prolog.3 \ + FusionInventory::Agent::XML::Response.3 .include diff -ruN p5-FusionInventory-Agent.orig/distinfo p5-FusionInventory-Agent/distinfo --- p5-FusionInventory-Agent.orig/distinfo 2012-08-13 12:53:45.448052916 +0400 +++ p5-FusionInventory-Agent/distinfo 2012-08-13 11:02:32.865779471 +0400 @@ -1,2 +1,2 @@ -SHA256 (FusionInventory-Agent-2.1.13.tar.gz) = abf2ef57f81b6dc034d414cfaa7da60348b19e573810a9e1e0e5c5e0a164f85e -SIZE (FusionInventory-Agent-2.1.13.tar.gz) = 706317 +SHA256 (FusionInventory-Agent-2.2.4.tar.gz) = 4a3976d6db551eb33a15fa4609e9b0c3c83a536783ac6d3a23fe7f3400587cd6 +SIZE (FusionInventory-Agent-2.2.4.tar.gz) = 1160610 diff -ruN p5-FusionInventory-Agent.orig/files/patch-Makefile.PL p5-FusionInventory-Agent/files/patch-Makefile.PL --- p5-FusionInventory-Agent.orig/files/patch-Makefile.PL 1970-01-01 03:00:00.000000000 +0300 +++ p5-FusionInventory-Agent/files/patch-Makefile.PL 2012-08-13 11:36:16.272918367 +0400 @@ -0,0 +1,30 @@ +--- Makefile.PL.orig 2012-07-23 01:47:59.000000000 +0400 ++++ Makefile.PL 2012-08-13 11:36:04.404805799 +0400 +@@ -105,12 +105,12 @@ + INSTALLLIB => '$(DATADIR)/lib', + INSTALLSITELIB => '$(DATADIR)/lib', + INSTALLVENDORLIB => '$(DATADIR)/lib', +- INSTALLMAN1DIR => '$(PREFIX)/share/man/man1', +- INSTALLSITEMAN1DIR => '$(PREFIX)/share/man/man1', +- INSTALLVENDORMAN1DIR => '$(PREFIX)/share/man/man1', +- INSTALLMAN3DIR => '$(PREFIX)/share/man/man3', +- INSTALLSITEMAN3DIR => '$(PREFIX)/share/man/man3', +- INSTALLVENDORMAN3DIR => '$(PREFIX)/share/man/man3', ++ INSTALLMAN1DIR => '$(PREFIX)/man/man1', ++ INSTALLSITEMAN1DIR => '$(PREFIX)/man/man1', ++ INSTALLVENDORMAN1DIR => '$(PREFIX)/man/man1', ++ INSTALLMAN3DIR => '$(PREFIX)/man/man3', ++ INSTALLSITEMAN3DIR => '$(PREFIX)/man/man3', ++ INSTALLVENDORMAN3DIR => '$(PREFIX)/man/man3', + SYSCONFDIR => '$(PREFIX)/etc/fusioninventory', + DATADIR => '$(PREFIX)/share/fusioninventory', + LOCALSTATEDIR => '$(PREFIX)/var/fusioninventory', +@@ -201,7 +201,7 @@ + $manifypods =~ s/manifypods : pure_all/manifypods : pure_all fusioninventory-agent.1.html/; + $manifypods .= <<'EOF'; + fusioninventory-agent.1.html: fusioninventory-agent +- pod2html --infile=$< --outfile=$@ ++ pod2html --infile=$? --outfile=$@ + + EOF + return $manifypods; diff -ruN p5-FusionInventory-Agent.orig/pkg-plist p5-FusionInventory-Agent/pkg-plist --- p5-FusionInventory-Agent.orig/pkg-plist 2012-08-13 12:53:45.448052916 +0400 +++ p5-FusionInventory-Agent/pkg-plist 2012-08-13 12:54:44.941739404 +0400 @@ -1,265 +1,236 @@ bin/fusioninventory-agent -bin/fusioninventory-agent-config bin/fusioninventory-injector -%%SITE_PERL%%/FusionInventory/Agent.pm -%%SITE_PERL%%/FusionInventory/Agent/AccountInfo.pm -%%SITE_PERL%%/FusionInventory/Agent/Config.pm -%%SITE_PERL%%/FusionInventory/Agent/Network.pm -%%SITE_PERL%%/FusionInventory/Agent/REST.pm -%%SITE_PERL%%/FusionInventory/Agent/RPC.pm -%%SITE_PERL%%/FusionInventory/Agent/SNMP.pm -%%SITE_PERL%%/FusionInventory/Agent/Storage.pm -%%SITE_PERL%%/FusionInventory/Agent/Target.pm -%%SITE_PERL%%/FusionInventory/Agent/Targets.pm -%%SITE_PERL%%/FusionInventory/Agent/Task.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Base.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/AccessLog.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/DeviceID.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/IpDiscover.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/IpDiscover/IpDiscover.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/IpDiscover/Nmap.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Controller.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Domains.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Drives.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Hardware.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/IPv4.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/LVM.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Mem.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Memory.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Modems.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Networks.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Slots.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Software.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Sounds.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Storages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Users.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX/Videos.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Archs/Alpha.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Archs/Sgimips.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Archs/Sparc.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Archs/i386.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Domains.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Drives.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/IPv4.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Mem.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Networks.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Storages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Sys.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Uptime.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Dmidecode.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Dmidecode/Battery.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Dmidecode/Bios.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Dmidecode/Memory.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Dmidecode/Ports.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Dmidecode/Slots.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Dmidecode/UUID.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Environement.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Hostname.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Ipmi.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Lspci.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Lspci/Controllers.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Lspci/Modems.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Lspci/Sounds.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Lspci/Videos.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging/BSDpkg.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging/ByHand.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging/Deb.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging/Gentoo.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging/Pacman.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging/RPM.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging/Slackware.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Printers/Cups.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Processes.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Screen.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Storages/HP.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/USB.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Users.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Bios.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Controller.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Domains.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Drives.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/MP.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Memory.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Networks.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Slots.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Software.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Storages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX/Uptime.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/ARM.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/ARM/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/Alpha.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/Alpha/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/MIPS.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/MIPS/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/PowerPC.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/PowerPC/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/PowerPC/Various.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/SPARC.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/SPARC/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/i386.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/i386/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/m68k.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/m68k/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Distro/LSB.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Distro/NonLSB.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Distro/SuSE.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Domains.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Drives.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Inputs.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/LVM.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Mem.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Network/IPv4.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Network/Networks.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Network/iLO.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Sounds.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Storages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Storages/3ware.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Storages/Adaptec.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Storages/Lsilogic.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Storages/ServeRaid.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Sys.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Uptime.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Video.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Bios.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Domains.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Drives.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Hostname.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/IPv4.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Mem.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Networks.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Packages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Printers.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Sound.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Storages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/USB.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Uptime.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS/Videos.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Bios.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Controllers.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Domains.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Drives.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/IPv4.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Mem.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Memory.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Networks.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Packages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Slots.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris/Storages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/AntiVirus.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Bios.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/CPU.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Chassis.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Controller.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Drives.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Env.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Inputs.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Memory.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Modem.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Networks.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/OS.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Ports.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Printers.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Slots.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Software.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Sounds.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Storages.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/USB.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/User.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32/Video.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OcsDeploy.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Hpvm.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Libvirt.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Parallels.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Qemu.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/SolarisZones.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/VirtualBox.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Virtuozzo.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/VmWareDesktop.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/VmWareESX.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Vmsystem.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Vserver.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Xen.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Xen/XM.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/WinRegistry.pm -%%SITE_PERL%%/FusionInventory/Agent/Task/WakeOnLan.pm -%%SITE_PERL%%/FusionInventory/Agent/Tools.pm -%%SITE_PERL%%/FusionInventory/Agent/Tools/MacOS.pm -%%SITE_PERL%%/FusionInventory/Agent/Tools/Win32.pm -%%SITE_PERL%%/FusionInventory/Agent/XML/Query.pm -%%SITE_PERL%%/FusionInventory/Agent/XML/Query/Inventory.pm -%%SITE_PERL%%/FusionInventory/Agent/XML/Query/Prolog.pm -%%SITE_PERL%%/FusionInventory/Agent/XML/Query/SimpleMessage.pm -%%SITE_PERL%%/FusionInventory/Agent/XML/Response.pm -%%SITE_PERL%%/FusionInventory/Agent/XML/Response/Inventory.pm -%%SITE_PERL%%/FusionInventory/Agent/XML/Response/Prolog.pm -%%SITE_PERL%%/FusionInventory/Agent/XML/Response/SimpleMessage.pm -%%SITE_PERL%%/FusionInventory/Compress.pm -%%SITE_PERL%%/FusionInventory/Logger.pm -%%SITE_PERL%%/FusionInventory/LoggerBackend/File.pm -%%SITE_PERL%%/FusionInventory/LoggerBackend/Stderr.pm -%%SITE_PERL%%/FusionInventory/LoggerBackend/Syslog.pm -%%SITE_PERL%%/auto/share/dist/FusionInventory-Agent/html/favicon.ico -%%SITE_PERL%%/auto/share/dist/FusionInventory-Agent/html/index.tpl -%%SITE_PERL%%/auto/share/dist/FusionInventory-Agent/html/logo.png -%%SITE_PERL%%/auto/share/dist/FusionInventory-Agent/html/site.css -%%SITE_PERL%%/auto/share/dist/FusionInventory-Agent/pci.ids -%%SITE_PERL%%/%%PERL_ARCH%%/auto/FusionInventory/Agent/.packlist -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/FusionInventory/Agent -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/FusionInventory -@dirrm %%SITE_PERL%%/auto/share/dist/FusionInventory-Agent/html -@dirrm %%SITE_PERL%%/auto/share/dist/FusionInventory-Agent -@dirrmtry %%SITE_PERL%%/auto/share/dist -@dirrmtry %%SITE_PERL%%/auto/share -@dirrm %%SITE_PERL%%/FusionInventory/LoggerBackend -@dirrm %%SITE_PERL%%/FusionInventory/Agent/XML/Response -@dirrm %%SITE_PERL%%/FusionInventory/Agent/XML/Query -@dirrm %%SITE_PERL%%/FusionInventory/Agent/XML -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Tools -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization/Xen -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/Virtualization -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Win32 -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Solaris -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/MacOS -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Storages -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Network -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Distro -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/m68k -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/i386 -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/SPARC -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/PowerPC -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/MIPS -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/Alpha -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs/ARM -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux/Archs -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Linux -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/HPUX -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Storages -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Printers -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Packaging -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Lspci -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic/Dmidecode -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/Generic -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD/Archs -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/BSD -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS/AIX -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/OS -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory/IpDiscover -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task/Inventory -@dirrm %%SITE_PERL%%/FusionInventory/Agent/Task -@dirrm %%SITE_PERL%%/FusionInventory/Agent -@dirrm %%SITE_PERL%%/FusionInventory +etc/fusioninventory/agent.cfg +share/fusioninventory/html/favicon.ico +share/fusioninventory/html/index.tpl +share/fusioninventory/html/inventory.tpl +share/fusioninventory/html/logo.png +share/fusioninventory/html/now.tpl +share/fusioninventory/html/site.css +share/fusioninventory/lib/FusionInventory/Agent.pm +share/fusioninventory/lib/FusionInventory/Agent/Config.pm +share/fusioninventory/lib/FusionInventory/Agent/HTTP/Client.pm +share/fusioninventory/lib/FusionInventory/Agent/HTTP/Client/Fusion.pm +share/fusioninventory/lib/FusionInventory/Agent/HTTP/Client/OCS.pm +share/fusioninventory/lib/FusionInventory/Agent/HTTP/Protocol/https.pm +share/fusioninventory/lib/FusionInventory/Agent/HTTP/Server.pm +share/fusioninventory/lib/FusionInventory/Agent/Logger.pm +share/fusioninventory/lib/FusionInventory/Agent/Logger/Backend.pm +share/fusioninventory/lib/FusionInventory/Agent/Logger/File.pm +share/fusioninventory/lib/FusionInventory/Agent/Logger/Stderr.pm +share/fusioninventory/lib/FusionInventory/Agent/Logger/Syslog.pm +share/fusioninventory/lib/FusionInventory/Agent/Scheduler.pm +share/fusioninventory/lib/FusionInventory/Agent/Storage.pm +share/fusioninventory/lib/FusionInventory/Agent/Target.pm +share/fusioninventory/lib/FusionInventory/Agent/Target/Local.pm +share/fusioninventory/lib/FusionInventory/Agent/Target/Server.pm +share/fusioninventory/lib/FusionInventory/Agent/Target/Stdout.pm +share/fusioninventory/lib/FusionInventory/Agent/Task.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Bios.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/CPU.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Controllers.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Drives.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/LVM.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Memory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Modems.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Networks.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Slots.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Softwares.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Sounds.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Storages.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX/Videos.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AccessLog.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Archs/Alpha.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Archs/MIPS.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Archs/SPARC.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Archs/i386.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/CPU.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Drives.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Memory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Networks.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Softwares.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Storages.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Uptime.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Dmidecode.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Dmidecode/Battery.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Dmidecode/Bios.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Dmidecode/Memory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Dmidecode/Ports.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Dmidecode/Slots.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Domains.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Environment.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Hostname.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Ipmi.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Lspci.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Lspci/Controllers.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Lspci/Modems.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Lspci/Sounds.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Lspci/Videos.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Printers.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Processes.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Screen.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Softwares.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Softwares/Deb.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Softwares/Gentoo.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Softwares/Pacman.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Softwares/RPM.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Softwares/Slackware.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Storages.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Storages/HP.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/USB.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Users.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Bios.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/CPU.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Controllers.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Drives.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/MP.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Memory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Networks.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Slots.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Softwares.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Storages.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX/Uptime.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs/ARM.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs/Alpha.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs/MIPS.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs/PowerPC.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs/SPARC.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs/i386.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs/m68k.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Distro.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Distro/LSB.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Distro/NonLSB.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Drives.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Inputs.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/LVM.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Memory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Networks.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Storages.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Storages/3ware.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Storages/Adaptec.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Storages/Lsilogic.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Storages/ServeRaid.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Uptime.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Videos.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/iLO.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Bios.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/CPU.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Drives.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Hostname.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Memory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Networks.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Printers.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Softwares.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Sound.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Storages.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/USB.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Uptime.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/Videos.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/Bios.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/CPU.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/Controllers.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/Drives.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/Memory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/Networks.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/Slots.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/Softwares.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris/Storages.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Hpvm.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Libvirt.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Lxc.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Parallels.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Qemu.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/SolarisZones.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/VirtualBox.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Virtuozzo.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/VmWareDesktop.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/VmWareESX.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Vmsystem.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Vserver.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization/Xen.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/AntiVirus.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Bios.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/CPU.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Chassis.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Controllers.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Drives.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Environment.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Inputs.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Memory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Modems.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Networks.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/OS.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Ports.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Printers.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Registry.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Slots.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Softwares.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Sounds.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Storages.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/USB.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/User.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32/Videos.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Inventory.pm +share/fusioninventory/lib/FusionInventory/Agent/Task/WakeOnLan.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/AIX.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/Generic.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/HPUX.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/Hostname.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/Linux.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/MacOS.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/Network.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/Screen.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/Solaris.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/Unix.pm +share/fusioninventory/lib/FusionInventory/Agent/Tools/Win32.pm +share/fusioninventory/lib/FusionInventory/Agent/XML/Query.pm +share/fusioninventory/lib/FusionInventory/Agent/XML/Query/Inventory.pm +share/fusioninventory/lib/FusionInventory/Agent/XML/Query/Prolog.pm +share/fusioninventory/lib/FusionInventory/Agent/XML/Response.pm +share/fusioninventory/pci.ids +@dirrm share/fusioninventory/lib/FusionInventory/Agent/XML/Query +@dirrm share/fusioninventory/lib/FusionInventory/Agent/XML +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Tools +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Win32 +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Virtualization +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Solaris +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Storages +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Distro +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/HPUX +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Storages +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Softwares +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Lspci +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic/Dmidecode +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Generic +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Archs +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/AIX +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Task +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Target +@dirrm share/fusioninventory/lib/FusionInventory/Agent/Logger +@dirrm share/fusioninventory/lib/FusionInventory/Agent/HTTP/Protocol +@dirrm share/fusioninventory/lib/FusionInventory/Agent/HTTP/Client +@dirrm share/fusioninventory/lib/FusionInventory/Agent/HTTP +@dirrm share/fusioninventory/lib/FusionInventory/Agent +@dirrm share/fusioninventory/lib/FusionInventory +@dirrm share/fusioninventory/lib +@dirrm share/fusioninventory/html +@dirrm share/fusioninventory +@dirrmtry etc/fusioninventory >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 09:00:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76F9E106566C; Mon, 13 Aug 2012 09:00: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 4B6748FC14; Mon, 13 Aug 2012 09: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 q7D90MbD089791; Mon, 13 Aug 2012 09:00:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D90MN7089787; Mon, 13 Aug 2012 09:00:22 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 09:00:22 GMT Message-Id: <201208130900.q7D90MN7089787@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, johans@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170595: [update]: devel/bison up to date X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 09:00:22 -0000 Synopsis: [update]: devel/bison up to date Responsible-Changed-From-To: freebsd-ports-bugs->johans Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 09:00:21 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170595 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 09:30:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA1EB106566C for ; Mon, 13 Aug 2012 09:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C06E78FC1C for ; Mon, 13 Aug 2012 09:30: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 q7D9U2n4092928 for ; Mon, 13 Aug 2012 09:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D9U2YI092925; Mon, 13 Aug 2012 09:30:02 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 09:30:02 GMT Resent-Message-Id: <201208130930.q7D9U2YI092925@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 Pankov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9E41106564A; Mon, 13 Aug 2012 09:26:00 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from polaris.xvoid.org (polaris.xvoid.org [IPv6:2001:470:28:4ba:20c:29ff:fe11:9beb]) by mx1.freebsd.org (Postfix) with ESMTP id 210AF8FC0A; Mon, 13 Aug 2012 09:25:59 +0000 (UTC) Received: from phoenix.xvoid.org (phoenix.xvoid.org [IPv6:2001:470:28:4ba:20c:29ff:fea2:c22e]) by polaris.xvoid.org (8.14.5/8.14.5) with ESMTP id q7D9Pw0Z031601; Mon, 13 Aug 2012 13:25:58 +0400 (MSK) (envelope-from yuri.pankov@gmail.com) Received: from phoenix.xvoid.org (localhost [IPv6:::1]) by phoenix.xvoid.org (8.14.5/8.14.5) with ESMTP id q7D9Pw2m056825; Mon, 13 Aug 2012 13:25:58 +0400 (MSK) (envelope-from yuri.pankov@gmail.com) Received: (from yuri@localhost) by phoenix.xvoid.org (8.14.5/8.14.5/Submit) id q7D9PvBx056824; Mon, 13 Aug 2012 13:25:57 +0400 (MSK) (envelope-from yuri.pankov@gmail.com) Message-Id: <201208130925.q7D9PvBx056824@phoenix.xvoid.org> Date: Mon, 13 Aug 2012 13:25:57 +0400 (MSK) From: Yuri Pankov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170597: [PATCH] devel/opengrok: Allow customization of application server install location X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 09:30:03 -0000 >Number: 170597 >Category: ports >Synopsis: [PATCH] devel/opengrok: Allow customization of application server install location >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 Aug 13 09:30:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Yuri Pankov >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD phoenix.xvoid.org 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r239046: Sun Aug 5 10:58:12 >Description: Allow customization of install location of the application server using WEBAPP_HOME variable. Port maintainer (jgh@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- opengrok-0.11.1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/opengrok/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 25 Jun 2012 23:09:07 -0000 1.9 +++ Makefile 13 Aug 2012 09:23:44 -0000 @@ -26,7 +26,7 @@ SUB_FILES= opengrok SUB_LIST+= LIBFILES="${LIBFILES:S,^,${DATADIR}/,}" \ JARFILE="${JARFILE}" -PLIST_SUB= T=${WEBAPP_DIRS:S|^${LOCALBASE}/||} \ +PLIST_SUB= T=${WEBAPP_HOME:S|^${LOCALBASE}/||} \ CONF_EXT=${CONF_EXT} CONF_EXT= sample @@ -46,23 +46,25 @@ swing-layout-0.9.jar .if ${PORT_OPTIONS:MTOMCAT6} -WEBAPP_DIRS= apache-tomcat-6.0 -BUILD_DEPENDS+= ${LOCALBASE}/apache-tomcat-6.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 -RUN_DEPENDS+= ${LOCALBASE}/apache-tomcat-6.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 +WEBAPP_HOME?= ${LOCALBASE}/apache-tomcat-6.0 +BUILD_DEPENDS+= ${WEBAPP_HOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 +RUN_DEPENDS+= ${WEBAPP_HOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 .endif .if ${PORT_OPTIONS:MTOMCAT5} -WEBAPP_DIRS= tomcat5.5 -BUILD_DEPENDS+= ${LOCALBASE}/tomcat5.5/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55 -RUN_DEPENDS+= ${LOCALBASE}/tomcat5.5/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55 +WEBAPP_HOME?= ${LOCALBASE}/tomcat5.5 +BUILD_DEPENDS+= ${WEBAPP_HOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55 +RUN_DEPENDS+= ${WEBAPP_HOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55 .endif .if ${PORT_OPTIONS:MRESIN3} -WEBAPP_DIRS= resin3 -BUILD_DEPENDS+= ${LOCALBASE}/resin3/lib/resin.jar:${PORTSDIR}/www/resin3 -RUN_DEPENDS+= ${LOCALBASE}/resin3/lib/resin.jar:${PORTSDIR}/www/resin3 +WEBAPP_HOME?= ${LOCALBASE}/resin3 +BUILD_DEPENDS+= ${WEBAPP_HOME}/lib/resin.jar:${PORTSDIR}/www/resin3 +RUN_DEPENDS+= ${WEBAPP_HOME}/lib/resin.jar:${PORTSDIR}/www/resin3 .endif +WEBAPPS_DIR= ${WEBAPP_HOME:S|^${LOCALBASE}/||}/webapps + pre-everything:: .if ${PREFIX}!=${LOCALBASE} @${ECHO_MSG} "Warning: you changed prefix to ${PREFIX}" @@ -75,17 +77,17 @@ @${TAR} xf ${WRKSRC}/lib/source.war -C ${WRKSRC}/lib/${PORTNAME} do-install: - ${INSTALL} -d -o ${WWWOWN} -g ${WWWGRP} ${PREFIX}/${WEBAPP_DIRS}/webapps/${PORTNAME} + ${INSTALL} -d -o ${WWWOWN} -g ${WWWGRP} ${PREFIX}/${WEBAPPS_DIR}/${PORTNAME} @${MV} ${WRKSRC}/lib/${PORTNAME}/WEB-INF/web.xml ${WRKSRC}/lib/${PORTNAME}/WEB-INF/web.xml.${CONF_EXT} - @cd ${WRKSRC}/lib/${PORTNAME} && ${COPYTREE_SHARE} \* ${PREFIX}/${WEBAPP_DIRS}/webapps/${PORTNAME} + @cd ${WRKSRC}/lib/${PORTNAME} && ${COPYTREE_SHARE} \* ${PREFIX}/${WEBAPPS_DIR}/${PORTNAME} - @if [ ! -e "${PREFIX}/${WEBAPP_DIRS}/webapps/${PORTNAME}/WEB-INF/web.xml" ]; then \ - ${ECHO_MSG} " Installing local configuration file: ${PREFIX}/${WEBAPP_DIRS}/webapps/${PORTNAME}/WEB-INF/web.xml"; \ - ${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}/WEB-INF/web.xml.${CONF_EXT} ${PREFIX}/${WEBAPP_DIRS}/webapps/${PORTNAME}/WEB-INF/web.xml; \ + @if [ ! -e "${PREFIX}/${WEBAPPS_DIR}/${PORTNAME}/WEB-INF/web.xml" ]; then \ + ${ECHO_MSG} " Installing local configuration file: ${PREFIX}/${WEBAPPS_DIR}/${PORTNAME}/WEB-INF/web.xml"; \ + ${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}/WEB-INF/web.xml.${CONF_EXT} ${PREFIX}/${WEBAPPS_DIR}/${PORTNAME}/WEB-INF/web.xml; \ else \ - ${ECHO_MSG} " Preserving local configuration file: ${PREFIX}/${WEBAPP_DIRS}/webapps/${PORTNAME}/WEB-INF/web.xml"; \ + ${ECHO_MSG} " Preserving local configuration file: ${PREFIX}/${WEBAPPS_DIR}/${PORTNAME}/WEB-INF/web.xml"; \ fi; - ${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}/WEB-INF/web.xml.${CONF_EXT} ${PREFIX}/${WEBAPP_DIRS}/webapps/${PORTNAME}/WEB-INF + ${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}/WEB-INF/web.xml.${CONF_EXT} ${PREFIX}/${WEBAPPS_DIR}/${PORTNAME}/WEB-INF ${MKDIR} ${DATADIR}/lib ${INSTALL_DATA} ${LIBFILES:S,^,${WRKSRC}/lib/lib/,} ${DATADIR}/lib/ --- opengrok-0.11.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 09:30:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9D38106564A; Mon, 13 Aug 2012 09:30: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 BCABC8FC16; Mon, 13 Aug 2012 09: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 q7D9UFnl093594; Mon, 13 Aug 2012 09:30:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7D9UFlC093588; Mon, 13 Aug 2012 09:30:15 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 09:30:15 GMT Message-Id: <201208130930.q7D9UFlC093588@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170597: [PATCH] devel/opengrok: Allow customization of application server install location X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 09:30:16 -0000 Synopsis: [PATCH] devel/opengrok: Allow customization of application server install location Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 09:30:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170597 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 10:00:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 609A7106564A for ; Mon, 13 Aug 2012 10:00: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 346398FC0A for ; Mon, 13 Aug 2012 10:00: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 q7DA05MS097203 for ; Mon, 13 Aug 2012 10:00:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DA05BD097202; Mon, 13 Aug 2012 10:00:05 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 10:00:05 GMT Resent-Message-Id: <201208131000.q7DA05BD097202@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, Veniamin Gvozdikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F055E106564A for ; Mon, 13 Aug 2012 09:59: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 D99858FC0C for ; Mon, 13 Aug 2012 09:59: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 q7D9xEJ9035621 for ; Mon, 13 Aug 2012 09:59:14 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7D9xE9m035620; Mon, 13 Aug 2012 09:59:14 GMT (envelope-from nobody) Message-Id: <201208130959.q7D9xE9m035620@red.freebsd.org> Date: Mon, 13 Aug 2012 09:59:14 GMT From: Veniamin Gvozdikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170598: [update]: net-mgmt/glpi-plugins-fusioninventory-server up to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 10:00:05 -0000 >Number: 170598 >Category: ports >Synopsis: [update]: net-mgmt/glpi-plugins-fusioninventory-server up to new version >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 Aug 13 10:00:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Veniamin Gvozdikov >Release: FreeBSD 8.2-RELEASE >Organization: >Environment: FreeBSD ololo 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Aug 18 11:19:07 MSD 2011 root@ololo:/usr/obj/usr/src/sys/OLOLO amd64 >Description: Up to new version >How-To-Repeat: >Fix: diff -ruN glpi-plugins-fusioninventory-server.orig/Makefile glpi-plugins-fusioninventory-server/Makefile --- glpi-plugins-fusioninventory-server.orig/Makefile 2012-08-13 12:59:44.765841908 +0400 +++ glpi-plugins-fusioninventory-server/Makefile 2012-08-13 13:03:34.101929875 +0400 @@ -6,11 +6,12 @@ # PORTNAME= server -PORTVERSION= 2.4.0 +PORTVERSION= ${GLPI_VER}.${FUNV_VER} +PORTEPOCH= 1 CATEGORIES= net-mgmt -MASTER_SITES= http://forge.fusioninventory.org/attachments/download/456/ +MASTER_SITES= http://forge.fusioninventory.org/attachments/download/668/ PKGNAMEPREFIX= glpi-plugins-fusioninventory- -DISTNAME= fusioninventory-for-glpi-metapackage_${PORTVERSION} +DISTNAME= fusioninventory-for-glpi-metapackage_${GLPI_VER}+${FUNV_VER} MAINTAINER= g.veniamin@googlemail.com COMMENT= Plugin of glpi to get information of networking devices @@ -19,26 +20,32 @@ USE_PHP= simplexml wddx +GLPI_VER= 0.80 +FUNV_VER= 1.5 WRKSRC= ${WRKDIR} NO_BUILD= yes GLPIPLUGINDIR?= www/glpi/plugins -OPTIONS= INVENTORY "Additional features" on \ - SNMP "SNMP support" off +OPTIONS_DEFINE= INVENTORY SNMP + +INVENTORY_DESC= Additional features +SNMP_DESC= SNMP support + +OPTIONS_DEFAULT=INVENTORY .include -.if defined(WITHOUT_INVENTORY) -PLIST_SUB+= INVENTORY="@comment " -.else +.if ${PORT_OPTIONS:MINVENTORY} PLIST_SUB+= INVENTORY="" +.else +PLIST_SUB+= INVENTORY="@comment " .endif -.if defined(WITHOUT_SNMP) -PLIST_SUB+= SNMP="@comment " -.else +.if ${PORT_OPTIONS:MSNMP} PLIST_SUB+= SNMP="" +.else +PLIST_SUB+= SNMP="@comment " .endif do-install: @@ -46,12 +53,12 @@ @${CP} -R ${WRKSRC}/fusioninventory ${PREFIX}/${GLPIPLUGINDIR} @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${GLPIPLUGINDIR}/fusioninventory -.if !defined(WITHOUT_INVENTORY) +.if ${PORT_OPTIONS:MINVENTORY} @${CP} -R ${WRKSRC}/fusinvinventory ${PREFIX}/${GLPIPLUGINDIR} @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${GLPIPLUGINDIR}/fusinvinventory .endif -.if !defined(WITHOUT_SNMP) +.if ${PORT_OPTIONS:MSNMP} @${CP} -R ${WRKSRC}/fusinvsnmp ${PREFIX}/${GLPIPLUGINDIR} @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${GLPIPLUGINDIR}/fusinvsnmp .endif diff -ruN glpi-plugins-fusioninventory-server.orig/distinfo glpi-plugins-fusioninventory-server/distinfo --- glpi-plugins-fusioninventory-server.orig/distinfo 2012-08-13 12:59:44.765841908 +0400 +++ glpi-plugins-fusioninventory-server/distinfo 2012-08-13 12:18:23.954396879 +0400 @@ -1,2 +1,2 @@ -SHA256 (fusioninventory-for-glpi-metapackage_2.4.0.tar.gz) = f89bc2e2e99b6eda596ceb9713dd0c7f2b4df3fb42add12f665ecd9bf8109693 -SIZE (fusioninventory-for-glpi-metapackage_2.4.0.tar.gz) = 1521213 +SHA256 (fusioninventory-for-glpi-metapackage_0.80+1.5.tar.gz) = be5ad231bbf3f7d28fb71e875172e9eab89188db011a9ca4e839891c46736e97 +SIZE (fusioninventory-for-glpi-metapackage_0.80+1.5.tar.gz) = 2306903 diff -ruN glpi-plugins-fusioninventory-server.orig/pkg-plist glpi-plugins-fusioninventory-server/pkg-plist --- glpi-plugins-fusioninventory-server.orig/pkg-plist 2012-08-13 12:59:44.770985020 +0400 +++ glpi-plugins-fusioninventory-server/pkg-plist 2012-08-13 13:53:35.902798421 +0400 @@ -1,975 +1,1097 @@ -www/glpi/plugins/fusioninventory/setup.php -www/glpi/plugins/fusioninventory/script.js -www/glpi/plugins/fusioninventory/prototype.js -www/glpi/plugins/fusioninventory/pics/yellowbutton.png -www/glpi/plugins/fusioninventory/pics/wizard_button_active.png -www/glpi/plugins/fusioninventory/pics/wizard_button.png -www/glpi/plugins/fusioninventory/pics/wait.png -www/glpi/plugins/fusioninventory/pics/task_scheduled.png -www/glpi/plugins/fusioninventory/pics/task_running.png -www/glpi/plugins/fusioninventory/pics/task_finished.png -www/glpi/plugins/fusioninventory/pics/refresh.png -www/glpi/plugins/fusioninventory/pics/orangebutton.png -www/glpi/plugins/fusioninventory/pics/ok2.png -www/glpi/plugins/fusioninventory/pics/networkscan.png -www/glpi/plugins/fusioninventory/pics/menu_unknown_device.png -www/glpi/plugins/fusioninventory/pics/menu_task.png -www/glpi/plugins/fusioninventory/pics/menu_runningjob.png -www/glpi/plugins/fusioninventory/pics/menu_rules.png -www/glpi/plugins/fusioninventory/pics/menu_rapports.png -www/glpi/plugins/fusioninventory/pics/menu_rangeip.png -www/glpi/plugins/fusioninventory/pics/menu_models.png -www/glpi/plugins/fusioninventory/pics/menu_mini_unknown_device.png -www/glpi/plugins/fusioninventory/pics/menu_mini_task.png -www/glpi/plugins/fusioninventory/pics/menu_mini_runningjob.png -www/glpi/plugins/fusioninventory/pics/menu_mini_rules.png -www/glpi/plugins/fusioninventory/pics/menu_mini_rapports.png -www/glpi/plugins/fusioninventory/pics/menu_mini_rangeip.png -www/glpi/plugins/fusioninventory/pics/menu_mini_models.png -www/glpi/plugins/fusioninventory/pics/menu_mini_info_server.png -www/glpi/plugins/fusioninventory/pics/menu_mini_info_agents.png -www/glpi/plugins/fusioninventory/pics/menu_mini_discovery.png -www/glpi/plugins/fusioninventory/pics/menu_mini_credentials.png -www/glpi/plugins/fusioninventory/pics/menu_mini_credentialips.png -www/glpi/plugins/fusioninventory/pics/menu_mini_authentification.png -www/glpi/plugins/fusioninventory/pics/menu_mini_agents.png -www/glpi/plugins/fusioninventory/pics/menu_info_server.png -www/glpi/plugins/fusioninventory/pics/menu_info_agents.png -www/glpi/plugins/fusioninventory/pics/menu_discovery.png -www/glpi/plugins/fusioninventory/pics/menu_credentials.png -www/glpi/plugins/fusioninventory/pics/menu_credentialips.png -www/glpi/plugins/fusioninventory/pics/menu_authentification.png -www/glpi/plugins/fusioninventory/pics/menu_agents.png -www/glpi/plugins/fusioninventory/pics/general_inventory.png -www/glpi/plugins/fusioninventory/pics/fond_form_off.png -www/glpi/plugins/fusioninventory/pics/export.png -www/glpi/plugins/fusioninventory/pics/expand.png -www/glpi/plugins/fusioninventory/pics/computer_peripheral.png -www/glpi/plugins/fusioninventory/pics/collapse.png -www/glpi/plugins/fusioninventory/pics/books.png -www/glpi/plugins/fusioninventory/pics/bookmark_off.png -www/glpi/plugins/fusioninventory/pics/betaIV.png -www/glpi/plugins/fusioninventory/pics/betaIII.png -www/glpi/plugins/fusioninventory/pics/betaII.png -www/glpi/plugins/fusioninventory/pics/beta.png -www/glpi/plugins/fusioninventory/pics/Translate.png -www/glpi/plugins/fusioninventory/pics/RCI.png -www/glpi/plugins/fusioninventory/pics/RC2.png -www/glpi/plugins/fusioninventory/locales/tr_TR.php -www/glpi/plugins/fusioninventory/locales/ru_RU.php -www/glpi/plugins/fusioninventory/locales/pt_BR.php -www/glpi/plugins/fusioninventory/locales/pl_PL.php -www/glpi/plugins/fusioninventory/locales/it_IT.php -www/glpi/plugins/fusioninventory/locales/fr_FR.php -www/glpi/plugins/fusioninventory/locales/es_ES.php -www/glpi/plugins/fusioninventory/locales/en_GB.php -www/glpi/plugins/fusioninventory/locales/de_DE.php -www/glpi/plugins/fusioninventory/install/update_232_240.php -www/glpi/plugins/fusioninventory/install/update_232_233.php -www/glpi/plugins/fusioninventory/install/update_231_232.php -www/glpi/plugins/fusioninventory/install/update_221_230.php -www/glpi/plugins/fusioninventory/install/update_220_221.php -www/glpi/plugins/fusioninventory/install/update_213_220.php -www/glpi/plugins/fusioninventory/install/update_212_213.php -www/glpi/plugins/fusioninventory/install/update_211_212.php -www/glpi/plugins/fusioninventory/install/update_210_211.php -www/glpi/plugins/fusioninventory/install/update_202_210.php -www/glpi/plugins/fusioninventory/install/update_201_202.php -www/glpi/plugins/fusioninventory/install/update_200_201.php -www/glpi/plugins/fusioninventory/install/update_110_200.php -www/glpi/plugins/fusioninventory/install/update_100_110.php -www/glpi/plugins/fusioninventory/install/update.php -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.3-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.2-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.1-update.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.1-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.0-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.0.2-update.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.0.2-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.0.0-update.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.0.0-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-1.1.0-update.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-1.1.0-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-1.0.0-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.4.0-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.3.2-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.3.1-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.3.0-update.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.3.0-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.2.0-update.sql -www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.2.0-empty.sql -www/glpi/plugins/fusioninventory/install/mysql/.htaccess -www/glpi/plugins/fusioninventory/install/install.php -www/glpi/plugins/fusioninventory/index.php -www/glpi/plugins/fusioninventory/inc/wizard.class.php -www/glpi/plugins/fusioninventory/inc/wakeonlan.class.php -www/glpi/plugins/fusioninventory/inc/unknowndevice.class.php -www/glpi/plugins/fusioninventory/inc/taskjobstatus.class.php -www/glpi/plugins/fusioninventory/inc/taskjoblog.class.php -www/glpi/plugins/fusioninventory/inc/taskjob.class.php -www/glpi/plugins/fusioninventory/inc/task.class.php -www/glpi/plugins/fusioninventory/inc/staticmisc.class.php -www/glpi/plugins/fusioninventory/inc/setup.class.php -www/glpi/plugins/fusioninventory/inc/ruleimportequipmentcollection.class.php -www/glpi/plugins/fusioninventory/inc/ruleimportequipment.class.php -www/glpi/plugins/fusioninventory/inc/restcommunication.class.php -www/glpi/plugins/fusioninventory/inc/profile.class.php -www/glpi/plugins/fusioninventory/inc/module.class.php -www/glpi/plugins/fusioninventory/inc/menu.class.php -www/glpi/plugins/fusioninventory/inc/mapping.class.php -www/glpi/plugins/fusioninventory/inc/lock.class.php -www/glpi/plugins/fusioninventory/inc/iprange.class.php -www/glpi/plugins/fusioninventory/inc/display.class.php -www/glpi/plugins/fusioninventory/inc/credentialip.class.php -www/glpi/plugins/fusioninventory/inc/credential.class.php -www/glpi/plugins/fusioninventory/inc/configuration.class.php -www/glpi/plugins/fusioninventory/inc/config.class.php -www/glpi/plugins/fusioninventory/inc/communication.class.php -www/glpi/plugins/fusioninventory/inc/agentmodule.class.php -www/glpi/plugins/fusioninventory/inc/agent.class.php -www/glpi/plugins/fusioninventory/hook.php -www/glpi/plugins/fusioninventory/front/wizzrule.common.php -www/glpi/plugins/fusioninventory/front/wizzrule.common.form.php -www/glpi/plugins/fusioninventory/front/wizard_inventorycomputeroptions.php -www/glpi/plugins/fusioninventory/front/wizard_inventory.php -www/glpi/plugins/fusioninventory/front/wizard.php -www/glpi/plugins/fusioninventory/front/wizard.form.php -www/glpi/plugins/fusioninventory/front/unknowndevice.php -www/glpi/plugins/fusioninventory/front/unknowndevice.form.php -www/glpi/plugins/fusioninventory/front/taskjob.php -www/glpi/plugins/fusioninventory/front/taskjob.form.php -www/glpi/plugins/fusioninventory/front/task.php -www/glpi/plugins/fusioninventory/front/task.form.php -www/glpi/plugins/fusioninventory/front/send.php -www/glpi/plugins/fusioninventory/front/rulesengine.test.php -www/glpi/plugins/fusioninventory/front/ruleimportequipment.php -www/glpi/plugins/fusioninventory/front/ruleimportequipment.form.php -www/glpi/plugins/fusioninventory/front/rule.test.php -www/glpi/plugins/fusioninventory/front/rule.common.php -www/glpi/plugins/fusioninventory/front/rule.common.form.php -www/glpi/plugins/fusioninventory/front/profile.php -www/glpi/plugins/fusioninventory/front/popup.php -www/glpi/plugins/fusioninventory/front/plugin_fusioninventory.communication.php -www/glpi/plugins/fusioninventory/front/menu.php -www/glpi/plugins/fusioninventory/front/lock.form.php -www/glpi/plugins/fusioninventory/front/iprange.php -www/glpi/plugins/fusioninventory/front/iprange.form.php -www/glpi/plugins/fusioninventory/front/install.php -www/glpi/plugins/fusioninventory/front/documentation.php -www/glpi/plugins/fusioninventory/front/credentialip.php -www/glpi/plugins/fusioninventory/front/credentialip.form.php -www/glpi/plugins/fusioninventory/front/credential.php -www/glpi/plugins/fusioninventory/front/credential.form.php -www/glpi/plugins/fusioninventory/front/configuration.form.php -www/glpi/plugins/fusioninventory/front/communication.php -www/glpi/plugins/fusioninventory/front/agents.diag.php -www/glpi/plugins/fusioninventory/front/agentmodule.form.php -www/glpi/plugins/fusioninventory/front/agent.php -www/glpi/plugins/fusioninventory/front/agent.form.php -www/glpi/plugins/fusioninventory/effects.js -www/glpi/plugins/fusioninventory/docs/THANKSWALKS.TXT -www/glpi/plugins/fusioninventory/docs/THANKS.TXT -www/glpi/plugins/fusioninventory/docs/ROADMAP.TXT -www/glpi/plugins/fusioninventory/docs/README.TXT -www/glpi/plugins/fusioninventory/docs/LISEZMOI.TXT -www/glpi/plugins/fusioninventory/docs/CHANGELOG.TXT -www/glpi/plugins/fusioninventory/ajax/unknowndevice.tabs.php -www/glpi/plugins/fusioninventory/ajax/task.tabs.php -www/glpi/plugins/fusioninventory/ajax/showtaskjoblogdetail.php -www/glpi/plugins/fusioninventory/ajax/ruleimportequipment.tabs.php -www/glpi/plugins/fusioninventory/ajax/iprange.tabs.php -www/glpi/plugins/fusioninventory/ajax/dropdowndefinitiontype.php -www/glpi/plugins/fusioninventory/ajax/dropdowndefinitionselection.php -www/glpi/plugins/fusioninventory/ajax/dropdowndefinitionlist.php -www/glpi/plugins/fusioninventory/ajax/dropdownactiontype.php -www/glpi/plugins/fusioninventory/ajax/dropdownactionselection.php -www/glpi/plugins/fusioninventory/ajax/dropdownactionlist.php -www/glpi/plugins/fusioninventory/ajax/dropdownCredentials.php -www/glpi/plugins/fusioninventory/ajax/credentialip.tabs.php -www/glpi/plugins/fusioninventory/ajax/credential.tabs.php -www/glpi/plugins/fusioninventory/ajax/configuration.tabs.php -www/glpi/plugins/fusioninventory/ajax/agent.tabs.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/tool/discovery.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/setup.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/script.js -%%SNMP%%www/glpi/plugins/fusinvsnmp/report/switch_ports.history.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/report/ports_date_connections.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/report/not_queried_recently.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/yellowbutton.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/wired_on.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/wired_off.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/wait.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/port_trunk.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/orangebutton.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/ok2.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/multiple_mac_addresses.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_task.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_rapports.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_rangeip.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_models.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_task.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_rapports.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_rangeip.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_models.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_inventory_status.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_info_server.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_info_agents.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_discovery_status.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_discovery.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_authentification.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_agents.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_inventory_status.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_info_server.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_info_agents.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_discovery_status.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_discovery.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_authentification.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_agents.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/fond_form_off.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/export.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/connection_ok.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/connection_notok.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/connected_trunk.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/books.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/bookmark_off.png -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/996912.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9945204.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9933304.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9928042.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9925152.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9879545.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9873645.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9862469.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9840069.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9830099.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9807323.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9791137.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9788577.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/975721.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9748385.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9743586.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9721104.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9720347.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9695837.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9688960.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9677084.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9653017.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9651371.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9639236.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9627368.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9623073.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9608337.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9602203.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9596899.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9583108.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9581305.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9572539.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9553658.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9549387.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9539738.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9523642.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9500501.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9491718.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9486270.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9449988.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/943883.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9431697.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9404667.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9402046.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9395866.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/939189.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9380800.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9372497.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/93282.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9320844.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9276188.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9237473.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9216976.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9205542.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9205238.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9202108.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9196893.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9194753.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9192973.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9188035.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/917145.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9106892.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9094542.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9044497.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9011474.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8915309.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8913934.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8892539.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8878863.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8876233.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8873024.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/887084.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8868349.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8867011.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8865336.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8858664.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8857140.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8846502.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8823342.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8799860.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8788907.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/87757.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/876553.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8765147.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8736592.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8731682.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8720535.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8710846.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8701130.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8673563.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8668453.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8656382.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8642615.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8639049.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8622657.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8615373.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8615104.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8606806.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8564359.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8522257.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8510301.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8490449.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8480734.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/84252.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8418519.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8411904.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8395959.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8346465.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8336819.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8319000.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8318050.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8284398.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8261244.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8251389.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8234251.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8227144.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8191118.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8184500.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8171120.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8157205.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8144363.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8134226.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8132037.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8112098.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8072001.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8062084.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8060592.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8038887.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8038260.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8015425.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7999709.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/799928.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7977195.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/797595.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7951579.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7917494.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7906539.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7904099.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7843719.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7805253.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7779300.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7773356.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7760922.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7754487.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7740505.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7738512.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7734682.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7727008.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7714675.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7707176.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7654739.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7651762.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7636072.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7607824.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7578039.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7571804.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7566753.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7564703.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7523482.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7495572.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7477415.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7461820.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7423641.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7413845.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7411568.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7397141.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7396210.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7353909.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7335923.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/733433.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7327673.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/729920.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7295409.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7263970.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7261939.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7250650.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7230642.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7224787.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7217319.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7209227.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7187454.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7182521.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/713572.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7124802.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7115277.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7113674.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7110691.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7109746.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7104444.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7101834.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7098676.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7085416.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7073129.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7069964.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7051162.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7041842.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7030328.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7020461.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7013134.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7007016.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/700443.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6970573.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6965298.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/693532.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6927329.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6915155.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/687543.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6873591.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6847446.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/683091.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/680761.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6801346.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6795821.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6795121.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/678856.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/677082.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6746591.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/672363.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6714832.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6710546.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6707480.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/67063.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6692132.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/66892.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6684712.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6666152.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6659267.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/664846.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6610688.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6573783.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6543945.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6532706.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6517026.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6489127.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6470194.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6437703.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6430101.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6404397.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6402168.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6398995.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6382548.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/638207.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6363084.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6334894.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6334749.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6326088.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6315941.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/631569.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6247902.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6198875.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6183510.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6145894.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6140813.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6139483.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6139303.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6114824.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6106022.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6083144.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6074001.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6072749.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6041996.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6028712.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6013357.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5994519.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5977366.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5971304.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5932594.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5929230.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5918557.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5917863.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5856646.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5853737.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5853001.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5847395.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5826776.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5826019.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5785957.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5763552.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5745475.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5740672.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5738507.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5713241.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5679975.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5676845.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5662699.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5652371.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5648944.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/56385.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5626181.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5611648.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5606418.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/557750.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5552915.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5547209.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5545651.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5538839.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/548869.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5480428.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5473692.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5463021.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5429491.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5428601.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5418323.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5413912.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/539954.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5379692.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5379162.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5371620.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5370014.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5365455.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5358976.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5358564.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5352394.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5345317.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5283593.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5278332.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5274041.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5265993.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5219916.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/520700.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/515960.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5152816.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5126803.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5123800.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5101291.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/508941.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5080007.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5075713.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5045658.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5021596.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5003061.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4988320.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4983088.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4977167.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4974062.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4959295.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4955420.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4908935.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4908039.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4901782.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4874096.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4866759.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4825912.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4812647.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4810404.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4795019.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4786588.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4767953.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4744899.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4710982.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4703130.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/469070.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4675719.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4671779.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4639277.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4633025.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4564877.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4564608.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/44790.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4471169.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4470898.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4455187.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4453057.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4435466.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4434555.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4430195.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4400081.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4399486.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4396100.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4350888.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/425038.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4196742.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4177175.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4172355.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4144573.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/414143.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4111321.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4108138.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4100083.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4073954.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4063539.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4042942.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4019744.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4015829.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4005893.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4005633.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3952676.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3945256.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3900555.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3861263.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3858441.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3854885.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3818954.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3811231.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3801295.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3792524.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3739166.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3718199.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3706997.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3673023.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3659568.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/365812.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3609230.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3594228.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3592450.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3571110.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3559045.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3548577.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3515449.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3494250.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3492811.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3465552.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3463410.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3461779.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3415025.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3406325.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3398708.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3380137.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/332835.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3311018.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3283554.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3282896.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3251920.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3233908.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3223145.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3128022.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3109031.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3091929.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3069992.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3047334.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2976694.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2925799.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2920329.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2872568.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2839801.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2826743.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2820699.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2781759.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2780039.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2778418.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2768460.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2766971.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2765706.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2760607.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2759260.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2744932.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2684257.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/268257.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2640939.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2626418.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2614648.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2544149.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2538510.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2526543.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/252650.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2525630.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2503123.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/247916.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2456901.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2455928.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2434315.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2432699.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2422281.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2414354.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2406185.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2402811.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2398915.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2392761.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2370329.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2354260.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2343895.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/232069.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2297934.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2289074.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2274533.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2183293.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2173382.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2166679.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2165536.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2162024.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2151826.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2142108.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2127172.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2120947.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2112281.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2093845.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2084303.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2075377.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2049559.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2013666.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2005259.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2000822.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1995045.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1990037.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1973074.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1943262.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1942119.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1884225.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1881700.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1872248.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1849956.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1824437.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1821133.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1820729.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1816151.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1806468.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1789398.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1771067.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1747304.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1745662.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1738515.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1718358.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1705000.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1704151.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1701111.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1693982.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1684819.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1681846.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1681290.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1680669.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1664272.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1661609.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1636809.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/163417.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1633630.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1633076.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1614677.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1582490.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1568514.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1568308.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1561171.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1561009.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1549678.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1512250.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1508091.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1489048.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1464697.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/146434.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/145271.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1424888.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1357571.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1314224.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1305825.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/12909.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1284814.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1284008.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1283066.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1276241.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/127417.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1263137.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1248772.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1241199.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1240921.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1227963.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1188708.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1183883.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1111711.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1110620.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1100107.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1097230.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1087055.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1082923.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1066772.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1062513.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/102642.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/models/100911.xml -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/tr_TR.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/ru_RU.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/pt_BR.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/pl_PL.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/it_IT.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/fr_FR.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/es_ES.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/en_GB.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/de_DE.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/update_232_240.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/update_231_232.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/update_221_230.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/update.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.4.0-empty.sql -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.3-1-empty.sql -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.2-1-empty.sql -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.1-1-empty.sql -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.0-1-update.sql -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.0-1-empty.sql -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/.htaccess -%%SNMP%%www/glpi/plugins/fusinvsnmp/install/install.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/includes.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/unknowndevice.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/staticmisc.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/stateinventory.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/statediscovery.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/snmpinventory.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/snmp.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/printerlogreport.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/printerlog.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/printercartridge.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/printer.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkportlog.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkportconnectionlog.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkport.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkequipmentip.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkequipment.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/netdiscovery.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/modelmib.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/model.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/miboid.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/mibobject.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/miblabel.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/importexport.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/discovery.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/db.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/constructdevicewalk.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/constructdevice_miboid.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/constructdevice.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/configsecurity.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/configlogfield.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/config.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/communicationsnmpquery.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/communicationsnmp.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/communicationnetdiscovery.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/commondbtm.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/agentconfig.class.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/hook.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/unknowndevice.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/switch_info.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/stateinventory.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/statediscovery.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/report.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/printerlogreport.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/printerlog.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/printer_info.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/models.export.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/model.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/model.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/miboid.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/miboid.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/mibobject.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/mibobject.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/miblabel.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/miblabel.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/functionalities.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/documentation.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/constructdevice.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/constructdevice.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/configsecurity.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/configsecurity.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/front/agentconfig.form.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/docs/ROADMAP.TXT -%%SNMP%%www/glpi/plugins/fusinvsnmp/docs/README.TXT -%%SNMP%%www/glpi/plugins/fusinvsnmp/docs/LISEZMOI.TXT -%%SNMP%%www/glpi/plugins/fusinvsnmp/docs/CHANGELOG.TXT -%%SNMP%%www/glpi/plugins/fusinvsnmp/ajax/showporthistory.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/ajax/miboid.tabs.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/ajax/mibobject.tabs.php -%%SNMP%%www/glpi/plugins/fusinvsnmp/ajax/miblabel.tabs.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/setup.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_mini_importxml.png -%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_mini_checkintegrity.png -%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_mini_blacklist.png -%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_importxml.png -%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_checkintegrity.png -%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_blacklist.png -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/tr_TR.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/ru_RU.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/pt_BR.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/pl_PL.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/it_IT.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/fr_FR.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/et_EE.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/es_ES.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/en_GB.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/de_DE.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/update_232_240.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/update_231_232.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/update.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/usbid.sql -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.4.0-empty.sql -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.3.3-1-empty.sql -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.3.2-1-empty.sql -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.3.1-1-empty.sql -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.3.0-1-empty.sql -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/pciid.sql -%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/install.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/includes.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/webservice.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/vmwareesx.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/staticmisc.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/ruleentitycollection.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/ruleentity.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/lock.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/libintegrity.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/libhook.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/libfilter.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/lib.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/inventory.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/importxml.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_virtualmachine.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_user.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_storage.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_sound.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_software.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_processor.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_printer.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_peripheral.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_networkport.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_monitor.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_memory.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_graphiccard.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_drive.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_controller.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_antivirus.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/esx.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/criteria.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/config.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/blacklist.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/antivirus.class.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/hook.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/ruleentity.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/ruleentity.form.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/popup.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/libintegrity.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/importxml.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/blacklist.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/blacklist.form.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/b/esx/index.php -%%INVENTORY%%www/glpi/plugins/fusinvinventory/ajax/ruleentity.tabs.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/LICENSE %%INVENTORY%%www/glpi/plugins/fusinvinventory/ajax/blacklist.tabs.php -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/pics -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/locales -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/install/mysql -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/install -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/inc -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/front -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/b/esx -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/b -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/ajax -%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory +%%INVENTORY%%www/glpi/plugins/fusinvinventory/ajax/ruleentity.tabs.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/b/esx/index.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/blacklist.form.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/blacklist.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/importxml.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/libintegrity.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/popup.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/ruleentity.form.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/front/ruleentity.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/hook.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/antivirus.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/blacklist.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/computer.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/config.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/criteria.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/esx.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_antivirus.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_controller.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_drive.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_graphiccard.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_memory.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_monitor.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_networkport.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_peripheral.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_printer.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_processor.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_software.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_sound.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_storage.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_user.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/import_virtualmachine.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/importxml.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/inventory.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/lib.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/libfilter.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/libhook.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/libintegrity.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/lock.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/ruleentity.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/ruleentitycollection.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/staticmisc.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/vmwareesx.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/inc/webservice.class.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/includes.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/install.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/pciid.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-0.80+1.1-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-0.80+1.2-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-0.80+1.3-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-0.80+1.4-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-0.80+1.5-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.3.0-1-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.3.1-1-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.3.2-1-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.3.3-1-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/plugin_fusinvinventory-2.4.0-empty.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/mysql/usbid.sql +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/update.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/update_231_232.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/update_232_240.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/install/update_240_0.80+1.1.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/de_DE.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/en_GB.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/es_ES.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/et_EE.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/fr_FR.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/he_IL.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/it_IT.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/pl_PL.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/pt_BR.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/ru_RU.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/locales/tr_TR.php +%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_blacklist.png +%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_checkintegrity.png +%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_importxml.png +%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_mini_blacklist.png +%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_mini_checkintegrity.png +%%INVENTORY%%www/glpi/plugins/fusinvinventory/pics/menu_mini_importxml.png +%%INVENTORY%%www/glpi/plugins/fusinvinventory/setup.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/ajax/miblabel.tabs.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/ajax/mibobject.tabs.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/ajax/miboid.tabs.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/ajax/showporthistory.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/docs/CHANGELOG.TXT +%%SNMP%%www/glpi/plugins/fusinvsnmp/docs/LISEZMOI.TXT +%%SNMP%%www/glpi/plugins/fusinvsnmp/docs/README.TXT +%%SNMP%%www/glpi/plugins/fusinvsnmp/docs/ROADMAP.TXT +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/agentconfig.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/configsecurity.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/configsecurity.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/constructdevice.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/constructdevice.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/documentation.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/functionalities.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/miblabel.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/miblabel.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/mibobject.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/mibobject.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/miboid.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/miboid.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/model.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/model.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/models.export.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/printer_info.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/printerlog.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/printerlogreport.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/report.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/statediscovery.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/stateinventory.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/switch_info.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/front/unknowndevice.form.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/hook.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/agentconfig.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/commondbtm.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/communicationnetdiscovery.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/communicationsnmp.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/communicationsnmpquery.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/config.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/configlogfield.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/configsecurity.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/constructdevice.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/constructdevice_miboid.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/constructdevicewalk.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/importexport.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/miblabel.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/mibobject.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/miboid.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/model.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/modelmib.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/netdiscovery.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkequipment.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkequipmentip.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkport.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkportconnectionlog.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/networkportlog.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/printer.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/printercartridge.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/printerlog.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/printerlogreport.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/snmp.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/snmpinventory.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/statediscovery.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/stateinventory.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/staticmisc.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/inc/unknowndevice.class.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/includes.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/install.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/.htaccess +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.0-1-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.0-1-update.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.1-1-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.2-1-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.3.3-1-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-2.4.0-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/update.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/update_221_230.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/update_231_232.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/update_232_240.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/de_DE.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/en_GB.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/es_ES.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/fr_FR.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/it_IT.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/pl_PL.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/pt_BR.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/ru_RU.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/locales/tr_TR.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/100911.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/102642.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1062513.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1066772.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1087055.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1097230.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1100107.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1110620.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1111711.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1183883.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1188708.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1227963.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1240921.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1241199.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1248772.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1263137.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/127417.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1283066.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1284008.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1284814.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/12909.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1305825.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1357571.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1424888.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/145271.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/146434.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1464697.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1489048.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1508091.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1512250.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1549678.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1561171.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1568308.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1568514.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1582490.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1614677.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1633630.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/163417.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1636809.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1661609.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1664272.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1680669.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1681290.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1681846.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1684819.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1693982.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1701111.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1704151.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1705000.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1718358.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1738515.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1745662.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1747304.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1771067.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1806468.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1816151.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1820729.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1821133.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1824437.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1872248.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1881700.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1884225.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1942119.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1943262.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1973074.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1990037.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1995045.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2000822.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2005259.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2013666.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2049559.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2075377.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2084303.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2093845.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2112281.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2120947.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2127172.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2142108.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2151826.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2162024.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2165536.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2166679.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2173382.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2183293.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2274533.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2289074.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2297934.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2343895.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2354260.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2370329.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2392761.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2402811.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2406185.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2414354.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2422281.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2432699.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2434315.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2456901.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/247916.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2503123.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2525630.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/252650.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2526543.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2538510.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2544149.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2614648.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2640939.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/268257.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2684257.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2744932.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2760607.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2765706.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2766971.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2768460.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2778418.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2780039.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2781759.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2820699.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2826743.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2839801.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2872568.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2925799.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3047334.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3069992.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3091929.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3109031.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3128022.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3223145.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3233908.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3282896.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3283554.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3311018.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/332835.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3380137.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3398708.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3406325.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3415025.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3461779.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3463410.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3465552.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3492811.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3494250.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3515449.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3548577.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3559045.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3571110.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3592450.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3594228.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3609230.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/365812.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3659568.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3673023.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3706997.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3739166.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3792524.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3801295.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3811231.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3858441.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3861263.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3900555.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3945256.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4005633.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4005893.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4019744.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4042942.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4063539.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4073954.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4100083.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4108138.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4111321.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4144573.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4177175.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4196742.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/425038.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4350888.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4396100.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4399486.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4400081.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4430195.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4434555.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4435466.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4453057.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4455187.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4470898.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4471169.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/44790.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4564608.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4564877.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4633025.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4639277.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4675719.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/469070.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4703130.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4710982.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4744899.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4767953.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4786588.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4795019.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4810404.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4812647.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4825912.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4866759.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4874096.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4901782.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4908039.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4908935.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4955420.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4959295.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4974062.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4977167.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4983088.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4988320.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5003061.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5021596.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5045658.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5075713.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5080007.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/508941.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5101291.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5123800.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5126803.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5152816.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/515960.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/520700.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5265993.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5274041.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5278332.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5283593.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5345317.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5352394.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5358564.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5358976.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5365455.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5370014.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5371620.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5379162.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5379692.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/539954.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5413912.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5418323.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5428601.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5429491.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5463021.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5473692.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5480428.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/548869.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5538839.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5545651.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5547209.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5552915.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/557750.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5606418.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5611648.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5626181.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/56385.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5648944.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5652371.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5662699.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5676845.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5679975.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5713241.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5738507.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5740672.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5745475.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5763552.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5826019.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5826776.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5847395.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5853001.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5853737.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5856646.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5917863.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5918557.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5929230.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5932594.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5977366.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5994519.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6013357.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6028712.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6041996.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6074001.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6083144.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6106022.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6114824.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6139303.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6139483.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6140813.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6145894.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6183510.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6198875.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6247902.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/631569.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6315941.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6326088.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6334749.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6334894.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6363084.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/638207.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6382548.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6398995.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6402168.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6404397.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6430101.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6437703.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6470194.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6489127.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6517026.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6532706.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6573783.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6610688.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/664846.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6659267.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6666152.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6684712.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/66892.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6692132.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/67063.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6707480.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6710546.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6714832.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/672363.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6746591.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/677082.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/678856.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6795121.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6795821.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/680761.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/683091.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6847446.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6873591.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/687543.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6915155.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6927329.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/693532.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6965298.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6970573.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/700443.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7007016.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7013134.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7020461.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7030328.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7041842.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7051162.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7069964.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7073129.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7085416.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7098676.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7101834.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7104444.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7109746.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7110691.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7113674.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7115277.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/713572.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7182521.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7187454.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7209227.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7217319.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7224787.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7250650.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7261939.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7263970.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7295409.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/729920.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7327673.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/733433.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7335923.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7353909.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7396210.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7411568.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7413845.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7423641.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7461820.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7477415.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7495572.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7523482.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7564703.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7566753.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7571804.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7578039.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7607824.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7636072.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7651762.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7654739.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7707176.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7714675.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7727008.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7734682.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7738512.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7754487.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7760922.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7773356.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7779300.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7805253.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7904099.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7906539.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7917494.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7951579.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/797595.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7977195.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/799928.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7999709.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8015425.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8038260.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8038887.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8060592.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8062084.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8072001.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8112098.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8134226.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8144363.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8157205.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8171120.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8184500.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8191118.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8227144.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8234251.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8251389.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8261244.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8318050.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8319000.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8336819.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8346465.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8395959.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8411904.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8418519.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/84252.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8480734.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8490449.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8510301.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8522257.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8564359.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8606806.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8615104.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8615373.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8622657.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8639049.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8642615.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8656382.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8668453.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8673563.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8701130.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8710846.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8720535.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8731682.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8765147.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/876553.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8788907.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8846502.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8857140.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8858664.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8865336.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8867011.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8868349.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/887084.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8876233.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8878863.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8892539.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8913934.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8915309.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9011474.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9044497.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9094542.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9106892.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/917145.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9192973.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9194753.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9202108.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9205238.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9205542.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9216976.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9237473.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9276188.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9320844.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/93282.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9372497.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9380800.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/939189.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9395866.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9402046.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9404667.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9431697.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/943883.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9449988.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9486270.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9500501.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9523642.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9539738.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9549387.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9572539.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9581305.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9583108.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9596899.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9602203.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9608337.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9627368.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9639236.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9651371.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9653017.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9677084.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9688960.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9695837.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9720347.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9721104.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9743586.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9748385.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/975721.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9788577.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9807323.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9830099.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9840069.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9862469.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9873645.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9879545.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9925152.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9928042.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9933304.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9945204.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/996912.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-0.80+1.2-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-0.80+1.3-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-0.80+1.1-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-0.80+1.4-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/install/mysql/plugin_fusinvsnmp-0.80+1.5-empty.sql +%%SNMP%%www/glpi/plugins/fusinvsnmp/LICENSE +%%SNMP%%www/glpi/plugins/fusinvsnmp/scripts/createSNMPWalks.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/scripts/.htaccess +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4902460.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6568510.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2228672.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9699225.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6940309.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6738317.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5085722.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8905872.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5065666.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/366225.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5689603.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/383639.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8810553.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6305412.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9789051.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2512959.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1428762.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8265243.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/667001.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8398119.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1490547.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4791591.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4806984.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3523352.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7123240.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/70551.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5895941.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4651906.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8017220.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5542564.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7888862.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1161678.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4000033.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5838867.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1526119.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2403125.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5607432.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6634640.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3992157.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4246447.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1036236.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2539075.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/797143.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8616099.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8148834.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2198740.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5288364.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6892979.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8909928.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9483842.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1049248.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9212997.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8515831.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2139450.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7173478.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3575740.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8900584.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6405109.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/719537.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6639573.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5041094.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/790048.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4363903.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8919625.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3367373.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4780352.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1159764.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6356871.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5028060.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7816166.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5183373.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6293005.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9051041.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2141334.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2724545.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/642659.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2046899.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3524975.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9227210.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7774387.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1930224.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2161707.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6659632.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8406034.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8710304.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5760275.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5278018.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8295601.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9395393.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3890221.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1787098.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3138908.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4813049.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2578477.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9586636.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/376354.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/50261.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9211104.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7582993.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7054167.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5271821.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7506585.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9704103.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5408284.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8102221.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2617316.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3916710.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2328125.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7586063.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2709516.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7639571.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7878559.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7718570.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6495990.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8792806.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4190997.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5884701.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8609229.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1028790.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8168371.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1657223.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2894522.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7309737.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7059379.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8859807.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7004659.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6621021.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1361390.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2215765.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1487271.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2572305.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8234834.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4219197.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/6521642.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5229339.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5561670.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2956271.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9489365.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2801402.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/4947135.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2281126.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/2187914.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1015397.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/3813050.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/9432919.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/1785375.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/7598177.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/148661.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/5921518.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/models/8919176.xml +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/bookmark_off.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/books.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/connected_trunk.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/connection_notok.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/connection_ok.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/export.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/fond_form_off.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_agents.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_authentification.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_discovery.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_discovery_status.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_info_agents.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_info_server.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_inventory_status.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_agents.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_authentification.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_discovery.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_discovery_status.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_info_agents.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_info_server.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_inventory_status.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_models.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_rangeip.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_rapports.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_mini_task.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_models.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_rangeip.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_rapports.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/menu_task.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/multiple_mac_addresses.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/ok2.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/orangebutton.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/port_trunk.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/wait.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/wired_off.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/wired_on.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/pics/yellowbutton.png +%%SNMP%%www/glpi/plugins/fusinvsnmp/report/not_queried_recently.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/report/ports_date_connections.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/report/switch_ports.history.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/script.js +%%SNMP%%www/glpi/plugins/fusinvsnmp/setup.php +%%SNMP%%www/glpi/plugins/fusinvsnmp/tool/discovery.xml +www/glpi/plugins/fusioninventory/LICENSE +www/glpi/plugins/fusioninventory/ajax/agent.tabs.php +www/glpi/plugins/fusioninventory/ajax/configuration.tabs.php +www/glpi/plugins/fusioninventory/ajax/credential.tabs.php +www/glpi/plugins/fusioninventory/ajax/credentialip.tabs.php +www/glpi/plugins/fusioninventory/ajax/dropdownCredentials.php +www/glpi/plugins/fusioninventory/ajax/dropdownactionlist.php +www/glpi/plugins/fusioninventory/ajax/dropdownactionselection.php +www/glpi/plugins/fusioninventory/ajax/dropdownactiontype.php +www/glpi/plugins/fusioninventory/ajax/dropdowndefinitionlist.php +www/glpi/plugins/fusioninventory/ajax/dropdowndefinitionselection.php +www/glpi/plugins/fusioninventory/ajax/dropdowndefinitiontype.php +www/glpi/plugins/fusioninventory/ajax/iprange.tabs.php +www/glpi/plugins/fusioninventory/ajax/ruleimportequipment.tabs.php +www/glpi/plugins/fusioninventory/ajax/showtaskjoblogdetail.php +www/glpi/plugins/fusioninventory/ajax/task.tabs.php +www/glpi/plugins/fusioninventory/ajax/unknowndevice.tabs.php +www/glpi/plugins/fusioninventory/docs/CHANGELOG.TXT +www/glpi/plugins/fusioninventory/docs/LISEZMOI.TXT +www/glpi/plugins/fusioninventory/docs/README.TXT +www/glpi/plugins/fusioninventory/docs/ROADMAP.TXT +www/glpi/plugins/fusioninventory/docs/THANKS.TXT +www/glpi/plugins/fusioninventory/docs/THANKSWALKS.TXT +www/glpi/plugins/fusioninventory/effects.js +www/glpi/plugins/fusioninventory/front/agent.form.php +www/glpi/plugins/fusioninventory/front/agent.php +www/glpi/plugins/fusioninventory/front/agentmodule.form.php +www/glpi/plugins/fusioninventory/front/agents.diag.php +www/glpi/plugins/fusioninventory/front/communication.php +www/glpi/plugins/fusioninventory/front/configuration.form.php +www/glpi/plugins/fusioninventory/front/credential.form.php +www/glpi/plugins/fusioninventory/front/credential.php +www/glpi/plugins/fusioninventory/front/credentialip.form.php +www/glpi/plugins/fusioninventory/front/credentialip.php +www/glpi/plugins/fusioninventory/front/documentation.php +www/glpi/plugins/fusioninventory/front/iprange.form.php +www/glpi/plugins/fusioninventory/front/iprange.php +www/glpi/plugins/fusioninventory/front/lock.form.php +www/glpi/plugins/fusioninventory/front/menu.php +www/glpi/plugins/fusioninventory/front/plugin_fusioninventory.communication.php +www/glpi/plugins/fusioninventory/front/popup.php +www/glpi/plugins/fusioninventory/front/profile.php +www/glpi/plugins/fusioninventory/front/rule.common.form.php +www/glpi/plugins/fusioninventory/front/rule.common.php +www/glpi/plugins/fusioninventory/front/rule.test.php +www/glpi/plugins/fusioninventory/front/ruleimportequipment.form.php +www/glpi/plugins/fusioninventory/front/ruleimportequipment.php +www/glpi/plugins/fusioninventory/front/rulesengine.test.php +www/glpi/plugins/fusioninventory/front/send.php +www/glpi/plugins/fusioninventory/front/send_xml.php +www/glpi/plugins/fusioninventory/front/task.form.php +www/glpi/plugins/fusioninventory/front/task.php +www/glpi/plugins/fusioninventory/front/taskjob.form.php +www/glpi/plugins/fusioninventory/front/taskjob.php +www/glpi/plugins/fusioninventory/front/unknowndevice.form.php +www/glpi/plugins/fusioninventory/front/unknowndevice.php +www/glpi/plugins/fusioninventory/front/wizard.form.php +www/glpi/plugins/fusioninventory/front/wizard.php +www/glpi/plugins/fusioninventory/front/wizard_inventory.php +www/glpi/plugins/fusioninventory/front/wizard_inventorycomputeroptions.php +www/glpi/plugins/fusioninventory/front/wizzrule.common.form.php +www/glpi/plugins/fusioninventory/front/wizzrule.common.php +www/glpi/plugins/fusioninventory/hook.php +www/glpi/plugins/fusioninventory/inc/agent.class.php +www/glpi/plugins/fusioninventory/inc/agentmodule.class.php +www/glpi/plugins/fusioninventory/inc/communication.class.php +www/glpi/plugins/fusioninventory/inc/config.class.php +www/glpi/plugins/fusioninventory/inc/configuration.class.php +www/glpi/plugins/fusioninventory/inc/credential.class.php +www/glpi/plugins/fusioninventory/inc/credentialip.class.php +www/glpi/plugins/fusioninventory/inc/display.class.php +www/glpi/plugins/fusioninventory/inc/iprange.class.php +www/glpi/plugins/fusioninventory/inc/lock.class.php +www/glpi/plugins/fusioninventory/inc/mapping.class.php +www/glpi/plugins/fusioninventory/inc/menu.class.php +www/glpi/plugins/fusioninventory/inc/module.class.php +www/glpi/plugins/fusioninventory/inc/profile.class.php +www/glpi/plugins/fusioninventory/inc/restcommunication.class.php +www/glpi/plugins/fusioninventory/inc/ruleimportequipment.class.php +www/glpi/plugins/fusioninventory/inc/ruleimportequipmentcollection.class.php +www/glpi/plugins/fusioninventory/inc/setup.class.php +www/glpi/plugins/fusioninventory/inc/staticmisc.class.php +www/glpi/plugins/fusioninventory/inc/task.class.php +www/glpi/plugins/fusioninventory/inc/taskjob.class.php +www/glpi/plugins/fusioninventory/inc/taskjoblog.class.php +www/glpi/plugins/fusioninventory/inc/taskjobstatus.class.php +www/glpi/plugins/fusioninventory/inc/unknowndevice.class.php +www/glpi/plugins/fusioninventory/inc/wakeonlan.class.php +www/glpi/plugins/fusioninventory/inc/wizard.class.php +www/glpi/plugins/fusioninventory/index.php +www/glpi/plugins/fusioninventory/install/install.php +www/glpi/plugins/fusioninventory/install/mysql/.htaccess +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-0.80+1.1-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-0.80+1.2-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-0.80+1.3-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-0.80+1.4-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-0.80+1.5-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.2.0-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.2.0-update.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.3.0-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.3.0-update.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.3.1-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.3.2-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_fusioninventory-2.4.0-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-1.0.0-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-1.1.0-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-1.1.0-update.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.0.0-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.0.0-update.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.0.2-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.0.2-update.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.0-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.1-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.1-update.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.2-empty.sql +www/glpi/plugins/fusioninventory/install/mysql/plugin_tracker-2.1.3-empty.sql +www/glpi/plugins/fusioninventory/install/update.php +www/glpi/plugins/fusioninventory/install/update_100_110.php +www/glpi/plugins/fusioninventory/install/update_110_200.php +www/glpi/plugins/fusioninventory/install/update_200_201.php +www/glpi/plugins/fusioninventory/install/update_201_202.php +www/glpi/plugins/fusioninventory/install/update_202_210.php +www/glpi/plugins/fusioninventory/install/update_210_211.php +www/glpi/plugins/fusioninventory/install/update_211_212.php +www/glpi/plugins/fusioninventory/install/update_212_213.php +www/glpi/plugins/fusioninventory/install/update_213_220.php +www/glpi/plugins/fusioninventory/install/update_220_221.php +www/glpi/plugins/fusioninventory/install/update_221_230.php +www/glpi/plugins/fusioninventory/install/update_231_232.php +www/glpi/plugins/fusioninventory/install/update_232_233.php +www/glpi/plugins/fusioninventory/install/update_232_240.php +www/glpi/plugins/fusioninventory/install/update_240_08011.php +www/glpi/plugins/fusioninventory/locales/de_DE.php +www/glpi/plugins/fusioninventory/locales/en_GB.php +www/glpi/plugins/fusioninventory/locales/es_ES.php +www/glpi/plugins/fusioninventory/locales/fr_FR.php +www/glpi/plugins/fusioninventory/locales/it_IT.php +www/glpi/plugins/fusioninventory/locales/pl_PL.php +www/glpi/plugins/fusioninventory/locales/pt_BR.php +www/glpi/plugins/fusioninventory/locales/ru_RU.php +www/glpi/plugins/fusioninventory/locales/tr_TR.php +www/glpi/plugins/fusioninventory/pics/RC2.png +www/glpi/plugins/fusioninventory/pics/RCI.png +www/glpi/plugins/fusioninventory/pics/Translate.png +www/glpi/plugins/fusioninventory/pics/beta.png +www/glpi/plugins/fusioninventory/pics/betaII.png +www/glpi/plugins/fusioninventory/pics/betaIII.png +www/glpi/plugins/fusioninventory/pics/betaIV.png +www/glpi/plugins/fusioninventory/pics/beta_1.png +www/glpi/plugins/fusioninventory/pics/bookmark_off.png +www/glpi/plugins/fusioninventory/pics/books.png +www/glpi/plugins/fusioninventory/pics/collapse.png +www/glpi/plugins/fusioninventory/pics/computer_icon.png +www/glpi/plugins/fusioninventory/pics/computer_peripheral.png +www/glpi/plugins/fusioninventory/pics/expand.png +www/glpi/plugins/fusioninventory/pics/export.png +www/glpi/plugins/fusioninventory/pics/fond_form_off.png +www/glpi/plugins/fusioninventory/pics/general_inventory.png +www/glpi/plugins/fusioninventory/pics/menu_agents.png +www/glpi/plugins/fusioninventory/pics/menu_authentification.png +www/glpi/plugins/fusioninventory/pics/menu_credentialips.png +www/glpi/plugins/fusioninventory/pics/menu_credentials.png +www/glpi/plugins/fusioninventory/pics/menu_discovery.png +www/glpi/plugins/fusioninventory/pics/menu_info_agents.png +www/glpi/plugins/fusioninventory/pics/menu_info_server.png +www/glpi/plugins/fusioninventory/pics/menu_mini_agents.png +www/glpi/plugins/fusioninventory/pics/menu_mini_authentification.png +www/glpi/plugins/fusioninventory/pics/menu_mini_credentialips.png +www/glpi/plugins/fusioninventory/pics/menu_mini_credentials.png +www/glpi/plugins/fusioninventory/pics/menu_mini_discovery.png +www/glpi/plugins/fusioninventory/pics/menu_mini_info_agents.png +www/glpi/plugins/fusioninventory/pics/menu_mini_info_server.png +www/glpi/plugins/fusioninventory/pics/menu_mini_models.png +www/glpi/plugins/fusioninventory/pics/menu_mini_rangeip.png +www/glpi/plugins/fusioninventory/pics/menu_mini_rapports.png +www/glpi/plugins/fusioninventory/pics/menu_mini_rules.png +www/glpi/plugins/fusioninventory/pics/menu_mini_runningjob.png +www/glpi/plugins/fusioninventory/pics/menu_mini_task.png +www/glpi/plugins/fusioninventory/pics/menu_mini_unknown_device.png +www/glpi/plugins/fusioninventory/pics/menu_models.png +www/glpi/plugins/fusioninventory/pics/menu_rangeip.png +www/glpi/plugins/fusioninventory/pics/menu_rapports.png +www/glpi/plugins/fusioninventory/pics/menu_rules.png +www/glpi/plugins/fusioninventory/pics/menu_runningjob.png +www/glpi/plugins/fusioninventory/pics/menu_task.png +www/glpi/plugins/fusioninventory/pics/menu_unknown_device.png +www/glpi/plugins/fusioninventory/pics/network_icon.png +www/glpi/plugins/fusioninventory/pics/networkscan.png +www/glpi/plugins/fusioninventory/pics/ok2.png +www/glpi/plugins/fusioninventory/pics/orangebutton.png +www/glpi/plugins/fusioninventory/pics/phone_icon.png +www/glpi/plugins/fusioninventory/pics/printer_icon.png +www/glpi/plugins/fusioninventory/pics/refresh.png +www/glpi/plugins/fusioninventory/pics/task_finished.png +www/glpi/plugins/fusioninventory/pics/task_running.png +www/glpi/plugins/fusioninventory/pics/task_scheduled.png +www/glpi/plugins/fusioninventory/pics/wait.png +www/glpi/plugins/fusioninventory/pics/wizard_button.png +www/glpi/plugins/fusioninventory/pics/wizard_button_active.png +www/glpi/plugins/fusioninventory/pics/yellowbutton.png +www/glpi/plugins/fusioninventory/prototype.js +www/glpi/plugins/fusioninventory/script.js +www/glpi/plugins/fusioninventory/setup.php +www/glpi/plugins/fusioninventory/tools/.htaccess +www/glpi/plugins/fusioninventory/tools/cli_install.php %%SNMP%%@dirrm www/glpi/plugins/fusinvsnmp/tool %%SNMP%%@dirrm www/glpi/plugins/fusinvsnmp/report %%SNMP%%@dirrm www/glpi/plugins/fusinvsnmp/pics @@ -981,7 +1103,19 @@ %%SNMP%%@dirrm www/glpi/plugins/fusinvsnmp/front %%SNMP%%@dirrm www/glpi/plugins/fusinvsnmp/docs %%SNMP%%@dirrm www/glpi/plugins/fusinvsnmp/ajax +%%SNMP%%@dirrm www/glpi/plugins/fusinvsnmp/scripts %%SNMP%%@dirrm www/glpi/plugins/fusinvsnmp +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/pics +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/locales +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/install/mysql +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/install +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/inc +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/front +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/b/esx +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/b +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory/ajax +%%INVENTORY%%@dirrm www/glpi/plugins/fusinvinventory +@dirrm www/glpi/plugins/fusioninventory/tools @dirrm www/glpi/plugins/fusioninventory/pics @dirrm www/glpi/plugins/fusioninventory/locales @dirrm www/glpi/plugins/fusioninventory/install/mysql @@ -991,3 +1125,5 @@ @dirrm www/glpi/plugins/fusioninventory/docs @dirrm www/glpi/plugins/fusioninventory/ajax @dirrm www/glpi/plugins/fusioninventory +@dirrm www/glpi/plugins +@dirrm www/glpi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 10:20:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E330106564A for ; Mon, 13 Aug 2012 10:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 144618FC0A for ; Mon, 13 Aug 2012 10:20: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 q7DAK1dJ001338 for ; Mon, 13 Aug 2012 10:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DAK137001337; Mon, 13 Aug 2012 10:20:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 10:20:01 GMT Resent-Message-Id: <201208131020.q7DAK137001337@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Jason E. Hale" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 834F5106564A for ; Mon, 13 Aug 2012 10:18:02 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4515F8FC16 for ; Mon, 13 Aug 2012 10:18:02 +0000 (UTC) Received: by qcsg15 with SMTP id g15so2564570qcs.13 for ; Mon, 13 Aug 2012 03:18:01 -0700 (PDT) Received: by 10.224.188.12 with SMTP id cy12mr23786172qab.68.1344853081373; Mon, 13 Aug 2012 03:18:01 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id g3sm9015338qah.5.2012.08.13.03.18.00 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 13 Aug 2012 03:18:00 -0700 (PDT) Message-Id: <1344853080.790107.65859@mocha.verizon.net> Date: Mon, 13 Aug 2012 06:18:00 -0400 From: "Jason E. Hale" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170599: [NEW PORT] devel/npth: New GNU portable threads X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Jason E. Hale" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 10:20:02 -0000 >Number: 170599 >Category: ports >Synopsis: [NEW PORT] devel/npth: New GNU portable threads >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 Aug 13 10:20:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason E. Hale >Release: FreeBSD 9.0-RELEASE i386 >Organization: none >Environment: System: FreeBSD mocha.verizon.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Thu Jan 19 11:42:41 EST 2012 Jason@mocha.verizon.net:/usr/obj/usr/src/sys/MOCHA9 i386 >Description: Add new port devel/npth nPth - The New GNU Portable Threads Library This is a library to provide the GNU Pth API and thus a non-preemptive threads implementation. In contrast to GNU Pth is is based on the system's standard threads implementation. This allows the use of libraries which are not compatible to GNU Pth. Experience with a Windows Pth emulation showed that this is a solid way to provide a co-routine based framework. WWW: http://www.gnupg.org Announcement here: http://lists.gnupg.org/pipermail/gnupg-announce/2012q3/000317.html >How-To-Repeat: - Use attached shar - Build tests on Redports: https://redports.org/buildarchive/20120813100100-90820/ >Fix: --- npth.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: # # npth # npth/Makefile # npth/distinfo # npth/pkg-descr # npth/pkg-plist # echo c - npth mkdir -p npth > /dev/null 2>&1 echo x - npth/Makefile sed 's/^X//' >npth/Makefile << 'f92fe288034b5dcc66458d3e9a1ed56d' X# New ports collection makefile for: npth X# Date Created: 2012-08-12 X# Whom: Jason E. Hale X# X# $FreeBSD$ X# X XPORTNAME= npth XPORTVERSION= 0.91 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_GNUPG} XMASTER_SITE_SUBDIR= ${PORTNAME} X XMAINTAINER= bsdkaffee@gmail.com XCOMMENT= New GNU Portable Threads X XLICENSE= LGPL3 GPLv2 XLICENSE_COMB= dual X XUSE_BZIP2= yes XUSE_AUTOTOOLS= libtool XGNU_CONFIGURE= yes XCONFIGURE_ENV+= ac_cv_search_pthread_create="" XCFLAGS+= ${PTHREAD_CFLAGS} XLDFLAGS+= ${PTHREAD_LIBS} XMAKE_JOBS_SAFE= yes XUSE_LDCONFIG= yes X X.include f92fe288034b5dcc66458d3e9a1ed56d echo x - npth/distinfo sed 's/^X//' >npth/distinfo << 'dd034be69354a20b02b88411f62c6b2f' XSHA256 (npth-0.91.tar.bz2) = caef86ced4a331e162897818a5b924860c8d6003e52da5bdf76da00e8e0dfae1 XSIZE (npth-0.91.tar.bz2) = 299702 dd034be69354a20b02b88411f62c6b2f echo x - npth/pkg-descr sed 's/^X//' >npth/pkg-descr << 'cceb1cfe819510de4dcdf28c161da88f' XnPth - The New GNU Portable Threads Library X XThis is a library to provide the GNU Pth API and thus a non-preemptive threads Ximplementation. X XIn contrast to GNU Pth is is based on the system's standard threads Ximplementation. This allows the use of libraries which are not compatible to XGNU Pth. Experience with a Windows Pth emulation showed that this is a solid Xway to provide a co-routine based framework. X XWWW: http://www.gnupg.org cceb1cfe819510de4dcdf28c161da88f echo x - npth/pkg-plist sed 's/^X//' >npth/pkg-plist << 'bf7588144b79e3abaeed7b1e6ecc9a0e' Xbin/npth-config Xinclude/npth.h Xlib/libnpth.a Xlib/libnpth.la Xlib/libnpth.so Xlib/libnpth.so.0 Xshare/aclocal/npth.m4 bf7588144b79e3abaeed7b1e6ecc9a0e exit --- npth.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 11:18:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0188D106566B; Mon, 13 Aug 2012 11:18:11 +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 CA8DC8FC14; Mon, 13 Aug 2012 11:18: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 q7DBIAtA011920; Mon, 13 Aug 2012 11:18:10 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DBIAIB011916; Mon, 13 Aug 2012 11:18:10 GMT (envelope-from rm) Date: Mon, 13 Aug 2012 11:18:10 GMT Message-Id: <201208131118.q7DBIAIB011916@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170562: [MAINTAINER] audio/libmusicbrainz: Set EXPIRATION_DATE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 11:18:11 -0000 Synopsis: [MAINTAINER] audio/libmusicbrainz: Set EXPIRATION_DATE Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Mon Aug 13 11:18:10 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170562 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 09:01:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 807EB106564A; Mon, 13 Aug 2012 09:01:14 +0000 (UTC) (envelope-from tharada@e-mail.jp) Received: from kddi072.e-mail.jp (kddi072.e-mail.jp [106.187.87.72]) by mx1.freebsd.org (Postfix) with ESMTP id 4C3C68FC16; Mon, 13 Aug 2012 09:01:14 +0000 (UTC) Received: from kddi071.e-mail.jp (kddi071.e-mail.jp [106.187.87.71]) by kddi072.e-mail.jp (Postfix) with ESMTP id B00B5D402E; Mon, 13 Aug 2012 17:53:48 +0900 (JST) Received: from x61 (p3092-ipbf606fukuhanazo.fukushima.ocn.ne.jp [60.39.150.92]) (Authenticated sender: tharada) by kddi071.e-mail.jp (Postfix) with ESMTPSA id 138EFA5DB9; Mon, 13 Aug 2012 17:53:48 +0900 (JST) Date: Mon, 13 Aug 2012 17:53:46 +0900 From: Takuya Harada To: "tharada@e-mail.jp" Message-Id: <20120813175346.ab381ce3790a3c481d55c99f@e-mail.jp> In-Reply-To: <201208130550.q7D5o66n054636@freefall.freebsd.org> References: <201208130548.q7D5mAiK054139@freefall.freebsd.org> <201208130550.q7D5o66n054636@freefall.freebsd.org> Organization: Harada Dental Office X-Mailer: Sylpheed 3.2.0 (GTK+ 2.24.6; i386-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Mon, 13 Aug 2012 11:36:15 +0000 Cc: Subject: Re: ports/170589: java/openjdk7 build failed with segmentation fault(core dumped) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 09:01:14 -0000 Dear FreeBSD java developer, I looked at my build-log, so that the segmentation fault was caused by readelf built with clang. I re-built readelf with gcc, then re-built java/openjdk7. No error messages were found and build was successful. Sincerely Yours, Takuya On Mon, 13 Aug 2012 05:50:06 GMT FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/170589'. > 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=170589 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: java/openjdk7 build failed with segmentation fault(core dumped) > >Arrival-Date: Mon Aug 13 05:50:06 UTC 2012 -- Takuya Harada From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 11:40:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B7471065673 for ; Mon, 13 Aug 2012 11:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 63ED38FC14 for ; Mon, 13 Aug 2012 11:40: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 q7DBe2gF018517 for ; Mon, 13 Aug 2012 11:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DBe2Oq018516; Mon, 13 Aug 2012 11:40:02 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 11:40:02 GMT Resent-Message-Id: <201208131140.q7DBe2Oq018516@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, Waitman Gobble Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68C35106567B for ; Mon, 13 Aug 2012 11:33: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 540288FC16 for ; Mon, 13 Aug 2012 11:33: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 q7DBXnIA069695 for ; Mon, 13 Aug 2012 11:33:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7DBXnNq069694; Mon, 13 Aug 2012 11:33:49 GMT (envelope-from nobody) Message-Id: <201208131133.q7DBXnNq069694@red.freebsd.org> Date: Mon, 13 Aug 2012 11:33:49 GMT From: Waitman Gobble To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170600: [UPDATE PORT] devel/ccrtp 1.7.1 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: Mon, 13 Aug 2012 11:40:02 -0000 >Number: 170600 >Category: ports >Synopsis: [UPDATE PORT] devel/ccrtp 1.7.1 to 2.0.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 11:40:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: FreeBSD 10.0-CURRENT amd64 >Organization: Waitman Gobble >Environment: FreeBSD hunny.waitman.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 11 13:25:18 PDT 2012 root@hunny.waitman.net:/usr/obj/usr/src/sys/KEYSHIA amd64 >Description: update to v2.0.3 GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF (see RFC 3550, RFC 3551 and RFC 3555). ccRTP is a C++ library based on GNU Common C++ which provides a high performance, flexible and extensible standards-compliant RTP stack with full RTCP support. The design and implementation of ccRTP make it suitable for high capacity servers and gateways as well as personal client applications. Thank you >How-To-Repeat: na >Fix: na 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: # # ccrtp # ccrtp/files # ccrtp/files/patch-Makefile # ccrtp/Makefile # ccrtp/distinfo # ccrtp/pkg-descr # ccrtp/pkg-plist # echo c - ccrtp mkdir -p ccrtp > /dev/null 2>&1 echo c - ccrtp/files mkdir -p ccrtp/files > /dev/null 2>&1 echo x - ccrtp/files/patch-Makefile sed 's/^X//' >ccrtp/files/patch-Makefile << '8c6714c5c51123dcf4db082e64a09c46' X--- Makefile.in 2012-03-21 07:18:26.000000000 -0700 X+++ Makefile.in 2012-08-13 03:56:56.000000000 -0700 X@@ -295,7 +295,7 @@ X X SUBDIRS = src demo doc X DIST_SUBDIRS = m4 src phone doc demo w32 X-pkgconfigdir = $(libdir)/pkgconfig X+pkgconfigdir = $(libdir)data/pkgconfig X pkgconfig_DATA = libccrtp.pc X all: all-recursive X 8c6714c5c51123dcf4db082e64a09c46 echo x - ccrtp/Makefile sed 's/^X//' >ccrtp/Makefile << '006b339749d26a85c26ee0589fe8b255' X# New ports collection makefile for: ccrtp X# Date created: 2012-08-12 X# Whom: Waitman Gobble X# X# $FreeBSD: ports/devel/ccrtp/Makefile,v 2.0.3 2012/08/13 04:23:00 wgobble Exp $ X# X XPORTNAME= ccrtp XPORTVERSION= 2.0.3 XCATEGORIES= devel XMASTER_SITES= http://www.gnutelephony.org/dist/tarballs/ http://www.da3m0n8t3r.com/gnutelephony/www.gnutelephony.org/dist/tarballs/ X XMAINTAINER= uzimac@da3m0n8t3r.com XCOMMENT= Implementation of the real-time transport protocol X XLIB_DEPENDS= ccgnu2:${PORTSDIR}/devel/commoncpp X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_GNOME= pkgconfig XUSE_LDCONFIG= yes X XCONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" XCPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} XINFO= ccrtp X Xpost-patch: X @cd ${WRKSRC}/src && \ X ${FIND} * -type f -exec ${REINPLACE_CMD} -i "" -e "s|||g" "{}" \; X X.include 006b339749d26a85c26ee0589fe8b255 echo x - ccrtp/distinfo sed 's/^X//' >ccrtp/distinfo << '8920e1031e1fc851cd712b3340dd8a1e' XSHA256 (ccrtp-2.0.3.tar.gz) = 01d84705f704769da021295ab39c1084de6236c2114e82bcf4767f012cfe9fdc XSIZE (ccrtp-2.0.3.tar.gz) = 722142 8920e1031e1fc851cd712b3340dd8a1e echo x - ccrtp/pkg-descr sed 's/^X//' >ccrtp/pkg-descr << '231ff66c764ec81c43710defefdc952c' XGNU ccRTP is an implementation of RTP, the real-time transport protocol from Xthe IETF (see RFC 3550, RFC 3551 and RFC 3555). ccRTP is a C++ library based Xon GNU Common C++ which provides a high performance, flexible and extensible Xstandards-compliant RTP stack with full RTCP support. The design and Ximplementation of ccRTP make it suitable for high capacity servers and Xgateways as well as personal client applications. X XWWW: http://www.gnu.org/software/ccrtp/ 231ff66c764ec81c43710defefdc952c echo x - ccrtp/pkg-plist sed 's/^X//' >ccrtp/pkg-plist << 'b9df8237ffbcbb6ebe2a7407dd5ed0cd' Xinclude/ccrtp/CryptoContext.h Xinclude/ccrtp/CryptoContextCtrl.h Xinclude/ccrtp/base.h Xinclude/ccrtp/channel.h Xinclude/ccrtp/cqueue.h Xinclude/ccrtp/ext.h Xinclude/ccrtp/formats.h Xinclude/ccrtp/ioqueue.h Xinclude/ccrtp/iqueue.h Xinclude/ccrtp/oqueue.h Xinclude/ccrtp/pool.h Xinclude/ccrtp/queuebase.h Xinclude/ccrtp/rtcppkt.h Xinclude/ccrtp/rtp.h Xinclude/ccrtp/rtppkt.h Xinclude/ccrtp/sources.h Xlib/libccrtp.a Xlib/libccrtp.la Xlib/libccrtp.so Xlib/libccrtp.so.0 Xlibdata/pkgconfig/libccrtp.pc X@dirrm include/ccrtp b9df8237ffbcbb6ebe2a7407dd5ed0cd exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 11:40:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90C3D106566B; Mon, 13 Aug 2012 11:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 64B418FC12; Mon, 13 Aug 2012 11: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 q7DBeH1A018597; Mon, 13 Aug 2012 11:40:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DBeHGa018593; Mon, 13 Aug 2012 11:40:17 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 11:40:17 GMT Message-Id: <201208131140.q7DBeHGa018593@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, acm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170600: [UPDATE PORT] devel/ccrtp 1.7.1 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: Mon, 13 Aug 2012 11:40:17 -0000 Synopsis: [UPDATE PORT] devel/ccrtp 1.7.1 to 2.0.3 Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 11:40:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170600 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 12:10:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F5E51065679 for ; Mon, 13 Aug 2012 12:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DE1CE8FC18 for ; Mon, 13 Aug 2012 12:10: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 q7DCA1TR021336 for ; Mon, 13 Aug 2012 12:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DCA1Bp021335; Mon, 13 Aug 2012 12:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 12:10:01 GMT Resent-Message-Id: <201208131210.q7DCA1Bp021335@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, Eugene Grosbein Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BE30106566C; Mon, 13 Aug 2012 12:07:16 +0000 (UTC) (envelope-from eugen@eg.sd.rdtc.ru) Received: from eg.sd.rdtc.ru (eg.sd.rdtc.ru [IPv6:2a03:3100:c:13::5]) by mx1.freebsd.org (Postfix) with ESMTP id 667578FC1D; Mon, 13 Aug 2012 12:07:14 +0000 (UTC) Received: from eg.sd.rdtc.ru (localhost [127.0.0.1]) by eg.sd.rdtc.ru (8.14.5/8.14.5) with ESMTP id q7DC7BlP005593; Mon, 13 Aug 2012 19:07:11 +0700 (NOVT) (envelope-from eugen@eg.sd.rdtc.ru) Received: (from eugen@localhost) by eg.sd.rdtc.ru (8.14.5/8.14.5/Submit) id q7DC7BDO005592; Mon, 13 Aug 2012 19:07:11 +0700 (NOVT) (envelope-from eugen) Message-Id: <201208131207.q7DC7BDO005592@eg.sd.rdtc.ru> Date: Mon, 13 Aug 2012 19:07:11 +0700 (NOVT) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: sylvio@FreeBSD.org Subject: ports/170601: [patch] Update www/rejik upto version 3.2.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 12:10:02 -0000 >Number: 170601 >Category: ports >Synopsis: [patch] Update www/rejik upto version 3.2.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 12:10:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 8.3-STABLE i386 >Organization: RDTC JSC >Environment: System: FreeBSD eg.sd.rdtc.ru 8.3-STABLE FreeBSD 8.3-STABLE #51: Wed Jun 13 12:30:15 NOVT 2012 root@eg.sd.rdtc.ru:/usr/local/obj/usr/local/src/sys/EG i386 >Description: This PR updates port www/rejik upto version 3.2.10 >How-To-Repeat: N/A >Fix: diff -urN rejik.orig/Makefile rejik/Makefile --- rejik.orig/Makefile 2012-06-29 23:36:01.000000000 +0700 +++ rejik/Makefile 2012-08-13 18:44:06.000000000 +0700 @@ -6,7 +6,7 @@ # PORTNAME= rejik -PORTVERSION= 3.2.6 +PORTVERSION= 3.2.10 CATEGORIES= www MASTER_SITES= http://www.rejik.ru/download/ \ http://bio3k.softboard.ru/uploads/arch/ @@ -24,7 +24,7 @@ SUB_LIST= INSTALL_PATH=${INSTALL_PATH} SQUID_USER=${SQUID_USER} SQUID_GROUP=${SQUID_GROUP} SUB_FILES= pkg-message -WRKSRC= ${WRKDIR}/redirector +WRKSRC= ${WRKDIR}/redirector-${PORTVERSION} OPTIONS= BAN "With banlists" on \ DBL "With DBL scripts" off \ diff -urN rejik.orig/distinfo rejik/distinfo --- rejik.orig/distinfo 2011-03-19 18:36:39.000000000 +0600 +++ rejik/distinfo 2012-08-13 19:03:57.000000000 +0700 @@ -1,5 +1,5 @@ -SHA256 (redirector-3.2.6.tgz) = be9337b1095c103ff81e3478f13982c6f716e2c57cbf52b08be948b691e32fbe -SIZE (redirector-3.2.6.tgz) = 45786 +SHA256 (redirector-3.2.10.tgz) = 1648af09df86dba5a73fa8d3ebaf02a62c281b847b96d5921507093056a0d05f +SIZE (redirector-3.2.10.tgz) = 45407 SHA256 (banlists-2.x.x.tgz) = 221a40e8db9d19477d6fdece00c9152526a0d2f0c2298504fc99b4378457b09e SIZE (banlists-2.x.x.tgz) = 116100 SHA256 (squid-like-www-en.tgz) = c4f32179c742cec5f0f03891f8bf0eb4825bfff3a36e6bf0952d641a0973332a >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 12:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 735F0106566C; Mon, 13 Aug 2012 12:10:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 474698FC0A; Mon, 13 Aug 2012 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 q7DCADJp021476; Mon, 13 Aug 2012 12:10:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DCAD7b021472; Mon, 13 Aug 2012 12:10:13 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 12:10:13 GMT Message-Id: <201208131210.q7DCAD7b021472@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sylvio@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170601: [patch] Update www/rejik upto version 3.2.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 12:10:13 -0000 Synopsis: [patch] Update www/rejik upto version 3.2.10 Responsible-Changed-From-To: freebsd-ports-bugs->sylvio Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 12:10:12 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170601 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 12:40:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADC43106564A for ; Mon, 13 Aug 2012 12:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6F7298FC15 for ; Mon, 13 Aug 2012 12:40: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 q7DCe3UG028380 for ; Mon, 13 Aug 2012 12:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DCe3tG028379; Mon, 13 Aug 2012 12:40:03 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 12:40:03 GMT Resent-Message-Id: <201208131240.q7DCe3tG028379@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, Andrej Zverev Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C8BB7106564A for ; Mon, 13 Aug 2012 12:36:39 +0000 (UTC) (envelope-from az@sunner.semmy.ru) Received: from sunner.semmy.ru (sunner.semmy.ru [IPv6:2a00:14d0:0:20::3]) by mx1.freebsd.org (Postfix) with ESMTP id 57C438FC12 for ; Mon, 13 Aug 2012 12:36:39 +0000 (UTC) Received: from az by sunner.semmy.ru with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1T0tss-000Dbi-CI for FreeBSD-gnats-submit@freebsd.org; Mon, 13 Aug 2012 16:36:38 +0400 Message-Id: Date: Mon, 13 Aug 2012 16:36:38 +0400 From: Andrej Zverev Sender: Andrej Zverev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170602: [DEPRECATION] lang/perl5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrej Zverev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 12:40:03 -0000 >Number: 170602 >Category: ports >Synopsis: [DEPRECATION] lang/perl5.8 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 12:40:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Andrej Zverev >Release: >Organization: >Environment: >Description: perl5.8 EOL and we has now 5.14 as default. People should move no the new versions instead of waiting. Well, expiration date as you wanted :-) >How-To-Repeat: >Fix: --- p5.8-dep.txt begins here --- Index: perl5.8/Makefile =================================================================== --- perl5.8/Makefile (revision 302464) +++ perl5.8/Makefile (working copy) @@ -25,6 +25,9 @@ MAINTAINER= skv@FreeBSD.org COMMENT= Practical Extraction and Report Language +DEPRECATED= End of life since 2008-12-14 +EXPIRATION_DATE=2012-12-21 + LICENSE= ART10 GPLv1 LICENSE_COMB= dual --- p5.8-dep.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 12:40:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 01834106566B for ; Mon, 13 Aug 2012 12:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B82B98FC17 for ; Mon, 13 Aug 2012 12:40: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 q7DCe371028389 for ; Mon, 13 Aug 2012 12:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DCe3OT028388; Mon, 13 Aug 2012 12:40:03 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 12:40:03 GMT Resent-Message-Id: <201208131240.q7DCe3OT028388@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, Andrej Zverev Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 47D88106566C for ; Mon, 13 Aug 2012 12:38:06 +0000 (UTC) (envelope-from az@sunner.semmy.ru) Received: from sunner.semmy.ru (sunner.semmy.ru [IPv6:2a00:14d0:0:20::3]) by mx1.freebsd.org (Postfix) with ESMTP id 05F5A8FC15 for ; Mon, 13 Aug 2012 12:38:06 +0000 (UTC) Received: from az by sunner.semmy.ru with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1T0tuH-000DdX-9k for FreeBSD-gnats-submit@freebsd.org; Mon, 13 Aug 2012 16:38:05 +0400 Message-Id: Date: Mon, 13 Aug 2012 16:38:05 +0400 From: Andrej Zverev Sender: Andrej Zverev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170603: [DEPRECATION] lang/perl5.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrej Zverev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 12:40:04 -0000 >Number: 170603 >Category: ports >Synopsis: [DEPRECATION] lang/perl5.10 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 12:40:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Andrej Zverev >Release: >Organization: >Environment: >Description: perl5.10 EOL and we has now 5.14 as default. People should move no the new versions instead of waiting. Well, expiration date as you wanted :-) >How-To-Repeat: >Fix: --- p5.10-dep.txt begins here --- Index: perl5.10/Makefile =================================================================== --- perl5.10/Makefile (revision 302464) +++ perl5.10/Makefile (working copy) @@ -21,6 +21,9 @@ MAINTAINER= skv@FreeBSD.org COMMENT= Practical Extraction and Report Language +DEPRECATED= End of life since 2009-08-23 +EXPIRATION_DATE=2012-12-21 + LICENSE= ART10 GPLv1 LICENSE_COMB= dual --- p5.10-dep.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 12:40:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F04C91065674; Mon, 13 Aug 2012 12:40:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C4CCF8FC08; Mon, 13 Aug 2012 12: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 q7DCeCa9028466; Mon, 13 Aug 2012 12:40:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DCeC40028462; Mon, 13 Aug 2012 12:40:12 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 12:40:12 GMT Message-Id: <201208131240.q7DCeC40028462@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170602: [DEPRECATION] lang/perl5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 12:40:13 -0000 Synopsis: [DEPRECATION] lang/perl5.8 Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 12:40:12 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170602 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 12:40:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 490A1106564A; Mon, 13 Aug 2012 12: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 1D78E8FC0C; Mon, 13 Aug 2012 12: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 q7DCeIr3028550; Mon, 13 Aug 2012 12: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 q7DCeHYx028546; Mon, 13 Aug 2012 12:40:17 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 12:40:17 GMT Message-Id: <201208131240.q7DCeHYx028546@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170603: [DEPRECATION] lang/perl5.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, 13 Aug 2012 12:40:18 -0000 Synopsis: [DEPRECATION] lang/perl5.10 Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 12:40:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170603 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 13:42:43 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F357106566B; Mon, 13 Aug 2012 13:42:43 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7232C8FC12; Mon, 13 Aug 2012 13:42: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 q7DDgh9U035739; Mon, 13 Aug 2012 13:42:43 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DDghMQ035735; Mon, 13 Aug 2012 13:42:43 GMT (envelope-from madpilot) Date: Mon, 13 Aug 2012 13:42:43 GMT Message-Id: <201208131342.q7DDghMQ035735@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/170564: [MAINTAINER] x11-toolkits/scintilla: update to 3.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: Mon, 13 Aug 2012 13:42:43 -0000 Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 3.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Mon Aug 13 13:42:43 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170564 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 13:42:52 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EAF35106566C; Mon, 13 Aug 2012 13:42:52 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BEA688FC17; Mon, 13 Aug 2012 13:42: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 q7DDgquv035834; Mon, 13 Aug 2012 13:42:52 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DDgqpA035830; Mon, 13 Aug 2012 13:42:52 GMT (envelope-from madpilot) Date: Mon, 13 Aug 2012 13:42:52 GMT Message-Id: <201208131342.q7DDgqpA035830@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/170565: [MAINTAINER] editors/scite: update to 3.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: Mon, 13 Aug 2012 13:42:53 -0000 Synopsis: [MAINTAINER] editors/scite: update to 3.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Mon Aug 13 13:42:52 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170565 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 14:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F934106566B for ; Mon, 13 Aug 2012 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 475028FC0A for ; Mon, 13 Aug 2012 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 q7DEo82u043934 for ; Mon, 13 Aug 2012 14: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 q7DEo8o3043933; Mon, 13 Aug 2012 14:50:08 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 14:50:08 GMT Resent-Message-Id: <201208131450.q7DEo8o3043933@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, Simon Dick Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4121E106564A for ; Mon, 13 Aug 2012 14:44: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 CC1FC8FC0C for ; Mon, 13 Aug 2012 14:44: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 q7DEinTd080437 for ; Mon, 13 Aug 2012 14:44:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7DEinek080433; Mon, 13 Aug 2012 14:44:49 GMT (envelope-from nobody) Message-Id: <201208131444.q7DEinek080433@red.freebsd.org> Date: Mon, 13 Aug 2012 14:44:49 GMT From: Simon Dick To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170608: Maintainer port update: x11-fm/worker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 14:50:08 -0000 >Number: 170608 >Category: ports >Synopsis: Maintainer port update: x11-fm/worker >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 Aug 13 14:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Simon Dick >Release: 8.3 >Organization: >Environment: >Description: Update x11-fm/worker to 2.19.4 >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 5905) +++ distinfo (revision 5961) @@ -1,4 +1,4 @@ -SHA256 (worker-2.16.5.tar.bz2) = f249b09a7483bd6a118495ae9e9dba5bb071e4aecaee4e8330b5e191a56f97b9 -SIZE (worker-2.16.5.tar.bz2) = 817135 -SHA256 (worker-2.16.5.tar.bz2.asc) = a8cb87f4c71b583800680d9ae9afcc280ca4ff227a1251990a0a3269259ba512 -SIZE (worker-2.16.5.tar.bz2.asc) = 189 +SHA256 (worker-2.19.4.tar.bz2) = 0f4b4f7d8a7610f1be4181cc01eeb338ba9c368bcd03871a18d1350d12dc182e +SIZE (worker-2.19.4.tar.bz2) = 1184410 +SHA256 (worker-2.19.4.tar.bz2.asc) = 1dbc73940c1837ec6c1b252224707506bf21b0768a185e11970809a2106cdd10 +SIZE (worker-2.19.4.tar.bz2.asc) = 197 Index: pkg-plist =================================================================== --- pkg-plist (revision 5905) +++ pkg-plist (revision 5961) @@ -3,6 +3,7 @@ share/pixmaps/WorkerIcon16.xpm share/pixmaps/WorkerIcon32.xpm share/pixmaps/WorkerIcon48.xpm +share/applications/worker.desktop %%DATADIR%%/catalogs/cesky.catalog %%DATADIR%%/catalogs/cesky.catalog.utf8 %%DATADIR%%/catalogs/cesky.catalog.coms @@ -57,6 +58,20 @@ %%DATADIR%%/catalogs/nederlands.catalog.coms.utf8 %%DATADIR%%/catalogs/nederlands.catalog.flags %%DATADIR%%/catalogs/nederlands.catalog.flags.utf8 +%%DATADIR%%/catalogs/latvian.catalog +%%DATADIR%%/catalogs/latvian.catalog.utf8 +%%DATADIR%%/catalogs/latvian.catalog.coms +%%DATADIR%%/catalogs/latvian.catalog.coms.utf8 +%%DATADIR%%/catalogs/latvian.catalog.flags +%%DATADIR%%/catalogs/latvian.catalog.flags.utf8 +%%DATADIR%%/catalogs/ukrainian.catalog +%%DATADIR%%/catalogs/ukrainian.catalog.utf8 +%%DATADIR%%/catalogs/ukrainian.catalog.coms +%%DATADIR%%/catalogs/ukrainian.catalog.coms.utf8 +%%DATADIR%%/catalogs/ukrainian.catalog.flags +%%DATADIR%%/catalogs/ukrainian.catalog.flags.utf8 +%%DATADIR%%/hints-english +%%DATADIR%%/hints-english.utf8 %%DATADIR%%/config-slovensky %%DATADIR%%/config-slovensky.utf8 %%DATADIR%%/config-deutsch Index: Makefile =================================================================== --- Makefile (revision 5905) +++ Makefile (revision 5961) @@ -6,9 +6,9 @@ # PORTNAME= worker -PORTVERSION= 2.16.5 +PORTVERSION= 2.19.4 CATEGORIES= x11-fm -MASTER_SITES= http://www.boomerangsworld.de/worker/downloads/ +MASTER_SITES= http://www.boomerangsworld.de/cms/worker/downloads/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 15:00:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 073E41065673 for ; Mon, 13 Aug 2012 15: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 BAAA38FC16 for ; Mon, 13 Aug 2012 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 q7DF0Roi044463 for ; Mon, 13 Aug 2012 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 q7DF0RMY044457; Mon, 13 Aug 2012 15:00:27 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 15:00:27 GMT Resent-Message-Id: <201208131500.q7DF0RMY044457@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA5FF106564A for ; Mon, 13 Aug 2012 14:57:12 +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 D5B7B8FC0A for ; Mon, 13 Aug 2012 14:57:12 +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 q7DEvC7i009263 for ; Mon, 13 Aug 2012 14:57:12 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7DEvCQL009262; Mon, 13 Aug 2012 14:57:12 GMT (envelope-from nobody) Message-Id: <201208131457.q7DEvCQL009262@red.freebsd.org> Date: Mon, 13 Aug 2012 14:57:12 GMT From: Steven Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170609: [patch] update finance/rubygem-money to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 15:00:28 -0000 >Number: 170609 >Category: ports >Synopsis: [patch] update finance/rubygem-money to latest version >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 Aug 13 15:00:27 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steven Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/money-4.0.1.gem) = d28388b13e9f0aa886fc8275336dcdb4e60babc7d2ba7623c4125d499771964d -SIZE (rubygem/money-4.0.1.gem) = 43008 +SHA256 (rubygem/money-5.0.0.gem) = 7095273d91bc0628d061c0c416730b994c335487af40718321cc634fecf45ada +SIZE (rubygem/money-5.0.0.gem) = 45056 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= money -PORTVERSION= 4.0.1 +PORTVERSION= 5.0.0 CATEGORIES= finance rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 15:00:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F004106566B; Mon, 13 Aug 2012 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 51ADC8FC08; Mon, 13 Aug 2012 15: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 q7DF0c9A044596; Mon, 13 Aug 2012 15: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 q7DF0cRI044592; Mon, 13 Aug 2012 15:00:38 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 15:00:38 GMT Message-Id: <201208131500.q7DF0cRI044592@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170609: [patch] update finance/rubygem-money to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 15:00:38 -0000 Synopsis: [patch] update finance/rubygem-money to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 15:00:37 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170609 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 15:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9ACF81065672 for ; Mon, 13 Aug 2012 15: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 72F768FC16 for ; Mon, 13 Aug 2012 15: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 q7DFAEiu045718 for ; Mon, 13 Aug 2012 15: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 q7DFAE3t045717; Mon, 13 Aug 2012 15:10:14 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 15:10:14 GMT Resent-Message-Id: <201208131510.q7DFAE3t045717@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, Veniamin Gvozdikov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1BDF106564A for ; Mon, 13 Aug 2012 15:09: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 9CC178FC0C for ; Mon, 13 Aug 2012 15:09: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 q7DF9aTd024341 for ; Mon, 13 Aug 2012 15:09:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7DF9aTn024340; Mon, 13 Aug 2012 15:09:36 GMT (envelope-from nobody) Message-Id: <201208131509.q7DF9aTn024340@red.freebsd.org> Date: Mon, 13 Aug 2012 15:09:36 GMT From: Veniamin Gvozdikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170610: [update]: textproc/ctpp2 up to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 15:10:14 -0000 >Number: 170610 >Category: ports >Synopsis: [update]: textproc/ctpp2 up to new version >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 Aug 13 15:10:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Veniamin Gvozdikov >Release: FreeBSD 8.2-RELEASE >Organization: >Environment: FreeBSD ololo 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Aug 18 11:19:07 MSD 2011 root@ololo:/usr/obj/usr/src/sys/OLOLO amd64 >Description: Up to date. Critical changes, see changelog. >How-To-Repeat: >Fix: diff -ruN ctpp2.orig/Makefile ctpp2/Makefile --- ctpp2.orig/Makefile 2012-08-13 19:06:19.882162837 +0400 +++ ctpp2/Makefile 2012-08-13 19:05:45.844377867 +0400 @@ -6,7 +6,7 @@ # PORTNAME= ctpp2 -PORTVERSION= 2.8.1 +PORTVERSION= 2.8.2 CATEGORIES= textproc devel MASTER_SITES= http://ctpp.havoc.ru/download/ @@ -22,4 +22,55 @@ MAN1= ctpp2c.1 ctpp2vm.1 ctpp2i.1 ctpp2json.1 ctpp2-config.1 +OPTIONS_DEFINE= DEBUG DISCARD_ILSEQ DOCS MD5 OPTIMIZATION TRANSLITERATE +DEBUG_DESC= Enable debug output +DOCS_DESC= Enable htmldocs +OPTIMIZATION_DESC= Enable optimization +MD5_DESC= Enable md5 support +DISCARD_ILSEQ_DESC= Discard illegal sequence and continue +TRANSLITERATE_DESC= Enable transliteration in the conversion + +OPTIONS_DEFAULT= DISCARD_ILSEQ MD5 OPTIMIZATION TRANSLITERATE + +.include + +.if ${PORT_OPTIONS:MDEBUG} +CMAKE_ARGS+= -DDEBUG_MODE=ON +.else +CMAKE_ARGS+= -DDEBUG_MODE=OFF +.endif + +.if ${PORT_OPTIONS:MDOCS} +BUILD_DEPENDS+= rst2html:${PORTSDIR}/textproc/py-docutils +CMAKE_ARGS+= -DENABLE_DOCS=ON +PLIST_SUB+= DOCS="" +.else +CMAKE_ARGS+= -DENABLE_DOCS=OFF +PLIST_SUB+= DOCS="@comment " +.endif + +.if ${PORT_OPTIONS:MMD5} +CMAKE_ARGS+= -DMD5_SUPPORT=ON +.else +CMAKE_ARGS+= -DMD5_SUPPORT=OFF +.endif + +.if ${PORT_OPTIONS:MDISCARD_ILSEQ} +CMAKE_ARGS+= -DICONV_DISCARD_ILSEQ=ON +.else +CMAKE_ARGS+= -DICONV_DISCARD_ILSEQ=OFF +.endif + +.if ${PORT_OPTIONS:MTRANSLITERATE} +CMAKE_ARGS+= -DICONV_TRANSLITERATE=ON +.else +CMAKE_ARGS+= -DICONV_TRANSLITERATE=OFF +.endif + +.if ${PORT_OPTIONS:MOPTIMIZATION} +CMAKE_ARGS+= -DENABLE_OPTIMIZATION=ON +.else +CMAKE_ARGS+= -DENABLE_OPTIMIZATION=OFF +.endif + .include diff -ruN ctpp2.orig/distinfo ctpp2/distinfo --- ctpp2.orig/distinfo 2012-08-13 19:06:19.882162837 +0400 +++ ctpp2/distinfo 2012-08-13 14:12:25.833280368 +0400 @@ -1,2 +1,2 @@ -SHA256 (ctpp2-2.8.1.tar.gz) = 451a42572cc713cbde56b659a20200f6feb73337ed0496ca9e5fa9cf79ebb33a -SIZE (ctpp2-2.8.1.tar.gz) = 214747 +SHA256 (ctpp2-2.8.2.tar.gz) = 4d14b395520cf34bae8522a51b03b96b2da06ab4ee338047930d167a23a3dfc5 +SIZE (ctpp2-2.8.2.tar.gz) = 240096 diff -ruN ctpp2.orig/files/patch-CMakeLists.txt ctpp2/files/patch-CMakeLists.txt --- ctpp2.orig/files/patch-CMakeLists.txt 1970-01-01 03:00:00.000000000 +0300 +++ ctpp2/files/patch-CMakeLists.txt 2012-08-13 18:55:33.500907118 +0400 @@ -0,0 +1,44 @@ +--- CMakeLists.txt.orig 2012-07-13 16:53:18.000000000 +0400 ++++ CMakeLists.txt 2012-08-13 15:53:30.167118048 +0400 +@@ -21,6 +21,7 @@ + + OPTION(ICONV_DISCARD_ILSEQ "Discard illegal sequence and continue (iconv) [default: ON]" ON) + OPTION(ICONV_TRANSLITERATE "Enable transliteration in the conversion (iconv) [default: ON]" ON) ++OPTION(ENABLE_DOCS "Enable docs [default: OFF]" OFF) + + # Build optimized code for following CPU (default i386) + #SET(CPU_TUNE "i686") +@@ -656,6 +657,8 @@ + SET_TESTS_PROPERTIES(Calls_D PROPERTIES DEPENDS Calls_R) + ENDIF (DIFF_EXECUTABLE) + ++ ++IF(ENABLE_DOCS MATCHES "ON") + FIND_PROGRAM(RST2HTML_EXECUTABLE "rst2html" /usr/local/bin /usr/bin) + IF (RST2HTML_EXECUTABLE) + ADD_CUSTOM_COMMAND( +@@ -665,6 +668,7 @@ + ) + ADD_CUSTOM_TARGET(doc ALL DEPENDS template_language.html) + ENDIF (RST2HTML_EXECUTABLE) ++ENDIF(ENABLE_DOCS MATCHES "ON") + + # Install Headers + INSTALL(FILES include/CDT.hpp +@@ -810,13 +814,15 @@ + GROUP_READ + WORLD_READ) + ++IF(ENABLE_DOCS MATCHES "ON") + IF(RST2HTML_EXECUTABLE) + INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/template_language.html +- DESTINATION share/doc ++ DESTINATION share/doc/ctpp2 + PERMISSIONS OWNER_READ OWNER_WRITE + GROUP_READ + WORLD_READ) + ENDIF(RST2HTML_EXECUTABLE) ++ENDIF(ENABLE_DOCS MATCHES "ON") + + ENDIF("${CMAKE_SYSTEM_NAME}" MATCHES "Windows") + diff -ruN ctpp2.orig/pkg-plist ctpp2/pkg-plist --- ctpp2.orig/pkg-plist 2012-08-13 19:06:19.882162837 +0400 +++ ctpp2/pkg-plist 2012-08-13 18:58:44.807115589 +0400 @@ -65,8 +65,10 @@ include/ctpp2/STLPair.hpp include/ctpp2/STLString.hpp include/ctpp2/STLVector.hpp +%%DOCS%%%%DOCSDIR%%/template_language.html lib/libctpp2-st.a lib/libctpp2.so lib/libctpp2.so.2 lib/libctpp2.so.%%PORTVERSION%% +%%DOCS%%@dirrm %%DOCSDIR%% @dirrm include/ctpp2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 15:10:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B792C1065691; Mon, 13 Aug 2012 15: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 8B3C28FC17; Mon, 13 Aug 2012 15: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 q7DFAQEF045791; Mon, 13 Aug 2012 15: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 q7DFAQlW045787; Mon, 13 Aug 2012 15:10:26 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 15:10:26 GMT Message-Id: <201208131510.q7DFAQlW045787@freefall.freebsd.org> To: g.veniamin@googlemail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170610: [update]: textproc/ctpp2 up to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 15:10:26 -0000 Synopsis: [update]: textproc/ctpp2 up to new version State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Aug 13 15:10:26 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170610 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 15:20:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C485F1065672 for ; Mon, 13 Aug 2012 15: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 AEE3B8FC16 for ; Mon, 13 Aug 2012 15: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 q7DFKAmV047971 for ; Mon, 13 Aug 2012 15: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 q7DFKANr047970; Mon, 13 Aug 2012 15:20:10 GMT (envelope-from gnats) Date: Mon, 13 Aug 2012 15:20:10 GMT Message-Id: <201208131520.q7DFKANr047970@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170610: [update]: textproc/ctpp2 up to new version 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, 13 Aug 2012 15:20:10 -0000 The following reply was made to PR ports/170610; it has been noted by GNATS. From: Edwin Groothuis To: reki@reki.ru Cc: bug-followup@FreeBSD.org Subject: Re: ports/170610: [update]: textproc/ctpp2 up to new version Date: Mon, 13 Aug 2012 15:10:24 UT Maintainer of textproc/ctpp2, Please note that PR ports/170610 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/170610 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 15:20:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45FBA1065675 for ; Mon, 13 Aug 2012 15: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 1F7AD8FC14 for ; Mon, 13 Aug 2012 15: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 q7DFKE6E047989 for ; Mon, 13 Aug 2012 15: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 q7DFKDKH047988; Mon, 13 Aug 2012 15:20:13 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 15:20:13 GMT Resent-Message-Id: <201208131520.q7DFKDKH047988@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9F4A106566B for ; Mon, 13 Aug 2012 15:19:39 +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 B4D0B8FC0C for ; Mon, 13 Aug 2012 15:19:39 +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 q7DFJd6a039237 for ; Mon, 13 Aug 2012 15:19:39 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7DFJdV4039236; Mon, 13 Aug 2012 15:19:39 GMT (envelope-from nobody) Message-Id: <201208131519.q7DFJdV4039236@red.freebsd.org> Date: Mon, 13 Aug 2012 15:19:39 GMT From: Steven Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170611: [patch] update sysutils/rubygem-ohai to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 15:20:14 -0000 >Number: 170611 >Category: ports >Synopsis: [patch] update sysutils/rubygem-ohai to latest version >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 Aug 13 15:20:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steven Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/ohai-0.6.10.gem) = 221ebda60b428a49f50ae8d0bfb02e0deabb92b9da88f35516891eae1ae789b6 -SIZE (rubygem/ohai-0.6.10.gem) = 86528 +SHA256 (rubygem/ohai-6.14.0.gem) = 71a52511bf0bccda69ea415436bf984b403f6025db9b6e39b7705cd197f0f1e2 +SIZE (rubygem/ohai-6.14.0.gem) = 109056 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,17 +6,18 @@ # PORTNAME= ohai -PORTVERSION= 0.6.10 +PORTVERSION= 6.14.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Ohai profiles your system and emits JSON -RUN_DEPENDS= rubygem-mixlib-log>=0:${PORTSDIR}/devel/rubygem-mixlib-log \ +RUN_DEPENDS= rubygem-ipaddress>=0:${PORTSDIR}/net/rubygem-ipaddress \ + rubygem-mixlib-log>=0:${PORTSDIR}/devel/rubygem-mixlib-log \ rubygem-mixlib-config>=0:${PORTSDIR}/devel/rubygem-mixlib-config \ rubygem-mixlib-cli>=0:${PORTSDIR}/devel/rubygem-mixlib-cli \ - rubygem-systemu=2.2.0:${PORTSDIR}/devel/rubygem-systemu \ + rubygem-systemu>=0:${PORTSDIR}/devel/rubygem-systemu \ rubygem-yajl-ruby>=0:${PORTSDIR}/devel/rubygem-yajl-ruby USE_RUBY= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 15:20:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4339E1065687; Mon, 13 Aug 2012 15:20: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 165158FC1B; Mon, 13 Aug 2012 15: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 q7DFKP9X048088; Mon, 13 Aug 2012 15: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 q7DFKPPY048083; Mon, 13 Aug 2012 15:20:25 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 15:20:25 GMT Message-Id: <201208131520.q7DFKPPY048083@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170611: [patch] update sysutils/rubygem-ohai to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 15:20:26 -0000 Synopsis: [patch] update sysutils/rubygem-ohai to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 15:20:25 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170611 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 15:31:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF7AC106564A; Mon, 13 Aug 2012 15:31:15 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C2DE28FC19; Mon, 13 Aug 2012 15:31: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 q7DFVF3M050466; Mon, 13 Aug 2012 15:31:15 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DFVFNJ050462; Mon, 13 Aug 2012 15:31:15 GMT (envelope-from bdrewery) Date: Mon, 13 Aug 2012 15:31:15 GMT Message-Id: <201208131531.q7DFVFNJ050462@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/170571: [new port]: misc/leechcraft Cross-platform modular internet-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 15:31:16 -0000 Synopsis: [new port]: misc/leechcraft Cross-platform modular internet-client Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Mon Aug 13 15:31:15 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170571 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 21:00:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC778106566C for ; Mon, 13 Aug 2012 21:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8BE828FC0C for ; Mon, 13 Aug 2012 21: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 q7DL0Mjs091717 for ; Mon, 13 Aug 2012 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 q7DL0M4b091716; Mon, 13 Aug 2012 21:00:22 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 21:00:22 GMT Resent-Message-Id: <201208132100.q7DL0M4b091716@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Andree Received: from apollo.emma.line.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id 33309106566B; Mon, 13 Aug 2012 20:55:50 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mandree by apollo.emma.line.org with local (Exim 4.80 (FreeBSD)) (envelope-from ) id 1T11fF-00095z-VI; Mon, 13 Aug 2012 22:55:05 +0200 Message-Id: Date: Mon, 13 Aug 2012 22:55:05 +0200 From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: chalpin@cs.wisc.edu Subject: ports/170613: [PATCH] mail/fetchmail: update to 6.3.21_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, 13 Aug 2012 21:00:22 -0000 >Number: 170613 >Category: ports >Synopsis: [PATCH] mail/fetchmail: update to 6.3.21_1 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 21:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD apollo.emma.line.org 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #3: Fri Aug 10 23:05:39 CEST 2012 >Description: - Update to 6.3.21_1, with a security fix for NTLM auth (fixes a DoS/crash). Details to be disclosed later. Added file(s): - files/patch-3fbc7c Port maintainer (chalpin@cs.wisc.edu) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- fetchmail-6.3.21_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports//mail/fetchmail/Makefile ./Makefile --- /usr/ports//mail/fetchmail/Makefile 2012-02-25 00:56:18.000000000 +0100 +++ ./Makefile 2012-08-13 22:46:33.000000000 +0200 @@ -12,6 +12,7 @@ PORTNAME= fetchmail PORTVERSION= 6.3.21 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= BERLIOS/${PORTNAME}/ \ SF/${PORTNAME}/branch_6.3/ \ diff -ruN --exclude=CVS /usr/ports//mail/fetchmail/files/patch-3fbc7c ./files/patch-3fbc7c --- /usr/ports//mail/fetchmail/files/patch-3fbc7c 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-3fbc7c 2012-08-13 22:46:13.000000000 +0200 @@ -0,0 +1,38 @@ +commit 3fbc7cd331602c76f882d1b507cd05c1d824ba8b +Author: Matthias Andree +Date: Mon Aug 13 20:48:12 2012 +0200 + + Fix crash: Handle invalid base64 in NTLM challenge. + + Some servers, for instance the MS Exchange servers deployed by the + US-American National Aeronautics and Space Administration (NASA), + aborted the NTLM protocol exchange after receiving the initial request. + + Fetchmail did not detect that there was an error message, rather than + NTLM protocol exchange, and caught a segmentation fault while reading + from a bad location. + + Detect base64 decoding errors, and return PS_AUTHFAIL in this case. + + Reported by J[ames] Porter Clark. + +diff --git a/ntlmsubr.c b/ntlmsubr.c +index f9d2733..9321d26 100644 +--- a/ntlmsubr.c ++++ b/ntlmsubr.c +@@ -55,7 +55,14 @@ int ntlm_helper(int sock, struct query *ctl, const char *proto) + if ((result = gen_recv(sock, msgbuf, sizeof msgbuf))) + goto cancelfail; + +- (void)from64tobits (&challenge, msgbuf, sizeof(challenge)); ++ if ((result = from64tobits (&challenge, msgbuf, sizeof(challenge))) < 0) ++ { ++ report (stderr, GT_("could not decode BASE64 challenge\n")); ++ /* We do not goto cancelfail; the server has already sent the ++ * tagged reply, so the protocol exchange has ended, no need ++ * for us to send the asterisk. */ ++ return PS_AUTHFAIL; ++ } + + if (outlevel >= O_DEBUG) + dumpSmbNtlmAuthChallenge(stdout, &challenge); --- fetchmail-6.3.21_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 21:00:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C120106566B; Mon, 13 Aug 2012 21:00: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 4025A8FC08; Mon, 13 Aug 2012 21: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 q7DL0XbD091890; Mon, 13 Aug 2012 21:00:33 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DL0XlW091885; Mon, 13 Aug 2012 21:00:33 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 21:00:33 GMT Message-Id: <201208132100.q7DL0XlW091885@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mandree@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170613: [PATCH] mail/fetchmail: update to 6.3.21_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, 13 Aug 2012 21:00:33 -0000 Synopsis: [PATCH] mail/fetchmail: update to 6.3.21_1 Responsible-Changed-From-To: freebsd-ports-bugs->mandree Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 13 21:00:32 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170613 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 23:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F922106566B for ; Mon, 13 Aug 2012 23: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 065D98FC12 for ; Mon, 13 Aug 2012 23: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 q7DN0P85007186 for ; Mon, 13 Aug 2012 23: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 q7DN0Pgm007185; Mon, 13 Aug 2012 23:00:25 GMT (envelope-from gnats) Date: Mon, 13 Aug 2012 23:00:25 GMT Message-Id: <201208132300.q7DN0Pgm007185@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rainer Duffner Cc: Subject: Re: ports/170596: [update]: ports-mgmt/p5-FusionInventory-Agent up to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rainer Duffner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Aug 2012 23:00:26 -0000 The following reply was made to PR ports/170596; it has been noted by GNATS. From: Rainer Duffner To: bug-followup@FreeBSD.org, g.veniamin@googlemail.com Cc: Subject: Re: ports/170596: [update]: ports-mgmt/p5-FusionInventory-Agent up to new version Date: Tue, 14 Aug 2012 00:53:52 +0200 Hi, can you distribute some kind of tgz of the complete port? Some stuff does not apply here, because I tried one of the earlier = patches=85 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 23:30:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 95AB7106564A for ; Mon, 13 Aug 2012 23: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 4A9988FC16 for ; Mon, 13 Aug 2012 23: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 q7DNU8B4010445 for ; Mon, 13 Aug 2012 23: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 q7DNU8QH010444; Mon, 13 Aug 2012 23:30:08 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 23:30:08 GMT Resent-Message-Id: <201208132330.q7DNU8QH010444@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 Duffner Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 79F4B106564A for ; Mon, 13 Aug 2012 23:23:37 +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 657DA8FC15 for ; Mon, 13 Aug 2012 23:23:37 +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 q7DNNbM1053502 for ; Mon, 13 Aug 2012 23:23:37 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7DNNb85053501; Mon, 13 Aug 2012 23:23:37 GMT (envelope-from nobody) Message-Id: <201208132323.q7DNNb85053501@red.freebsd.org> Date: Mon, 13 Aug 2012 23:23:37 GMT From: Rainer Duffner To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170614: devel/php-xdebug brings in php54, even though php53 wanted X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 23:30:08 -0000 >Number: 170614 >Category: ports >Synopsis: devel/php-xdebug brings in php54, even though php53 wanted >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 Aug 13 23:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Rainer Duffner >Release: 9.0p3 >Organization: >Environment: FreeBSD build1.bla 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Hi, I have a tinderbox, and in my options I have: DEFAULT_PHP_VER=53 However, in the Makefile it generates: 1977 all: php-xdebug-2.2.0.tbz 1978 php-xdebug-2.2.0: php-xdebug-2.2.0.tbz 1979 php-xdebug-2.2.0.tbz: pcre-8.31.tbz libxml2-2.7.8_3.tbz pkgconf-0.8.5.tbz libiconv-1.14.tbz php5-5.4.5.tbz m4-1.4.16_1,1.tbz autoconf-wrapper-20101119.tbz perl-5.10.1_7.tbz libsigsegv-2.10.tbz autoconf-2.69.tbz Somehow, this gets overwritten. I'm not sure if I made a mistake or not. All my other ports compile with php53 correctly >How-To-Repeat: see above >Fix: I don't know. Maybe the port is pulling in PHP incorrectly. phpMyAdmin does get build with php53. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 23:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11E191065672 for ; Mon, 13 Aug 2012 23:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BBE928FC18 for ; Mon, 13 Aug 2012 23: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 q7DNU8Aq010474 for ; Mon, 13 Aug 2012 23: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 q7DNU8Vt010466; Mon, 13 Aug 2012 23:30:08 GMT (envelope-from gnats) Resent-Date: Mon, 13 Aug 2012 23:30:08 GMT Resent-Message-Id: <201208132330.q7DNU8Vt010466@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, Lukasz Wasikowski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C53DB106564A for ; Mon, 13 Aug 2012 23:27: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 B12528FC14 for ; Mon, 13 Aug 2012 23:27: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 q7DNRhMS067901 for ; Mon, 13 Aug 2012 23:27:43 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7DNRhbM067900; Mon, 13 Aug 2012 23:27:43 GMT (envelope-from nobody) Message-Id: <201208132327.q7DNRhbM067900@red.freebsd.org> Date: Mon, 13 Aug 2012 23:27:43 GMT From: Lukasz Wasikowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170615: [maintainer update] Update mail/sgwi 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: Mon, 13 Aug 2012 23:30:09 -0000 >Number: 170615 >Category: ports >Synopsis: [maintainer update] Update mail/sgwi to 1.1.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Aug 13 23:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Lukasz Wasikowski >Release: 8.3-RELEASE-p3 >Organization: >Environment: FreeBSD bijou.wasikowski.net 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #8: Tue Jun 12 20:34:35 CEST 2012 root@bijou.wasikowski.net:/usr/obj/usr/src/sys/bijou i386 >Description: sgwi update to version 1.1.5. >How-To-Repeat: >Fix: Patch attached. Patch attached with submission follows: diff -ruN sgwi.bak/Makefile sgwi/Makefile --- sgwi.bak/Makefile 2011-08-11 09:03:22.000000000 +0200 +++ sgwi/Makefile 2012-08-14 01:15:32.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= sgwi -PORTVERSION= 1.1.2 +PORTVERSION= 1.1.5 CATEGORIES= mail www MASTER_SITES= http://www.vanheusden.com/sgwi/ DISTNAME= sqlgreywebinterface-${PORTVERSION} diff -ruN sgwi.bak/distinfo sgwi/distinfo --- sgwi.bak/distinfo 2011-06-12 06:21:15.000000000 +0200 +++ sgwi/distinfo 2012-08-14 01:16:28.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (sqlgreywebinterface-1.1.2.tgz) = 60f45f9e1ba2f040e1d403825eadbdd5a5659e4c08915f5d3dacbc99f3971bf0 -SIZE (sqlgreywebinterface-1.1.2.tgz) = 8806 +SHA256 (sqlgreywebinterface-1.1.5.tgz) = 95680533e7a9530f2fea90819da9fdd8533b4f57bbc585ddf44eaa7ab26a6c70 +SIZE (sqlgreywebinterface-1.1.5.tgz) = 9088 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 23:30:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1A4E1065679; Mon, 13 Aug 2012 23:30: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 C4D988FC1E; Mon, 13 Aug 2012 23:30: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 q7DNURej011620; Mon, 13 Aug 2012 23:30:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DNURwq011614; Mon, 13 Aug 2012 23:30:27 GMT (envelope-from edwin) Date: Mon, 13 Aug 2012 23:30:27 GMT Message-Id: <201208132330.q7DNURwq011614@freefall.freebsd.org> To: rainer@ultra-secure.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170614: devel/php-xdebug brings in php54, even though php53 wanted X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 13 Aug 2012 23:30:28 -0000 Synopsis: devel/php-xdebug brings in php54, even though php53 wanted State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Aug 13 23:30:27 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170614 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 23:40:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26EC9106566C for ; Mon, 13 Aug 2012 23: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 121208FC12 for ; Mon, 13 Aug 2012 23: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 q7DNeCm5013183 for ; Mon, 13 Aug 2012 23: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 q7DNeC7b013182; Mon, 13 Aug 2012 23:40:12 GMT (envelope-from gnats) Date: Mon, 13 Aug 2012 23:40:12 GMT Message-Id: <201208132340.q7DNeC7b013182@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170614: devel/php-xdebug brings in php54, even though php53 wanted 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, 13 Aug 2012 23:40:13 -0000 The following reply was made to PR ports/170614; it has been noted by GNATS. From: Edwin Groothuis To: wmoran@collaborativefusion.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/170614: devel/php-xdebug brings in php54, even though php53 wanted Date: Mon, 13 Aug 2012 23:30:23 UT Maintainer of devel/php-xdebug, Please note that PR ports/170614 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/170614 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 13 23:50:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0D91106566B; Mon, 13 Aug 2012 23:50:21 +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 A3DE48FC08; Mon, 13 Aug 2012 23: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 q7DNoLPc014144; Mon, 13 Aug 2012 23:50:21 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7DNoLxT014139; Mon, 13 Aug 2012 23:50:21 GMT (envelope-from scheidell) Date: Mon, 13 Aug 2012 23:50:21 GMT Message-Id: <201208132350.q7DNoLxT014139@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170570: [MAINTAINER] security/gpa: Update to 0.9.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: Mon, 13 Aug 2012 23:50:21 -0000 Synopsis: [MAINTAINER] security/gpa: Update to 0.9.3 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Mon Aug 13 23:50:21 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170570 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 00:50:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 131B1106564A for ; Tue, 14 Aug 2012 00: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 DE4398FC12 for ; Tue, 14 Aug 2012 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 q7E0oAjc027974 for ; Tue, 14 Aug 2012 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 q7E0oAjI027973; Tue, 14 Aug 2012 00:50:10 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 00:50:10 GMT Resent-Message-Id: <201208140050.q7E0oAjI027973@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" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E24FE106564A for ; Tue, 14 Aug 2012 00:45:16 +0000 (UTC) (envelope-from pawel@gagol.pl) Received: from mail-lpp01m010-f54.google.com (mail-lpp01m010-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 56C038FC0A for ; Tue, 14 Aug 2012 00:45:15 +0000 (UTC) Received: by lage12 with SMTP id e12so2791754lag.13 for ; Mon, 13 Aug 2012 17:45:09 -0700 (PDT) Received: by 10.112.46.101 with SMTP id u5mr7131579lbm.21.1344905109439; Mon, 13 Aug 2012 17:45:09 -0700 (PDT) Received: from gagol.pl (h87n7-m-rg-a13.ias.bredband.telia.com. [81.224.214.87]) by mx.google.com with ESMTPS id s3sm209007lbk.11.2012.08.13.17.45.07 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 13 Aug 2012 17:45:08 -0700 (PDT) Message-Id: <1344905108.8404@gagol.pl> Date: Tue, 14 Aug 2012 02:45:08 +0200 From: "Pawel" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/170616: gpk-update-viewer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 14 Aug 2012 00:50:11 -0000 >Number: 170616 >Category: ports >Synopsis: gpk-update-viewer >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 Aug 14 00:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pawel >Release: FreeBSD 9.0-RELEASE i386 >Organization: >Environment: System: FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC >Description: >From gpk-update-viewer: command 'update-packages' is not known Cannot update. There is no authentication mechanism, sudo is necessary. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 01:20:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E2DB106566B for ; Tue, 14 Aug 2012 01: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 DAFEA8FC17 for ; Tue, 14 Aug 2012 01: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 q7E1KAEM031510 for ; Tue, 14 Aug 2012 01: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 q7E1KAMv031509; Tue, 14 Aug 2012 01:20:10 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 01:20:10 GMT Resent-Message-Id: <201208140120.q7E1KAMv031509@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kevin Oberman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A3CA106564A for ; Tue, 14 Aug 2012 01:19:14 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id C6B388FC0C for ; Tue, 14 Aug 2012 01:19:13 +0000 (UTC) Received: by mail-yw0-f54.google.com with SMTP id s35so4733353yhf.13 for ; Mon, 13 Aug 2012 18:19:13 -0700 (PDT) Received: by 10.50.182.161 with SMTP id ef1mr8495455igc.0.1344907153262; Mon, 13 Aug 2012 18:19:13 -0700 (PDT) Received: from rogue.comcast.net (c-76-102-76-219.hsd1.ca.comcast.net. [76.102.76.219]) by mx.google.com with ESMTPS id gh2sm17677151igb.9.2012.08.13.18.19.10 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 13 Aug 2012 18:19:12 -0700 (PDT) Received: by rogue.comcast.net (Postfix, from userid 9381) id 6433A2847F; Mon, 13 Aug 2012 18:19:08 -0700 (PDT) Message-Id: <20120814011908.6433A2847F@rogue.comcast.net> Date: Mon, 13 Aug 2012 18:19:08 -0700 (PDT) From: Kevin Oberman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kevin Oberman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 01:20:11 -0000 >Number: 170617 >Category: ports >Synopsis: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 >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 Aug 14 01:20:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kevin Oberman >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: ESnet -- The Energy Sciences Network >Environment: System: FreeBSD rogue.local 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #1: Tue Jul 31 22:15:58 PDT 2012 root@rogue.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update the net-mgmt/irrtoolset port to 5.0.1 which was released today >How-To-Repeat: N/A >Fix: Patch port as follows: te created: May 4th 1997 # Whom: James FitzGibbon # -# $FreeBSD: ports/net-mgmt/irrtoolset/Makefile,v 1.38 2010/12/04 07:33:09 ade Exp $ +# $FreeBSD: oberman/net-mgmt/irrtoolset/Makefile 5993 2012-08-14 00:18:10Z oberman $ # PORTNAME= irrtoolset -PORTVERSION= 5.0.0 +PORTVERSION= 5.0.1 CATEGORIES= net-mgmt MASTER_SITES= ISC/IRRToolSet/IRRToolSet-${PORTVERSION} diff -ruN /usr/ports/net-mgmt/irrtoolset/distinfo /home/oberman/ports/oberman/net-mgmt/irrtoolset/distinfo --- /usr/ports/net-mgmt/irrtoolset/distinfo 2011-03-20 05:53:52.000000000 -0700 +++ /home/oberman/ports/oberman/net-mgmt/irrtoolset/distinfo 2012-08-13 17:20:40.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (irrtoolset-5.0.0.tar.gz) = 67dc89d1762480e54215ec5ab3320061d2f5a310348b24dcaf0e5c19dbb6c009 -SIZE (irrtoolset-5.0.0.tar.gz) = 611849 +SIZE (irrtoolset-5.0.1.tar.gz) = 639889 +SHA256 (irrtoolset-5.0.1.tar.gz) = c044e4e009bf82db84f6a4f4d5ad563b07357f2d0e9f0bbaaf867e9b33fa5e80 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 01:20:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 578581065689; Tue, 14 Aug 2012 01: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 2C25C8FC0C; Tue, 14 Aug 2012 01: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 q7E1KLUo031650; Tue, 14 Aug 2012 01: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 q7E1KLCH031646; Tue, 14 Aug 2012 01:20:21 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 01:20:21 GMT Message-Id: <201208140120.q7E1KLCH031646@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/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 01:20:21 -0000 Synopsis: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Tue Aug 14 01:20:20 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170617 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 01:20:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5057106568E; Tue, 14 Aug 2012 01:20: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 58ECA8FC1A; Tue, 14 Aug 2012 01: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 q7E1KQT3031731; Tue, 14 Aug 2012 01: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 q7E1KQoE031727; Tue, 14 Aug 2012 01:20:26 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 01:20:26 GMT Message-Id: <201208140120.q7E1KQoE031727@freefall.freebsd.org> To: oberman@es.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 01:20:26 -0000 Synopsis: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Aug 14 01:20:25 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170617 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 01:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BA83106566C for ; Tue, 14 Aug 2012 01: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 699418FC08 for ; Tue, 14 Aug 2012 01: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 q7E1UBe8032233 for ; Tue, 14 Aug 2012 01: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 q7E1UBre032230; Tue, 14 Aug 2012 01:30:11 GMT (envelope-from gnats) Date: Tue, 14 Aug 2012 01:30:11 GMT Message-Id: <201208140130.q7E1UBre032230@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.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: Tue, 14 Aug 2012 01:30:11 -0000 The following reply was made to PR ports/170617; it has been noted by GNATS. From: Edwin Groothuis To: oberman@es.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 Date: Tue, 14 Aug 2012 01:20:23 UT Maintainer of net-mgmt/irrtoolset, Please note that PR ports/170617 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/170617 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 01:30:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6056A106564A for ; Tue, 14 Aug 2012 01: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 315298FC0C for ; Tue, 14 Aug 2012 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 q7E1UEUL032384 for ; Tue, 14 Aug 2012 01: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 q7E1UEJc032381; Tue, 14 Aug 2012 01:30:14 GMT (envelope-from gnats) Date: Tue, 14 Aug 2012 01:30:14 GMT Message-Id: <201208140130.q7E1UEJc032381@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Kevin Oberman" Cc: Subject: Re: ports/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kevin Oberman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 01:30:15 -0000 The following reply was made to PR ports/170617; it has been noted by GNATS. From: "Kevin Oberman" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 Date: Mon, 13 Aug 2012 18:26:05 -0700 I submitted the update, so I guess I approve it, too. Not sure why I got this. -- R. Kevin Oberman, Network Engineer Emeritus Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 01:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E320106568A for ; Tue, 14 Aug 2012 01: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 D588D8FC17 for ; Tue, 14 Aug 2012 01: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 q7E1o8Ng036044 for ; Tue, 14 Aug 2012 01: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 q7E1o8Ug036043; Tue, 14 Aug 2012 01:50:08 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 01:50:08 GMT Resent-Message-Id: <201208140150.q7E1o8Ug036043@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81614106564A for ; Tue, 14 Aug 2012 01:44:18 +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 6CF858FC1D for ; Tue, 14 Aug 2012 01:44:18 +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 q7E1iIm8086531 for ; Tue, 14 Aug 2012 01:44:18 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7E1iI91086530; Tue, 14 Aug 2012 01:44:18 GMT (envelope-from nobody) Message-Id: <201208140144.q7E1iI91086530@red.freebsd.org> Date: Tue, 14 Aug 2012 01:44:18 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170618: [patch] update ftp/rubygem-curb to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 01:50:09 -0000 >Number: 170618 >Category: ports >Synopsis: [patch] update ftp/rubygem-curb to latest version >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 Aug 14 01:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/curb-0.7.17.gem) = 146561c4116e9efd1a89f015d36162d66f7401ccadba5162c09344bb7d7b3a41 -SIZE (rubygem/curb-0.7.17.gem) = 76288 +SHA256 (rubygem/curb-0.8.1.gem) = 6d491a188aabb9c855b5e0c0e239efa20917ee0ac11623df1cecf09809dda436 +SIZE (rubygem/curb-0.8.1.gem) = 78848 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= curb -PORTVERSION= 0.7.17 +PORTVERSION= 0.8.1 CATEGORIES= ftp rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 01:50:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E289F106566C; Tue, 14 Aug 2012 01: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 B66668FC14; Tue, 14 Aug 2012 01: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 q7E1oJPC036193; Tue, 14 Aug 2012 01: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 q7E1oJwX036189; Tue, 14 Aug 2012 01:50:19 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 01:50:19 GMT Message-Id: <201208140150.q7E1oJwX036189@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170618: [patch] update ftp/rubygem-curb to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 01:50:20 -0000 Synopsis: [patch] update ftp/rubygem-curb to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 01:50:19 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170618 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 02:00:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 784751065674 for ; Tue, 14 Aug 2012 02: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 31D678FC08 for ; Tue, 14 Aug 2012 02: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 q7E20QiT036632 for ; Tue, 14 Aug 2012 02: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 q7E20QTg036631; Tue, 14 Aug 2012 02:00:26 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 02:00:26 GMT Resent-Message-Id: <201208140200.q7E20QTg036631@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEBD51065674 for ; Tue, 14 Aug 2012 01:52:05 +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 DA37C8FC15 for ; Tue, 14 Aug 2012 01:52:05 +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 q7E1q5dm001311 for ; Tue, 14 Aug 2012 01:52:05 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7E1q5Zt001310; Tue, 14 Aug 2012 01:52:05 GMT (envelope-from nobody) Message-Id: <201208140152.q7E1q5Zt001310@red.freebsd.org> Date: Tue, 14 Aug 2012 01:52:05 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170619: [patch] update graphics/rubygem-image_science to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 02:00:27 -0000 >Number: 170619 >Category: ports >Synopsis: [patch] update graphics/rubygem-image_science to latest version >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 Aug 14 02:00:26 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/curb-0.7.17.gem) = 146561c4116e9efd1a89f015d36162d66f7401ccadba5162c09344bb7d7b3a41 -SIZE (rubygem/curb-0.7.17.gem) = 76288 +SHA256 (rubygem/curb-0.8.1.gem) = 6d491a188aabb9c855b5e0c0e239efa20917ee0ac11623df1cecf09809dda436 +SIZE (rubygem/curb-0.8.1.gem) = 78848 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= curb -PORTVERSION= 0.7.17 +PORTVERSION= 0.8.1 CATEGORIES= ftp rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 02:00:42 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6830F106564A; Tue, 14 Aug 2012 02: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 3B3B18FC12; Tue, 14 Aug 2012 02: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 q7E20gRs036747; Tue, 14 Aug 2012 02: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 q7E20gj1036743; Tue, 14 Aug 2012 02:00:42 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 02:00:42 GMT Message-Id: <201208140200.q7E20gj1036743@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170619: [patch] update graphics/rubygem-image_science to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 02:00:42 -0000 Synopsis: [patch] update graphics/rubygem-image_science to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 02:00:41 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170619 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 02:50:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAB5D1065679 for ; Tue, 14 Aug 2012 02: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 AA35E8FC0A for ; Tue, 14 Aug 2012 02: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 q7E2oBhh043377 for ; Tue, 14 Aug 2012 02: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 q7E2oBjP043376; Tue, 14 Aug 2012 02:50:11 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 02:50:11 GMT Resent-Message-Id: <201208140250.q7E2oBjP043376@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99331106564A for ; Tue, 14 Aug 2012 02:40: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 844688FC08 for ; Tue, 14 Aug 2012 02:40: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 q7E2ecuD074430 for ; Tue, 14 Aug 2012 02:40:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7E2ecGw074429; Tue, 14 Aug 2012 02:40:38 GMT (envelope-from nobody) Message-Id: <201208140240.q7E2ecGw074429@red.freebsd.org> Date: Tue, 14 Aug 2012 02:40:38 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170621: [patch] update net/rubygem-amq-protocol to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 02:50:12 -0000 >Number: 170621 >Category: ports >Synopsis: [patch] update net/rubygem-amq-protocol to latest version >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 Aug 14 02:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/amq-protocol-0.9.0.gem) = 37f7c04d0246f0173bfdd8f25edf7eb6152fb346a2e7184a359cfd68df3942e2 -SIZE (rubygem/amq-protocol-0.9.0.gem) = 40448 +SHA256 (rubygem/amq-protocol-0.9.4.gem) = e2a3a406d3f0678b86adba668e50bb8772e06445760be683fc5dbb98f94874bd +SIZE (rubygem/amq-protocol-0.9.4.gem) = 39936 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -5,12 +5,12 @@ # $FreeBSD$ PORTNAME= amq-protocol -PORTVERSION= 0.9.0 +PORTVERSION= 0.9.4 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= clsung@FreeBSD.org -COMMENT= An AMQP 0.9.1 serialization library for Ruby +COMMENT= An AMQP serialization library for Ruby USE_RUBY= yes USE_RUBYGEMS= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 02:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68428106566B for ; Tue, 14 Aug 2012 02: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 284A08FC14 for ; Tue, 14 Aug 2012 02: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 q7E2oC5i043386 for ; Tue, 14 Aug 2012 02: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 q7E2oC7R043385; Tue, 14 Aug 2012 02:50:12 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 02:50:12 GMT Resent-Message-Id: <201208140250.q7E2oC7R043385@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 9C5A9106564A for ; Tue, 14 Aug 2012 02:41:23 +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 87CE38FC0C for ; Tue, 14 Aug 2012 02:41:23 +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 q7E2fNqt074516 for ; Tue, 14 Aug 2012 02:41:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7E2fNpv074515; Tue, 14 Aug 2012 02:41:23 GMT (envelope-from nobody) Message-Id: <201208140241.q7E2fNpv074515@red.freebsd.org> Date: Tue, 14 Aug 2012 02:41:23 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170622: [patch] update net/rubygem-amq-client to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 02:50:12 -0000 >Number: 170622 >Category: ports >Synopsis: [patch] update net/rubygem-amq-client to latest version >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 Aug 14 02:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/amq-client-0.9.2.gem) = 4f4d58376950d159d7114a1e31670b0efcc05fa577d4390380b1e71200bd319c -SIZE (rubygem/amq-client-0.9.2.gem) = 74752 +SHA256 (rubygem/amq-client-0.9.4.gem) = 7be618ce90bfada7abf556e0981d3d5a34222bba514288a9babad3d90a3dd63b +SIZE (rubygem/amq-client-0.9.4.gem) = 74752 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= amq-client -PORTVERSION= 0.9.2 +PORTVERSION= 0.9.4 CATEGORIES= net rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 02:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6C5A1065673 for ; Tue, 14 Aug 2012 02: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 8712D8FC16 for ; Tue, 14 Aug 2012 02: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 q7E2oCpa043396 for ; Tue, 14 Aug 2012 02: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 q7E2oCCM043395; Tue, 14 Aug 2012 02:50:12 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 02:50:12 GMT Resent-Message-Id: <201208140250.q7E2oCCM043395@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C138106566B for ; Tue, 14 Aug 2012 02:42:23 +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 482678FC15 for ; Tue, 14 Aug 2012 02:42:23 +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 q7E2gNEH074571 for ; Tue, 14 Aug 2012 02:42:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7E2gNcP074570; Tue, 14 Aug 2012 02:42:23 GMT (envelope-from nobody) Message-Id: <201208140242.q7E2gNcP074570@red.freebsd.org> Date: Tue, 14 Aug 2012 02:42:23 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170623: [patch] update net/rubygem-amqp to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 02:50:12 -0000 >Number: 170623 >Category: ports >Synopsis: [patch] update net/rubygem-amqp to latest version >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 Aug 14 02:50:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/amqp-0.9.3.gem) = 7e9a3f4386a4bf2cbf725d9ea81caa851c2d8a84df4f13a1e87b1b7cf25df8d8 -SIZE (rubygem/amqp-0.9.3.gem) = 1167360 +SHA256 (rubygem/amqp-0.9.7.gem) = 7f7de46c59926f08bc380f7cee73ffeeb7df8355b036ff10671c9bddf2171c79 +SIZE (rubygem/amqp-0.9.7.gem) = 1167872 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,15 +6,15 @@ # PORTNAME= amqp -PORTVERSION= 0.9.3 +PORTVERSION= 0.9.7 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= clsung@FreeBSD.org COMMENT= An implementation of the AMQP protocol for RabbitMQ clients -RUN_DEPENDS= rubygem-amq-client>=0.9.2:${PORTSDIR}/net/rubygem-amq-client \ - rubygem-amq-protocol>=0.9.0:${PORTSDIR}/net/rubygem-amq-protocol \ +RUN_DEPENDS= rubygem-amq-client>=0.9.4:${PORTSDIR}/net/rubygem-amq-client \ + rubygem-amq-protocol>=0.9.4:${PORTSDIR}/net/rubygem-amq-protocol \ rubygem-eventmachine>=0:${PORTSDIR}/devel/rubygem-eventmachine USE_RUBY= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 02:50:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 073FA106564A; Tue, 14 Aug 2012 02: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 CEEB18FC0C; Tue, 14 Aug 2012 02:50: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 q7E2oMkG043554; Tue, 14 Aug 2012 02:50:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E2oMX2043550; Tue, 14 Aug 2012 02:50:22 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 02:50:22 GMT Message-Id: <201208140250.q7E2oMX2043550@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170621: [patch] update net/rubygem-amq-protocol to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 02:50:23 -0000 Synopsis: [patch] update net/rubygem-amq-protocol to latest version Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 02:50:22 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170621 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 02:50:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0988F106566B; Tue, 14 Aug 2012 02:50: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 D14388FC19; Tue, 14 Aug 2012 02:50: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 q7E2oR42043643; Tue, 14 Aug 2012 02:50:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E2oRu8043639; Tue, 14 Aug 2012 02:50:27 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 02:50:27 GMT Message-Id: <201208140250.q7E2oRu8043639@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170622: [patch] update net/rubygem-amq-client to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 02:50:28 -0000 Synopsis: [patch] update net/rubygem-amq-client to latest version Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 02:50:27 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170622 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 02:50:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FD2B106566C; Tue, 14 Aug 2012 02:50: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 135398FC1C; Tue, 14 Aug 2012 02:50: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 q7E2oW1j043736; Tue, 14 Aug 2012 02:50:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E2oWQa043732; Tue, 14 Aug 2012 02:50:32 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 02:50:32 GMT Message-Id: <201208140250.q7E2oWQa043732@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170623: [patch] update net/rubygem-amqp to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 02:50:33 -0000 Synopsis: [patch] update net/rubygem-amqp to latest version Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 02:50:32 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170623 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 03:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F2D4106564A for ; Tue, 14 Aug 2012 03: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 0863F8FC18 for ; Tue, 14 Aug 2012 03: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 q7E30OQv043921 for ; Tue, 14 Aug 2012 03: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 q7E30Od7043920; Tue, 14 Aug 2012 03:00:24 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 03:00:24 GMT Resent-Message-Id: <201208140300.q7E30Od7043920@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4BE37106564A for ; Tue, 14 Aug 2012 03:00:07 +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 6BAD08FC0C for ; Tue, 14 Aug 2012 03:00: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 q7E306UB004254 for ; Tue, 14 Aug 2012 03:00:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7E304iY004249; Tue, 14 Aug 2012 03:00:04 GMT (envelope-from nobody) Message-Id: <201208140300.q7E304iY004249@red.freebsd.org> Date: Tue, 14 Aug 2012 03:00:04 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170625: [patch] update net/rubygem-simple_oauth to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 03:00:26 -0000 >Number: 170625 >Category: ports >Synopsis: [patch] update net/rubygem-simple_oauth to latest version >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 Aug 14 03:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/simple_oauth-0.1.8.gem) = 72cadcffdd3afd2eef38f9ea801092e41ffb990fa65bb32d6cd4925cb181bd81 -SIZE (rubygem/simple_oauth-0.1.8.gem) = 11264 +SHA256 (rubygem/simple_oauth-0.1.9.gem) = 723f19781f5562182e075a0f31bca11a955962d933064abb23bce98ed035602d +SIZE (rubygem/simple_oauth-0.1.9.gem) = 11264 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= simple_oauth -PORTVERSION= 0.1.8 +PORTVERSION= 0.1.9 CATEGORIES= net rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 03:00:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29C5E1065675; Tue, 14 Aug 2012 03: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 F0AFC8FC08; Tue, 14 Aug 2012 03: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 q7E30ZcT044089; Tue, 14 Aug 2012 03: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 q7E30ZQP044085; Tue, 14 Aug 2012 03:00:35 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 03:00:35 GMT Message-Id: <201208140300.q7E30ZQP044085@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170625: [patch] update net/rubygem-simple_oauth to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 03:00:36 -0000 Synopsis: [patch] update net/rubygem-simple_oauth to latest version Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 03:00:35 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170625 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 04:43:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BB161065674; Tue, 14 Aug 2012 04:43: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 E30A68FC12; Tue, 14 Aug 2012 04:43: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 q7E4hLHa057327; Tue, 14 Aug 2012 04:43:21 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E4hLXa057323; Tue, 14 Aug 2012 04:43:21 GMT (envelope-from rm) Date: Tue, 14 Aug 2012 04:43:21 GMT Message-Id: <201208140443.q7E4hLXa057323@freefall.freebsd.org> To: appleboy.tw@gmail.com, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170591: [MAINTAINER] www/codeigniter: update to 2.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: Tue, 14 Aug 2012 04:43:22 -0000 Synopsis: [MAINTAINER] www/codeigniter: update to 2.1.2 State-Changed-From-To: open->closed State-Changed-By: rm State-Changed-When: Tue Aug 14 04:43:21 UTC 2012 State-Changed-Why: Committed, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=170591 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 04:44:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32F7B106564A; Tue, 14 Aug 2012 04:44:29 +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 069E68FC0A; Tue, 14 Aug 2012 04:44: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 q7E4iScP057424; Tue, 14 Aug 2012 04:44:28 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E4iSTL057420; Tue, 14 Aug 2012 04:44:28 GMT (envelope-from rm) Date: Tue, 14 Aug 2012 04:44:28 GMT Message-Id: <201208140444.q7E4iSTL057420@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170615: [maintainer update] Update mail/sgwi 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: Tue, 14 Aug 2012 04:44:29 -0000 Synopsis: [maintainer update] Update mail/sgwi to 1.1.5 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Aug 14 04:44:28 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170615 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 04:44:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0DAD1065673; Tue, 14 Aug 2012 04:44:46 +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 C4FBE8FC1B; Tue, 14 Aug 2012 04:44: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 q7E4ikEu057506; Tue, 14 Aug 2012 04:44:46 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E4ikmP057502; Tue, 14 Aug 2012 04:44:46 GMT (envelope-from rm) Date: Tue, 14 Aug 2012 04:44:46 GMT Message-Id: <201208140444.q7E4ikmP057502@freefall.freebsd.org> To: oberman@es.net, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 04:44:47 -0000 Synopsis: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Aug 14 04:44:46 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170617 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 04:45:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E183106566C; Tue, 14 Aug 2012 04:45:16 +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 62D168FC18; Tue, 14 Aug 2012 04:45: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 q7E4jGt5057612; Tue, 14 Aug 2012 04:45:16 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E4jGNi057608; Tue, 14 Aug 2012 04:45:16 GMT (envelope-from rm) Date: Tue, 14 Aug 2012 04:45:16 GMT Message-Id: <201208140445.q7E4jGNi057608@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170608: Maintainer port update: x11-fm/worker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 14 Aug 2012 04:45:16 -0000 Synopsis: Maintainer port update: x11-fm/worker Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Aug 14 04:45:15 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170608 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 04:45:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD1A6106566C; Tue, 14 Aug 2012 04:45:44 +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 A1CCC8FC19; Tue, 14 Aug 2012 04:45: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 q7E4jiOf057746; Tue, 14 Aug 2012 04:45:44 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E4jiGl057742; Tue, 14 Aug 2012 04:45:44 GMT (envelope-from rm) Date: Tue, 14 Aug 2012 04:45:44 GMT Message-Id: <201208140445.q7E4jiGl057742@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170598: [update]: net-mgmt/glpi-plugins-fusioninventory-server up to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 04:45:44 -0000 Synopsis: [update]: net-mgmt/glpi-plugins-fusioninventory-server up to new version Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Aug 14 04:45:44 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170598 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 04:46:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F37E106564A; Tue, 14 Aug 2012 04:46: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 23D728FC14; Tue, 14 Aug 2012 04:46: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 q7E4kZIx057925; Tue, 14 Aug 2012 04:46:35 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E4kYIg057921; Tue, 14 Aug 2012 04:46:35 GMT (envelope-from rm) Date: Tue, 14 Aug 2012 04:46:35 GMT Message-Id: <201208140446.q7E4kYIg057921@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170596: [update]: ports-mgmt/p5-FusionInventory-Agent up to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 04:46:35 -0000 Synopsis: [update]: ports-mgmt/p5-FusionInventory-Agent up to new version Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Aug 14 04:46:34 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170596 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 04:47:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2D16106564A; Tue, 14 Aug 2012 04:47:09 +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 C681E8FC1D; Tue, 14 Aug 2012 04:47: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 q7E4l9uo058064; Tue, 14 Aug 2012 04:47:09 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E4l9vI058060; Tue, 14 Aug 2012 04:47:09 GMT (envelope-from rm) Date: Tue, 14 Aug 2012 04:47:09 GMT Message-Id: <201208140447.q7E4l9vI058060@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170587: [maintainer-update] devel/cmake-fedora 1.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: Tue, 14 Aug 2012 04:47:10 -0000 Synopsis: [maintainer-update] devel/cmake-fedora 1.0.3 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Tue Aug 14 04:47:09 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170587 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 04:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A734106566C for ; Tue, 14 Aug 2012 04: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 0BE828FC17 for ; Tue, 14 Aug 2012 04: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 q7E4oBwf058501 for ; Tue, 14 Aug 2012 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 q7E4oBnp058500; Tue, 14 Aug 2012 04:50:11 GMT (envelope-from gnats) Date: Tue, 14 Aug 2012 04:50:11 GMT Message-Id: <201208140450.q7E4oBnp058500@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/170591: 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, 14 Aug 2012 04:50:12 -0000 The following reply was made to PR ports/170591; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170591: commit references a PR Date: Tue, 14 Aug 2012 04:40:57 +0000 (UTC) Author: rm Date: Tue Aug 14 04:40:46 2012 New Revision: 302489 URL: http://svn.freebsd.org/changeset/ports/302489 Log: - update to 2.1.2 - add some missing tabs while here PR: 170591 Submitted by: Bo-Yi Wu (maintainer) Modified: head/www/codeigniter/Makefile head/www/codeigniter/distinfo Modified: head/www/codeigniter/Makefile ============================================================================== --- head/www/codeigniter/Makefile Tue Aug 14 03:42:11 2012 (r302488) +++ head/www/codeigniter/Makefile Tue Aug 14 04:40:46 2012 (r302489) @@ -6,10 +6,10 @@ # PORTNAME= codeigniter -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 CATEGORIES= www MASTER_SITES= http://downloads.codeigniter.com/reactor/ \ - http://www.codeigniter.org.tw/download_files/ + http://www.codeigniter.org.tw/download_files/ DISTNAME= CodeIgniter_${PORTVERSION} MAINTAINER= appleboy.tw@gmail.com @@ -25,8 +25,8 @@ WANT_PHP_WEB= yes CI_SYS_DIR= system CI_CONF_DIR= application/config -WRKSRC= ${WRKDIR}/${DISTNAME} -WWWDIR= ${PREFIX}/www/codeigniter +WRKSRC= ${WRKDIR}/${DISTNAME} +WWWDIR= ${PREFIX}/www/codeigniter PORTDOCS= * LATEST_LINK= codeigniter-devel Modified: head/www/codeigniter/distinfo ============================================================================== --- head/www/codeigniter/distinfo Tue Aug 14 03:42:11 2012 (r302488) +++ head/www/codeigniter/distinfo Tue Aug 14 04:40:46 2012 (r302489) @@ -1,2 +1,2 @@ -SHA256 (CodeIgniter_2.1.1.zip) = ae57494d7659837cc4aa33f7532d6c8373a984acc9c087f69fc96724f582a789 -SIZE (CodeIgniter_2.1.1.zip) = 2318153 +SHA256 (CodeIgniter_2.1.2.zip) = 775ffeb9f8faf6faa9a987d68a9432c0ff478afe85cac9a63cf0d5f51d91d657 +SIZE (CodeIgniter_2.1.2.zip) = 2319509 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 06:06:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mandree.no-ip.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id 52623106566C; Tue, 14 Aug 2012 06:06:09 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1]) by apollo.emma.line.org (Postfix) with ESMTP id 60D3123CFFD; Tue, 14 Aug 2012 07:47:51 +0200 (CEST) Message-ID: <5029E687.20709@FreeBSD.org> Date: Tue, 14 Aug 2012 07:47:51 +0200 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@freebsd.org References: <201208132100.q7DL0MUG091712@freefall.freebsd.org> In-Reply-To: <201208132100.q7DL0MUG091712@freefall.freebsd.org> X-Enigmail-Version: 1.5a1pre Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig86EE9DA88A3CEA2D1214763D" Cc: freebsd-ports-bugs@freebsd.org Subject: Re: ports/170613: [PATCH] mail/fetchmail: update to 6.3.21_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: Tue, 14 Aug 2012 06:06:09 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig86EE9DA88A3CEA2D1214763D Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable This has been assigned CVE-2012-3482. --------------enig86EE9DA88A3CEA2D1214763D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iEYEARECAAYFAlAp5ocACgkQvmGDOQUufZU3QwCfQL2ts1FSP0EzQsJuFhQMqvCA ylUAoLDTBnjW6qgfmU/2W8IsFU+U2mFH =znlL -----END PGP SIGNATURE----- --------------enig86EE9DA88A3CEA2D1214763D-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 06:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5F72106564A for ; Tue, 14 Aug 2012 06: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 7DD8A8FC0A for ; Tue, 14 Aug 2012 06: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 q7E6ABGE066955 for ; Tue, 14 Aug 2012 06: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 q7E6ABfE066954; Tue, 14 Aug 2012 06:10:11 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 06:10:11 GMT Resent-Message-Id: <201208140610.q7E6ABfE066954@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcin Cieslak Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 16C29106566C for ; Tue, 14 Aug 2012 06:01:49 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DBB578FC08; Tue, 14 Aug 2012 06:01: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 q7E61mwY066341; Tue, 14 Aug 2012 06:01:48 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E61mXB066340; Tue, 14 Aug 2012 06:01:48 GMT (envelope-from gnats) Message-Id: <201208140601.q7E61mXB066340@freefall.freebsd.org> Date: Tue, 14 Aug 2012 06:01:48 GMT From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: m.tsatsenko@gmail.com Subject: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 06:10:11 -0000 >Number: 170626 >Category: ports >Synopsis: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure >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 Aug 14 06:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Marcin Cieslak >Release: FreeBSD 9.0-BETA1 amd64 >Organization: >Environment: System: FreeBSD radziecki.saper.info 9.0-BETA1 FreeBSD 9.0-BETA1 #0 r224912M: Mon Aug 6 13:01:28 CEST 2012 saper@radziecki.saper.info:/a/icybox/obj/usr/src/sys/VAIO amd64 >Description: Although I have /usr/local/include/X11/extensions/Print.h and /usr/local/lib/libXp.a /usr/local/lib/libXp.so /usr/local/lib/libXp.la /usr/local/lib/libXp.so.6 installed (they also look sane), configure fails t detect them properly. >From config.log: configure:18905: cc -o conftest -O2 -pipe -march=nocona -fno-strict-aliasing -st d=gnu89 -Wall -g -fno-strict-aliasing -Wno-unused -Wno-comment -fno-tree-ter -DC SRG_BASED -DXNO_MTSAFE_API -DXNO_MTSAFE_PWDAPI -DCSRG_BASED -DXUSE_MTSAFE_API -D XNO_MTSAFE_PWDAPI -L/usr/local/lib conftest.c -liconv >&5 configure:18912: $? = 0 configure:18943: result: -liconv configure:19054: checking for libXp configure:19072: checking X11/extensions/Print.h usability configure:19089: cc -c -O2 -pipe -march=nocona -fno-strict-aliasing -std=gnu89 -Wall -g -fno-strict-aliasing -Wno-unused -Wno-comment -fno-tree-ter -DCSRG_BASED -DXNO_MTSAFE_API -DXNO_MTSAFE_PWDAPI -DCSRG_BASED -DXUSE_MTSAFE_API -DXNO_MTSAFE_PWDAPI conftest.c >&5 conftest.c:109:34: error: X11/extensions/Print.h: No such file or directory What happens is that at some point configure gets lost in saving/restoring CFLAGS/LDFLAGS and forgets to use -I/usr/local/include and -L/usr/local/lib it looks like that checking for XmuNCopyISOLatin1Lowered in -lXmu... still has our custom flags, while the next test checking for dirent.h that defines DIR... forgets the flags. >How-To-Repeat: Below is full output of configure running with -x: [bugmeister note: contents moved to http://people.freebsd.org/~linimon/tmp/open-motif-log.txt] >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 06:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F912106566B; Tue, 14 Aug 2012 06: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 337EB8FC17; Tue, 14 Aug 2012 06: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 q7E6AMnt067087; Tue, 14 Aug 2012 06: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 q7E6ALVs067083; Tue, 14 Aug 2012 06:10:21 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 06:10:21 GMT Message-Id: <201208140610.q7E6ALVs067083@freefall.freebsd.org> To: saper@saper.info, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 06:10:22 -0000 Synopsis: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Aug 14 06:10:21 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170626 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 06:20:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64F19106566C for ; Tue, 14 Aug 2012 06: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 4F1BD8FC0A for ; Tue, 14 Aug 2012 06: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 q7E6KBbW069184 for ; Tue, 14 Aug 2012 06: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 q7E6KB8G069183; Tue, 14 Aug 2012 06:20:11 GMT (envelope-from gnats) Date: Tue, 14 Aug 2012 06:20:11 GMT Message-Id: <201208140620.q7E6KB8G069183@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure 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, 14 Aug 2012 06:20:11 -0000 The following reply was made to PR ports/170626; it has been noted by GNATS. From: Edwin Groothuis To: m.tsatsenko@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure Date: Tue, 14 Aug 2012 06:10:19 UT Maintainer of x11-toolkits/open-motif, Please note that PR ports/170626 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/170626 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 06:29:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 658D7106564A; Tue, 14 Aug 2012 06:29:10 +0000 (UTC) (envelope-from oberman@es.net) Received: from mailgw.es.net (mail2.es.net [IPv6:2001:400:107:1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 345858FC08; Tue, 14 Aug 2012 06:29:10 +0000 (UTC) Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by mailgw.es.net (8.14.5/8.14.5) with ESMTP id q7E6T4JL004158 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 13 Aug 2012 23:29:10 -0700 Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id 330951CC12; Mon, 13 Aug 2012 23:29:04 -0700 (PDT) To: rm@FreeBSD.org In-reply-to: Your message of "Tue, 14 Aug 2012 04:44:46 GMT." <201208140444.q7E4ikmP057502@freefall.freebsd.org> Date: Mon, 13 Aug 2012 23:29:04 -0700 From: "Kevin Oberman" Message-Id: <20120814062904.330951CC12@ptavv.es.net> Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/170617: [maintainer update] Update net-mgmt/irrtoolset to 5.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 06:29:10 -0000 I ran a full set of builds on redports and it all worked except on 10/i386 where it failed to build (actually package) libtool, so never tried irrtoolset. :-( -- R. Kevin Oberman, Network Engineer Emeritus Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 08:30:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD13B1065678 for ; Tue, 14 Aug 2012 08: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 7C6348FC15 for ; Tue, 14 Aug 2012 08: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 q7E8UF9H096585 for ; Tue, 14 Aug 2012 08: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 q7E8UFBu096584; Tue, 14 Aug 2012 08:30:15 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 08:30:15 GMT Resent-Message-Id: <201208140830.q7E8UFBu096584@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, Rene Ladan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B199106564A for ; Tue, 14 Aug 2012 08:24:52 +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 EA9AC8FC12 for ; Tue, 14 Aug 2012 08:24: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 q7E8OpZK080518 for ; Tue, 14 Aug 2012 08:24:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7E8Opn2080513; Tue, 14 Aug 2012 08:24:51 GMT (envelope-from nobody) Message-Id: <201208140824.q7E8Opn2080513@red.freebsd.org> Date: Tue, 14 Aug 2012 08:24:51 GMT From: Rene Ladan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170628: net/boinc-client: install ${WRKSRC}/lib/shmem.h for no-X11 Astropulse X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 14 Aug 2012 08:30:15 -0000 >Number: 170628 >Category: ports >Synopsis: net/boinc-client: install ${WRKSRC}/lib/shmem.h for no-X11 Astropulse >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 Aug 14 08:30:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Rene Ladan >Release: 8.3-RELEASE i386 >Organization: >Environment: 8.3-RELEASE i386, current ports tree >Description: - install ${WRKSRC}/lib/shmem.h into ${PREFIX}/include/boinc to enable building astro/boinc-astropulse without the X11 code. - bump PORTREVISION This should probably be re-applied for ports/169679 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: pkg-plist =================================================================== --- pkg-plist (revision 302433) +++ pkg-plist (working copy) @@ -39,6 +39,7 @@ include/boinc/prefs.h include/boinc/procinfo.h include/boinc/proxy_info.h +include/boinc/shmem.h include/boinc/stackwalker_imports.h include/boinc/stackwalker_win.h include/boinc/std_fixes.h Index: Makefile =================================================================== --- Makefile (revision 302433) +++ Makefile (working copy) @@ -7,7 +7,7 @@ PORTNAME= boinc-client PORTVERSION= 7.0.25 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= pav @@ -163,6 +163,7 @@ . endif .endif ${INSTALL_DATA} ${WRKSRC}/config.h ${PREFIX}/include/boinc + ${INSTALL_DATA} ${WRKSRC}/lib/shmem.h ${PREFIX}/include/boinc ${INSTALL_DATA} ${WRKSRC}/lib/std_fixes.h ${PREFIX}/include/boinc ${INSTALL_DATA} ${WRKSRC}/api/reduce.h ${PREFIX}/include/boinc .if ${PORT_OPTIONS:MX11} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 08:30:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D287106564A; Tue, 14 Aug 2012 08:30: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 706078FC19; Tue, 14 Aug 2012 08:30: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 q7E8UR64097316; Tue, 14 Aug 2012 08:30:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7E8URQV097310; Tue, 14 Aug 2012 08:30:27 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 08:30:27 GMT Message-Id: <201208140830.q7E8URQV097310@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170628: net/boinc-client: install ${WRKSRC}/lib/shmem.h for no-X11 Astropulse X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 14 Aug 2012 08:30:27 -0000 Synopsis: net/boinc-client: install ${WRKSRC}/lib/shmem.h for no-X11 Astropulse Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 08:30:26 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170628 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 10:06:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38465106564A; Tue, 14 Aug 2012 10:06:45 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0B81F8FC19; Tue, 14 Aug 2012 10:06: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 q7EA6iDG009330; Tue, 14 Aug 2012 10:06:44 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EA6iSD009326; Tue, 14 Aug 2012 10:06:44 GMT (envelope-from madpilot) Date: Tue, 14 Aug 2012 10:06:44 GMT Message-Id: <201208141006.q7EA6iSD009326@freefall.freebsd.org> To: kitche@kitchetech.com, madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/170551: [PATCH] x11/sterm: update to 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: Tue, 14 Aug 2012 10:06:45 -0000 Synopsis: [PATCH] x11/sterm: update to 0.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Tue Aug 14 10:06:44 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170551 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 11:20:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3DF3D1065674 for ; Tue, 14 Aug 2012 11: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 EFBDE8FC16 for ; Tue, 14 Aug 2012 11: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 q7EBKA2M020681 for ; Tue, 14 Aug 2012 11: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 q7EBKAqj020680; Tue, 14 Aug 2012 11:20:10 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 11:20:10 GMT Resent-Message-Id: <201208141120.q7EBKAqj020680@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, Christian Marg Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF67B106566B for ; Tue, 14 Aug 2012 11:15:28 +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 BBBBF8FC14 for ; Tue, 14 Aug 2012 11:15:28 +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 q7EBFS3m037229 for ; Tue, 14 Aug 2012 11:15:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7EBFRH5037223; Tue, 14 Aug 2012 11:15:27 GMT (envelope-from nobody) Message-Id: <201208141115.q7EBFRH5037223@red.freebsd.org> Date: Tue, 14 Aug 2012 11:15:27 GMT From: Christian Marg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170632: devel/otrs: please update to current version 3.1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 11:20:11 -0000 >Number: 170632 >Category: ports >Synopsis: devel/otrs: please update to current version 3.1.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 14 11:20:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Christian Marg >Release: FreeBSD 8.3-RELEASE-p3 >Organization: TU Clausthal >Environment: FreeBSD otrs.rz.tu-clausthal.de 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #0: Mon Jun 11 23:52:38 UTC 2012 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Please update the port to the latest release which can be found here: http://ftp.otrs.org/pub/otrs/otrs-3.1.8.tar.bz2 http://ftp.otrs.org/pub/otrs/otrs-3.1.8.tar.gz >How-To-Repeat: - >Fix: - >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 11:20:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5090E106566C; Tue, 14 Aug 2012 11: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 24FE58FC08; Tue, 14 Aug 2012 11: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 q7EBKMfI020828; Tue, 14 Aug 2012 11: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 q7EBKMUB020824; Tue, 14 Aug 2012 11:20:22 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 11:20:22 GMT Message-Id: <201208141120.q7EBKMUB020824@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170632: devel/otrs: please update to current version 3.1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 11:20:22 -0000 Synopsis: devel/otrs: please update to current version 3.1.8 Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 11:20:21 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170632 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 11:46:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA069106566B; Tue, 14 Aug 2012 11:46:25 +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 8C8DB8FC18; Tue, 14 Aug 2012 11:46: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 q7EBkPoG027455; Tue, 14 Aug 2012 11:46:25 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EBkPvh027450; Tue, 14 Aug 2012 11:46:25 GMT (envelope-from scheidell) Date: Tue, 14 Aug 2012 11:46:25 GMT Message-Id: <201208141146.q7EBkPvh027450@freefall.freebsd.org> To: wmoran@collaborativefusion.com, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170614: devel/php-xdebug brings in php54, even though php53 wanted X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 14 Aug 2012 11:46:25 -0000 Synopsis: devel/php-xdebug brings in php54, even though php53 wanted Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Aug 14 11:46:06 UTC 2012 Responsible-Changed-Why: See if this patch doesn't fix it: --- Makefile (revision 302518) +++ Makefile (working copy) @@ -20,7 +20,7 @@ USE_PHPEXT= yes USE_PHPIZE= yes SUB_FILES= pkg-message -DEFAULT_PHP_VER= 5 +DEFAULT_PHP_VER?= 5 PKGMESSAGE= ${WRKDIR}/pkg-message http://www.freebsd.org/cgi/query-pr.cgi?pr=170614 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 11:56:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD9501065673; Tue, 14 Aug 2012 11:56:05 +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 917798FC12; Tue, 14 Aug 2012 11:56: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 q7EBu5nP028291; Tue, 14 Aug 2012 11:56:05 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EBu5Y2028287; Tue, 14 Aug 2012 11:56:05 GMT (envelope-from scheidell) Date: Tue, 14 Aug 2012 11:56:05 GMT Message-Id: <201208141156.q7EBu5Y2028287@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170599: [NEW PORT] devel/npth: New GNU portable threads X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 14 Aug 2012 11:56:05 -0000 Synopsis: [NEW PORT] devel/npth: New GNU portable threads Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Aug 14 11:56:05 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170599 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 12:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D1E51065672 for ; Tue, 14 Aug 2012 12: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 39B378FC14 for ; Tue, 14 Aug 2012 12: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 q7ECK8ch032089 for ; Tue, 14 Aug 2012 12: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 q7ECK8UP032088; Tue, 14 Aug 2012 12:20:08 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 12:20:08 GMT Resent-Message-Id: <201208141220.q7ECK8UP032088@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, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F6581065673 for ; Tue, 14 Aug 2012 12:15:36 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id BA15D8FC19 for ; Tue, 14 Aug 2012 12:15:35 +0000 (UTC) Received: by yenl7 with SMTP id l7so428552yen.13 for ; Tue, 14 Aug 2012 05:15:35 -0700 (PDT) Received: by 10.42.31.5 with SMTP id x5mr11563726icc.40.1344946534620; Tue, 14 Aug 2012 05:15:34 -0700 (PDT) Received: from freebsd-9-amd64.localdomain (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPS id va9sm11087861igb.17.2012.08.14.05.15.32 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 14 Aug 2012 05:15:34 -0700 (PDT) Received: by freebsd-9-amd64.localdomain (Postfix, from userid 1001) id D41C839F15; Tue, 14 Aug 2012 22:15:27 +1000 (EST) Message-Id: <20120814121527.D41C839F15@freebsd-9-amd64.localdomain> Date: Tue, 14 Aug 2012 22:15:27 +1000 (EST) From: Kubilay Kocak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170633: [MAINTAINER] security/py-oauthlib: update to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 12:20:08 -0000 >Number: 170633 >Category: ports >Synopsis: [MAINTAINER] security/py-oauthlib: update to 0.3.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: Tue Aug 14 12:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD freebsd-9-amd64 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Sat Jul 7 21:26:56 EST >Description: - Update to 0.3.0 - Replace py-rsa {BUILD,RUN}_DEPENDS with py-pycrypto (upstream) - Consistent tab use - Replace ugly PYDISTUTILS_INSTALLARGS hackery with setup.py patch - Update and sort pkg-plist ==[QA]== port test clean redports clean: https://redports.org/buildarchive/20120814115422-79412/ Added file(s): - files/patch-setup.py Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- py27-oauthlib-0.3.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/py-oauthlib/Makefile ./Makefile --- /usr/ports/security/py-oauthlib/Makefile 2012-06-15 21:22:44.000000000 +1000 +++ ./Makefile 2012-08-14 21:35:36.000000000 +1000 @@ -6,8 +6,7 @@ # PORTNAME= oauthlib -PORTVERSION= 0.1.3 -PORTREVISION= 1 +PORTVERSION= 0.3.0 CATEGORIES= security net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,16 +16,11 @@ LICENSE= BSD -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}rsa>0:${PORTSDIR}/security/py-rsa +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto RUN_DEPENDS:= ${BUILD_DEPENDS} # Python3 ready USE_PYTHON= yes -USE_PYDISTUTILS=easy_install - -PYDISTUTILS_INSTALLARGS= -Z -q -O 1 -N -S ${PYTHON_SITELIBDIR} \ - -d ${PYEASYINSTALL_SITELIBDIR} \ - -s ${PYEASYINSTALL_BINDIR} \ - ${WRKSRC}/dist/${PYEASYINSTALL_EGG} +USE_PYDISTUTILS= easy_install .include diff -ruN --exclude=CVS /usr/ports/security/py-oauthlib/distinfo ./distinfo --- /usr/ports/security/py-oauthlib/distinfo 2012-06-14 10:36:22.000000000 +1000 +++ ./distinfo 2012-08-14 18:30:50.000000000 +1000 @@ -1,2 +1,2 @@ -SHA256 (oauthlib-0.1.3.tar.gz) = 6066c9c0ab07953f98870bc97d29f6defd066b6c215de74b9976666f3f6c3d40 -SIZE (oauthlib-0.1.3.tar.gz) = 24684 +SHA256 (oauthlib-0.3.0.tar.gz) = 8c62a18370b87fda3299bad4d4af2949e1bcb2d65519887ffcdcbcd00dfa9bf0 +SIZE (oauthlib-0.3.0.tar.gz) = 43581 diff -ruN --exclude=CVS /usr/ports/security/py-oauthlib/files/patch-setup.py ./files/patch-setup.py --- /usr/ports/security/py-oauthlib/files/patch-setup.py 1970-01-01 10:00:00.000000000 +1000 +++ ./files/patch-setup.py 2012-08-14 19:04:42.000000000 +1000 @@ -0,0 +1,8 @@ +--- ./setup.py.orig 2012-08-14 19:04:25.000000000 +1000 ++++ ./setup.py 2012-08-14 19:04:38.000000000 +1000 +@@ -32,4 +32,5 @@ + tests_require=tests_require, + extras_require={'test': tests_require, 'rsa': rsa_require}, + install_requires=requires, ++ zip_safe=False, + ) diff -ruN --exclude=CVS /usr/ports/security/py-oauthlib/pkg-plist ./pkg-plist --- /usr/ports/security/py-oauthlib/pkg-plist 2012-06-15 21:22:44.000000000 +1000 +++ ./pkg-plist 2012-08-14 19:05:19.000000000 +1000 @@ -1,43 +1,46 @@ @comment $FreeBSD: ports/security/py-oauthlib/pkg-plist,v 1.2 2012/06/15 11:22:44 rm Exp $ +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/common.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/common.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/common.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/common.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/parameters.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/signature.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/utils.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/parameters.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/signature.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/utils.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/parameters.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/parameters.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/parameters.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/signature.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/signature.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/signature.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/utils.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/utils.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849/utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/tokens.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/utils.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/tokens.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/utils.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/parameters.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/parameters.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/parameters.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/tokens.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/tokens.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/tokens.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/utils.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/utils.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25/utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/common.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/zip-safe @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2/draft25 @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth2 @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/oauthlib/oauth1/rfc5849 --- py27-oauthlib-0.3.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 12:20:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81482106564A; Tue, 14 Aug 2012 12: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 529628FC0C; Tue, 14 Aug 2012 12: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 q7ECKKpC032233; Tue, 14 Aug 2012 12: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 q7ECKKDQ032229; Tue, 14 Aug 2012 12:20:20 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 12:20:20 GMT Message-Id: <201208141220.q7ECKKDQ032229@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/170633: [MAINTAINER] security/py-oauthlib: update to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 12:20:20 -0000 Synopsis: [MAINTAINER] security/py-oauthlib: update to 0.3.0 Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Tue Aug 14 12:20:19 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170633 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 12:20:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EEAA106566B; Tue, 14 Aug 2012 12: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 227ED8FC0A; Tue, 14 Aug 2012 12: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 q7ECKPuT032320; Tue, 14 Aug 2012 12: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 q7ECKPig032316; Tue, 14 Aug 2012 12:20:25 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 12:20:25 GMT Message-Id: <201208141220.q7ECKPig032316@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170633: [MAINTAINER] security/py-oauthlib: update to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 12:20:25 -0000 Synopsis: [MAINTAINER] security/py-oauthlib: update to 0.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 12:20:24 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170633 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 12:53:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 34199106564A; Tue, 14 Aug 2012 12:53:15 +0000 (UTC) (envelope-from saper@saper.info) Received: from l.saper.info (l.saper.info [IPv6:2001:41d0:1:d467::1000]) by mx1.freebsd.org (Postfix) with ESMTP id BBB9C8FC16; Tue, 14 Aug 2012 12:53:14 +0000 (UTC) Received: from l.saper.info (saper@localhost [127.0.0.1]) by l.saper.info (8.14.5/8.14.5) with ESMTP id q7ECrDC0040954 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Aug 2012 12:53:13 GMT (envelope-from saper@saper.info) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=saper.info; s=Mar2008; t=1344948793; bh=WeiyA98+i+WntU0acu5JpArwP/J9d0jCElsRwGfhM5c=; h=Date:From:To:Subject:In-Reply-To:References; b=TyYfiUq5y5GrhcgikJvVHOGEhx4+lVtzTRWBs7bn6Drf0wLup1edxK7mqZPcFmuJj DQx4w6bZyb9BcXe4b+xL6bEKHxQWtUhIMUhbHt5TK80HdePKAMd00sBIHZYH5UrmqF Yx6ycog3vZQ2glGvmnOAx8AYh0HeVxUC6p4nR8AQ= Received: from localhost (saper@localhost) by l.saper.info (8.14.5/8.14.5/Submit) with ESMTP id q7ECrCuX040951; Tue, 14 Aug 2012 12:53:13 GMT (envelope-from saper@saper.info) X-Authentication-Warning: l.saper.info: saper owned process doing -bs Date: Tue, 14 Aug 2012 12:53:12 +0000 From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org In-Reply-To: <201208140610.q7E6ABCN066950@freefall.freebsd.org> Message-ID: References: <201208140610.q7E6ABCN066950@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 12:53:15 -0000 The following patch seems to address this issue: --- configure.orig 2010-03-12 15:44:09.000000000 +0100 +++ configure 2012-08-12 18:33:49.000000000 +0200 @@ -19054,6 +19054,7 @@ { $as_echo "$as_me:$LINENO: checking for libXp" >&5 $as_echo_n "checking for libXp... " >&6; } +CPPFLAGS="$CPPFLAGS -I$x_includes" for ac_header in X11/extensions/Print.h do as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 13:00:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 22DB3106567A for ; Tue, 14 Aug 2012 13: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 E13438FC17 for ; Tue, 14 Aug 2012 13: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 q7ED0ONC037375 for ; Tue, 14 Aug 2012 13: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 q7ED0Omf037374; Tue, 14 Aug 2012 13:00:24 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 13:00:24 GMT Resent-Message-Id: <201208141300.q7ED0Omf037374@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Koermer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2F6D1065676; Tue, 14 Aug 2012 12:51:41 +0000 (UTC) (envelope-from tkoerme@gwdu111.gwdg.de) Received: from gwdu111.gwdg.de (gwdu111.gwdg.de [134.76.10.111]) by mx1.freebsd.org (Postfix) with ESMTP id 744B98FC24; Tue, 14 Aug 2012 12:51:40 +0000 (UTC) Received: from gwdu111.gwdg.de (localhost [127.0.0.1]) by gwdu111.gwdg.de (8.14.5/8.14.4) with ESMTP id q7ECeC4R074130; Tue, 14 Aug 2012 14:40:12 +0200 (CEST) (envelope-from tkoerme@gwdu111.gwdg.de) Received: (from tkoerme@localhost) by gwdu111.gwdg.de (8.14.5/8.14.4/Submit) id q7ECeCFn074128; Tue, 14 Aug 2012 14:40:12 +0200 (CEST) (envelope-from tkoerme) Message-Id: <201208141240.q7ECeCFn074128@gwdu111.gwdg.de> Date: Tue, 14 Aug 2012 14:40:12 +0200 (CEST) From: Thomas Koermer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: acm@FreeBSD.org Subject: ports/170634: Update port php5-ffmpeg for use with PHP5.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas Koermer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 13:00:25 -0000 >Number: 170634 >Category: ports >Synopsis: Update port php5-ffmpeg for use with PHP5.4 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 14 13:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Thomas Koermer >Release: FreeBSD 8.3-RELEASE-p3 amd64 >Organization: GWDG >Environment: System: FreeBSD gwdu146.gwdg.de 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #7: Tue Jun 12 20:21:42 CEST 2012 root@gwdu135.gwdg.de:/usr/obj/usr/src/sys/GWDU146 amd64 >Description: Currently, module php5-ffmpeg does only build with PHP5.3; update for use with PHP5.4 required >How-To-Repeat: cd /usr/ports/graphics/php5-ffmpeg make ===> php5-ffmpeg-0.6.0_6 cannot install: doesn't work with PHP version : 5 (Doesn't support PHP 5). *** Error code 1 pkg_info | grep php php5-5.4.4 PHP Scripting Language >Fix: ? cvs.diff Index: Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/php5-ffmpeg/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- Makefile 20 May 2012 06:42:48 -0000 1.11 +++ Makefile 14 Aug 2012 08:33:28 -0000 @@ -25,8 +25,7 @@ USE_PHP= yes USE_PHPIZE= yes USE_PHPEXT= yes -DEFAULT_PHP_VER=53 -IGNORE_WITH_PHP=5 +DEFAULT_PHP_VER=54 CONFIGURE_ARGS+= --with-ffmpeg=${LOCALBASE}/include Index: files/patch-ffmpeg_movie.c =================================================================== RCS file: files/patch-ffmpeg_movie.c diff -N files/patch-ffmpeg_movie.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-ffmpeg_movie.c 14 Aug 2012 08:33:28 -0000 @@ -0,0 +1,40 @@ +--- ffmpeg_movie.c.orig 2008-10-14 00:46:53.000000000 +0200 ++++ ffmpeg_movie.c 2012-07-23 11:17:46.000000000 +0200 +@@ -308,7 +308,7 @@ + } + + if (persistent) { +- list_entry *le; ++ zend_rsrc_list_entry *le; + /* resolve the fully-qualified path name to use as the hash key */ + fullpath = expand_filepath(filename, NULL TSRMLS_CC); + +@@ -343,7 +343,7 @@ + } + + } else { /* no existing persistant movie, create one */ +- list_entry new_le; ++ zend_rsrc_list_entry new_le; + ffmovie_ctx = _php_alloc_ffmovie_ctx(1); + + if (_php_open_movie_file(ffmovie_ctx, filename)) { +@@ -356,8 +356,8 @@ + Z_TYPE(new_le) = le_ffmpeg_pmovie; + new_le.ptr = ffmovie_ctx; + +- if (FAILURE == zend_hash_update(&EG(persistent_list), hashkey, +- hashkey_length+1, (void *)&new_le, sizeof(list_entry), ++ if (FAILURE == zend_hash_update(&EG(persistent_list), hashkey, ++ hashkey_length+1, (void *)&new_le, sizeof(zend_rsrc_list_entry), + NULL)) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, + "Failed to register persistent resource"); +@@ -501,7 +501,7 @@ + codec_id)); + + if (!decoder) { +- zend_error(E_ERROR, "Could not find decoder for %s", ++ zend_error(E_WARNING, "Could not find decoder for %s", + _php_get_filename(ffmovie_ctx)); + return NULL; + } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 13:00:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F9BC106567A for ; Tue, 14 Aug 2012 13: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 F2C2B8FC19 for ; Tue, 14 Aug 2012 13: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 q7ED0QYq037403 for ; Tue, 14 Aug 2012 13: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 q7ED0Qih037402; Tue, 14 Aug 2012 13:00:26 GMT (envelope-from gnats) Date: Tue, 14 Aug 2012 13:00:26 GMT Message-Id: <201208141300.q7ED0Qih037402@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Marcin Cieslak Cc: Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 13:00:27 -0000 The following reply was made to PR ports/170626; it has been noted by GNATS. From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure Date: Tue, 14 Aug 2012 12:53:12 +0000 The following patch seems to address this issue: --- configure.orig 2010-03-12 15:44:09.000000000 +0100 +++ configure 2012-08-12 18:33:49.000000000 +0200 @@ -19054,6 +19054,7 @@ { $as_echo "$as_me:$LINENO: checking for libXp" >&5 $as_echo_n "checking for libXp... " >&6; } +CPPFLAGS="$CPPFLAGS -I$x_includes" for ac_header in X11/extensions/Print.h do as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 14:20:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4A9D106564A for ; Tue, 14 Aug 2012 14: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 93CDA8FC0A for ; Tue, 14 Aug 2012 14: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 q7EEK7m9047107 for ; Tue, 14 Aug 2012 14: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 q7EEK7HC047106; Tue, 14 Aug 2012 14:20:07 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 14:20:07 GMT Resent-Message-Id: <201208141420.q7EEK7HC047106@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, Waitman Gobble Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82B1C106566B for ; Tue, 14 Aug 2012 14:14:07 +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 6469C8FC0A for ; Tue, 14 Aug 2012 14:14:07 +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 q7EEE7UI031123 for ; Tue, 14 Aug 2012 14:14:07 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7EEE6F7031112; Tue, 14 Aug 2012 14:14:06 GMT (envelope-from nobody) Message-Id: <201208141414.q7EEE6F7031112@red.freebsd.org> Date: Tue, 14 Aug 2012 14:14:06 GMT From: Waitman Gobble To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170635: [UPDATE PORT] devel/libzrtpcpp 1.4.6 to 2.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: Tue, 14 Aug 2012 14:20:07 -0000 >Number: 170635 >Category: ports >Synopsis: [UPDATE PORT] devel/libzrtpcpp 1.4.6 to 2.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: Tue Aug 14 14:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: FreeBSD 10.0-CURRENT amd64 >Organization: Waitman Gobble >Environment: FreeBSD hunny.waitman.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 11 13:25:18 PDT 2012 root@hunny.waitman.net:/usr/obj/usr/src/sys/KEYSHIA amd64 >Description: Modern version of libzrtpcpp uses a CMake build, also uses gcc4.6 to avoid some template issues seen with 4.2.1 libzrtpcpp is a separate extension package for GNU ccRTP, it provides support for the ZRTP protocol (as defined in the Internet draft draft-zimmermann-avt-zrtp). Thank you. >How-To-Repeat: na >Fix: na 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: # # libzrtpcpp # libzrtpcpp/distinfo # libzrtpcpp/Makefile # libzrtpcpp/pkg-descr # libzrtpcpp/pkg-plist # echo c - libzrtpcpp mkdir -p libzrtpcpp > /dev/null 2>&1 echo x - libzrtpcpp/distinfo sed 's/^X//' >libzrtpcpp/distinfo << 'fc37f68068163fdc0a05aa8b44b1b598' XSHA256 (libzrtpcpp-2.1.2.tar.gz) = ab1da3fc1e488d0f247e9b89baf8ed918e10a0f6a7895954ca3ec07bdd8a8287 XSIZE (libzrtpcpp-2.1.2.tar.gz) = 254529 fc37f68068163fdc0a05aa8b44b1b598 echo x - libzrtpcpp/Makefile sed 's/^X//' >libzrtpcpp/Makefile << 'd7e7008afcbc103fefadcba2cdce7666' X# New ports collection makefile for: libzrtpcpp X# Date created: 2012-08-13 X# Whom: Waitman Gobble X# X# $FreeBSD: ports/devel/libzrtpcpp/Makefile,v 1.12 2012/08/13 20:50:08 wgobble Exp $ X# X XPORTNAME= libzrtpcpp XPORTVERSION= 2.1.2 XPORTREVISION= 1 XCATEGORIES= devel XMASTER_SITES= http://www.gnutelephony.org/dist/tarballs/ http://www.da3m0n8t3r.com/gnutelephony/www.gnutelephony.org/dist/tarballs/ X XMAINTAINER= uzimac@da3m0n8t3r.com XCOMMENT= ZRTP extension for GNU ccRTP X XLIB_DEPENDS= ccrtp:${PORTSDIR}/devel/ccrtp \ X gcrypt:${PORTSDIR}/security/libgcrypt X XUSE_GCC= 4.6+ XUSE_CMAKE= yes XCMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON XUSE_OPENSSL= yes X XCPPFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC} XLDFLAGS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} XUSE_LDCONFIG= yes X X.include d7e7008afcbc103fefadcba2cdce7666 echo x - libzrtpcpp/pkg-descr sed 's/^X//' >libzrtpcpp/pkg-descr << 'e7a4f484c653b336605b21ca453e0e6e' XA separate extension package for GNU ccRTP, it provides support for the ZRTP Xprotocol (as defined in the Internet draft draft-zimmermann-avt-zrtp). X XWWW: http://www.gnu.org/software/ccrtp/ e7a4f484c653b336605b21ca453e0e6e echo x - libzrtpcpp/pkg-plist sed 's/^X//' >libzrtpcpp/pkg-plist << '55501a08660a4ce35b7eb22501c1c492' Xinclude/libzrtpcpp/TimeoutProvider.h Xinclude/libzrtpcpp/ZrtpCWrapper.h Xinclude/libzrtpcpp/ZrtpCallback.h Xinclude/libzrtpcpp/ZrtpCodes.h Xinclude/libzrtpcpp/ZrtpConfigure.h Xinclude/libzrtpcpp/ZrtpQueue.h Xinclude/libzrtpcpp/ZrtpUserCallback.h Xinclude/libzrtpcpp/zrtpccrtp.h Xlib/libzrtpcpp.so Xlib/libzrtpcpp.so.2 Xlib/libzrtpcpp.so.2.1.2 Xlib/pkgconfig/libzrtpcpp.pc X@dirrm include/libzrtpcpp 55501a08660a4ce35b7eb22501c1c492 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 14:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B577106564A; Tue, 14 Aug 2012 14: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 4F3C08FC15; Tue, 14 Aug 2012 14: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 q7EEKIeJ047251; Tue, 14 Aug 2012 14: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 q7EEKIUb047247; Tue, 14 Aug 2012 14:20:18 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 14:20:18 GMT Message-Id: <201208141420.q7EEKIUb047247@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, acm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170635: [UPDATE PORT] devel/libzrtpcpp 1.4.6 to 2.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: Tue, 14 Aug 2012 14:20:18 -0000 Synopsis: [UPDATE PORT] devel/libzrtpcpp 1.4.6 to 2.1.2 Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 14:20:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170635 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 15:04:52 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35BC8106566B; Tue, 14 Aug 2012 15:04: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 04C238FC15; Tue, 14 Aug 2012 15:04: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 q7EF4p36051786; Tue, 14 Aug 2012 15:04:51 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EF4ph2051782; Tue, 14 Aug 2012 15:04:51 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 15:04:51 GMT Message-Id: <201208141504.q7EF4ph2051782@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, acm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170634: Update port graphics/php5-ffmpeg for use with PHP5.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 15:04:52 -0000 Synopsis: Update port graphics/php5-ffmpeg for use with PHP5.4 Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 15:04:51 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170634 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 15:40:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 981DB106566C for ; Tue, 14 Aug 2012 15: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 832F68FC16 for ; Tue, 14 Aug 2012 15: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 q7EFeCt0056878 for ; Tue, 14 Aug 2012 15: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 q7EFeCjI056877; Tue, 14 Aug 2012 15:40:12 GMT (envelope-from gnats) Date: Tue, 14 Aug 2012 15:40:12 GMT Message-Id: <201208141540.q7EFeCjI056877@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rainer Duffner Cc: Subject: Re: ports/170524: devel/ding-libs fails to build in tinderbox X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rainer Duffner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 15:40:12 -0000 The following reply was made to PR ports/170524; it has been noted by GNATS. From: Rainer Duffner To: Alex Kozlov Cc: bug-followup@FreeBSD.org, aweits@rit.edu Subject: Re: ports/170524: devel/ding-libs fails to build in tinderbox Date: Tue, 14 Aug 2012 17:38:53 +0200 Am Sat, 11 Aug 2012 21:43:46 +0300 schrieb Alex Kozlov : > Hi > > It's because of this construction in port's Makefile: > > .if !defined(NOPORTDOCS) > CONFIGURE_ARGS= --docdir=${DOCSDIR} > .else > CONFIGURE_ARGS= --docdir=/dev/null > .endif OK, this is obviously not a very good solution. But what is the proper way to handle that, actually? From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 18:40:00 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9A1B1065672; Tue, 14 Aug 2012 18:40:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A63F98FC14; Tue, 14 Aug 2012 18:40: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 q7EIe0Zn078679; Tue, 14 Aug 2012 18:40:00 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EIe0dM078675; Tue, 14 Aug 2012 18:40:00 GMT (envelope-from bdrewery) Date: Tue, 14 Aug 2012 18:40:00 GMT Message-Id: <201208141840.q7EIe0dM078675@freefall.freebsd.org> To: aepalea@gmail.com, bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/140008: ports-mgmt/portupgrade: many papercut omissions on portupgrade man page X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 14 Aug 2012 18:40:01 -0000 Synopsis: ports-mgmt/portupgrade: many papercut omissions on portupgrade man page State-Changed-From-To: open->closed State-Changed-By: bdrewery State-Changed-When: Tue Aug 14 18:40:00 UTC 2012 State-Changed-Why: Thank you for the input. Will expand on manpage entries for next release with suggestions given. If you have further suggestions please report them to http://pkgtools.github.com. If you have any questions please inquire on the ports@ mailing list or FreeBSD forums. http://www.freebsd.org/cgi/query-pr.cgi?pr=140008 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 18:57:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A7A2106566C; Tue, 14 Aug 2012 18:57:24 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0DCE78FC15; Tue, 14 Aug 2012 18:57: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 q7EIvNVv079686; Tue, 14 Aug 2012 18:57:23 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EIvNlh079682; Tue, 14 Aug 2012 18:57:23 GMT (envelope-from bdrewery) Date: Tue, 14 Aug 2012 18:57:23 GMT Message-Id: <201208141857.q7EIvNlh079682@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/170575: [MAINTAINER] math/mingw32-libgmp: update to 5.0.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: Tue, 14 Aug 2012 18:57:24 -0000 Synopsis: [MAINTAINER] math/mingw32-libgmp: update to 5.0.5 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Tue Aug 14 18:57:23 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170575 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 19:01:55 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C93491065673; Tue, 14 Aug 2012 19:01:55 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D6398FC12; Tue, 14 Aug 2012 19:01: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 q7EJ1toR080111; Tue, 14 Aug 2012 19:01:55 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EJ1tPg080107; Tue, 14 Aug 2012 19:01:55 GMT (envelope-from bdrewery) Date: Tue, 14 Aug 2012 19:01:55 GMT Message-Id: <201208141901.q7EJ1tPg080107@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/170574: [MAINTAINER] devel/doxygen: update to 1.8.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, 14 Aug 2012 19:01:55 -0000 Synopsis: [MAINTAINER] devel/doxygen: update to 1.8.2 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Tue Aug 14 19:01:55 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170574 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 22:00:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9427810657BE for ; Tue, 14 Aug 2012 22: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 6A3F68FC17 for ; Tue, 14 Aug 2012 22: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 q7EM0SoH002453 for ; Tue, 14 Aug 2012 22: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 q7EM0Sex002452; Tue, 14 Aug 2012 22:00:28 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 22:00:28 GMT Resent-Message-Id: <201208142200.q7EM0Sex002452@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39E83106564A for ; Tue, 14 Aug 2012 21:59: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 258388FC0C for ; Tue, 14 Aug 2012 21:59: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 q7ELxTqJ028166 for ; Tue, 14 Aug 2012 21:59:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7ELxT1j028165; Tue, 14 Aug 2012 21:59:29 GMT (envelope-from nobody) Message-Id: <201208142159.q7ELxT1j028165@red.freebsd.org> Date: Tue, 14 Aug 2012 21:59:29 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170637: [patch] update net/rubygem-twitter to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 22:00:28 -0000 >Number: 170637 >Category: ports >Synopsis: [patch] update net/rubygem-twitter to latest version >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 Aug 14 22:00:28 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/twitter-2.1.0.gem) = 53e2e02253d8de16cd2d79811d99ec7a61f08f14f136e00dcafc75e4dc5805d9 -SIZE (rubygem/twitter-2.1.0.gem) = 482304 +SHA256 (rubygem/twitter-3.6.0.gem) = e99484c185b8a933eda5e0bac55884572eb6ba4fc024e09f7e1834d38a3e7a42 +SIZE (rubygem/twitter-3.6.0.gem) = 629248 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,17 +6,16 @@ # PORTNAME= twitter -PORTVERSION= 2.1.0 +PORTVERSION= 3.6.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= clsung@FreeBSD.org COMMENT= Command line twits and an API wrapper -RUN_DEPENDS= rubygem-activesupport>=2.3.9:${PORTSDIR}/devel/rubygem-activesupport \ - rubygem-faraday>=0.7:${PORTSDIR}/www/rubygem-faraday \ - rubygem-multi_json>=1.0:${PORTSDIR}/devel/rubygem-multi_json \ - rubygem-simple_oauth>=0.1:${PORTSDIR}/net/rubygem-simple_oauth +RUN_DEPENDS= rubygem-faraday>=0.8:${PORTSDIR}/www/rubygem-faraday \ + rubygem-multi_json>=1.3:${PORTSDIR}/devel/rubygem-multi_json \ + rubygem-simple_oauth>=0.1.6:${PORTSDIR}/net/rubygem-simple_oauth USE_RUBY= yes USE_RUBYGEMS= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 22:00:43 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFDC410656AA; Tue, 14 Aug 2012 22:00:43 +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 B29538FC19; Tue, 14 Aug 2012 22:00: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 q7EM0hHD002559; Tue, 14 Aug 2012 22:00:43 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EM0h6Z002555; Tue, 14 Aug 2012 22:00:43 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 22:00:43 GMT Message-Id: <201208142200.q7EM0h6Z002555@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170637: [patch] update net/rubygem-twitter to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 22:00:44 -0000 Synopsis: [patch] update net/rubygem-twitter to latest version Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 22:00:43 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170637 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 22:37:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A55E9106566C; Tue, 14 Aug 2012 22:37:10 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7849C8FC14; Tue, 14 Aug 2012 22:37: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 q7EMbAj1008276; Tue, 14 Aug 2012 22:37:10 GMT (envelope-from mandree@freefall.freebsd.org) Received: (from mandree@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7EMbAun008272; Tue, 14 Aug 2012 22:37:10 GMT (envelope-from mandree) Date: Tue, 14 Aug 2012 22:37:10 GMT Message-Id: <201208142237.q7EMbAun008272@freefall.freebsd.org> To: mandree@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mandree@FreeBSD.org From: mandree@FreeBSD.org Cc: Subject: Re: ports/170472: New port: devel/streamhtmlparser A stream html parser library from Google X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 14 Aug 2012 22:37:10 -0000 Synopsis: New port: devel/streamhtmlparser A stream html parser library from Google Responsible-Changed-From-To: freebsd-ports-bugs->mandree Responsible-Changed-By: mandree Responsible-Changed-When: Tue Aug 14 22:37:10 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170472 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 23:30:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66FFC1065673 for ; Tue, 14 Aug 2012 23: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 26ED88FC12 for ; Tue, 14 Aug 2012 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 q7ENUCEm016250 for ; Tue, 14 Aug 2012 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 q7ENUC30016246; Tue, 14 Aug 2012 23:30:12 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 23:30:12 GMT Resent-Message-Id: <201208142330.q7ENUC30016246@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 7D813106564A for ; Tue, 14 Aug 2012 23:28:42 +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 697968FC15 for ; Tue, 14 Aug 2012 23:28:42 +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 q7ENSgZJ060227 for ; Tue, 14 Aug 2012 23:28:42 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7ENSgjl060226; Tue, 14 Aug 2012 23:28:42 GMT (envelope-from nobody) Message-Id: <201208142328.q7ENSgjl060226@red.freebsd.org> Date: Tue, 14 Aug 2012 23:28:42 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170638: [patch] update net/rubygem-whois to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 23:30:12 -0000 >Number: 170638 >Category: ports >Synopsis: [patch] update net/rubygem-whois to latest version >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 Aug 14 23:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/whois-2.6.2.gem) = 7f5cb109aeeb8b74559089db8a36b346b34e449ad2d8f68706c71b99e704cb53 -SIZE (rubygem/whois-2.6.2.gem) = 439296 +SHA256 (rubygem/whois-2.6.4.gem) = 3daaa9ca4633a67cb6a65fcdb99305407ade86da9bc8d315fc9f9f118fe892bd +SIZE (rubygem/whois-2.6.4.gem) = 95232 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= whois -PORTVERSION= 2.6.2 +PORTVERSION= 2.6.4 CATEGORIES= net rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 23:30:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1F88106564A; Tue, 14 Aug 2012 23: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 C539F8FC08; Tue, 14 Aug 2012 23: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 q7ENUMNc016851; Tue, 14 Aug 2012 23: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 q7ENUMs3016845; Tue, 14 Aug 2012 23:30:22 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 23:30:22 GMT Message-Id: <201208142330.q7ENUMs3016845@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170638: [patch] update net/rubygem-whois to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 23:30:23 -0000 Synopsis: [patch] update net/rubygem-whois to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 23:30:22 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170638 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 23:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B181106566C for ; Tue, 14 Aug 2012 23: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 4B2A88FC0C for ; Tue, 14 Aug 2012 23: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 q7ENo9LS020118 for ; Tue, 14 Aug 2012 23: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 q7ENo9K0020117; Tue, 14 Aug 2012 23:50:09 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 23:50:09 GMT Resent-Message-Id: <201208142350.q7ENo9K0020117@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE03F1065673 for ; Tue, 14 Aug 2012 23:40: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 CA1B98FC1B for ; Tue, 14 Aug 2012 23:40: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 q7ENev8S075041 for ; Tue, 14 Aug 2012 23:40:57 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7ENevnZ075040; Tue, 14 Aug 2012 23:40:57 GMT (envelope-from nobody) Message-Id: <201208142340.q7ENevnZ075040@red.freebsd.org> Date: Tue, 14 Aug 2012 23:40:57 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170639: [patch] update devel/rubygem-tins to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 23:50:09 -0000 >Number: 170639 >Category: ports >Synopsis: [patch] update devel/rubygem-tins to latest version >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 Aug 14 23:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/tins-0.4.3.gem) = 5cf10c5110a76991f32a922bb8a80c1bfd924c819e483275658459a3416a4121 -SIZE (rubygem/tins-0.4.3.gem) = 27136 +SHA256 (rubygem/tins-0.5.1.gem) = ed0d0a3ab20c5cdde62550555fbec613957b44491b1c7c83798a11f422e54bc5 +SIZE (rubygem/tins-0.5.1.gem) = 28672 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= tins -PORTVERSION= 0.4.3 +PORTVERSION= 0.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 23:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 080BF1065674 for ; Tue, 14 Aug 2012 23: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 BBBCD8FC15 for ; Tue, 14 Aug 2012 23: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 q7ENo9tU020128 for ; Tue, 14 Aug 2012 23: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 q7ENo9bO020127; Tue, 14 Aug 2012 23:50:09 GMT (envelope-from gnats) Resent-Date: Tue, 14 Aug 2012 23:50:09 GMT Resent-Message-Id: <201208142350.q7ENo9bO020127@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 BF2B7106566C for ; Tue, 14 Aug 2012 23:41: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 AA4C08FC1E for ; Tue, 14 Aug 2012 23:41: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 q7ENfhlN075076 for ; Tue, 14 Aug 2012 23:41:43 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7ENfhwn075075; Tue, 14 Aug 2012 23:41:43 GMT (envelope-from nobody) Message-Id: <201208142341.q7ENfhwn075075@red.freebsd.org> Date: Tue, 14 Aug 2012 23:41:43 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170640: [patch] update devel/rubygem-file-tail to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 23:50:10 -0000 >Number: 170640 >Category: ports >Synopsis: [patch] update devel/rubygem-file-tail to latest version >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 Aug 14 23:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/file-tail-1.0.10.gem) = 6dfe2aa87f71320e8e58dadcab245a7185154d57b07686d79f31d64418e9b53b -SIZE (rubygem/file-tail-1.0.10.gem) = 22016 +SHA256 (rubygem/file-tail-1.0.11.gem) = efa8ccd8ecbc31470fc5baee0549b09880f097a48b464253b52cfa2e6f9c0193 +SIZE (rubygem/file-tail-1.0.11.gem) = 22016 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= file-tail -PORTVERSION= 1.0.10 +PORTVERSION= 1.0.11 CATEGORIES= devel rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 23:50:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EBC61065680; Tue, 14 Aug 2012 23: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 41A238FC12; Tue, 14 Aug 2012 23: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 q7ENoJSk020273; Tue, 14 Aug 2012 23: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 q7ENoJMY020269; Tue, 14 Aug 2012 23:50:19 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 23:50:19 GMT Message-Id: <201208142350.q7ENoJMY020269@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170639: [patch] update devel/rubygem-tins to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 23:50:19 -0000 Synopsis: [patch] update devel/rubygem-tins to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 23:50:18 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170639 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 14 23:50:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54EB71065686; Tue, 14 Aug 2012 23: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 283138FC0C; Tue, 14 Aug 2012 23: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 q7ENoPb9020361; Tue, 14 Aug 2012 23: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 q7ENoPIV020357; Tue, 14 Aug 2012 23:50:25 GMT (envelope-from edwin) Date: Tue, 14 Aug 2012 23:50:25 GMT Message-Id: <201208142350.q7ENoPIV020357@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170640: [patch] update devel/rubygem-file-tail to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 23:50:25 -0000 Synopsis: [patch] update devel/rubygem-file-tail to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 14 23:50:24 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170640 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 00:40:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31018106566C for ; Wed, 15 Aug 2012 00:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 016268FC19 for ; Wed, 15 Aug 2012 00: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 q7F0e7ab033111 for ; Wed, 15 Aug 2012 00: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 q7F0e7s5033110; Wed, 15 Aug 2012 00:40:07 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 00:40:07 GMT Resent-Message-Id: <201208150040.q7F0e7s5033110@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcin Cieslak Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A17E1065764; Wed, 15 Aug 2012 00:38:09 +0000 (UTC) (envelope-from saper@saper.info) Received: from l.saper.info (l.saper.info [IPv6:2001:41d0:1:d467::1000]) by mx1.freebsd.org (Postfix) with ESMTP id 10CC58FC15; Wed, 15 Aug 2012 00:38:08 +0000 (UTC) Received: from l.saper.info (uucp@localhost [127.0.0.1]) by l.saper.info (8.14.5/8.14.5) with ESMTP id q7F0c6FM086049 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 15 Aug 2012 00:38:07 GMT (envelope-from saper@saper.info) Received: (from uucp@localhost) by l.saper.info (8.14.5/8.14.5/Submit) with UUCP id q7F0c62s086048; Wed, 15 Aug 2012 00:38:06 GMT (envelope-from saper@saper.info) Received: from radziecki.saper.info (saper@localhost [127.0.0.1]) by radziecki.saper.info (8.14.5/8.14.5) with ESMTP id q7F0bltv072679 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 15 Aug 2012 00:37:47 GMT (envelope-from saper@saper.info) Received: (from saper@localhost) by radziecki.saper.info (8.14.5/8.14.5/Submit) id q7F0blDx072678; Wed, 15 Aug 2012 00:37:47 GMT (envelope-from saper) Message-Id: <201208150037.q7F0blDx072678@radziecki.saper.info> Date: Wed, 15 Aug 2012 00:37:47 GMT From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: m.tsatsenko@gmail.com, freebsd-x11@FreeBSD.org Subject: ports/170641: x11-toolkits/open-motif: need mkcatdefs utility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 00:40:08 -0000 >Number: 170641 >Category: ports >Synopsis: x11-toolkits/open-motif: need mkcatdefs utility >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 Aug 15 00:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Marcin Cieslak >Release: FreeBSD 9.0-BETA1 amd64 >Organization: >Environment: System: FreeBSD radziecki.saper.info 9.0-BETA1 FreeBSD 9.0-BETA1 #0 r224912M: Mon Aug 6 13:01:28 CEST 2012 saper@radziecki.saper.info:/a/icybox/obj/usr/src/sys/VAIO amd64 open-motif-2.3.3_1 >Description: Out current port (x11-toolkits/open-motif) does not install mkcatdefs utility and message catalogs. >How-To-Repeat: Compile and install the port. I have added CONFIGURE_ARGS+= --enable-message-catalog to the port Makefile, but the build stops at: libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../include -I.. -I./.. -DXMBINDDIR_FALLBACK=\"/usr/local/lib/X11/bindings\" -DINCDIR=\"/usr/local/include/X11\" -DLIBDIR=\"/usr/local/lib/X11\" -I/usr/local/include -DCSRG_BASED -DXUSE_MTSAFE_API -DXNO_MTSAFE_PWDAPI -I/usr/local/include -I/usr/local/include -O2 -pipe -march=nocona -fno-strict-aliasing -std=gnu89 -Wall -g -fno-strict-aliasing -Wno-unused -Wno-comment -fno-tree-ter -DCSRG_BASED -DXNO_MTSAFE_API -DXNO_MTSAFE_PWDAPI -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include/freetype2 -MT DataF.lo -MD -MP -MF .deps/DataF.Tpo -c DataF.c -fPIC -DPIC -o .libs/DataF.o DataF.c: In function 'df_Validates': DataF.c:8642: error: 'MS_DataF' undeclared (first use in this function) DataF.c:8642: error: (Each undeclared identifier is reported only once DataF.c:8642: error: for each function it appears in.) DataF.c:8642: error: 'MSG_DataF_0000' undeclared (first use in this function) DataF.c:8647: error: 'MSG_DataF_0001' undeclared (first use in this function) DataF.c: In function 'df_LoadFontMetrics': DataF.c:8697: error: 'MS_DataF' undeclared (first use in this function) DataF.c:8697: error: 'MSG_DataF_0002' undeclared (first use in this function) DataF.c:8751: error: 'MSG_DataF_0003' undeclared (first use in this function) DataF.c:8777: warning: passing argument 3 of '_XmXftFontAverageWidth' from incompatible pointer type DataF.c: In function 'df_ValidateString': DataF.c:8849: error: 'MS_DataF' undeclared (first use in this function) DataF.c:8849: error: 'MSG_DataF_0004' undeclared (first use in this function) DataF.c:8923: error: 'MS_DataFWcs' undeclared (first use in this function) DataF.c:8923: error: 'MSG_DatFWcs_0000' undeclared (first use in this function) DataF.c: In function 'df_InitializeTextStruct': DataF.c:9124: warning: cast from pointer to integer of different size DataF.c: In function 'df_SetValues': DataF.c:10583: error: 'MS_DataF' undeclared (first use in this function) DataF.c:10583: error: 'MSG_DataF_0000' undeclared (first use in this function) DataF.c:10634: warning: cast from pointer to integer of different size DataF.c:10803: error: 'MSG_DataF_0006' undeclared (first use in this function) DataF.c: In function 'XmDataFieldSetEditable': DataF.c:11780: warning: cast from pointer to integer of different size gmake[3]: *** [DataF.lo] Error 1 gmake[3]: Leaving directory `/.amd_mnt/radziecki/a/icybox/tmp/usr/ports/x11-toolkits/open-motif/work/openmotif-2.3.3/lib/Xm' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/.amd_mnt/radziecki/a/icybox/tmp/usr/ports/x11-toolkits/open-motif/work/openmotif-2.3.3/lib/Xm' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/.amd_mnt/radziecki/a/icybox/tmp/usr/ports/x11-toolkits/open-motif/work/openmotif-2.3.3/lib' gmake: *** [all-recursive] Error 1 *** Error code 1 Stop in /usr/ports/x11-toolkits/open-motif. It is needed to build a recently open sourced Common Desktop Environment (CDE). >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 00:40:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 640EE106566B; Wed, 15 Aug 2012 00:40: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 CDAD78FC1B; Wed, 15 Aug 2012 00: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 q7F0eMKu033183; Wed, 15 Aug 2012 00: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 q7F0eMs4033179; Wed, 15 Aug 2012 00:40:22 GMT (envelope-from edwin) Date: Wed, 15 Aug 2012 00:40:22 GMT Message-Id: <201208150040.q7F0eMs4033179@freefall.freebsd.org> To: saper@saper.info, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170641: x11-toolkits/open-motif: need mkcatdefs utility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 00:40:23 -0000 Synopsis: x11-toolkits/open-motif: need mkcatdefs utility State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Aug 15 00:40:22 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170641 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 00:50:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05DA8106564A for ; Wed, 15 Aug 2012 00: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 E483A8FC0A for ; Wed, 15 Aug 2012 00: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 q7F0oC1e034037 for ; Wed, 15 Aug 2012 00: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 q7F0oCZx034036; Wed, 15 Aug 2012 00:50:12 GMT (envelope-from gnats) Date: Wed, 15 Aug 2012 00:50:12 GMT Message-Id: <201208150050.q7F0oCZx034036@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170641: x11-toolkits/open-motif: need mkcatdefs utility 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, 15 Aug 2012 00:50:13 -0000 The following reply was made to PR ports/170641; it has been noted by GNATS. From: Edwin Groothuis To: m.tsatsenko@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/170641: x11-toolkits/open-motif: need mkcatdefs utility Date: Wed, 15 Aug 2012 00:40:20 UT Maintainer of x11-toolkits/open-motif, Please note that PR ports/170641 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/170641 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 01:00:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA0311065673 for ; Wed, 15 Aug 2012 01: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 892758FC0C for ; Wed, 15 Aug 2012 01: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 q7F10P3t034546 for ; Wed, 15 Aug 2012 01: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 q7F10PoN034545; Wed, 15 Aug 2012 01:00:25 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 01:00:25 GMT Resent-Message-Id: <201208150100.q7F10PoN034545@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 B841A1065678 for ; Wed, 15 Aug 2012 00:51: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 A3AC58FC12 for ; Wed, 15 Aug 2012 00:51: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 q7F0piU4077677 for ; Wed, 15 Aug 2012 00:51:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7F0piLg077676; Wed, 15 Aug 2012 00:51:44 GMT (envelope-from nobody) Message-Id: <201208150051.q7F0piLg077676@red.freebsd.org> Date: Wed, 15 Aug 2012 00:51:44 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170642: [patch] update sysutils/rubygem-bundler to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 01:00:25 -0000 >Number: 170642 >Category: ports >Synopsis: [patch] update sysutils/rubygem-bundler to latest version >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 Aug 15 01:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/bundler-1.1.4.gem) = 203f23d42f175f3a66e3c882821f207187bb2cdcbb86ff76ab2df700e624f28e -SIZE (rubygem/bundler-1.1.4.gem) = 202752 +SHA256 (rubygem/bundler-1.1.5.gem) = 627270b2c18ff6747ea15427aaa5aec30c15718a3db27693d929fdbd431679bf +SIZE (rubygem/bundler-1.1.5.gem) = 205312 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= bundler -PORTVERSION= 1.1.4 +PORTVERSION= 1.1.5 CATEGORIES= sysutils rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 01:00:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A89DF106564A; Wed, 15 Aug 2012 01: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 7C0428FC16; Wed, 15 Aug 2012 01: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 q7F10ZkU034662; Wed, 15 Aug 2012 01: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 q7F10ZAd034658; Wed, 15 Aug 2012 01:00:35 GMT (envelope-from edwin) Date: Wed, 15 Aug 2012 01:00:35 GMT Message-Id: <201208150100.q7F10ZAd034658@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170642: [patch] update sysutils/rubygem-bundler to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 01:00:35 -0000 Synopsis: [patch] update sysutils/rubygem-bundler to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 15 01:00:35 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170642 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 01:50:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E028D1065675 for ; Wed, 15 Aug 2012 01:50:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A10978FC0A for ; Wed, 15 Aug 2012 01:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7F1o6ln041375 for ; Wed, 15 Aug 2012 01: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 q7F1o6VO041374; Wed, 15 Aug 2012 01:50:06 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 01:50:06 GMT Resent-Message-Id: <201208150150.q7F1o6VO041374@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F183C106566B for ; Wed, 15 Aug 2012 01:44:09 +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 DD9218FC08 for ; Wed, 15 Aug 2012 01:44:09 +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 q7F1i9OJ077572 for ; Wed, 15 Aug 2012 01:44:09 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7F1i9T4077571; Wed, 15 Aug 2012 01:44:09 GMT (envelope-from nobody) Message-Id: <201208150144.q7F1i9T4077571@red.freebsd.org> Date: Wed, 15 Aug 2012 01:44:09 GMT From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170643: [patch] update textproc/rubygem-loofah to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 01:50:07 -0000 >Number: 170643 >Category: ports >Synopsis: [patch] update textproc/rubygem-loofah to latest version >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 Aug 15 01:50:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: >Organization: >Environment: >Description: See attached patch >How-To-Repeat: >Fix: Index: distinfo =================================================================== --- distinfo (revision 302183) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/loofah-1.2.0.gem) = 439283fb4656e39a5070a310dcc7d7c394a014b6a64cc6ad0cc4cb4b64c2c26b -SIZE (rubygem/loofah-1.2.0.gem) = 56832 +SHA256 (rubygem/loofah-1.2.1.gem) = e19451988f0d11b16d8b56a0417564fca417ac98481af7a9ab2528a694abfa3f +SIZE (rubygem/loofah-1.2.1.gem) = 57344 Index: Makefile =================================================================== --- Makefile (revision 302183) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= loofah -PORTVERSION= 1.2.0 +PORTVERSION= 1.2.1 CATEGORIES= textproc rubygems MASTER_SITES= RG >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 01:50:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 840C41065680; Wed, 15 Aug 2012 01:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 56C7E8FC0C; Wed, 15 Aug 2012 01:50: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 q7F1oHpf041519; Wed, 15 Aug 2012 01:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7F1oH0i041515; Wed, 15 Aug 2012 01:50:17 GMT (envelope-from edwin) Date: Wed, 15 Aug 2012 01:50:17 GMT Message-Id: <201208150150.q7F1oH0i041515@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170643: [patch] update textproc/rubygem-loofah to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 01:50:17 -0000 Synopsis: [patch] update textproc/rubygem-loofah to latest version Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 15 01:50:16 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170643 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 05:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 481F9106564A for ; Wed, 15 Aug 2012 05: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 239B98FC0A for ; Wed, 15 Aug 2012 05: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 q7F5UBuY066117 for ; Wed, 15 Aug 2012 05: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 q7F5UAuf066116; Wed, 15 Aug 2012 05:30:10 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 05:30:10 GMT Resent-Message-Id: <201208150530.q7F5UAuf066116@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 Felder Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0A14106564A for ; Wed, 15 Aug 2012 05:24:22 +0000 (UTC) (envelope-from feld@feld.me) Received: from feld.me (unknown [IPv6:2607:f4e0:100:300::2]) by mx1.freebsd.org (Postfix) with ESMTP id 8804A8FC0A for ; Wed, 15 Aug 2012 05:24:22 +0000 (UTC) Received: from feld by feld.me with local (Exim 4.80 (FreeBSD)) (envelope-from ) id 1T1W5c-000JUo-BB for FreeBSD-gnats-submit@freebsd.org; Wed, 15 Aug 2012 00:24:20 -0500 Message-Id: Date: Wed, 15 Aug 2012 00:24:20 -0500 From: Mark Felder To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170644: [PATCH] irc/inspircd: update to 2.0.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: Wed, 15 Aug 2012 05:30:11 -0000 >Number: 170644 >Category: ports >Synopsis: [PATCH] irc/inspircd: update to 2.0.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Aug 15 05:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: feld >Release: FreeBSD 9.0-STABLE amd64 >Organization: >Environment: System: FreeBSD mwi1.coffeenet.org 9.0-STABLE FreeBSD 9.0-STABLE #3 r234963: Thu May 3 13:12:01 >Description: - Update to 2.0.8 - Made the knobs actually work - Added regex modules as new knobs - Added ldapoper module knob - regex_posix and sqlite enabled by default (following upstream) Added file(s): - files/patch-make_template_main.mk Removed file(s): - files/patch-src_dns.cpp https://redports.org/buildarchive/20120815052212-46196/ Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- inspircd-2.0.8.patch begins here --- diff -ruN --exclude=CVS ../inspircd.orig/Makefile ./Makefile --- ../inspircd.orig/Makefile 2012-06-14 14:28:02.000000000 -0500 +++ ./Makefile 2012-08-15 00:21:05.821274446 -0500 @@ -6,8 +6,7 @@ # PORTNAME= inspircd -PORTVERSION= 2.0.5 -PORTREVISION= 2 +PORTVERSION= 2.0.8 CATEGORIES= irc MASTER_SITES= http://cloud.github.com/downloads/inspircd/inspircd/ DISTNAME= InspIRCd-${PORTVERSION} @@ -36,34 +35,44 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --with-cc=${CXX} --config-dir=${ETCDIR} \ - --module-dir=${PREFIX}/lib/${PORTNAME}/modules \ - --library-dir=${PREFIX}/lib/${PORTNAME} \ + --module-dir=${PREFIX}/lib/${PORTNAME}/modules \ --prefix=${PREFIX}/lib/${PORTNAME} --binary-dir=${PREFIX}/bin \ - --enable-kqueue --enable-ipv6 --disable-interactive \ + --enable-kqueue --disable-interactive \ --uid=${INSPIRCD_UID} - PORTDOCS= docs/* extras/* -OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP GNUTLS OPENSSL +OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAPAUTH LDAPOPER GNUTLS OPENSSL PCRE POSIX +OPTIONS_DEFAULT= POSIX SQLITE GNUTLS_DESC= Build m_ssl_gnutls module -LDAP_DESC= Build m_ldapauth module +LDAPAUTH_DESC= Build m_ldapauth module +LDAPOPER_DESC= Build m_ldapoper module MYSQL_DESC= Build m_mysql module OPENSSL_DESC= Build m_ssl_openssl module PGSQL_DESC= Build m_pgsql module SQLITE_DESC= Build m_sqlite3 module +PCRE_DESC= Build m_regex_pcre module +POSIX_DESC= Build m_regex_posix module .include post-extract: @(cd ${WRKDIR} && ${MV} ${PORTNAME} ${DISTNAME}) -.if ${PORT_OPTIONS:MLDAP} +.if ${PORT_OPTIONS:MLDAPAUTH} USE_OPENLDAP= yes EXTRAS:=${EXTRAS},m_ldapauth.cpp -PLIST_SUB+= LDAP="" +PLIST_SUB+= LDAPAUTH="" +.else +PLIST_SUB+= LDAPAUTH="@comment " +.endif + +.if ${PORT_OPTIONS:MLDAPOPER} +USE_OPENLDAP= yes +EXTRAS:=${EXTRAS},m_ldapoper.cpp +PLIST_SUB+= LDAPOPER="" .else -PLIST_SUB+= LDAP="@comment " +PLIST_SUB+= LDAPOPER="@comment " .endif .if ${PORT_OPTIONS:MMYSQL} @@ -94,6 +103,7 @@ LIB_DEPENDS+= gnutls.47:${PORTSDIR}/security/gnutls \ gcrypt.18:${PORTSDIR}/security/libgcrypt CONFIGURE_ARGS+= --enable-gnutls +EXTRAS:=${EXTRAS},m_ssl_gnutls.cpp PLIST_SUB+= GNUTLS="" .else PLIST_SUB+= GNUTLS="@comment " @@ -102,12 +112,31 @@ .if ${PORT_OPTIONS:MOPENSSL} USE_OPENSSL=yes CONFIGURE_ARGS+= --enable-openssl +EXTRAS:=${EXTRAS},m_ssl_openssl.cpp PLIST_SUB+= OPENSSL="" .else PLIST_SUB+= OPENSSL="@comment " .endif -CONFIGURE_ARGS+= --enable-extras=${EXTRAS} +.if ${PORT_OPTIONS:MPCRE} +LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre +EXTRAS:=${EXTRAS},m_regex_pcre.cpp +PLIST_SUB+= PCRE="" +.else +PLIST_SUB+= PCRE="@comment " +.endif + +.if ${PORT_OPTIONS:MPOSIX} +EXTRAS:=${EXTRAS},m_regex_posix.cpp +PLIST_SUB+= POSIX="" +.else +PLIST_SUB+= POSIX="@comment " +.endif + +pre-configure: + @if [ ${EXTRAS} ]; then \ + cd ${WRKSRC} && ./${CONFIGURE_SCRIPT} --enable-extras=${EXTRAS} ; \ + fi post-install: @${STRIP_CMD} ${PREFIX}/lib/${PORTNAME}/modules/*.so diff -ruN --exclude=CVS ../inspircd.orig/distinfo ./distinfo --- ../inspircd.orig/distinfo 2012-05-15 21:45:17.000000000 -0500 +++ ./distinfo 2012-08-14 17:04:27.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (InspIRCd-2.0.5.tar.bz2) = 425bf79ae1348b398ce6d2348f6cc8baeebe8125f62337e98c136942223f4fc6 -SIZE (InspIRCd-2.0.5.tar.bz2) = 575852 +SHA256 (InspIRCd-2.0.8.tar.bz2) = 5fd57df1a2a10f480aefc61272f22fdd8addb5ab3a544582235377b8fa8b9296 +SIZE (InspIRCd-2.0.8.tar.bz2) = 591761 diff -ruN --exclude=CVS ../inspircd.orig/files/patch-make_template_main.mk ./files/patch-make_template_main.mk --- ../inspircd.orig/files/patch-make_template_main.mk 1969-12-31 18:00:00.000000000 -0600 +++ ./files/patch-make_template_main.mk 2012-08-14 23:58:15.000000000 -0500 @@ -0,0 +1,22 @@ +--- make/template/main.mk.orig 2012-07-13 10:38:01.000000000 -0500 ++++ make/template/main.mk 2012-08-14 23:58:06.816315279 -0500 +@@ -58,6 +58,10 @@ + @IFEQ $(SYSTEM) linux + LDLIBS += -ldl -lrt + @ENDIF ++@IFEQ $(SYSTEM) freebsd ++ CXXFLAGS += -I/usr/local/include ++ LDFLAGS += -L/usr/local/lib ++@ENDIF + @IFEQ $(SYSTEM) gnukfreebsd + LDLIBS += -ldl -lrt + @ENDIF +@@ -124,7 +128,7 @@ + CXXFLAGS += -DPURE_STATIC + @ENDIF + +-@DO_EXPORT RUNCC RUNLD CXXFLAGS LDLIBS PICLDFLAGS VERBOSE SOCKETENGINE CORELDFLAGS ++@DO_EXPORT RUNCC RUNLD CXXFLAGS LDLIBS PICLDFLAGS VERBOSE SOCKETENGINE CORELDFLAGS LDFLAGS + @DO_EXPORT SOURCEPATH BUILDPATH PURE_STATIC SPLIT_CC + + # Default target diff -ruN --exclude=CVS ../inspircd.orig/files/patch-src_dns.cpp ./files/patch-src_dns.cpp --- ../inspircd.orig/files/patch-src_dns.cpp 2012-05-16 08:29:59.000000000 -0500 +++ ./files/patch-src_dns.cpp 1969-12-31 18:00:00.000000000 -0600 @@ -1,135 +0,0 @@ ---- src/dns.cpp.orig 2012-05-15 21:45:31.840274636 -0500 -+++ src/dns.cpp 2012-05-15 21:45:58.653278686 -0500 -@@ -38,6 +49,8 @@ - #include "configreader.h" - #include "socket.h" - -+#define DN_COMP_BITMASK 0xC000 /* highest 6 bits in a DN label header */ -+ - /** Masks to mask off the responses we get from the DNSRequest methods - */ - enum QueryInfo -@@ -98,7 +111,7 @@ - - DNSRequest(DNS* dns, int id, const std::string &original); - ~DNSRequest(); -- DNSInfo ResultIsReady(DNSHeader &h, int length); -+ DNSInfo ResultIsReady(DNSHeader &h, unsigned length); - int SendRequests(const DNSHeader *header, const int length, QueryType qt); - }; - -@@ -161,7 +174,10 @@ - /* Allocate the processing buffer */ - DNSRequest::DNSRequest(DNS* dns, int rid, const std::string &original) : dnsobj(dns) - { -- res = new unsigned char[512]; -+ /* hardening against overflow here: make our work buffer twice the theoretical -+ * maximum size so that hostile input doesn't screw us over. -+ */ -+ res = new unsigned char[sizeof(DNSHeader) * 2]; - *res = 0; - orig = original; - RequestTimeout* RT = new RequestTimeout(ServerInstance->Config->dns_timeout ? ServerInstance->Config->dns_timeout : 5, this, rid); -@@ -688,11 +704,11 @@ - } - - /** A result is ready, process it */ --DNSInfo DNSRequest::ResultIsReady(DNSHeader &header, int length) -+DNSInfo DNSRequest::ResultIsReady(DNSHeader &header, unsigned length) - { -- int i = 0; -+ unsigned i = 0, o; - int q = 0; -- int curanswer, o; -+ int curanswer; - ResourceRecord rr; - unsigned short ptr; - -@@ -755,7 +771,7 @@ - else i += header.payload[i] + 1; /* skip length and label */ - } - } -- if (length - i < 10) -+ if (static_cast(length - i) < 10) - return std::make_pair((unsigned char*)NULL,"Incorrectly sized DNS reply"); - - /* XXX: We actually initialise 'rr' here including its ttl field */ -@@ -790,17 +806,37 @@ - - switch (rr.type) - { -+ /* -+ * CNAME and PTR are compressed. We need to decompress them. -+ */ - case DNS_QUERY_CNAME: -- /* CNAME and PTR have the same processing code */ - case DNS_QUERY_PTR: -+ { -+ unsigned short lowest_pos = length; - o = 0; - q = 0; - while (q == 0 && i < length && o + 256 < 1023) - { -+ /* DN label found (byte over 63) */ - if (header.payload[i] > 63) - { - memcpy(&ptr,&header.payload[i],2); -- i = ntohs(ptr) - 0xC000 - 12; -+ -+ i = ntohs(ptr); -+ -+ /* check that highest two bits are set. if not, we've been had */ -+ if ((i & DN_COMP_BITMASK) != DN_COMP_BITMASK) -+ return std::make_pair((unsigned char *) NULL, "DN label decompression header is bogus"); -+ -+ /* mask away the two highest bits. */ -+ i &= ~DN_COMP_BITMASK; -+ -+ /* and decrease length by 12 bytes. */ -+ i -= 12; -+ -+ if (i >= lowest_pos) -+ return std::make_pair((unsigned char *) NULL, "Invalid decompression pointer"); -+ lowest_pos = i; - } - else - { -@@ -813,25 +849,35 @@ - res[o] = 0; - if (o != 0) - res[o++] = '.'; -- memcpy(&res[o],&header.payload[i + 1],header.payload[i]); -+ -+ if (o + header.payload[i] > sizeof(DNSHeader)) -+ return std::make_pair((unsigned char *) NULL, "DN label decompression is impossible -- malformed/hostile packet?"); -+ -+ memcpy(&res[o], &header.payload[i + 1], header.payload[i]); - o += header.payload[i]; - i += header.payload[i] + 1; - } - } - } - res[o] = 0; -+ } - break; - case DNS_QUERY_AAAA: -+ if (rr.rdlength != sizeof(struct in6_addr)) -+ return std::make_pair((unsigned char *) NULL, "rr.rdlength is larger than 16 bytes for an ipv6 entry -- malformed/hostile packet?"); -+ - memcpy(res,&header.payload[i],rr.rdlength); - res[rr.rdlength] = 0; - break; - case DNS_QUERY_A: -+ if (rr.rdlength != sizeof(struct in_addr)) -+ return std::make_pair((unsigned char *) NULL, "rr.rdlength is larger than 4 bytes for an ipv4 entry -- malformed/hostile packet?"); -+ - memcpy(res,&header.payload[i],rr.rdlength); - res[rr.rdlength] = 0; - break; - default: -- memcpy(res,&header.payload[i],rr.rdlength); -- res[rr.rdlength] = 0; -+ return std::make_pair((unsigned char *) NULL, "don't know how to handle undefined type (" + ConvToStr(rr.type) + ") -- rejecting"); - break; - } - return std::make_pair(res,"No error"); diff -ruN --exclude=CVS ../inspircd.orig/pkg-plist ./pkg-plist --- ../inspircd.orig/pkg-plist 2012-06-14 14:28:02.000000000 -0500 +++ ./pkg-plist 2012-08-15 00:06:28.000000000 -0500 @@ -182,12 +182,15 @@ lib/inspircd/modules/m_spanningtree.so lib/inspircd/modules/m_sqlauth.so lib/inspircd/modules/m_sqloper.so -%%LDAP%%lib/inspircd/modules/m_ldapauth.so +%%LDAPAUTH%%lib/inspircd/modules/m_ldapauth.so +%%LDAPOPER%%lib/inspircd/modules/m_ldapoper.so %%MYSQL%%lib/inspircd/modules/m_mysql.so %%PGSQL%%lib/inspircd/modules/m_pgsql.so %%SQLITE%%lib/inspircd/modules/m_sqlite3.so %%GNUTLS%%lib/inspircd/modules/m_ssl_gnutls.so %%OPENSSL%%lib/inspircd/modules/m_ssl_openssl.so +%%PCRE%%lib/inspircd/modules/m_regex_pcre.so +%%POSIX%%lib/inspircd/modules/m_regex_posix.so lib/inspircd/modules/m_sslinfo.so lib/inspircd/modules/m_sslmodes.so lib/inspircd/modules/m_stripcolor.so --- inspircd-2.0.8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 05:30:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CF64106564A; Wed, 15 Aug 2012 05: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 500D28FC0C; Wed, 15 Aug 2012 05: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 q7F5UOli066872; Wed, 15 Aug 2012 05: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 q7F5UO5T066864; Wed, 15 Aug 2012 05:30:24 GMT (envelope-from edwin) Date: Wed, 15 Aug 2012 05:30:24 GMT Message-Id: <201208150530.q7F5UO5T066864@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170644: [PATCH] irc/inspircd: update to 2.0.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: Wed, 15 Aug 2012 05:30:24 -0000 Synopsis: [PATCH] irc/inspircd: update to 2.0.8 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 15 05:30:23 UTC 2012 Responsible-Changed-Why: swills@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170644 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 08:15:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F2E31065673; Wed, 15 Aug 2012 08:15:17 +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 A9FCD8FC0C; Wed, 15 Aug 2012 08:15: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 q7F8FHVk097549; Wed, 15 Aug 2012 08:15:17 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7F8FH9m097545; Wed, 15 Aug 2012 08:15:17 GMT (envelope-from rm) Date: Wed, 15 Aug 2012 08:15:17 GMT Message-Id: <201208150815.q7F8FH9m097545@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170550: Update of 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: Wed, 15 Aug 2012 08:15:19 -0000 Synopsis: Update of ports-mgmt/portsreinstall Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Wed Aug 15 08:15:17 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170550 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 08:17:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1549F106566C; Wed, 15 Aug 2012 08:17:47 +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 DE85D8FC12; Wed, 15 Aug 2012 08:17: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 q7F8HkSp098129; Wed, 15 Aug 2012 08:17:46 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7F8HkmJ098125; Wed, 15 Aug 2012 08:17:46 GMT (envelope-from rm) Date: Wed, 15 Aug 2012 08:17:46 GMT Message-Id: <201208150817.q7F8HkmJ098125@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170567: New port: finance/tryton X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 08:17:47 -0000 Synopsis: New port: finance/tryton Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Wed Aug 15 08:17:46 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170567 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 08:21:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 013C1106566C; Wed, 15 Aug 2012 08:21:23 +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 C98668FC0C; Wed, 15 Aug 2012 08:21: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 q7F8LM6Z099622; Wed, 15 Aug 2012 08:21:22 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7F8LMgF099618; Wed, 15 Aug 2012 08:21:22 GMT (envelope-from rm) Date: Wed, 15 Aug 2012 08:21:22 GMT Message-Id: <201208150821.q7F8LMgF099618@freefall.freebsd.org> To: thomas.sander@gmx.de, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170532: update devel/kdbg from 2.2.0 to 2.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, 15 Aug 2012 08:21:23 -0000 Synopsis: update devel/kdbg from 2.2.0 to 2.5.1 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Wed Aug 15 08:21:22 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170532 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 08:57:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B05F1106566C; Wed, 15 Aug 2012 08:57:26 +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 7FF2C8FC0A; Wed, 15 Aug 2012 08:57: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 q7F8vQYn004800; Wed, 15 Aug 2012 08:57:26 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7F8vQ5f004796; Wed, 15 Aug 2012 08:57:26 GMT (envelope-from rm) Date: Wed, 15 Aug 2012 08:57:26 GMT Message-Id: <201208150857.q7F8vQ5f004796@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170348: [update]: databases/tarantool up to 1.4.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: Wed, 15 Aug 2012 08:57:26 -0000 Synopsis: [update]: databases/tarantool up to 1.4.7 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Wed Aug 15 08:57:26 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170348 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 08:57:40 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F3EFC1065673; Wed, 15 Aug 2012 08:57:39 +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 C78E08FC15; Wed, 15 Aug 2012 08:57: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 q7F8vdCG004875; Wed, 15 Aug 2012 08:57:39 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7F8vdCc004871; Wed, 15 Aug 2012 08:57:39 GMT (envelope-from rm) Date: Wed, 15 Aug 2012 08:57:39 GMT Message-Id: <201208150857.q7F8vdCc004871@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170347: New port: benchmarks/nosqlbench Micro-benchmarking NoSQL storage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 08:57:40 -0000 Synopsis: New port: benchmarks/nosqlbench Micro-benchmarking NoSQL storage Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Wed Aug 15 08:57:39 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170347 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 08:59:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D36E106564A; Wed, 15 Aug 2012 08:59:07 +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 F3E5A8FC12; Wed, 15 Aug 2012 08:59:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7F8x6bX004970; Wed, 15 Aug 2012 08:59:06 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7F8x6qU004966; Wed, 15 Aug 2012 08:59:06 GMT (envelope-from rm) Date: Wed, 15 Aug 2012 08:59:06 GMT Message-Id: <201208150859.q7F8x6qU004966@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/169910: [NEW PORT] www/trac-childtickets: Support for having child-tickets in Trac X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 08:59:07 -0000 Synopsis: [NEW PORT] www/trac-childtickets: Support for having child-tickets in Trac Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Wed Aug 15 08:59:06 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=169910 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 10:20:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32294106566B for ; Wed, 15 Aug 2012 10:20: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 0ADBD8FC1C for ; Wed, 15 Aug 2012 10:20: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 q7FAKR6j015252 for ; Wed, 15 Aug 2012 10:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FAKRu3015251; Wed, 15 Aug 2012 10:20:27 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 10:20:27 GMT Resent-Message-Id: <201208151020.q7FAKRu3015251@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, Mykola Dzham Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB999106566C; Wed, 15 Aug 2012 10:17:05 +0000 (UTC) (envelope-from i@levsha.me) Received: from expo.ukrweb.net (mail.univua.net [91.202.128.78]) by mx1.freebsd.org (Postfix) with ESMTP id 9DB828FC14; Wed, 15 Aug 2012 10:17:05 +0000 (UTC) Received: from [94.45.140.16] (helo=laptop.levsha.me) by expo.ukrweb.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1T1aep-000JuF-6m; Wed, 15 Aug 2012 13:17:04 +0300 Received: from levsha by laptop.levsha.me with local (Exim 4.80 (FreeBSD)) (envelope-from ) id 1T1aeo-000ATE-TF; Wed, 15 Aug 2012 13:16:58 +0300 Message-Id: Date: Wed, 15 Aug 2012 13:16:58 +0300 From: Mykola Dzham Sender: Mykola Dzham To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: thierry@FreeBSD.org Subject: ports/170645: [PATCH] x11/rxvt-unicode: fix build on recent current and 9-STABLE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 10:20:28 -0000 >Number: 170645 >Category: ports >Synopsis: [PATCH] x11/rxvt-unicode: fix build on recent current and 9-STABLE >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 Aug 15 10:20:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mykola Dzham >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD laptop.levsha.me 10.0-CURRENT FreeBSD 10.0-CURRENT #31 r239244: Tue Aug 14 13:10:04 EEST >Description: Can't build x11/rxvt-unicode after r236890 on current and after MFS on 9-STABLE: ... c++ -I.. -I. -I. -I./../libev -I./../libptytty/src -I./../libecb -DHAVE_CONFIG_H -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include -O2 -pipe -fno-strict-aliasing -w -I/usr/local/include -D_REENTRANT -I/usr/local/include/gdk-pixbuf-2.0 -I/usr/local/include/libpng15 -I/usr/local/include/glib-2.0 -c rxvtc.C PERL="/usr/bin/perl5" /usr/bin/perl5 /usr/local/lib/perl5/5.12.4/ExtUtils/xsubpp -C++ -typemap /usr/local/lib/perl5/5.12.4/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes ./rxvtperl.xs >rxvtperl.C /usr/bin/perl5 -MExtUtils::Embed -e xsinit -- -std urxvt cc -o rxvtc rxvtc.o rxvtdaemon.o fdpass_wrapper.o -lutil -lsupc++ -lm rxvtdaemon.o: In function `rxvt_connection::recv(auto_ptr&, int*)': rxvtdaemon.C:(.text+0x28e): undefined reference to `operator new[](unsigned long)' Port maintainer (thierry@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: CVS) >How-To-Repeat: Try to build on current after r236890 or on 9-stable after r237938 >Fix: Use patch below. tb logs: http://levsha.me/tb/logs/10-HEAD.amd64/rxvt-unicode-9.15_1.log http://levsha.me/tb/logs/9-STABLE.amd64/rxvt-unicode-9.15_1.log http://levsha.me/tb/logs/9-STABLE.i386/rxvt-unicode-9.15_1.log http://levsha.me/tb/logs/8-STABLE.amd64/rxvt-unicode-9.15_1.log http://levsha.me/tb/logs/8-STABLE.i386/rxvt-unicode-9.15_1.log http://levsha.me/tb/logs/7-STABLE.amd64/rxvt-unicode-9.15_1.log http://levsha.me/tb/logs/7-STABLE.i386/rxvt-unicode-9.15_1.log --- rxvt-unicode-9.15_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11/rxvt-unicode/Makefile,v retrieving revision 1.142 diff -u -r1.142 Makefile --- Makefile 30 Jun 2012 14:53:21 -0000 1.142 +++ Makefile 15 Aug 2012 10:04:38 -0000 @@ -26,7 +26,7 @@ USE_XORG= xpm xft xrender GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ENV= LIBS="-lutil" +CONFIGURE_ENV= LIBS="-lutil -lstdc++" CONFIGURE_ARGS= --enable-everything --with-term=rxvt \ --with-terminfo=${LOCALBASE}/share/misc/terminfo.db USE_BZIP2= yes --- rxvt-unicode-9.15_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 10:20:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 233611065675; Wed, 15 Aug 2012 10:20:56 +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 E9E768FC15; Wed, 15 Aug 2012 10:20: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 q7FAKsT6015370; Wed, 15 Aug 2012 10:20:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FAKsqN015365; Wed, 15 Aug 2012 10:20:54 GMT (envelope-from edwin) Date: Wed, 15 Aug 2012 10:20:54 GMT Message-Id: <201208151020.q7FAKsqN015365@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, thierry@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170645: [PATCH] x11/rxvt-unicode: fix build on recent current and 9-STABLE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 10:20:56 -0000 Synopsis: [PATCH] x11/rxvt-unicode: fix build on recent current and 9-STABLE Responsible-Changed-From-To: freebsd-ports-bugs->thierry Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 15 10:20:47 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170645 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 12:30:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 442381065672 for ; Wed, 15 Aug 2012 12:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1741D8FC15 for ; Wed, 15 Aug 2012 12:30: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 q7FCU6Yj035681 for ; Wed, 15 Aug 2012 12:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FCU6XL035679; Wed, 15 Aug 2012 12:30:06 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 12:30:06 GMT Resent-Message-Id: <201208151230.q7FCU6XL035679@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, Helmut Schneider Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3A0B106566B for ; Wed, 15 Aug 2012 12:21:53 +0000 (UTC) (envelope-from helmut@charlieroot.de) Received: from mailout05.t-online.de (mailout05.t-online.de [194.25.134.82]) by mx1.freebsd.org (Postfix) with ESMTP id 735A08FC14 for ; Wed, 15 Aug 2012 12:21:52 +0000 (UTC) Received: from fwd23.aul.t-online.de (fwd23.aul.t-online.de ) by mailout05.t-online.de with smtp id 1T1cMY-000769-VS; Wed, 15 Aug 2012 14:06:14 +0200 Received: from mailout.charlieroot.de (EeWSvaZdYh24YvxH4H0SHJAQwPIuMORXQLUpBXkh68D9IWtIUgDs0Ty44yALc67wzP@[93.205.123.245]) by fwd23.aul.t-online.de with esmtp id 1T1cMM-1tjPFI0; Wed, 15 Aug 2012 14:06:02 +0200 Received: from BSDHelmut964.charlieroot.de (unknown [IPv6:2001:6f8:1013:1::202]) by mailout.charlieroot.de (Postfix) with ESMTP id 50A8217047 for ; Wed, 15 Aug 2012 14:06:02 +0200 (CEST) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id 1D2D518337; Wed, 15 Aug 2012 14:06:02 +0200 (CEST) Message-Id: <20120815120602.1D2D518337@BSDHelmut964.charlieroot.de> Date: Wed, 15 Aug 2012 14:06:02 +0200 (CEST) From: Helmut Schneider To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170647: [MAINTAINER] www/typo345: update to 4.5.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: Wed, 15 Aug 2012 12:30:07 -0000 >Number: 170647 >Category: ports >Synopsis: [MAINTAINER] www/typo345: update to 4.5.19 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Aug 15 12:30:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Helmut Schneider >Release: FreeBSD 9.0-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.0-RELEASE-p4 FreeBSD 9.0-RELEASE-p4 #3: Tue Aug 7 20:55:23 CEST >Description: - Update to 4.5.19 - Security fix, see http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2012-004/ Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo3-4.5.19.patch begins here --- diff -ruN --exclude=CVS ../typo345.org/Makefile ./Makefile --- ../typo345.org/Makefile 2012-08-15 10:51:33.000000000 +0200 +++ ./Makefile 2012-08-15 14:00:36.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= typo3 -PORTVERSION= 4.5.18 +PORTVERSION= 4.5.19 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} diff -ruN --exclude=CVS ../typo345.org/distinfo ./distinfo --- ../typo345.org/distinfo 2012-08-15 10:51:33.000000000 +0200 +++ ./distinfo 2012-08-15 14:00:56.000000000 +0200 @@ -1,4 +1,4 @@ -SHA256 (typo3_src-4.5.18.tar.gz) = 68da30e14124c697c070046b14886ec64ecd38b8b17895a122e1a5f45e516fa2 -SIZE (typo3_src-4.5.18.tar.gz) = 20559614 -SHA256 (dummy-4.5.18.tar.gz) = 9a88878e802ff1b743152cc0f79ed038e769c2436784266725e02d848a07f18d -SIZE (dummy-4.5.18.tar.gz) = 9858 +SHA256 (typo3_src-4.5.19.tar.gz) = 9a70d9e8980acdd5745c7b141d92ff9f680e360905befd484b51e07d13e3a0ba +SIZE (typo3_src-4.5.19.tar.gz) = 20560147 +SHA256 (dummy-4.5.19.tar.gz) = 9ed92532a2827e0d3503683e076b3cef90fe89ff1010a4a0b70a9a172c54bafb +SIZE (dummy-4.5.19.tar.gz) = 9858 diff -ruN --exclude=CVS ../typo345.org/pkg-plist ./pkg-plist --- ../typo345.org/pkg-plist 2012-08-15 10:51:33.000000000 +0200 +++ ./pkg-plist 2012-08-15 14:02:02.000000000 +0200 @@ -136,6 +136,7 @@ %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_userauth.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_userauthgroup.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_xml.php +%%WWWDIR%%_src-%%PORTVERSION%%/t3lib/codec/class.t3lib_codec_javascriptencoder.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/config_default.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu/class.t3lib_contextmenu_abstractcontextmenu.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu/class.t3lib_contextmenu_abstractdataprovider.php @@ -8300,6 +8301,7 @@ @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu/pagetree @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu/extdirect @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/codec @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/frontend/interfaces @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/frontend @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/exception --- typo3-4.5.19.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 13:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D42E3106566C for ; Wed, 15 Aug 2012 13:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A95E48FC16 for ; Wed, 15 Aug 2012 13: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 q7FDA8Ux041749 for ; Wed, 15 Aug 2012 13: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 q7FDA8J8041748; Wed, 15 Aug 2012 13:10:08 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 13:10:08 GMT Resent-Message-Id: <201208151310.q7FDA8J8041748@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, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 073361065672; Wed, 15 Aug 2012 13:05:53 +0000 (UTC) (envelope-from koobs.freebsd@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 B369F8FC16; Wed, 15 Aug 2012 13:05:52 +0000 (UTC) Received: by ialo14 with SMTP id o14so195064ial.13 for ; Wed, 15 Aug 2012 06:05:52 -0700 (PDT) Received: by 10.43.92.71 with SMTP id bp7mr18088298icc.52.1345035951830; Wed, 15 Aug 2012 06:05:51 -0700 (PDT) Received: from freebsd-9-amd64.localdomain (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPS id c3sm3516381iga.8.2012.08.15.06.05.49 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 15 Aug 2012 06:05:51 -0700 (PDT) Received: by freebsd-9-amd64.localdomain (Postfix, from userid 1001) id 7451939F15; Wed, 15 Aug 2012 23:05:45 +1000 (EST) Message-Id: <20120815130545.7451939F15@freebsd-9-amd64.localdomain> Date: Wed, 15 Aug 2012 23:05:45 +1000 (EST) From: Kubilay Kocak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clsung@FreeBSD.org Subject: ports/170648: [PATCH] databases/py-redis: update to 2.6.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, 15 Aug 2012 13:10:08 -0000 >Number: 170648 >Category: ports >Synopsis: [PATCH] databases/py-redis: update to 2.6.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 Aug 15 13:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD freebsd-9-amd64 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Sat Jul 7 21:26:56 EST >Description: - Update to 2.6.2 - Remove LICENSE_FILE for those in bsd.licenses.db.mk - Use easy_install (make tests easier to run) - Add zip_safe=False to setup.py - Update and sort pkg-plist - Replace dirrmtry with dirrm Changes: * 2.6.3 (in development) * Added BITOP and BITCOUNT commands. Thanks Mark Tozzi. * 2.6.2 * `from_url` is now available as a classmethod on client classes. Thanks Jon Parise for the patch. * Fixed several encoding errors resulting from the Python 3.x support. * 2.6.1 * Python 3.x support! Big thanks to Alex Grönholm. * Fixed a bug in the PythonParser's read_response that could hide an error from the client (#251). * 2.6.0 * Changed (p)subscribe and (p)unsubscribe to no longer return messages indicating the channel was subscribed/unsubscribed to. These messages are available in the listen() loop instead. This is to prevent the following scenario: * Client A is subscribed to "foo" * Client B publishes message to "foo" * Client A subscribes to channel "bar" at the same time. Prior to this change, the subscribe() call would return the published messages on "foo" rather than the subscription confirmation to "bar". * Added support for GETRANGE, thanks Jean-Philippe Caruana * A new setting "decode_responses" specifies whether return values from Redis commands get decoded automatically using the client's charset value. Thanks to Frankie Dintino for the patch. ==[QA]== - port test clean - redports build clean: https://redports.org/buildarchive/20120815123058-44566/ Port maintainer (clsung@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- py27-redis-2.6.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/py-redis/Makefile ./Makefile --- /usr/ports/databases/py-redis/Makefile 2012-06-02 10:48:54.000000000 +1000 +++ ./Makefile 2012-08-15 22:59:35.000000000 +1000 @@ -6,7 +6,7 @@ # PORTNAME= redis -PORTVERSION= 2.4.13 +PORTVERSION= 2.6.2 CATEGORIES= databases python MASTER_SITES= http://cloud.github.com/downloads/andymccurdy/redis-py/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,9 +15,8 @@ COMMENT= Python client for Redis key-value store LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE USE_PYTHON= yes -USE_PYDISTUTILS=yes +USE_PYDISTUTILS= easy_install .include diff -ruN --exclude=CVS /usr/ports/databases/py-redis/distinfo ./distinfo --- /usr/ports/databases/py-redis/distinfo 2012-06-02 10:48:54.000000000 +1000 +++ ./distinfo 2012-08-15 21:36:28.000000000 +1000 @@ -1,2 +1,2 @@ -SHA256 (redis-2.4.13.tar.gz) = 365285e161395344edc629a2e108f6bb0983e96d9b5012dab1f76cec2379a09a -SIZE (redis-2.4.13.tar.gz) = 29329 +SHA256 (redis-2.6.2.tar.gz) = 2196ff8a6b0ce505d3972a58c49d842f031260af66f2e3960e0ce068ab7598e5 +SIZE (redis-2.6.2.tar.gz) = 34942 diff -ruN --exclude=CVS /usr/ports/databases/py-redis/files/patch-setup.py ./files/patch-setup.py --- /usr/ports/databases/py-redis/files/patch-setup.py 2012-06-02 10:48:54.000000000 +1000 +++ ./files/patch-setup.py 2012-08-15 22:27:34.000000000 +1000 @@ -1,14 +1,22 @@ ---- ./setup.py.orig 2012-05-27 06:05:41.000000000 +1000 -+++ ./setup.py 2012-05-27 06:05:49.000000000 +1000 -@@ -30,10 +30,7 @@ - 'Programming Language :: Python'], - } +--- ./setup.py.orig 2012-08-10 08:48:07.000000000 +1000 ++++ ./setup.py 2012-08-15 22:27:30.000000000 +1000 +@@ -3,10 +3,7 @@ + + from redis import __version__ -try: - from setuptools import setup -except ImportError: - from distutils.core import setup -+from distutils.core import setup - - setup(**sdict) ++from setuptools import setup + f = open(os.path.join(os.path.dirname(__file__), 'README.md')) + long_description = f.read() +@@ -41,5 +38,6 @@ + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', +- ] ++ ], ++ zip_safe=False, + ) diff -ruN --exclude=CVS /usr/ports/databases/py-redis/pkg-plist ./pkg-plist --- /usr/ports/databases/py-redis/pkg-plist 2012-06-02 10:48:54.000000000 +1000 +++ ./pkg-plist 2012-08-15 22:29:19.000000000 +1000 @@ -1,17 +1,27 @@ @comment $FreeBSD: ports/databases/py-redis/pkg-plist,v 1.4 2012/06/02 00:48:54 clsung Exp $ -%%PYTHON_SITELIBDIR%%/redis/__init__.py -%%PYTHON_SITELIBDIR%%/redis/__init__.pyc -%%PYTHON_SITELIBDIR%%/redis/__init__.pyo -%%PYTHON_SITELIBDIR%%/redis/client.py -%%PYTHON_SITELIBDIR%%/redis/client.pyc -%%PYTHON_SITELIBDIR%%/redis/client.pyo -%%PYTHON_SITELIBDIR%%/redis/connection.py -%%PYTHON_SITELIBDIR%%/redis/connection.pyc -%%PYTHON_SITELIBDIR%%/redis/connection.pyo -%%PYTHON_SITELIBDIR%%/redis/exceptions.py -%%PYTHON_SITELIBDIR%%/redis/exceptions.pyc -%%PYTHON_SITELIBDIR%%/redis/exceptions.pyo -%%PYTHON_SITELIBDIR%%/redis/utils.py -%%PYTHON_SITELIBDIR%%/redis/utils.pyc -%%PYTHON_SITELIBDIR%%/redis/utils.pyo -@dirrmtry %%PYTHON_SITELIBDIR%%/redis +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/_compat.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/_compat.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/_compat.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/client.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/client.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/client.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/connection.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/connection.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/connection.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/exceptions.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/exceptions.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/exceptions.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/utils.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/utils.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis/utils.pyo +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/redis +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% --- py27-redis-2.6.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 13:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38F4C1065673 for ; Wed, 15 Aug 2012 13: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 0C0FA8FC18 for ; Wed, 15 Aug 2012 13: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 q7FDA80M041758 for ; Wed, 15 Aug 2012 13: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 q7FDA81B041757; Wed, 15 Aug 2012 13:10:08 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 13:10:08 GMT Resent-Message-Id: <201208151310.q7FDA81B041757@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, Helmut Schneider Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45A49106564A for ; Wed, 15 Aug 2012 13:06:51 +0000 (UTC) (envelope-from helmut@charlieroot.de) Received: from mailout11.t-online.de (mailout11.t-online.de [194.25.134.85]) by mx1.freebsd.org (Postfix) with ESMTP id 9EC968FC1C for ; Wed, 15 Aug 2012 13:06:50 +0000 (UTC) Received: from fwd52.aul.t-online.de (fwd52.aul.t-online.de ) by mailout11.t-online.de with smtp id 1T1dJA-0002aO-IP; Wed, 15 Aug 2012 15:06:48 +0200 Received: from mailout.charlieroot.de (SyrA-uZCohJyv1aoURvSv+HhGPTNxNrtvYBwVH2ehCeuNgHPmB2jcDZKI0reUhKwW0@[93.205.123.245]) by fwd52.aul.t-online.de with esmtp id 1T1dJ0-29tRSq0; Wed, 15 Aug 2012 15:06:38 +0200 Received: from BSDHelmut964.charlieroot.de (bsdhelmut964.charlieroot.de [192.168.124.202]) by mailout.charlieroot.de (Postfix) with ESMTP id 034D117047 for ; Wed, 15 Aug 2012 15:06:38 +0200 (CEST) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id D606718337; Wed, 15 Aug 2012 15:06:37 +0200 (CEST) Message-Id: <20120815130637.D606718337@BSDHelmut964.charlieroot.de> Date: Wed, 15 Aug 2012 15:06:37 +0200 (CEST) From: Helmut Schneider To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170649: [MAINTAINER] www/typo346: update to 4.6.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 13:10:09 -0000 >Number: 170649 >Category: ports >Synopsis: [MAINTAINER] www/typo346: update to 4.6.12 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Aug 15 13:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Helmut Schneider >Release: FreeBSD 9.0-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.0-RELEASE-p4 FreeBSD 9.0-RELEASE-p4 #3: Tue Aug 7 20:55:23 CEST >Description: - Update to 4.6.12 - Security fix, see http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2012-004/ Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo3-4.6.12.patch begins here --- diff -ruN --exclude=CVS ../typo346.org/Makefile ./Makefile --- ../typo346.org/Makefile 2012-08-15 02:13:20.000000000 +0200 +++ ./Makefile 2012-08-15 14:36:49.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= typo3 -PORTVERSION= 4.6.11 +PORTVERSION= 4.6.12 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} diff -ruN --exclude=CVS ../typo346.org/distinfo ./distinfo --- ../typo346.org/distinfo 2012-08-15 02:13:20.000000000 +0200 +++ ./distinfo 2012-08-15 14:37:04.000000000 +0200 @@ -1,4 +1,4 @@ -SHA256 (typo3_src-4.6.11.tar.gz) = 62acbc0876c2cbf452c435a5a09e11b60b3ea8d724a455f92d2caea07bb2ff89 -SIZE (typo3_src-4.6.11.tar.gz) = 21289682 -SHA256 (dummy-4.6.11.tar.gz) = 87e711ba875c3f9c90d730ff6a5c14b5c05bf2da06de46b0fe98090d04e9bdc2 -SIZE (dummy-4.6.11.tar.gz) = 10138 +SHA256 (typo3_src-4.6.12.tar.gz) = 99ba9550ed74b1c9185fda8bcaf17da3a7b433fd62608afcb24c21a7f25df8b8 +SIZE (typo3_src-4.6.12.tar.gz) = 21288826 +SHA256 (dummy-4.6.12.tar.gz) = cfa9a8a1b4fad18d27fc0a88b0e2e165b2d4d4cf5eada2343819f9621a77f508 +SIZE (dummy-4.6.12.tar.gz) = 10143 diff -ruN --exclude=CVS ../typo346.org/pkg-plist ./pkg-plist --- ../typo346.org/pkg-plist 2012-08-15 02:13:20.000000000 +0200 +++ ./pkg-plist 2012-08-15 14:58:06.000000000 +0200 @@ -136,6 +136,7 @@ %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_userauth.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_userauthgroup.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_xml.php +%%WWWDIR%%_src-%%PORTVERSION%%/t3lib/codec/class.t3lib_codec_javascriptencoder.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/config_default.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu/class.t3lib_contextmenu_abstractcontextmenu.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu/class.t3lib_contextmenu_abstractdataprovider.php @@ -8994,6 +8995,7 @@ @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu/pagetree @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu/extdirect @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/codec @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/frontend/interfaces @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/frontend @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/exception --- typo3-4.6.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 13:10:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 975BC106566B; Wed, 15 Aug 2012 13:10:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A9AB8FC08; Wed, 15 Aug 2012 13:10: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 q7FDAJbi041891; Wed, 15 Aug 2012 13:10:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FDAJsY041887; Wed, 15 Aug 2012 13:10:19 GMT (envelope-from edwin) Date: Wed, 15 Aug 2012 13:10:19 GMT Message-Id: <201208151310.q7FDAJsY041887@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170648: [PATCH] databases/py-redis: update to 2.6.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, 15 Aug 2012 13:10:19 -0000 Synopsis: [PATCH] databases/py-redis: update to 2.6.2 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 15 13:10:18 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170648 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 14:00:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77887106566B for ; Wed, 15 Aug 2012 14: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 47B9A8FC18 for ; Wed, 15 Aug 2012 14: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 q7FE0Sqx047823 for ; Wed, 15 Aug 2012 14: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 q7FE0Shw047822; Wed, 15 Aug 2012 14:00:28 GMT (envelope-from gnats) Date: Wed, 15 Aug 2012 14:00:28 GMT Message-Id: <201208151400.q7FE0Shw047822@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mikhail Tsatsenko Cc: Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mikhail Tsatsenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 14:00:28 -0000 The following reply was made to PR ports/170626; it has been noted by GNATS. From: Mikhail Tsatsenko To: bug-followup@FreeBSD.org, saper@saper.info Cc: Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure Date: Wed, 15 Aug 2012 17:56:01 +0400 To submitter: please try the following line for CPPFLAGS in port Makefile and let me know if it works: CPPFLAGS+= -DCSRG_BASED -DXUSE_MTSAFE_API -DXNO_MTSAFE_PWDAPI -I${LOCALBASE}/include I think it will be better approach than patching configure script. -- Mikhail From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 14:10:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EB86106564A for ; Wed, 15 Aug 2012 14:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE42C8FC1E for ; Wed, 15 Aug 2012 14:10: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 q7FEA5K7048592 for ; Wed, 15 Aug 2012 14:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FEA5Te048591; Wed, 15 Aug 2012 14:10:05 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 14:10:05 GMT Resent-Message-Id: <201208151410.q7FEA5Te048591@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, Helmut Schneider Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BA62106564A for ; Wed, 15 Aug 2012 14:05:51 +0000 (UTC) (envelope-from helmut@charlieroot.de) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx1.freebsd.org (Postfix) with ESMTP id 187988FC08 for ; Wed, 15 Aug 2012 14:05:50 +0000 (UTC) Received: from fwd08.aul.t-online.de (fwd08.aul.t-online.de ) by mailout03.t-online.de with smtp id 1T1eEB-0000MU-2e; Wed, 15 Aug 2012 16:05:43 +0200 Received: from mailout.charlieroot.de (bLicC6ZXohRTVQSHdQsqJS+9Kl73aBU6kd-ko5NIMSJik-f4gHUuZ7scnX+eJ+RQ2E@[93.205.123.245]) by fwd08.aul.t-online.de with esmtp id 1T1eE0-0DPowa0; Wed, 15 Aug 2012 16:05:32 +0200 Received: from BSDHelmut964.charlieroot.de (bsdhelmut964.charlieroot.de [192.168.124.202]) by mailout.charlieroot.de (Postfix) with ESMTP id 45EA817047 for ; Wed, 15 Aug 2012 16:05:32 +0200 (CEST) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id 24A6B18337; Wed, 15 Aug 2012 16:05:32 +0200 (CEST) Message-Id: <20120815140532.24A6B18337@BSDHelmut964.charlieroot.de> Date: Wed, 15 Aug 2012 16:05:32 +0200 (CEST) From: Helmut Schneider To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170650: [MAINTAINER] www/typo3: update to 4.7.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, 15 Aug 2012 14:10:06 -0000 >Number: 170650 >Category: ports >Synopsis: [MAINTAINER] www/typo3: update to 4.7.4 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Aug 15 14:10:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Helmut Schneider >Release: FreeBSD 9.0-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.0-RELEASE-p4 FreeBSD 9.0-RELEASE-p4 #3: Tue Aug 7 20:55:23 CEST >Description: - Update to 4.7.4 - Security fix, see http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2012-004/ Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo3-4.7.4.patch begins here --- diff -ruN --exclude=CVS ../typo3.org/Makefile ./Makefile --- ../typo3.org/Makefile 2012-07-06 05:33:20.000000000 +0200 +++ ./Makefile 2012-08-15 15:35:26.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= typo3 -PORTVERSION= 4.7.2 +PORTVERSION= 4.7.4 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} @@ -31,31 +31,30 @@ DISTFILES+= ${TYPO3SRC}${EXTRACT_SUFX} ${TYPO3DUMMY}${EXTRACT_SUFX} -OPTIONS= CURL "Configure with cURL support" off \ - GD "Configure with GDlib/freetype support" off \ - IMAGICK "Configure with ImageMagick support" off \ - MBSTRING "Configure with mbstring support" off \ - ZLIB "Configure with zlib support" off +OPTIONS_DEFINE= CURL GD IMAGICK MBSTRING ZLIB +IMAGICK_DESC= ${IMAGEMAGICK_DESC} +MBSTRING_DESC= ${MULTIBYTE_DESC} +GD_DESC= GDlib/freetype support .include -.if defined(WITH_CURL) +.if ${PORT_OPTIONS:MCURL} USE_PHP+= curl .endif -.if defined(WITH_GD) +.if ${PORT_OPTIONS:MGD} USE_PHP+= gd .endif -.if defined(WITH_IMAGICK) +.if ${PORT_OPTIONS:MIMAGICK} RUN_DEPENDS+= ${LOCALBASE}/bin/convert:${PORTSDIR}/graphics/ImageMagick .endif -.if defined(WITH_MBSTRING) +.if ${PORT_OPTIONS:MMBSTRING} USE_PHP+= mbstring .endif -.if defined(WITH_ZLIB) +.if ${PORT_OPTIONS:MZLIB} USE_PHP+= zlib .endif diff -ruN --exclude=CVS ../typo3.org/distinfo ./distinfo --- ../typo3.org/distinfo 2012-07-06 05:33:20.000000000 +0200 +++ ./distinfo 2012-08-15 15:35:28.000000000 +0200 @@ -1,4 +1,4 @@ -SHA256 (typo3_src-4.7.2.tar.gz) = 43a3390b2580f7c74819377441b669d3d2d0a62c686036224e073b7b1db90ee9 -SIZE (typo3_src-4.7.2.tar.gz) = 22374815 -SHA256 (dummy-4.7.2.tar.gz) = 693a2c30325aa1697f5f3bb905caf755fcf6db4718008635af1461ccea56761c -SIZE (dummy-4.7.2.tar.gz) = 10148 +SHA256 (typo3_src-4.7.4.tar.gz) = f770f8ae7cbb1b2a70547d9dcc53b6e2372467940884b3e0701b1c221682193d +SIZE (typo3_src-4.7.4.tar.gz) = 22375813 +SHA256 (dummy-4.7.4.tar.gz) = 21e17c67783a9e91ad39a011604fd61ceb946627e835943d32609f4a4393ba4b +SIZE (dummy-4.7.4.tar.gz) = 10139 diff -ruN --exclude=CVS ../typo3.org/pkg-descr ./pkg-descr --- ../typo3.org/pkg-descr 2012-05-03 10:09:35.000000000 +0200 +++ ./pkg-descr 2012-08-15 15:44:38.000000000 +0200 @@ -3,7 +3,7 @@ featuring an accomplished set of ready-made interfaces, functions and modules. This version is the current stable release. It is recommended for existing -projects and will get full support (bugfixes and security fixes) until April 2013, -but will get security fixes until October 2013. +projects and will get full support (bugfixes and security fixes) until April +2013, but will get security fixes until October 2013. WWW: http://typo3.org/ diff -ruN --exclude=CVS ../typo3.org/pkg-plist ./pkg-plist --- ../typo3.org/pkg-plist 2012-07-06 05:33:20.000000000 +0200 +++ ./pkg-plist 2012-08-15 16:02:02.000000000 +0200 @@ -20,7 +20,6 @@ %%WWWDIR%%/uploads/media/index.html %%WWWDIR%%/uploads/pics/index.html %%WWWDIR%%/uploads/tf/index.html -%%WWWDIR%%_src-%%PORTVERSION%%/.travis.yml %%WWWDIR%%_src-%%PORTVERSION%%/ChangeLog %%WWWDIR%%_src-%%PORTVERSION%%/GPL.txt %%WWWDIR%%_src-%%PORTVERSION%%/INSTALL.txt @@ -136,6 +135,7 @@ %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_userauth.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_userauthgroup.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/class.t3lib_xml.php +%%WWWDIR%%_src-%%PORTVERSION%%/t3lib/codec/class.t3lib_codec_javascriptencoder.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/collection/AbstractRecordCollection.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/collection/RecordCollectionRepository.php %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/collection/StaticRecordCollection.php @@ -9251,6 +9251,7 @@ @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/contextmenu @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/collection/interfaces @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/collection +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/codec @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/frontend/interfaces @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/frontend @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/cache/exception --- typo3-4.7.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 14:28:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B72E106566C; Wed, 15 Aug 2012 14:28:29 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E3D578FC08; Wed, 15 Aug 2012 14:28: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 q7FESSgR050875; Wed, 15 Aug 2012 14:28:28 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FESSYQ050871; Wed, 15 Aug 2012 14:28:28 GMT (envelope-from bdrewery) Date: Wed, 15 Aug 2012 14:28:28 GMT Message-Id: <201208151428.q7FESSYQ050871@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/170647: [MAINTAINER] www/typo345: update to 4.5.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: Wed, 15 Aug 2012 14:28:29 -0000 Synopsis: [MAINTAINER] www/typo345: update to 4.5.19 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Wed Aug 15 14:28:28 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170647 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 14:28:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D22D1065674; Wed, 15 Aug 2012 14:28:39 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F41258FC1F; Wed, 15 Aug 2012 14:28: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 q7FESc0S050960; Wed, 15 Aug 2012 14:28:38 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FESciX050956; Wed, 15 Aug 2012 14:28:38 GMT (envelope-from bdrewery) Date: Wed, 15 Aug 2012 14:28:38 GMT Message-Id: <201208151428.q7FESciX050956@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/170649: [MAINTAINER] www/typo346: update to 4.6.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 14:28:39 -0000 Synopsis: [MAINTAINER] www/typo346: update to 4.6.12 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Wed Aug 15 14:28:38 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170649 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 14:28:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 11E321065674; Wed, 15 Aug 2012 14:28:47 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D9E2F8FC0A; Wed, 15 Aug 2012 14:28: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 q7FESklS051045; Wed, 15 Aug 2012 14:28:46 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FESkvU051041; Wed, 15 Aug 2012 14:28:46 GMT (envelope-from bdrewery) Date: Wed, 15 Aug 2012 14:28:46 GMT Message-Id: <201208151428.q7FESkvU051041@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/170650: [MAINTAINER] www/typo3: update to 4.7.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, 15 Aug 2012 14:28:47 -0000 Synopsis: [MAINTAINER] www/typo3: update to 4.7.4 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Wed Aug 15 14:28:46 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170650 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 15:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1304C1065692 for ; Wed, 15 Aug 2012 15: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 DD51A8FC15 for ; Wed, 15 Aug 2012 15: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 q7FFA96J055594 for ; Wed, 15 Aug 2012 15: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 q7FFA94q055593; Wed, 15 Aug 2012 15:10:09 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 15:10:09 GMT Resent-Message-Id: <201208151510.q7FFA94q055593@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 Zaykov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A702A106566B for ; Wed, 15 Aug 2012 15:05: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 88BAC8FC12 for ; Wed, 15 Aug 2012 15:05: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 q7FF5oWg088833 for ; Wed, 15 Aug 2012 15:05:50 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7FF5oFD088827; Wed, 15 Aug 2012 15:05:50 GMT (envelope-from nobody) Message-Id: <201208151505.q7FF5oFD088827@red.freebsd.org> Date: Wed, 15 Aug 2012 15:05:50 GMT From: Sergey Zaykov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170652: New port: net-mgmt/nagios-check_ipmi_sensor: Nagios/Icinga plugin to check IPMI sensors X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 15:10:10 -0000 >Number: 170652 >Category: ports >Synopsis: New port: net-mgmt/nagios-check_ipmi_sensor: Nagios/Icinga plugin to check IPMI sensors >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 Aug 15 15:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sergey Zaykov >Release: FreebSD 8.3 >Organization: TSU >Environment: FreeBSD acc.acc.tula.ru 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #17: Wed Jun 13 16:58:08 MSK 2012 root@acc.acc.tula.ru:/usr/obj/usr/src/sys/Z i386 >Description: check_ipmi_sensor: Nagios/Icinga plugin to check IPMI sensors Copyright (C) 2009-2012 Thomas-Krenn.AG, Send email to the IPMI-plugin-user mailing list if you have questions regarding use of this software, to submit patches, or suggest improvements. The mailing list is available at http://lists.thomas-krenn.com/ WWW: http://www.thomas-krenn.com/en/oss/ipmi-plugin.html >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: # # nagios-check_ipmi_sensor # nagios-check_ipmi_sensor/Makefile # nagios-check_ipmi_sensor/distinfo # nagios-check_ipmi_sensor/pkg-descr # nagios-check_ipmi_sensor/pkg-plist # echo c - nagios-check_ipmi_sensor mkdir -p nagios-check_ipmi_sensor > /dev/null 2>&1 echo x - nagios-check_ipmi_sensor/Makefile sed 's/^X//' >nagios-check_ipmi_sensor/Makefile << 'af1ae2fd68a307997dc22fe5746a6995' X# New ports collection makefile for: nagios-check_ipmi_sensor X# Date created: 14 August 2012 X# Whom: sergey_aykov X# X# $FreeBSD$ X# X XPORTNAME= nagios-check_ipmi_sensor XPORTVERSION= 3.1 XCATEGORIES= net-mgmt XMASTER_SITES= http://www.thomas-krenn.com/en/oss/ipmi-plugin/ XDISTNAME= check_ipmi_sensor_v${PORTVERSION} X XMAINTAINER= sergey_zaikov@rambler.ru XCOMMENT= Nagios/Icinga plugin to check IPMI sensors X XRUN_DEPENDS= p5-IPC-Run>=0:${PORTSDIR}/devel/p5-IPC-Run \ X ipmi-raw:${PORTSDIR}/sysutils/freeipmi X XNO_BUILD= yes X XUSE_PERL5_RUN= YES X Xdo-install: X @${MKDIR} ${PREFIX}/libexec/nagios X ${INSTALL_SCRIPT} ${WRKSRC}/check_ipmi_sensor ${PREFIX}/libexec/nagios/ X X.include af1ae2fd68a307997dc22fe5746a6995 echo x - nagios-check_ipmi_sensor/distinfo sed 's/^X//' >nagios-check_ipmi_sensor/distinfo << '22c9f89b52853f3f70821a6e57e7ee91' XSHA256 (check_ipmi_sensor_v3.1.tar.gz) = ca029bc2be34fbe56c49c681dc8bef7bae02a7a2b38644cb909912f7256e1151 XSIZE (check_ipmi_sensor_v3.1.tar.gz) = 19135 22c9f89b52853f3f70821a6e57e7ee91 echo x - nagios-check_ipmi_sensor/pkg-descr sed 's/^X//' >nagios-check_ipmi_sensor/pkg-descr << 'ae4cfccc5151252db292bd80516cac5a' Xcheck_ipmi_sensor: Nagios/Icinga plugin to check IPMI sensors X Copyright (C) 2009-2012 Thomas-Krenn.AG, X XSend email to the IPMI-plugin-user mailing list if you have questions Xregarding use of this software, to submit patches, or suggest improvements. XThe mailing list is available at http://lists.thomas-krenn.com/ X XWWW: http://www.thomas-krenn.com/en/oss/ipmi-plugin.html ae4cfccc5151252db292bd80516cac5a echo x - nagios-check_ipmi_sensor/pkg-plist sed 's/^X//' >nagios-check_ipmi_sensor/pkg-plist << 'a7005896bc22982dc97680052db9fe10' Xlibexec/nagios/check_ipmi_sensor X@dirrmtry libexec/nagios a7005896bc22982dc97680052db9fe10 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 16:30:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19A21106564A for ; Wed, 15 Aug 2012 16:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CB3BD8FC0C for ; Wed, 15 Aug 2012 16:30:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7FGU6cX064581 for ; Wed, 15 Aug 2012 16:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FGU6Wc064578; Wed, 15 Aug 2012 16:30:06 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 16:30:06 GMT Resent-Message-Id: <201208151630.q7FGU6Wc064578@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, William Grzybowski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E815A106570E for ; Wed, 15 Aug 2012 16:28:15 +0000 (UTC) (envelope-from william88@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id A1F368FC15 for ; Wed, 15 Aug 2012 16:28:15 +0000 (UTC) Received: by yenl7 with SMTP id l7so2396285yen.13 for ; Wed, 15 Aug 2012 09:28:15 -0700 (PDT) Received: by 10.236.180.8 with SMTP id i8mr17216615yhm.112.1345048094937; Wed, 15 Aug 2012 09:28:14 -0700 (PDT) Received: from localhost ([177.40.116.14]) by mx.google.com with ESMTPS id y10sm3473206yhd.6.2012.08.15.09.28.13 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 15 Aug 2012 09:28:14 -0700 (PDT) Message-Id: <502bce1e.0a4bec0a.5722.ffff8959@mx.google.com> Date: Wed, 15 Aug 2012 09:28:14 -0700 (PDT) From: William Grzybowski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170653: [PATCH] www/dojo: update to 1.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: William Grzybowski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 16:30:07 -0000 >Number: 170653 >Category: ports >Synopsis: [PATCH] www/dojo: update to 1.8.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 Aug 15 16:30:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: William Grzybowski >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: >Description: Update to 1.8.0 >How-To-Repeat: >Fix: See attached patch --- dojo.patch begins here --- Index: distinfo =================================================================== --- distinfo (revision 302583) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (dojo-release-1.5.0.tar.gz) = da6c357d31c38b4eb27cf1d2860d0f504cf32a2fb2f423542b2c7dc11193a616 -SIZE (dojo-release-1.5.0.tar.gz) = 3422622 +SHA256 (dojo-release-1.8.0.tar.gz) = 5efb1c2780242cd1fd3dae101d3a2e79e4385d7b4f0a76aa895d413ee0305b6e +SIZE (dojo-release-1.8.0.tar.gz) = 7708862 Index: Makefile =================================================================== --- Makefile (revision 302583) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= dojo -PORTVERSION= 1.5.0 +PORTVERSION= 1.8.0 CATEGORIES= www MASTER_SITES= http://download.dojotoolkit.org/release-${PORTVERSION}/ \ LOCAL/glarkin --- dojo.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 16:30:52 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74242106566C; Wed, 15 Aug 2012 16:30: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 47C878FC18; Wed, 15 Aug 2012 16:30: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 q7FGUqHx066442; Wed, 15 Aug 2012 16:30:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FGUqSa066438; Wed, 15 Aug 2012 16:30:52 GMT (envelope-from edwin) Date: Wed, 15 Aug 2012 16:30:52 GMT Message-Id: <201208151630.q7FGUqSa066438@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glarkin@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170653: [PATCH] www/dojo: update to 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: Wed, 15 Aug 2012 16:30:52 -0000 Synopsis: [PATCH] www/dojo: update to 1.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->glarkin Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 15 16:30:51 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170653 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 16:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11E441065674 for ; Wed, 15 Aug 2012 16: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 C331D8FC12 for ; Wed, 15 Aug 2012 16: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 q7FGo8mX068485 for ; Wed, 15 Aug 2012 16: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 q7FGo8p6068484; Wed, 15 Aug 2012 16:50:08 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 16:50:08 GMT Resent-Message-Id: <201208151650.q7FGo8p6068484@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, Raphael Kubo da Costa Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E177106564A; Wed, 15 Aug 2012 16:45:41 +0000 (UTC) (envelope-from kubito@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 97A818FC0A; Wed, 15 Aug 2012 16:45:39 +0000 (UTC) Received: by yhfs35 with SMTP id s35so2407141yhf.13 for ; Wed, 15 Aug 2012 09:45:39 -0700 (PDT) Received: by 10.236.177.42 with SMTP id c30mr20167067yhm.37.1345049138969; Wed, 15 Aug 2012 09:45:38 -0700 (PDT) Received: from localhost ([187.64.223.198]) by mx.google.com with ESMTPS id y10sm3550811yhd.6.2012.08.15.09.45.36 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 15 Aug 2012 09:45:38 -0700 (PDT) Message-Id: <502bd232.0a4bec0a.5722.ffff8e26@mx.google.com> Date: Wed, 15 Aug 2012 09:45:38 -0700 (PDT) From: Raphael Kubo da Costa Sender: Raphael Kubo da Costa To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kde@FreeBSD.org, gahr@FreeBSD.org Subject: ports/170654: [exp-run] Update CMake to 2.8.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Raphael Kubo da Costa List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 16:50:09 -0000 >Number: 170654 >Category: ports >Synopsis: [exp-run] Update CMake to 2.8.9 >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 Aug 15 16:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Raphael Kubo da Costa >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: FreeBSD >Environment: System: FreeBSD gibbon 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #54: Sat Aug 4 23:50:23 BRT 2012 root@gibbon:/usr/obj/usr/src/sys/GIBBON amd64 >Description: We (kde@) would like to ask for an exp-run for the recently-released CMake 2.8.9. A patch can be fetched from http://people.freebsd.org/~rakuco/exp-runs/cmake-2.8.9-v1.diff >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 17:40:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 661D8106566C for ; Wed, 15 Aug 2012 17:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3F5298FC17 for ; Wed, 15 Aug 2012 17:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7FHe6Rk074852 for ; Wed, 15 Aug 2012 17:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FHe6bG074851; Wed, 15 Aug 2012 17:40:06 GMT (envelope-from gnats) Resent-Date: Wed, 15 Aug 2012 17:40:06 GMT Resent-Message-Id: <201208151740.q7FHe6bG074851@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, Sebastian Chmielewski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F189106566B for ; Wed, 15 Aug 2012 17:32: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 5BA7C8FC12 for ; Wed, 15 Aug 2012 17:32: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 q7FHWZT8015814 for ; Wed, 15 Aug 2012 17:32:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7FHWY7B015813; Wed, 15 Aug 2012 17:32:34 GMT (envelope-from nobody) Message-Id: <201208151732.q7FHWY7B015813@red.freebsd.org> Date: Wed, 15 Aug 2012 17:32:34 GMT From: Sebastian Chmielewski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170655: Update asciidoc to 8.6.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, 15 Aug 2012 17:40:06 -0000 >Number: 170655 >Category: ports >Synopsis: Update asciidoc to 8.6.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 Aug 15 17:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sebastian Chmielewski >Release: FreeBSD 9-STABLE >Organization: >Environment: >Description: Please update asciidoc to 8.6.6 (required by deck.js backend). >How-To-Repeat: >Fix: Attached patch works - only version is updated. Patch attached with submission follows: diff -urN /usr/ports/textproc/asciidoc/Makefile /work/ports/textproc/asciidoc/Makefile --- /usr/ports/textproc/asciidoc/Makefile 2012-07-13 16:14:13.000000000 +0200 +++ /work/ports/textproc/asciidoc/Makefile 2012-08-15 19:22:34.738117999 +0200 @@ -6,7 +6,7 @@ # PORTNAME= asciidoc -PORTVERSION= 8.6.4 +PORTVERSION= 8.6.6 CATEGORIES= textproc MASTER_SITES= SF diff -urN /usr/ports/textproc/asciidoc/distinfo /work/ports/textproc/asciidoc/distinfo --- /usr/ports/textproc/asciidoc/distinfo 2011-03-08 20:48:41.000000000 +0100 +++ /work/ports/textproc/asciidoc/distinfo 2012-08-15 19:25:18.952161182 +0200 @@ -1,2 +1,2 @@ -SHA256 (asciidoc-8.6.4.tar.gz) = 6b405c0366ae432e1984b117e15c95f0935a617c90fe0a448aa03fece3927f8a -SIZE (asciidoc-8.6.4.tar.gz) = 853136 +SHA256 (asciidoc-8.6.6.tar.gz) = 9d54c11716e4309ff4d942cf6a6d9745d6a28754ff1de01efed0dc659457ac71 +SIZE (asciidoc-8.6.6.tar.gz) = 881704 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF4521065677 for ; Wed, 15 Aug 2012 19:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 912578FC15 for ; Wed, 15 Aug 2012 19: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 q7FJK9HE085770 for ; Wed, 15 Aug 2012 19: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 q7FJK9K4085769; Wed, 15 Aug 2012 19:20:09 GMT (envelope-from gnats) Date: Wed, 15 Aug 2012 19:20:09 GMT Message-Id: <201208151920.q7FJK9K4085769@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/163583: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 19:20:09 -0000 The following reply was made to PR ports/163583; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/163583: commit references a PR Date: Wed, 15 Aug 2012 19:19:47 +0000 (UTC) Author: mr Date: Wed Aug 15 19:19:32 2012 New Revision: 302593 URL: http://svn.freebsd.org/changeset/ports/302593 Log: Add patch to compile with base openssl version 1 as of OSVERSION 1000015. PR: ports/163583 Modified: head/x11/kdelibs3/Makefile head/x11/kdelibs3/distinfo Modified: head/x11/kdelibs3/Makefile ============================================================================== --- head/x11/kdelibs3/Makefile Wed Aug 15 19:07:31 2012 (r302592) +++ head/x11/kdelibs3/Makefile Wed Aug 15 19:19:32 2012 (r302593) @@ -8,7 +8,7 @@ PORTNAME= kdelibs PORTVERSION= ${KDE_VERSION} -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11 kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src @@ -37,7 +37,6 @@ RUN_DEPENDS= kdehier>0:${PORTSDIR}/misc/ ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme \ iceauth:${PORTSDIR}/x11/iceauth -CONFLICTS_BUILD= openssl-1.* CONFLICTS+= kdeadmin-3.[0-3].* kdeadmin-3.4.[0-1]* kdeartwork-3.[2-3]* kdebase-3.[0-4]* kdepim-3.2* .if defined(WITHOUT_CUPS) || defined(KDE_WITHOUT_CUPS) CONFLICTS+= kdelibs-[0-9]* @@ -76,6 +75,14 @@ FONTENCOD= ${LOCALBASE}/lib/X11/fonts/en .include "${.CURDIR}/../../x11/kde3/Makefile.kde" .include +.if ${OSVERSION} > 1000014 +PATCH_SITES= http://oschtan.academ.org/oschtan-overlay/kde-base/kdelibs/files/ +PATCHFILES= kdelibs-3.5-openssl-1.0.0.patch +PATCH_DIST_STRIP= -p1 +.else +CONFLICTS_BUILD= openssl-1.* +.endif + # bzip2 is required as a libdepend for the help: kioslave .if !exists(/usr/bin/bzip2) LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 Modified: head/x11/kdelibs3/distinfo ============================================================================== --- head/x11/kdelibs3/distinfo Wed Aug 15 19:07:31 2012 (r302592) +++ head/x11/kdelibs3/distinfo Wed Aug 15 19:19:32 2012 (r302593) @@ -1,2 +1,4 @@ SHA256 (KDE/kdelibs-3.5.10.tar.bz2) = 617e9cb01c70ed4c1b554b373f55deffbd0e12e2cdfeacd7b3d9409372285c72 SIZE (KDE/kdelibs-3.5.10.tar.bz2) = 15614607 +SHA256 (KDE/kdelibs-3.5-openssl-1.0.0.patch) = 8fa7b2f463e7eb8e553d3e65df252cca29db622f460abf8313671ff93b91674b +SIZE (KDE/kdelibs-3.5-openssl-1.0.0.patch) = 11455 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:31:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A51701065674; Wed, 15 Aug 2012 19:31:27 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 786A88FC17; Wed, 15 Aug 2012 19:31: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 q7FJVRaY088095; Wed, 15 Aug 2012 19:31:27 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJVR4t088091; Wed, 15 Aug 2012 19:31:27 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:31:27 GMT Message-Id: <201208151931.q7FJVR4t088091@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/157544: Updates for databases/linux-oracle-instantclient-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 19:31:27 -0000 Synopsis: Updates for databases/linux-oracle-instantclient-* Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:31:26 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=157544 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:31:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E21E106564A; Wed, 15 Aug 2012 19:31:28 +0000 (UTC) (envelope-from mr@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 722EE8FC21; Wed, 15 Aug 2012 19:31: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 q7FJVSWG088110; Wed, 15 Aug 2012 19:31:28 GMT (envelope-from mr@freefall.freebsd.org) Received: (from mr@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJVSBK088105; Wed, 15 Aug 2012 19:31:28 GMT (envelope-from mr) Date: Wed, 15 Aug 2012 19:31:28 GMT Message-Id: <201208151931.q7FJVSBK088105@freefall.freebsd.org> To: acc@hexadecagram.org, mr@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: mr@FreeBSD.org Cc: Subject: Re: ports/163583: [patch] x11/kdelibs3 conflicts with openssl-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, 15 Aug 2012 19:31:28 -0000 Synopsis: [patch] x11/kdelibs3 conflicts with openssl-1 State-Changed-From-To: open->closed State-Changed-By: mr State-Changed-When: Wed Aug 15 19:29:50 UTC 2012 State-Changed-Why: committed a slighttly adapted version. http://www.freebsd.org/cgi/query-pr.cgi?pr=163583 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:33:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C64F106566B; Wed, 15 Aug 2012 19:33:35 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6EC4E8FC0C; Wed, 15 Aug 2012 19:33: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 q7FJXZtV088492; Wed, 15 Aug 2012 19:33:35 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJXZC8088488; Wed, 15 Aug 2012 19:33:35 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:33:35 GMT Message-Id: <201208151933.q7FJXZC8088488@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/103751: databases/linux-oracle-instantclient-sqlplus: ldconfig is not executed after installing new libraries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 19:33:35 -0000 Synopsis: databases/linux-oracle-instantclient-sqlplus: ldconfig is not executed after installing new libraries Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:33:34 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=103751 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:33:42 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 166191065696; Wed, 15 Aug 2012 19:33:42 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C90178FC14; Wed, 15 Aug 2012 19:33: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 q7FJXfc5088566; Wed, 15 Aug 2012 19:33:41 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJXfpg088562; Wed, 15 Aug 2012 19:33:41 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:33:41 GMT Message-Id: <201208151933.q7FJXfpg088562@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/162510: [patch] Upgrade graphics/OpenEXR to version 1.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: Wed, 15 Aug 2012 19:33:42 -0000 Synopsis: [patch] Upgrade graphics/OpenEXR to version 1.7.0 Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:33:41 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=162510 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:33:50 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C838106566B; Wed, 15 Aug 2012 19:33:50 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 60B168FC1B; Wed, 15 Aug 2012 19:33: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 q7FJXo82088649; Wed, 15 Aug 2012 19:33:50 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJXond088645; Wed, 15 Aug 2012 19:33:50 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:33:50 GMT Message-Id: <201208151933.q7FJXond088645@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/140170: net/liveMedia: install shared libraries and thus fix rtsp in multimedia/vlc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 19:33:50 -0000 Synopsis: net/liveMedia: install shared libraries and thus fix rtsp in multimedia/vlc Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:33:49 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=140170 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:33:57 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 392D810656B4; Wed, 15 Aug 2012 19:33:57 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B0EA78FC1F; Wed, 15 Aug 2012 19:33: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 q7FJXudd088723; Wed, 15 Aug 2012 19:33:56 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJXufP088719; Wed, 15 Aug 2012 19:33:56 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:33:56 GMT Message-Id: <201208151933.q7FJXufP088719@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/170016: net/liveMedia: update to 2012.07.18 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, 15 Aug 2012 19:33:57 -0000 Synopsis: net/liveMedia: update to 2012.07.18 release Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:33:56 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=170016 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:34:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B0D51065672; Wed, 15 Aug 2012 19:34:03 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F2A0F8FC15; Wed, 15 Aug 2012 19:34: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 q7FJY2Xp088797; Wed, 15 Aug 2012 19:34:02 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJY2Lh088792; Wed, 15 Aug 2012 19:34:02 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:34:02 GMT Message-Id: <201208151934.q7FJY2Lh088792@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/167690: www/linuxpluginwrapper: deprecate and remove it X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 19:34:03 -0000 Synopsis: www/linuxpluginwrapper: deprecate and remove it Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:34:02 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=167690 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:34:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6F4310656A4; Wed, 15 Aug 2012 19:34:09 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B253B8FC18; Wed, 15 Aug 2012 19:34: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 q7FJY9Tp088887; Wed, 15 Aug 2012 19:34:09 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJY9i4088882; Wed, 15 Aug 2012 19:34:09 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:34:09 GMT Message-Id: <201208151934.q7FJY9i4088882@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/147788: x11-drivers/xf86-video-radeonhd-devel 1.3.0.20091101_3/xf86-video-ati (xorg-7.5): crashing system when using with DBUS and HAL X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 19:34:10 -0000 Synopsis: x11-drivers/xf86-video-radeonhd-devel 1.3.0.20091101_3/xf86-video-ati (xorg-7.5): crashing system when using with DBUS and HAL Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:34:09 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=147788 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:36:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 976AE106564A; Wed, 15 Aug 2012 19:36:09 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6B0788FC0A; Wed, 15 Aug 2012 19:36: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 q7FJa9UW089216; Wed, 15 Aug 2012 19:36:09 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJa9Ut089212; Wed, 15 Aug 2012 19:36:09 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:36:09 GMT Message-Id: <201208151936.q7FJa9Ut089212@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/167690: www/linuxpluginwrapper: deprecate and remove it X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 19:36:09 -0000 Synopsis: www/linuxpluginwrapper: deprecate and remove it Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:36:08 UTC 2012 Responsible-Changed-Why: eadler@ logged this one http://www.freebsd.org/cgi/query-pr.cgi?pr=167690 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:41:52 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0970106566C; Wed, 15 Aug 2012 19:41:52 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 949C68FC16; Wed, 15 Aug 2012 19:41: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 q7FJfqvc089439; Wed, 15 Aug 2012 19:41:52 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJfqvN089435; Wed, 15 Aug 2012 19:41:52 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:41:52 GMT Message-Id: <201208151941.q7FJfqvN089435@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/143723: graphics/dri fails to build after graphics/libdrm update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 19:41:52 -0000 Synopsis: graphics/dri fails to build after graphics/libdrm update Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:41:52 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=143723 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 19:41:57 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F9FC1065672; Wed, 15 Aug 2012 19:41:57 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E70148FC18; Wed, 15 Aug 2012 19:41: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 q7FJfuDH089504; Wed, 15 Aug 2012 19:41:56 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FJfuAE089500; Wed, 15 Aug 2012 19:41:56 GMT (envelope-from tabthorpe) Date: Wed, 15 Aug 2012 19:41:56 GMT Message-Id: <201208151941.q7FJfuAE089500@freefall.freebsd.org> To: tabthorpe@FreeBSD.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tabthorpe@FreeBSD.org Cc: Subject: Re: ports/147290: graphics/graphviz does not install properly with graphics/ilmbase X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 19:41:57 -0000 Synopsis: graphics/graphviz does not install properly with graphics/ilmbase Responsible-Changed-From-To: nork->freebsd-ports-bugs Responsible-Changed-By: tabthorpe Responsible-Changed-When: Wed Aug 15 19:41:56 UTC 2012 Responsible-Changed-Why: Reassign to the heap http://www.freebsd.org/cgi/query-pr.cgi?pr=147290 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 20:35:41 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ABF21106564A; Wed, 15 Aug 2012 20:35:41 +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 7FD2D8FC08; Wed, 15 Aug 2012 20:35: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 q7FKZf0C096895; Wed, 15 Aug 2012 20:35:41 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FKZftL096890; Wed, 15 Aug 2012 20:35:41 GMT (envelope-from rakuco) Date: Wed, 15 Aug 2012 20:35:41 GMT Message-Id: <201208152035.q7FKZftL096890@freefall.freebsd.org> To: rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/170654: [exp-run] Update CMake to 2.8.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, 15 Aug 2012 20:35:41 -0000 Synopsis: [exp-run] Update CMake to 2.8.9 Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: rakuco Responsible-Changed-When: Wed Aug 15 20:35:40 UTC 2012 Responsible-Changed-Why: exp-runs are portmgr territory http://www.freebsd.org/cgi/query-pr.cgi?pr=170654 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 22:18:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5ACB1065673; Wed, 15 Aug 2012 22:18: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 7876D8FC12; Wed, 15 Aug 2012 22:18: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 q7FMIBTS008921; Wed, 15 Aug 2012 22:18:11 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FMIBel008916; Wed, 15 Aug 2012 22:18:11 GMT (envelope-from scheidell) Date: Wed, 15 Aug 2012 22:18:11 GMT Message-Id: <201208152218.q7FMIBel008916@freefall.freebsd.org> To: scheidell@FreeBSD.org, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170109: Update multimedia/qmmp, multimedia/qmmp-plugin-pack to v0.6.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, 15 Aug 2012 22:18:11 -0000 Synopsis: Update multimedia/qmmp, multimedia/qmmp-plugin-pack to v0.6.1 Responsible-Changed-From-To: scheidell->freebsd-ports-bugs Responsible-Changed-By: scheidell Responsible-Changed-When: Wed Aug 15 22:18:11 UTC 2012 Responsible-Changed-Why: Feedback timeout, back to the pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=170109 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 22:26:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 911E21065805; Wed, 15 Aug 2012 22:26:18 +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 648938FC08; Wed, 15 Aug 2012 22:26: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 q7FMQIef009681; Wed, 15 Aug 2012 22:26:18 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FMQIXp009676; Wed, 15 Aug 2012 22:26:18 GMT (envelope-from scheidell) Date: Wed, 15 Aug 2012 22:26:18 GMT Message-Id: <201208152226.q7FMQIXp009676@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170572: [MAINTAINER] print/fontforge: update to 20120731-b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 22:26:18 -0000 Synopsis: [MAINTAINER] print/fontforge: update to 20120731-b Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Wed Aug 15 22:26:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170572 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 22:42:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 45E15106564A; Wed, 15 Aug 2012 22:42:45 +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 183E28FC14; Wed, 15 Aug 2012 22:42: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 q7FMgiL4012571; Wed, 15 Aug 2012 22:42:44 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7FMgiXe012567; Wed, 15 Aug 2012 22:42:44 GMT (envelope-from scheidell) Date: Wed, 15 Aug 2012 22:42:44 GMT Message-Id: <201208152242.q7FMgiXe012567@freefall.freebsd.org> To: chris@smartt.com, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170396: [PATCH] net-mgmt/nagiosql: update to 3.2.0 SP1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 15 Aug 2012 22:42:45 -0000 Synopsis: [PATCH] net-mgmt/nagiosql: update to 3.2.0 SP1 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Wed Aug 15 22:42:44 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170396 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 22:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B01AE106566B for ; Wed, 15 Aug 2012 22: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 97D148FC14 for ; Wed, 15 Aug 2012 22: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 q7FMo810013398 for ; Wed, 15 Aug 2012 22: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 q7FMo8Wc013397; Wed, 15 Aug 2012 22:50:08 GMT (envelope-from gnats) Date: Wed, 15 Aug 2012 22:50:08 GMT Message-Id: <201208152250.q7FMo8Wc013397@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Pierre-Jacques MIMIFIR Cc: Subject: Re: ports/170448: [NEW PORT] devel/allegro5: Allegro 5 is a game programming libraries, primarily for C and C developers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pierre-Jacques MIMIFIR List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2012 22:50:08 -0000 The following reply was made to PR ports/170448; it has been noted by GNATS. From: Pierre-Jacques MIMIFIR To: bug-followup@FreeBSD.org, pierrejacques.mimifir@gmail.com Cc: Subject: Re: ports/170448: [NEW PORT] devel/allegro5: Allegro 5 is a game programming libraries, primarily for C and C developers Date: Thu, 16 Aug 2012 00:48:37 +0200 --00248c7117854091f904c755baae Content-Type: multipart/alternative; boundary=00248c7117854091e704c755baac --00248c7117854091e704c755baac Content-Type: text/plain; charset=ISO-8859-1 Add of allegro5 URL into pkg-descr --00248c7117854091e704c755baac Content-Type: text/html; charset=ISO-8859-1 Add of allegro5 URL into pkg-descr
--00248c7117854091e704c755baac-- --00248c7117854091f904c755baae Content-Type: text/plain; charset=US-ASCII; name="allegro5.txt" Content-Disposition: attachment; filename="allegro5.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_h5x0gzzi0 IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUgYW55 dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50ZXJpbmcg InNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBmaWxlcyBhbmQg ZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBkZWZhdWx0IHBlcm1p c3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJYWxsZWdybzUKIwlhbGxlZ3Jv NS9NYWtlZmlsZQojCWFsbGVncm81L2ZpbGVzCiMJYWxsZWdybzUvZmlsZXMvcGF0Y2gtYWRkb25z LWF1ZGlvLXB1bHNlYXVkaW8uYwojCWFsbGVncm81L2ZpbGVzL3BhdGNoLUNNYWtlTGlzdHMudHh0 CiMJYWxsZWdybzUvZmlsZXMvcGF0Y2gtUmVmbWFuLmNtYWtlCiMJYWxsZWdybzUvcGtnLWRlc2Ny CiMJYWxsZWdybzUvZGlzdGluZm8KIwlhbGxlZ3JvNS9wa2ctcGxpc3QKIwlhbGxlZ3JvNS9NYWtl ZmlsZS5tYW4KIwplY2hvIGMgLSBhbGxlZ3JvNQpta2RpciAtcCBhbGxlZ3JvNSA+IC9kZXYvbnVs bCAyPiYxCmVjaG8geCAtIGFsbGVncm81L01ha2VmaWxlCnNlZCAncy9eWC8vJyA+YWxsZWdybzUv TWFrZWZpbGUgPDwgJ2YwMTBmNzQ3MDVjMTYzYmQxZThiNDc0OTljOTVlYjFmJwpYIyBOZXcgcG9y dHMgY29sbGVjdGlvbiBtYWtlZmlsZSBmb3I6ICAgYWxsZWdybzUKWCMgRGF0ZSBjcmVhdGVkOiAg ICAgICAgMDEgQWd1c3QgMjAxMgpYIyBXaG9tOiAgICAgICAgICAgICAgICBtcGoKWCMKWCMgJEZy ZWVCU0QkClgjClgKWFBPUlROQU1FPQlhbGxlZ3JvNQpYRElTVFZFUlNJT049CTUuMC43ClhDQVRF R09SSUVTPQlkZXZlbApYTUFTVEVSX1NJVEVTPQlTRi9hbGxlZy9hbGxlZ3JvLyR7RElTVFZFUlNJ T059ClhESVNUTkFNRT0JYWxsZWdyby0ke0RJU1RWRVJTSU9OfQpYClhNQUlOVEFJTkVSPQlwaWVy cmVqYWNxdWVzLm1pbWlmaXJAZ21haWwuY29tClhDT01NRU5UPQlBIGNyb3NzLXBsYXRmb3JtIGxp YnJhcnkgZm9yIGdhbWVzIGFuZCBtdWx0aW1lZGlhIHByb2dyYW1taW5nClgKWEJVSUxEX0RFUEVO RFM9CSR7TE9DQUxCQVNFfS9saWIvbGliZHVtYi5hOiR7UE9SVFNESVJ9L2F1ZGlvL2R1bWIKWApY TElCX0RFUEVORFM9CXBuZy42OiR7UE9SVFNESVJ9L2dyYXBoaWNzL3BuZ1wKWAkJanBlZy4xMTok e1BPUlRTRElSfS9ncmFwaGljcy9qcGVnXApYCQl2b3JiaXMuNDoke1BPUlRTRElSfS9hdWRpby9s aWJ2b3JiaXNcClgJCUZMQUMuMTA6JHtQT1JUU0RJUn0vYXVkaW8vZmxhYwpYClhVU0VfWE9SRz0J eDExIHhwbSB4ZXh0IHhjdXJzb3IKWApYVVNFX0xEQ09ORklHPQl5ZXMKWApYVVNFX0dMPQl5ZXMK WFVTRV9GUkVFVFlQRT0JeWVzClhVU0VfQ01BS0U9CXllcwpYVVNFX0xEQ09ORklHPQl5ZXMKWENG TEFHUys9CS1MJHtMT0NBTEJBU0V9L2xpYiAtSSR7TE9DQUxCQVNFfS9pbmNsdWRlClhDTUFLRV9D X0ZMQUdTKz0JJHtDRkxBR1N9ClhDTUFLRV9BUkdTKz0tRENNQUtFX0lOU1RBTExfUFJFRklYPSR7 UFJFRklYfQpYClhNQU5DT01QUkVTU0VEPW5vClhPUFRJT05TPQlBTCAiT3BlbkFMLCBhbHRob3Vn aCB0aGUgM0QgY2FwYWJpbGl0aWVzIiBvbiBcClgJUGh5c0ZTICJQaHlzaWNzRlMsIHByb3ZpZGVz IGFjY2VzcyB0byBhcmNoaXZlczogLnppcCBmaWxlIiBvbiBcClgJTUFOICJJbnN0YWxsIEFsbGVn cm8gTUFOIHBhZ2VzIglvblwKWAlFWEFNUExFUyAiSW5zdGFsbCBFeGFtcGxlcyBzb3VyY2VzIGNv ZGVzIiBvZmYgXApYCVRFU1QgIk1ha2UgdGVzdCBwcm9ncmFtcyIgb2ZmIFwKWAlERU1PICJNYWtl IGRlbW8gcHJvZ3JhbXMiIG9mZiBcClgJSFRNTCAiSW5zdGFsbCBIVE1MIERPQ1MiIG9mZgpYClgu aW5jbHVkZSA8YnNkLnBvcnQucHJlLm1rPgpYClguaWYgZGVmaW5lZChXSVRIX0FMKQpYVVNFX09Q RU5BTD1hbApYLmVuZGlmClgKWC5pZiBkZWZpbmVkIChXSVRIX0hUTUwpClhQTElTVF9TVUIrPUhU TUw9IiIKWC5lbHNlClhQTElTVF9TVUIrPUhUTUw9IkBjb21tZW50ICIKWC5lbmRpZgpYClguaWYg ZGVmaW5lZChXSVRIX1BoeXNGUykKWExJQl9ERVBFTkRTKz1waHlzZnMuMTovJHtQT1JUU0RJUn0v ZGV2ZWwvcGh5c2ZzLWRldmVsClhDTUFLRV9BUkdTKz0tRFdBTlRfUEhZU0ZTPW9uClhQTElTVF9T VUIrPQlQSFlTRlM9IiIKWC5lbHNlClhDTUFLRV9BUkdTKz0tRFdBTlRfUEhZU0ZTPW9mZgpYUExJ U1RfU1VCKz0JUEhZU0ZTPSIiClguZW5kaWYKWApYLmlmIGRlZmluZWQoV0lUSF9NQU4pClhDTUFL RV9BUkdTKz0tRFdBTlRfRE9DU19NQU49b24KWC5pbmNsdWRlICIke01BU1RFUkRJUn0vTWFrZWZp bGUubWFuIgpYQlVJTERfREVQRU5EUys9CSR7TE9DQUxCQVNFfS9iaW4vcGFuZG9jOiR7UE9SVFNE SVJ9L3RleHRwcm9jL2hzLXBhbmRvYwpYLmVsc2UKWENNQUtFX0FSR1MrPS1EV0FOVF9ET0NTX01B Tj1vZmYKWC5lbmRpZgpYClguaWYgZGVmaW5lZChXSVRIX0VYQU1QTEVTKQpYQ01BS0VfQVJHUys9 LURXQU5UX0VYQU1QTEVTPW9uClhQTElTVF9TVUIrPQlTQU1QTEVTPSIiClguZWxzZQpYQ01BS0Vf QVJHUys9LURXQU5UX0VYQU1QTEVTPW9mZgpYUExJU1RfU1VCKz0JU0FNUExFUz0iQGNvbW1lbnQg IgpYLmVuZGlmClgKWC5pZiBkZWZpbmVkKFdJVEhfVEVTVCkKWENNQUtFX0FSR1MrPS1EV0FOVF9U RVNUUz1vbgpYLmVsc2UKWENNQUtFX0FSR1MrPS1EV0FOVF9URVNUUz1vZmYKWC5lbmRpZgpYClgu aWYgZGVmaW5lZChXSVRIX0RFTU8pClhDTUFLRV9BUkdTKz0tRFdBTlRfREVNTz1vbgpYUExJU1Rf U1VCKz1ERU1PUz0iIgpYLmVsc2UKWENNQUtFX0FSR1MrPS1EV0FOVF9ERU1PPW9mZgpYUExJU1Rf U1VCKz1ERU1PUz0iQGNvbW1lbnQgIgpYLmVuZGlmClgKWHByZS1pbnN0YWxsOgpYLmlmIGRlZmlu ZWQgKFdJVEhfTUFOKQpYCSR7TUtESVJ9ICR7TUFOM1BSRUZJWH0vbWFuL21hbjMKWC5mb3IgZmls ZSBpbiAgJHtNQU4zfQpYCSR7RUNIT19DTUR9ICR7ZmlsZX0KWAkke0lOU1RBTExfTUFOfSAke1dS S1NSQ30vZG9jcy9tYW4vJHtmaWxlfSAke01BTjNQUkVGSVh9L21hbi9tYW4zLyR7ZmlsZX0KWC5l bmRmb3IKWC5lbmRpZgpYLmlmIGRlZmluZWQgKFdJVEhfREVNTykKWAkke01LRElSfSAke0VYQU1Q TEVTRElSfS9kZW1vcy9hNXRlcm9pZHMKWAkke01LRElSfSAke0VYQU1QTEVTRElSfS9kZW1vcy9z cGVlZApYLmVuZGlmClguaWYgZGVmaW5lZCAoV0lUSF9FWEFNUExFUykKWAkke01LRElSfSAke0VY QU1QTEVTRElSfQpYCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vZXhhbXBsZXMvKi5jICR7RVhB TVBMRVNESVJ9ClgJJHtJTlNUQUxMX0RBVEF9ICR7V1JLU1JDfS9leGFtcGxlcy8qLmhwcCAke0VY QU1QTEVTRElSfQpYCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vZXhhbXBsZXMvKi5jcHAgJHtF WEFNUExFU0RJUn0KWC5lbmRpZgpYClguaWYgZGVmaW5lZCAoV0lUSF9IVE1MKQpYCSR7TUtESVJ9 ICR7RE9DU0RJUn0vaHRtbC9yZWZtYW4KWAkke01LRElSfSAke0RPQ1NESVJ9L2h0bWwvcmVmbWFu L2ltYWdlcwpYCSR7SU5TVEFMTF9EQVRBfSAgJHtXUktTUkN9L2RvY3MvaHRtbC8qLiogJHtET0NT RElSfS9odG1sClgJJHtJTlNUQUxMX0RBVEF9ICAke1dSS1NSQ30vZG9jcy9odG1sL3JlZm1hbi8q LiogJHtET0NTRElSfS9odG1sL3JlZm1hbgpYCSR7SU5TVEFMTF9EQVRBfSAgJHtXUktTUkN9L2Rv Y3MvaHRtbC9yZWZtYW4vaW1hZ2VzLyouKiAke0RPQ1NESVJ9L2h0bWwvcmVmbWFuL2ltYWdlcwpY LmVuZGlmClguaW5jbHVkZSA8YnNkLnBvcnQucG9zdC5taz4KZjAxMGY3NDcwNWMxNjNiZDFlOGI0 NzQ5OWM5NWViMWYKZWNobyBjIC0gYWxsZWdybzUvZmlsZXMKbWtkaXIgLXAgYWxsZWdybzUvZmls ZXMgPiAvZGV2L251bGwgMj4mMQplY2hvIHggLSBhbGxlZ3JvNS9maWxlcy9wYXRjaC1hZGRvbnMt YXVkaW8tcHVsc2VhdWRpby5jCnNlZCAncy9eWC8vJyA+YWxsZWdybzUvZmlsZXMvcGF0Y2gtYWRk b25zLWF1ZGlvLXB1bHNlYXVkaW8uYyA8PCAnZTFlNWM5NTg3NzJlYjE0ZWFmMGM1YjFkMTFiZWU4 ZGQnClgtLS0gL3Vzci9wb3J0cy9kZXZlbC9hbGxlZ3JvNS93b3JrL2FsbGVncm8tNS4wLjcvYWRk b25zL2F1ZGlvL3B1bHNlYXVkaW8uYy5vcmcJMjAxMi0wOC0wMSAxMjoyNjo1OC4wMDAwMDAwMDAg KzAyMDAKWCsrKyAvdXNyL3BvcnRzL2RldmVsL2FsbGVncm81L3dvcmsvYWxsZWdyby01LjAuNy9h ZGRvbnMvYXVkaW8vcHVsc2VhdWRpby5jCTIwMTItMDgtMDEgMTI6Mjc6MjQuMDAwMDAwMDAwICsw MjAwClhAQCAtMjIsNyArMjIsNyBAQApYICNpbmNsdWRlIDxwdWxzZS9lcnJvci5oPgpYICNpbmNs dWRlIDxwdWxzZS9pbnRyb3NwZWN0Lmg+ClggI2luY2x1ZGUgPHB1bHNlL21haW5sb29wLmg+Clgt I2luY2x1ZGUgPG1hbGxvYy5oPgpYKyNpbmNsdWRlIDxzdGRsaWIuaD4KWCAKWCBBTExFR1JPX0RF QlVHX0NIQU5ORUwoIlB1bHNlQXVkaW8iKQplMWU1Yzk1ODc3MmViMTRlYWYwYzViMWQxMWJlZThk ZAplY2hvIHggLSBhbGxlZ3JvNS9maWxlcy9wYXRjaC1DTWFrZUxpc3RzLnR4dApzZWQgJ3MvXlgv LycgPmFsbGVncm81L2ZpbGVzL3BhdGNoLUNNYWtlTGlzdHMudHh0IDw8ICdmNjc2NzczZmE4Mzdh ZTRhYjM4NjFmOThiMDViZjk3YicKWC0tLSBDTWFrZUxpc3RzLnR4dC5vcmlnCTIwMTItMDgtMDIg MDA6NDQ6NDguMDAwMDAwMDAwICswMjAwClgrKysgQ01ha2VMaXN0cy50eHQJMjAxMi0wOC0wMiAw MDo0NToxOS4wMDAwMDAwMDAgKzAyMDAKWEBAIC04OTksNyArODk5LDcgQEAKWCAgICAgICAgICAg ICBAT05MWQpYICAgICAgICAgICAgICkKWCAgICAgICAgIGluc3RhbGwoRklMRVMgJHtMSUJSQVJZ X09VVFBVVF9QQVRIfS9wa2djb25maWcvJHtvdXRuYW1lfQpYLSAgICAgICAgICAgIERFU1RJTkFU SU9OICJsaWIke0xJQl9TVUZGSVh9L3BrZ2NvbmZpZyIKWCsgICAgICAgICAgICBERVNUSU5BVElP TiAibGliJHtMSUJfU1VGRklYfS9saWJkYXRhL3BrZ2NvbmZpZyIKWCAgICAgICAgICAgICApClgg ICAgIGVuZGZvcmVhY2gobmFtZSkKWCBlbmRpZihVTklYIEFORCBOT1QgV0FOVF9GUkFNRVdPUktT IEFORCBOT1QgSVBIT05FKQpmNjc2NzczZmE4MzdhZTRhYjM4NjFmOThiMDViZjk3YgplY2hvIHgg LSBhbGxlZ3JvNS9maWxlcy9wYXRjaC1SZWZtYW4uY21ha2UKc2VkICdzL15YLy8nID5hbGxlZ3Jv NS9maWxlcy9wYXRjaC1SZWZtYW4uY21ha2UgPDwgJzY5OGM4NTQxYzYyMTRjODVhZjc2OWM5MjFm YTJkZGI3JwpYLS0tIGRvY3MvUmVmbWFuLmNtYWtlLm9yaWcJMjAxMi0wOC0wNiAxODo1MzowOC4w MDAwMDAwMDAgKzAyMDAKWCsrKyBkb2NzL1JlZm1hbi5jbWFrZQkyMDEyLTA4LTA2IDE4OjUzOjE5 LjAwMDAwMDAwMCArMDIwMApYQEAgLTMwNyw5ICszMDcsNiBAQApYIApYICAgICBhZGRfY3VzdG9t X3RhcmdldChtYW4gQUxMIERFUEVORFMgJHtNQU5fUEFHRVN9KQpYIApYLSAgICBpbnN0YWxsKEZJ TEVTICR7TUFOX1BBR0VTfQpYLSAgICAgICAgICAgIERFU1RJTkFUSU9OICR7TUFORElSfS9tYW4z ClgtICAgICAgICAgICAgKQpYIGVuZGlmKFdBTlRfRE9DU19NQU4pClggClggIy0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tIwo2OThjODU0MWM2MjE0Yzg1YWY3NjljOTIxZmEyZGRiNwplY2hvIHggLSBhbGxl Z3JvNS9wa2ctZGVzY3IKc2VkICdzL15YLy8nID5hbGxlZ3JvNS9wa2ctZGVzY3IgPDwgJzVjNWMy ZGEwYTlhMTM5MDIxNTM2NGNkODM5OTkwOTMwJwpYQWxsZWdybyBpcyBhIGNyb3NzLXBsYXRmb3Jt IGxpYnJhcnkgaW50ZW5kZWQgZm9yIApYdXNlIGluIGNvbXB1dGVyIGdhbWVzIGFuZCBvdGhlciB0 eXBlcyBvZgpYbXVsdGltZWRpYSBwcm9ncmFtbWluZy4KWApYV1dXOglodHRwOi8vYWxsZWcuc291 cmNlZm9yZ2UubmV0CjVjNWMyZGEwYTlhMTM5MDIxNTM2NGNkODM5OTkwOTMwCmVjaG8geCAtIGFs bGVncm81L2Rpc3RpbmZvCnNlZCAncy9eWC8vJyA+YWxsZWdybzUvZGlzdGluZm8gPDwgJzA0OGM1 MjNlZjViNDYyYjFkNTUwNWU5ZTVkOTIyMmEzJwpYU0hBMjU2IChhbGxlZ3JvLTUuMC43LnRhci5n eikgPSA0N2YyOWU1NjRkOWE0YmFiZmJiZjAyNGYzNGZjOGEwNGVlYTkzMmEwNzNhZjkyMWQxN2Nh ZmZiZWMwYzNhZDliClhTSVpFIChhbGxlZ3JvLTUuMC43LnRhci5neikgPSAzMTA5NzY1CjA0OGM1 MjNlZjViNDYyYjFkNTUwNWU5ZTVkOTIyMmEzCmVjaG8geCAtIGFsbGVncm81L3BrZy1wbGlzdApz ZWQgJ3MvXlgvLycgPmFsbGVncm81L3BrZy1wbGlzdCA8PCAnNzhjMDAzZmEyZjljYjM5YTFmYzkw ZmQ1MzkyYjU1NDUnClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL3BsYXRmb3JtLmh0 bWwKWCUlSFRNTCUlJSVET0NTRElSJSUvaHRtbC9yZWZtYW4vYXVkaW8uaHRtbApYJSVIVE1MJSUl JURPQ1NESVIlJS9odG1sL3JlZm1hbi9wcmltaXRpdmVzLmh0bWwKWCUlSFRNTCUlJSVET0NTRElS JSUvaHRtbC9yZWZtYW4vdGltZXIuaHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1h bi9tZW1maWxlLmh0bWwKWCUlSFRNTCUlJSVET0NTRElSJSUvaHRtbC9yZWZtYW4vb3BlbmdsLmh0 bWwKWCUlSFRNTCUlJSVET0NTRElSJSUvaHRtbC9yZWZtYW4vdXRmOC5odG1sClglJUhUTUwlJSUl RE9DU0RJUiUlL2h0bWwvcmVmbWFuL3RocmVhZHMuaHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9o dG1sL3JlZm1hbi90cmFuc2Zvcm1hdGlvbnMuaHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1s L3JlZm1hbi9wYW5kb2MuY3NzClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL2ZpbGUu aHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9jb25maWcuaHRtbApYJSVIVE1M JSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9ncmFwaGljcy5odG1sClglJUhUTUwlJSUlRE9DU0RJ UiUlL2h0bWwvcmVmbWFuL3BoeXNmcy5odG1sClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVm bWFuL2ZvbnQuaHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9tb3VzZS5odG1s ClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL21lbW9yeS5odG1sClglJUhUTUwlJSUl RE9DU0RJUiUlL2h0bWwvcmVmbWFuL2ZpeGVkLmh0bWwKWCUlSFRNTCUlJSVET0NTRElSJSUvaHRt bC9yZWZtYW4vbWFpbi5odG1sClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL2RpcmVj dDNkLmh0bWwKWCUlSFRNTCUlJSVET0NTRElSJSUvaHRtbC9yZWZtYW4vZXZlbnRzLmh0bWwKWCUl SFRNTCUlJSVET0NTRElSJSUvaHRtbC9yZWZtYW4vaW1hZ2VzL3ByaW1pdGl2ZXMxLnBuZwpYJSVI VE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9pbWFnZXMvcHJpbWl0aXZlczIucG5nClglJUhU TUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL3RpbWUuaHRtbApYJSVIVE1MJSUlJURPQ1NESVIl JS9odG1sL3JlZm1hbi9jb2xvci5odG1sClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFu L3BhdGguaHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9kaXNwbGF5Lmh0bWwK WCUlSFRNTCUlJSVET0NTRElSJSUvaHRtbC9yZWZtYW4vaW1hZ2UuaHRtbApYJSVIVE1MJSUlJURP Q1NESVIlJS9odG1sL3JlZm1hbi9zeXN0ZW0uaHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1s L3JlZm1hbi9hY29kZWMuaHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9pbmRl eC5odG1sClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL2ZzaG9vay5odG1sClglJUhU TUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL25hdGl2ZV9kaWFsb2cuaHRtbApYJSVIVE1MJSUl JURPQ1NESVIlJS9odG1sL3JlZm1hbi9rZXlib2FyZC5odG1sClglJUhUTUwlJSUlRE9DU0RJUiUl L2h0bWwvcmVmbWFuL21pc2MuaHRtbApYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9q b3lzdGljay5odG1sClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL3NlYXJjaF9pbmRl eC5qcwpYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9pbmRleF9hbGwuaHRtbApYJSVI VE1MJSUlJURPQ1NESVIlJS9odG1sL3JlZm1hbi9zdGF0ZS5odG1sClglJUhUTUwlJSUlRE9DU0RJ UiUlL2h0bWwvcmVmbWFuL2dldHRpbmdfc3RhcnRlZC5odG1sClglJUhUTUwlJSUlRE9DU0RJUiUl L2h0bWwvcmVmbWFuL2F1dG9zdWdnZXN0LmpzClglJUhUTUwlJSUlRE9DU0RJUiUlL2h0bWwvcGFu ZG9jLmNzcwpYJSVIVE1MJSUlJURPQ1NESVIlJS9odG1sL2NoYW5nZXMtNS4wLmh0bWwKWCUlSFRN TCUlQGRpcnJtICUlRE9DU0RJUiUlL2h0bWwvcmVmbWFuL2ltYWdlcwpYJSVIVE1MJSVAZGlycm0g JSVET0NTRElSJSUvaHRtbC9yZWZtYW4KWCUlSFRNTCUlQGRpcnJtICUlRE9DU0RJUiUlL2h0bWwK WGluY2x1ZGUvYWxsZWdybzUvYWxsZWdybzUuaApYaW5jbHVkZS9hbGxlZ3JvNS9hbGxlZ3JvLmgK WGluY2x1ZGUvYWxsZWdybzUvYWxjb21wYXQuaApYaW5jbHVkZS9hbGxlZ3JvNS9hbGlubGluZS5o ClhpbmNsdWRlL2FsbGVncm81L2FsdGltZS5oClhpbmNsdWRlL2FsbGVncm81L2Jhc2UuaApYaW5j bHVkZS9hbGxlZ3JvNS9iaXRtYXBfaW8uaApYaW5jbHVkZS9hbGxlZ3JvNS9iaXRtYXAuaApYaW5j bHVkZS9hbGxlZ3JvNS9jb2xvci5oClhpbmNsdWRlL2FsbGVncm81L2NvbmZpZy5oClhpbmNsdWRl L2FsbGVncm81L2RlYnVnLmgKWGluY2x1ZGUvYWxsZWdybzUvZGlzcGxheS5oClhpbmNsdWRlL2Fs bGVncm81L2Vycm9yLmgKWGluY2x1ZGUvYWxsZWdybzUvZXZlbnRzLmgKWGluY2x1ZGUvYWxsZWdy bzUvZmlsZS5oClhpbmNsdWRlL2FsbGVncm81L2ZpeGVkLmgKWGluY2x1ZGUvYWxsZWdybzUvZm1h dGhzLmgKWGluY2x1ZGUvYWxsZWdybzUvZnNob29rLmgKWGluY2x1ZGUvYWxsZWdybzUvam95c3Rp Y2suaApYaW5jbHVkZS9hbGxlZ3JvNS9rZXlib2FyZC5oClhpbmNsdWRlL2FsbGVncm81L2tleWNv ZGVzLmgKWGluY2x1ZGUvYWxsZWdybzUvbWVtb3J5LmgKWGluY2x1ZGUvYWxsZWdybzUvbW91c2Uu aApYaW5jbHVkZS9hbGxlZ3JvNS9wYXRoLmgKWGluY2x1ZGUvYWxsZWdybzUvYWxsZWdyb19vcGVu Z2wuaApYaW5jbHVkZS9hbGxlZ3JvNS9hbGxlZ3JvX2RpcmVjdDNkLmgKWGluY2x1ZGUvYWxsZWdy bzUvc3lzdGVtLmgKWGluY2x1ZGUvYWxsZWdybzUvdGhyZWFkcy5oClhpbmNsdWRlL2FsbGVncm81 L3Rscy5oClhpbmNsdWRlL2FsbGVncm81L3RpbWVyLmgKWGluY2x1ZGUvYWxsZWdybzUvdHJhbnNm b3JtYXRpb25zLmgKWGluY2x1ZGUvYWxsZWdybzUvdXRmOC5oClhpbmNsdWRlL2FsbGVncm81L2lu bGluZS9mbWF0aHMuaW5sClhpbmNsdWRlL2FsbGVncm81L2ludGVybmFsL2FpbnRlcm4uaApYaW5j bHVkZS9hbGxlZ3JvNS9pbnRlcm5hbC9haW50ZXJuX2F0b21pY29wcy5oClhpbmNsdWRlL2FsbGVn cm81L2ludGVybmFsL2FpbnRlcm5fYml0bWFwLmgKWGluY2x1ZGUvYWxsZWdybzUvaW50ZXJuYWwv YWludGVybl9ibGVuZC5oClhpbmNsdWRlL2FsbGVncm81L2ludGVybmFsL2FpbnRlcm5fY29udmVy dC5oClhpbmNsdWRlL2FsbGVncm81L2ludGVybmFsL2FpbnRlcm5fZGlzcGxheS5oClhpbmNsdWRl L2FsbGVncm81L2ludGVybmFsL2FpbnRlcm5fZHRvci5oClhpbmNsdWRlL2FsbGVncm81L2ludGVy bmFsL2FpbnRlcm5fZXZlbnRzLmgKWGluY2x1ZGUvYWxsZWdybzUvaW50ZXJuYWwvYWludGVybl9m bG9hdC5oClhpbmNsdWRlL2FsbGVncm81L2ludGVybmFsL2FpbnRlcm5fZnNob29rLmgKWGluY2x1 ZGUvYWxsZWdybzUvaW50ZXJuYWwvYWludGVybl9qb3lzdGljay5oClhpbmNsdWRlL2FsbGVncm81 L2ludGVybmFsL2FpbnRlcm5fa2V5Ym9hcmQuaApYaW5jbHVkZS9hbGxlZ3JvNS9pbnRlcm5hbC9h aW50ZXJuX2xpc3QuaApYaW5jbHVkZS9hbGxlZ3JvNS9pbnRlcm5hbC9haW50ZXJuX21vdXNlLmgK WGluY2x1ZGUvYWxsZWdybzUvaW50ZXJuYWwvYWludGVybl9vcGVuZ2wuaApYaW5jbHVkZS9hbGxl Z3JvNS9pbnRlcm5hbC9haW50ZXJuX3BpeGVscy5oClhpbmNsdWRlL2FsbGVncm81L2ludGVybmFs L2FpbnRlcm5fc3lzdGVtLmgKWGluY2x1ZGUvYWxsZWdybzUvaW50ZXJuYWwvYWludGVybl90aHJl YWQuaApYaW5jbHVkZS9hbGxlZ3JvNS9pbnRlcm5hbC9haW50ZXJuX3RpbWVyLmgKWGluY2x1ZGUv YWxsZWdybzUvaW50ZXJuYWwvYWludGVybl90bHMuaApYaW5jbHVkZS9hbGxlZ3JvNS9pbnRlcm5h bC9haW50ZXJuX3ZlY3Rvci5oClhpbmNsdWRlL2FsbGVncm81L2ludGVybmFsL2FsY29uZmlnLmgK WGluY2x1ZGUvYWxsZWdybzUvcGxhdGZvcm0vYWludGxueC5oClhpbmNsdWRlL2FsbGVncm81L3Bs YXRmb3JtL2FpbnRvc3guaApYaW5jbHVkZS9hbGxlZ3JvNS9wbGF0Zm9ybS9haW50dW5peC5oClhp bmNsdWRlL2FsbGVncm81L3BsYXRmb3JtL2FpbnR1dGhyLmgKWGluY2x1ZGUvYWxsZWdybzUvcGxh dGZvcm0vYWludHdpbi5oClhpbmNsdWRlL2FsbGVncm81L3BsYXRmb3JtL2FpbnR3dGhyLmgKWGlu Y2x1ZGUvYWxsZWdybzUvcGxhdGZvcm0vYWwzODZnY2MuaApYaW5jbHVkZS9hbGxlZ3JvNS9wbGF0 Zm9ybS9hbDM4NnZjLmgKWGluY2x1ZGUvYWxsZWdybzUvcGxhdGZvcm0vYWwzODZ3YXQuaApYaW5j bHVkZS9hbGxlZ3JvNS9wbGF0Zm9ybS9hbGJjYzMyLmgKWGluY2x1ZGUvYWxsZWdybzUvcGxhdGZv cm0vYWxtbmd3MzIuaApYaW5jbHVkZS9hbGxlZ3JvNS9wbGF0Zm9ybS9hbG1zdmMuaApYaW5jbHVk ZS9hbGxlZ3JvNS9wbGF0Zm9ybS9hbG9zeC5oClhpbmNsdWRlL2FsbGVncm81L3BsYXRmb3JtL2Fs b3N4Y2ZnLmgKWGluY2x1ZGUvYWxsZWdybzUvcGxhdGZvcm0vYWx1Y2ZnLmgKWGluY2x1ZGUvYWxs ZWdybzUvcGxhdGZvcm0vYWx1bml4LmgKWGluY2x1ZGUvYWxsZWdybzUvcGxhdGZvcm0vYWx3YXRj b20uaApYaW5jbHVkZS9hbGxlZ3JvNS9wbGF0Zm9ybS9hbHdpbi5oClhpbmNsdWRlL2FsbGVncm81 L3BsYXRmb3JtL2FzdGRib29sLmgKWGluY2x1ZGUvYWxsZWdybzUvcGxhdGZvcm0vYXN0ZGludC5o ClhpbmNsdWRlL2FsbGVncm81L3BsYXRmb3JtL2FscGxhdGYuaApYaW5jbHVkZS9hbGxlZ3JvNS9v cGVuZ2wvZ2xfZXh0LmgKWGluY2x1ZGUvYWxsZWdybzUvb3BlbmdsL0dMZXh0L2dsX2V4dF9hbGlh cy5oClhpbmNsdWRlL2FsbGVncm81L29wZW5nbC9HTGV4dC9nbF9leHRfZGVmcy5oClhpbmNsdWRl L2FsbGVncm81L29wZW5nbC9HTGV4dC9nbHhfZXh0X2FsaWFzLmgKWGluY2x1ZGUvYWxsZWdybzUv b3BlbmdsL0dMZXh0L2dseF9leHRfZGVmcy5oClhpbmNsdWRlL2FsbGVncm81L29wZW5nbC9HTGV4 dC93Z2xfZXh0X2FsaWFzLmgKWGluY2x1ZGUvYWxsZWdybzUvb3BlbmdsL0dMZXh0L3dnbF9leHRf ZGVmcy5oClhpbmNsdWRlL2FsbGVncm81L29wZW5nbC9HTGV4dC9nbF9leHRfYXBpLmgKWGluY2x1 ZGUvYWxsZWdybzUvb3BlbmdsL0dMZXh0L2dsX2V4dF9saXN0LmgKWGluY2x1ZGUvYWxsZWdybzUv b3BlbmdsL0dMZXh0L2dseF9leHRfYXBpLmgKWGluY2x1ZGUvYWxsZWdybzUvb3BlbmdsL0dMZXh0 L2dseF9leHRfbGlzdC5oClhpbmNsdWRlL2FsbGVncm81L29wZW5nbC9HTGV4dC93Z2xfZXh0X2Fw aS5oClhpbmNsdWRlL2FsbGVncm81L29wZW5nbC9HTGV4dC93Z2xfZXh0X2xpc3QuaApYaW5jbHVk ZS9hbGxlZ3JvNS9hbGxlZ3JvX3ByaW1pdGl2ZXMuaApYaW5jbHVkZS9hbGxlZ3JvNS9hbGxlZ3Jv X2ltYWdlLmgKWGluY2x1ZGUvYWxsZWdybzUvYWxsZWdyb19mb250LmgKWGluY2x1ZGUvYWxsZWdy bzUvYWxsZWdyb19hdWRpby5oClhpbmNsdWRlL2FsbGVncm81L2FsbGVncm9fYWNvZGVjLmgKWGlu Y2x1ZGUvYWxsZWdybzUvYWxsZWdyb190dGYuaApYaW5jbHVkZS9hbGxlZ3JvNS9hbGxlZ3JvX2Nv bG9yLmgKWGluY2x1ZGUvYWxsZWdybzUvYWxsZWdyb19tZW1maWxlLmgKWCUlUEhZU0ZTJSVpbmNs dWRlL2FsbGVncm81L2FsbGVncm9fcGh5c2ZzLmgKWGluY2x1ZGUvYWxsZWdybzUvYWxsZWdyb19u YXRpdmVfZGlhbG9nLmgKWGxpYi9saWJhbGxlZ3JvLnNvLjUuMC43ClhsaWIvbGliZGF0YS9wa2dj b25maWcvYWxsZWdyby01LjAucGMKWGxpYi9saWJkYXRhL3BrZ2NvbmZpZy9hbGxlZ3JvX2Fjb2Rl Yy01LjAucGMKWGxpYi9saWJkYXRhL3BrZ2NvbmZpZy9hbGxlZ3JvX2F1ZGlvLTUuMC5wYwpYbGli L2xpYmRhdGEvcGtnY29uZmlnL2FsbGVncm9fY29sb3ItNS4wLnBjClhsaWIvbGliZGF0YS9wa2dj b25maWcvYWxsZWdyb19kaWFsb2ctNS4wLnBjClhsaWIvbGliZGF0YS9wa2djb25maWcvYWxsZWdy b19mb250LTUuMC5wYwpYbGliL2xpYmRhdGEvcGtnY29uZmlnL2FsbGVncm9faW1hZ2UtNS4wLnBj ClhsaWIvbGliZGF0YS9wa2djb25maWcvYWxsZWdyb19tYWluLTUuMC5wYwpYbGliL2xpYmRhdGEv cGtnY29uZmlnL2FsbGVncm9fbWVtZmlsZS01LjAucGMKWCUlUEhZU0ZTJSVsaWIvbGliZGF0YS9w a2djb25maWcvYWxsZWdyb19waHlzZnMtNS4wLnBjClhsaWIvbGliZGF0YS9wa2djb25maWcvYWxs ZWdyb19wcmltaXRpdmVzLTUuMC5wYwpYbGliL2xpYmRhdGEvcGtnY29uZmlnL2FsbGVncm9fdHRm LTUuMC5wYwpYbGliL2xpYmFsbGVncm9faW1hZ2Uuc28uNS4wLjcKWGxpYi9saWJhbGxlZ3JvX2Zv bnQuc28uNS4wLjcKWGxpYi9saWJhbGxlZ3JvX2F1ZGlvLnNvLjUuMC43ClhsaWIvbGliYWxsZWdy b19hY29kZWMuc28uNS4wLjcKWGxpYi9saWJhbGxlZ3JvX3R0Zi5zby41LjAuNwpYbGliL2xpYmFs bGVncm9fY29sb3Iuc28uNS4wLjcKWGxpYi9saWJhbGxlZ3JvX21lbWZpbGUuc28uNS4wLjcKWCUl UEhZU0ZTJSVsaWIvbGliYWxsZWdyb19waHlzZnMuc28uNS4wLjcKWGxpYi9saWJhbGxlZ3JvX2Rp YWxvZy5zby41LjAuNwpYbGliL2xpYmFsbGVncm9fbWFpbi5zby41LjAuNwpYbGliL2xpYmFsbGVn cm9fcHJpbWl0aXZlcy5zby41LjAuNwpYbGliL2xpYmFsbGVncm8uc28uNS4wClhsaWIvbGliYWxs ZWdyby5zbwpYbGliL2xpYmFsbGVncm9fcHJpbWl0aXZlcy5zby41LjAKWGxpYi9saWJhbGxlZ3Jv X3ByaW1pdGl2ZXMuc28KWGxpYi9saWJhbGxlZ3JvX2ltYWdlLnNvLjUuMApYbGliL2xpYmFsbGVn cm9faW1hZ2Uuc28KWGxpYi9saWJhbGxlZ3JvX2ZvbnQuc28uNS4wClhsaWIvbGliYWxsZWdyb19m b250LnNvClhsaWIvbGliYWxsZWdyb19hdWRpby5zby41LjAKWGxpYi9saWJhbGxlZ3JvX2F1ZGlv LnNvClhsaWIvbGliYWxsZWdyb19hY29kZWMuc28uNS4wClhsaWIvbGliYWxsZWdyb19hY29kZWMu c28KWGxpYi9saWJhbGxlZ3JvX3R0Zi5zby41LjAKWGxpYi9saWJhbGxlZ3JvX3R0Zi5zbwpYbGli L2xpYmFsbGVncm9fY29sb3Iuc28uNS4wClhsaWIvbGliYWxsZWdyb19jb2xvci5zbwpYbGliL2xp YmFsbGVncm9fbWVtZmlsZS5zby41LjAKWGxpYi9saWJhbGxlZ3JvX21lbWZpbGUuc28KWCUlUEhZ U0ZTJSVsaWIvbGliYWxsZWdyb19waHlzZnMuc28uNS4wClglJVBIWVNGUyUlbGliL2xpYmFsbGVn cm9fcGh5c2ZzLnNvClhsaWIvbGliYWxsZWdyb19kaWFsb2cuc28uNS4wClhsaWIvbGliYWxsZWdy b19kaWFsb2cuc28KWGxpYi9saWJhbGxlZ3JvX21haW4uc28uNS4wClhsaWIvbGliYWxsZWdyb19t YWluLnNvClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvY29tbW9uLmMK WCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9hY29kZWMuYwpYJSVT QU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2Fjb2RlY19tdWx0aS5jClgl JVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfYXVkaW9fY2hhaW4uY3Bw ClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfYXVkaW9fcHJvcHMu Y3BwClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfYXVkaW9fc2lt cGxlLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9iaXRtYXAu YwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2JpdG1hcF9mbGlw LmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9iaXRtYXBfdGFy Z2V0LmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9ibGVuZC5j ClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfYmxlbmQyLmNwcApY JSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2JsZW5kX2JlbmNoLmMK WCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9ibGVuZF90ZXN0LmMK WCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9ibGl0LmMKWCUlU0FN UExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9jbGlwLmMKWCUlU0FNUExFUyUl LyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9jb2xvci5jcHAKWCUlU0FNUExFUyUlLyUl UE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9jb25maWcuYwpYJSVTQU1QTEVTJSUvJSVQT1JU RE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2NvbnZlcnQuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9D UyUlJSVFWEFNUExFU0RJUiUlL2V4X2N1cmwuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVF WEFNUExFU0RJUiUlL2V4X2QzZC5jcHAKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBM RVNESVIlJS9leF9kaXIuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUl L2V4X2Rpc2FibGVfc2NyZWVuc2F2ZXIuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFN UExFU0RJUiUlL2V4X2Rpc3BsYXlfZXZlbnRzLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUl RVhBTVBMRVNESVIlJS9leF9kaXNwbGF5X29wdGlvbnMuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9D UyUlJSVFWEFNUExFU0RJUiUlL2V4X2RyYXcuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVF WEFNUExFU0RJUiUlL2V4X2RyYXdfYml0bWFwLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUl RVhBTVBMRVNESVIlJS9leF9kcmF3cGl4ZWxzLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUl RVhBTVBMRVNESVIlJS9leF9kdWFsaWVzLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhB TVBMRVNESVIlJS9leF9leHBvc2UuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExF U0RJUiUlL2V4X2ZpbGVfc2xpY2UuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExF U0RJUiUlL2V4X2ZpbHRlci5jClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElS JSUvZXhfZm9udC5jClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhf Zm9udF9qdXN0aWZ5LmNwcApYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUl L2V4X2ZzX3Jlc2l6ZS5jClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUv ZXhfZnNfd2luZG93LmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9l eF9nZXRfcGF0aC5jClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhf Z2xkZXB0aC5jClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfZ2xl eHQuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2dwMnh3aXou YwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2hhaWt1LmMKWCUl U0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9pY29uLmMKWCUlU0FNUExF UyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9pcGhvbmUuYwpYJSVTQU1QTEVTJSUv JSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2pveXN0aWNrX2V2ZW50cy5jClglJVNBTVBM RVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfam95c3RpY2tfaG90cGx1Z2dpbmcu YwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2tjbV9kaXJlY3Qu YwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2tleWJvYXJkX2V2 ZW50cy5jClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfa2V5Ym9h cmRfZm9jdXMuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X2xp bmVzLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9sb2NrYml0 bWFwLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9sb2dvLmMK WCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9tZW1ibXAuYwpYJSVT QU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X21lbWZpbGUuYwpYJSVTQU1Q TEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X21peGVyX2NoYWluLmMKWCUlU0FN UExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9taXhlcl9wcC5jClglJVNBTVBM RVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfbW9uaXRvcmluZm8uYwpYJSVTQU1Q TEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X21vdXNlLmMKWCUlU0FNUExFUyUl LyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9tb3VzZV9jdXJzb3IuYwpYJSVTQU1QTEVT JSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X21vdXNlX2V2ZW50cy5jClglJVNBTVBM RVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfbW91c2VfZm9jdXMuYwpYJSVTQU1Q TEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X211bHRpc2FtcGxlLmMKWCUlU0FN UExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9tdWx0aXdpbi5jClglJVNBTVBM RVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfbmF0aXZlX2ZpbGVjaG9vc2VyLmMK WCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9ub2Rpc3BsYXkuYwpY JSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X25vZnJhbWUuYwpYJSVT QU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X29ncmUzZC5jcHAKWCUlU0FN UExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9vcGVuZ2wuYwpYJSVTQU1QTEVT JSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X29wZW5nbF9waXhlbF9zaGFkZXIuYwpY JSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X3BhdGguYwpYJSVTQU1Q TEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X3BhdGhfdGVzdC5jClglJVNBTVBM RVMlJS8lJVBIWVNGUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9waHlzZnMuYwpY JSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X3BpeGVsZm9ybWF0LmNw cApYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X3ByZW11bGFscGhh LmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9wcmltLmMKWCUl U0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9yZXNhbXBsZV90ZXN0LmMK WCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9yZXNpemUuYwpYJSVT QU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X3Jlc2l6ZTIuYwpYJSVTQU1Q TEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X3JvdGF0ZS5jClglJVNBTVBMRVMl JS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhfc2F3LmMKWCUlU0FNUExFUyUlLyUlUE9S VERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF9zY2FsZS5jClglJVNBTVBMRVMlJS8lJVBPUlRET0NT JSUlJUVYQU1QTEVTRElSJSUvZXhfc3RyZWFtX2ZpbGUuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9D UyUlJSVFWEFNUExFU0RJUiUlL2V4X3N0cmVhbV9zZWVrLmMKWCUlU0FNUExFUyUlLyUlUE9SVERP Q1MlJSUlRVhBTVBMRVNESVIlJS9leF9zdWJiaXRtYXAuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9D UyUlJSVFWEFNUExFU0RJUiUlL2V4X3N5bnRoLmNwcApYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUl JSVFWEFNUExFU0RJUiUlL2V4X3RocmVhZHMuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVF WEFNUExFU0RJUiUlL2V4X3RocmVhZHMyLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhB TVBMRVNESVIlJS9leF90aW1lZHdhaXQuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFN UExFU0RJUiUlL2V4X3RpbWVyLmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNE SVIlJS9leF90cmFuc2Zvcm0uYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJ UiUlL2V4X3R0Zi5jClglJVNBTVBMRVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvZXhf dXNlcl9ldmVudHMuYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4 X3V0ZjguYwpYJSVTQU1QTEVTJSUvJSVQT1JURE9DUyUlJSVFWEFNUExFU0RJUiUlL2V4X3ZzeW5j LmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF93YXJwX21vdXNl LmMKWCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF93aW5kb3dzLmMK WCUlU0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9leF93aW5mdWxsLmMKWCUl U0FNUExFUyUlLyUlUE9SVERPQ1MlJSUlRVhBTVBMRVNESVIlJS9uaWhndWkuY3BwClglJVNBTVBM RVMlJS8lJVBPUlRET0NTJSUlJUVYQU1QTEVTRElSJSUvbmloZ3VpLmhwcApYJSVERU1PUyUlJSVQ T1JURE9DUyUlQGRpcnJtICUlRVhBTVBMRVNESVIlJS9kZW1vcy9zcGVlZApYJSVERU1PUyUlJSVQ T1JURE9DUyUlQGRpcnJtICUlRVhBTVBMRVNESVIlJS9kZW1vcy9hNXRlcm9pZHMKWCUlREVNT1Ml JSUlUE9SVERPQ1MlJUBkaXJybSAlJUVYQU1QTEVTRElSJSUvZGVtb3MKWEBkaXJybSBpbmNsdWRl L2FsbGVncm81L2lubGluZQpYQGRpcnJtIGluY2x1ZGUvYWxsZWdybzUvaW50ZXJuYWwKWEBkaXJy bSBpbmNsdWRlL2FsbGVncm81L29wZW5nbC9HTGV4dApYQGRpcnJtIGluY2x1ZGUvYWxsZWdybzUv b3BlbmdsClhAZGlycm0gaW5jbHVkZS9hbGxlZ3JvNS9wbGF0Zm9ybQpYQGRpcnJtIGluY2x1ZGUv YWxsZWdybzUKNzhjMDAzZmEyZjljYjM5YTFmYzkwZmQ1MzkyYjU1NDUKZWNobyB4IC0gYWxsZWdy bzUvTWFrZWZpbGUubWFuCnNlZCAncy9eWC8vJyA+YWxsZWdybzUvTWFrZWZpbGUubWFuIDw8ICdm NDU5Mjg4Y2E5YmVmMjlmMDRjMzk3ZjlmZWIzMDYxYycKWE1BTjM9IEFMTEVHUk9fQVVESU9fREVQ VEguMyAgXApYQUxMRUdST19BVURJT19QQU5fTk9ORS4zICBcClhBTExFR1JPX0FVRElPX1NUUkVB TS4zICBcClhBTExFR1JPX0JJVE1BUC4zICBcClhBTExFR1JPX0JQTV9UT19TRUNTLjMgIFwKWEFM TEVHUk9fQlBTX1RPX1NFQ1MuMyAgXApYQUxMRUdST19DSEFOTkVMX0NPTkYuMyAgXApYQUxMRUdS T19DT0xPUi4zICBcClhBTExFR1JPX0NPTkQuMyAgXApYQUxMRUdST19DT05GSUcuMyAgXApYQUxM RUdST19ESVNQTEFZLjMgIFwKWEFMTEVHUk9fRElTUExBWV9NT0RFLjMgIFwKWEFMTEVHUk9fRVZF TlQuMyAgXApYQUxMRUdST19FVkVOVF9ESVNQTEFZX0NMT1NFLjMgIFwKWEFMTEVHUk9fRVZFTlRf RElTUExBWV9FWFBPU0UuMyAgXApYQUxMRUdST19FVkVOVF9ESVNQTEFZX0ZPVU5ELjMgIFwKWEFM TEVHUk9fRVZFTlRfRElTUExBWV9MT1NULjMgIFwKWEFMTEVHUk9fRVZFTlRfRElTUExBWV9PUklF TlRBVElPTi4zICBcClhBTExFR1JPX0VWRU5UX0RJU1BMQVlfUkVTSVpFLjMgIFwKWEFMTEVHUk9f RVZFTlRfRElTUExBWV9TV0lUQ0hfSU4uMyAgXApYQUxMRUdST19FVkVOVF9ESVNQTEFZX1NXSVRD SF9PVVQuMyAgXApYQUxMRUdST19FVkVOVF9KT1lTVElDS19BWElTLjMgIFwKWEFMTEVHUk9fRVZF TlRfSk9ZU1RJQ0tfQlVUVE9OX0RPV04uMyAgXApYQUxMRUdST19FVkVOVF9KT1lTVElDS19CVVRU T05fVVAuMyAgXApYQUxMRUdST19FVkVOVF9KT1lTVElDS19DT05GSUdVUkFUSU9OLjMgIFwKWEFM TEVHUk9fRVZFTlRfS0VZX0NIQVIuMyAgXApYQUxMRUdST19FVkVOVF9LRVlfRE9XTi4zICBcClhB TExFR1JPX0VWRU5UX0tFWV9VUC4zICBcClhBTExFR1JPX0VWRU5UX01PVVNFX0FYRVMuMyAgXApY QUxMRUdST19FVkVOVF9NT1VTRV9CVVRUT05fRE9XTi4zICBcClhBTExFR1JPX0VWRU5UX01PVVNF X0JVVFRPTl9VUC4zICBcClhBTExFR1JPX0VWRU5UX01PVVNFX0VOVEVSX0RJU1BMQVkuMyAgXApY QUxMRUdST19FVkVOVF9NT1VTRV9MRUFWRV9ESVNQTEFZLjMgIFwKWEFMTEVHUk9fRVZFTlRfTU9V U0VfV0FSUEVELjMgIFwKWEFMTEVHUk9fRVZFTlRfUVVFVUUuMyAgXApYQUxMRUdST19FVkVOVF9T T1VSQ0UuMyAgXApYQUxMRUdST19FVkVOVF9USU1FUi4zICBcClhBTExFR1JPX0VWRU5UX1RZUEUu MyAgXApYQUxMRUdST19FVkVOVF9UWVBFX0lTX1VTRVIuMyAgXApYQUxMRUdST19GSUxFLjMgIFwK WEFMTEVHUk9fRklMRUNIT09TRVIuMyAgXApYQUxMRUdST19GSUxFX0lOVEVSRkFDRS4zICBcClhB TExFR1JPX0ZJTEVfTU9ERS4zICBcClhBTExFR1JPX0ZPTlQuMyAgXApYQUxMRUdST19GU19FTlRS WS4zICBcClhBTExFR1JPX0ZTX0lOVEVSRkFDRS4zICBcClhBTExFR1JPX0dFVF9FVkVOVF9UWVBF LjMgIFwKWEFMTEVHUk9fSk9ZRkxBR1MuMyAgXApYQUxMRUdST19KT1lTVElDSy4zICBcClhBTExF R1JPX0pPWVNUSUNLX1NUQVRFLjMgIFwKWEFMTEVHUk9fS0VZQk9BUkRfU1RBVEUuMyAgXApYQUxM RUdST19MT0NLRURfUkVHSU9OLjMgIFwKWEFMTEVHUk9fTUVNT1JZX0lOVEVSRkFDRS4zICBcClhB TExFR1JPX01JWEVSLjMgIFwKWEFMTEVHUk9fTUlYRVJfUVVBTElUWS4zICBcClhBTExFR1JPX01P TklUT1JfSU5GTy4zICBcClhBTExFR1JPX01PVVNFX1NUQVRFLjMgIFwKWEFMTEVHUk9fTVNFQ1Nf VE9fU0VDUy4zICBcClhBTExFR1JPX01VVEVYLjMgIFwKWEFMTEVHUk9fUEkuMyAgXApYQUxMRUdS T19QSVhFTF9GT1JNQVQuMyAgXApYQUxMRUdST19QTEFZTU9ERS4zICBcClhBTExFR1JPX1BSSU1f QVRUUi4zICBcClhBTExFR1JPX1BSSU1fUVVBTElUWS4zICBcClhBTExFR1JPX1BSSU1fU1RPUkFH RS4zICBcClhBTExFR1JPX1BSSU1fVFlQRS4zICBcClhBTExFR1JPX1NBTVBMRS4zICBcClhBTExF R1JPX1NBTVBMRV9JRC4zICBcClhBTExFR1JPX1NBTVBMRV9JTlNUQU5DRS4zICBcClhBTExFR1JP X1NFRUsuMyAgXApYQUxMRUdST19TVEFURS4zICBcClhBTExFR1JPX1NUQVRFX0ZMQUdTLjMgIFwK WEFMTEVHUk9fVEVYVExPRy4zICBcClhBTExFR1JPX1RIUkVBRC4zICBcClhBTExFR1JPX1RJTUVP VVQuMyAgXApYQUxMRUdST19USU1FUi4zICBcClhBTExFR1JPX1RSQU5TRk9STS4zICBcClhBTExF R1JPX1VTRUNTX1RPX1NFQ1MuMyAgXApYQUxMRUdST19VU0VSX0VWRU5ULjMgIFwKWEFMTEVHUk9f VVNUUi4zICBcClhBTExFR1JPX1VTVFJfSU5GTy4zICBcClhBTExFR1JPX1ZFUlRFWC4zICBcClhB TExFR1JPX1ZFUlRFWF9DQUNIRV9TSVpFLjMgIFwKWEFMTEVHUk9fVkVSVEVYX0RFQ0wuMyAgXApY QUxMRUdST19WRVJURVhfRUxFTUVOVC4zICBcClhBTExFR1JPX1ZPSUNFLjMgIFwKWGFsX2Fja25v d2xlZGdlX3Jlc2l6ZS4zICBcClhhbF9hZGRfY29uZmlnX2NvbW1lbnQuMyAgXApYYWxfYWRkX2Nv bmZpZ19zZWN0aW9uLjMgIFwKWGFsX2FkZF9uZXdfYml0bWFwX2ZsYWcuMyAgXApYYWxfYWRkX3Rp bWVyX2NvdW50LjMgIFwKWGFsX2FwcGVuZF9uYXRpdmVfdGV4dF9sb2cuMyAgXApYYWxfYXBwZW5k X3BhdGhfY29tcG9uZW50LjMgIFwKWGFsX2F0dGFjaF9hdWRpb19zdHJlYW1fdG9fbWl4ZXIuMyAg XApYYWxfYXR0YWNoX2F1ZGlvX3N0cmVhbV90b192b2ljZS4zICBcClhhbF9hdHRhY2hfbWl4ZXJf dG9fbWl4ZXIuMyAgXApYYWxfYXR0YWNoX21peGVyX3RvX3ZvaWNlLjMgIFwKWGFsX2F0dGFjaF9z YW1wbGVfaW5zdGFuY2VfdG9fbWl4ZXIuMyAgXApYYWxfYXR0YWNoX3NhbXBsZV9pbnN0YW5jZV90 b192b2ljZS4zICBcClhhbF9icm9hZGNhc3RfY29uZC4zICBcClhhbF9idWlsZF90cmFuc2Zvcm0u MyAgXApYYWxfY2FsY3VsYXRlX2FyYy4zICBcClhhbF9jYWxjdWxhdGVfcmliYm9uLjMgIFwKWGFs X2NhbGN1bGF0ZV9zcGxpbmUuMyAgXApYYWxfY2FsbG9jLjMgIFwKWGFsX2NhbGxvY193aXRoX2Nv bnRleHQuMyAgXApYYWxfY2hhbmdlX2RpcmVjdG9yeS4zICBcClhhbF9jaGVja19pbnZlcnNlLjMg IFwKWGFsX2NsZWFyX3RvX2NvbG9yLjMgIFwKWGFsX2Nsb25lX2JpdG1hcC4zICBcClhhbF9jbG9u ZV9wYXRoLjMgIFwKWGFsX2Nsb3NlX2RpcmVjdG9yeS4zICBcClhhbF9jbG9zZV9uYXRpdmVfdGV4 dF9sb2cuMyAgXApYYWxfY29sb3JfY215ay4zICBcClhhbF9jb2xvcl9jbXlrX3RvX3JnYi4zICBc ClhhbF9jb2xvcl9oc2wuMyAgXApYYWxfY29sb3JfaHNsX3RvX3JnYi4zICBcClhhbF9jb2xvcl9o c3YuMyAgXApYYWxfY29sb3JfaHN2X3RvX3JnYi4zICBcClhhbF9jb2xvcl9odG1sLjMgIFwKWGFs X2NvbG9yX2h0bWxfdG9fcmdiLjMgIFwKWGFsX2NvbG9yX25hbWUuMyAgXApYYWxfY29sb3JfbmFt ZV90b19yZ2IuMyAgXApYYWxfY29sb3JfcmdiX3RvX2NteWsuMyAgXApYYWxfY29sb3JfcmdiX3Rv X2hzbC4zICBcClhhbF9jb2xvcl9yZ2JfdG9faHN2LjMgIFwKWGFsX2NvbG9yX3JnYl90b19odG1s LjMgIFwKWGFsX2NvbG9yX3JnYl90b19uYW1lLjMgIFwKWGFsX2NvbG9yX3JnYl90b195dXYuMyAg XApYYWxfY29sb3JfeXV2LjMgIFwKWGFsX2NvbG9yX3l1dl90b19yZ2IuMyAgXApYYWxfY29tcG9z ZV90cmFuc2Zvcm0uMyAgXApYYWxfY29udmVydF9tYXNrX3RvX2FscGhhLjMgIFwKWGFsX2NvcHlf dHJhbnNmb3JtLjMgIFwKWGFsX2NyZWF0ZV9hdWRpb19zdHJlYW0uMyAgXApYYWxfY3JlYXRlX2Jp dG1hcC4zICBcClhhbF9jcmVhdGVfY29uZC4zICBcClhhbF9jcmVhdGVfY29uZmlnLjMgIFwKWGFs X2NyZWF0ZV9kaXNwbGF5LjMgIFwKWGFsX2NyZWF0ZV9ldmVudF9xdWV1ZS4zICBcClhhbF9jcmVh dGVfZmlsZV9oYW5kbGUuMyAgXApYYWxfY3JlYXRlX2ZzX2VudHJ5LjMgIFwKWGFsX2NyZWF0ZV9t aXhlci4zICBcClhhbF9jcmVhdGVfbW91c2VfY3Vyc29yLjMgIFwKWGFsX2NyZWF0ZV9tdXRleC4z ICBcClhhbF9jcmVhdGVfbXV0ZXhfcmVjdXJzaXZlLjMgIFwKWGFsX2NyZWF0ZV9uYXRpdmVfZmls ZV9kaWFsb2cuMyAgXApYYWxfY3JlYXRlX3BhdGguMyAgXApYYWxfY3JlYXRlX3BhdGhfZm9yX2Rp cmVjdG9yeS4zICBcClhhbF9jcmVhdGVfc2FtcGxlLjMgIFwKWGFsX2NyZWF0ZV9zYW1wbGVfaW5z dGFuY2UuMyAgXApYYWxfY3JlYXRlX3N1Yl9iaXRtYXAuMyAgXApYYWxfY3JlYXRlX3RocmVhZC4z ICBcClhhbF9jcmVhdGVfdGltZXIuMyAgXApYYWxfY3JlYXRlX3ZlcnRleF9kZWNsLjMgIFwKWGFs X2NyZWF0ZV92b2ljZS4zICBcClhhbF9jc3RyLjMgIFwKWGFsX2NzdHJfZHVwLjMgIFwKWGFsX2N1 cnJlbnRfdGltZS4zICBcClhhbF9kZXN0cm95X2F1ZGlvX3N0cmVhbS4zICBcClhhbF9kZXN0cm95 X2JpdG1hcC4zICBcClhhbF9kZXN0cm95X2NvbmQuMyAgXApYYWxfZGVzdHJveV9jb25maWcuMyAg XApYYWxfZGVzdHJveV9kaXNwbGF5LjMgIFwKWGFsX2Rlc3Ryb3lfZXZlbnRfcXVldWUuMyAgXApY YWxfZGVzdHJveV9mb250LjMgIFwKWGFsX2Rlc3Ryb3lfZnNfZW50cnkuMyAgXApYYWxfZGVzdHJv eV9taXhlci4zICBcClhhbF9kZXN0cm95X21vdXNlX2N1cnNvci4zICBcClhhbF9kZXN0cm95X211 dGV4LjMgIFwKWGFsX2Rlc3Ryb3lfbmF0aXZlX2ZpbGVfZGlhbG9nLjMgIFwKWGFsX2Rlc3Ryb3lf cGF0aC4zICBcClhhbF9kZXN0cm95X3NhbXBsZS4zICBcClhhbF9kZXN0cm95X3NhbXBsZV9pbnN0 YW5jZS4zICBcClhhbF9kZXN0cm95X3RocmVhZC4zICBcClhhbF9kZXN0cm95X3RpbWVyLjMgIFwK WGFsX2Rlc3Ryb3lfdXNlcl9ldmVudF9zb3VyY2UuMyAgXApYYWxfZGVzdHJveV92ZXJ0ZXhfZGVj bC4zICBcClhhbF9kZXN0cm95X3ZvaWNlLjMgIFwKWGFsX2RldGFjaF9hdWRpb19zdHJlYW0uMyAg XApYYWxfZGV0YWNoX21peGVyLjMgIFwKWGFsX2RldGFjaF9zYW1wbGVfaW5zdGFuY2UuMyAgXApY YWxfZGV0YWNoX3ZvaWNlLjMgIFwKWGFsX2RyYWluX2F1ZGlvX3N0cmVhbS4zICBcClhhbF9kcmF3 X2FyYy4zICBcClhhbF9kcmF3X2JpdG1hcC4zICBcClhhbF9kcmF3X2JpdG1hcF9yZWdpb24uMyAg XApYYWxfZHJhd19jaXJjbGUuMyAgXApYYWxfZHJhd19lbGxpcHNlLjMgIFwKWGFsX2RyYXdfZWxs aXB0aWNhbF9hcmMuMyAgXApYYWxfZHJhd19maWxsZWRfY2lyY2xlLjMgIFwKWGFsX2RyYXdfZmls bGVkX2VsbGlwc2UuMyAgXApYYWxfZHJhd19maWxsZWRfcGllc2xpY2UuMyAgXApYYWxfZHJhd19m aWxsZWRfcmVjdGFuZ2xlLjMgIFwKWGFsX2RyYXdfZmlsbGVkX3JvdW5kZWRfcmVjdGFuZ2xlLjMg IFwKWGFsX2RyYXdfZmlsbGVkX3RyaWFuZ2xlLjMgIFwKWGFsX2RyYXdfaW5kZXhlZF9wcmltLjMg IFwKWGFsX2RyYXdfanVzdGlmaWVkX3RleHQuMyAgXApYYWxfZHJhd19qdXN0aWZpZWRfdGV4dGYu MyAgXApYYWxfZHJhd19qdXN0aWZpZWRfdXN0ci4zICBcClhhbF9kcmF3X2xpbmUuMyAgXApYYWxf ZHJhd19waWVzbGljZS4zICBcClhhbF9kcmF3X3BpeGVsLjMgIFwKWGFsX2RyYXdfcHJpbS4zICBc ClhhbF9kcmF3X3JlY3RhbmdsZS4zICBcClhhbF9kcmF3X3JpYmJvbi4zICBcClhhbF9kcmF3X3Jv dGF0ZWRfYml0bWFwLjMgIFwKWGFsX2RyYXdfcm91bmRlZF9yZWN0YW5nbGUuMyAgXApYYWxfZHJh d19zY2FsZWRfYml0bWFwLjMgIFwKWGFsX2RyYXdfc2NhbGVkX3JvdGF0ZWRfYml0bWFwLjMgIFwK WGFsX2RyYXdfc29mdF9saW5lLjMgIFwKWGFsX2RyYXdfc29mdF90cmlhbmdsZS4zICBcClhhbF9k cmF3X3NwbGluZS4zICBcClhhbF9kcmF3X3RleHQuMyAgXApYYWxfZHJhd190ZXh0Zi4zICBcClhh bF9kcmF3X3RpbnRlZF9iaXRtYXAuMyAgXApYYWxfZHJhd190aW50ZWRfYml0bWFwX3JlZ2lvbi4z ICBcClhhbF9kcmF3X3RpbnRlZF9yb3RhdGVkX2JpdG1hcC4zICBcClhhbF9kcmF3X3RpbnRlZF9z Y2FsZWRfYml0bWFwLjMgIFwKWGFsX2RyYXdfdGludGVkX3NjYWxlZF9yb3RhdGVkX2JpdG1hcC4z ICBcClhhbF9kcmF3X3RpbnRlZF9zY2FsZWRfcm90YXRlZF9iaXRtYXBfcmVnaW9uLjMgIFwKWGFs X2RyYXdfdHJpYW5nbGUuMyAgXApYYWxfZHJhd191c3RyLjMgIFwKWGFsX2Ryb3BfbmV4dF9ldmVu dC4zICBcClhhbF9kcm9wX3BhdGhfdGFpbC4zICBcClhhbF9lbWl0X3VzZXJfZXZlbnQuMyAgXApY YWxfZmNsZWFyZXJyLjMgIFwKWGFsX2ZjbG9zZS4zICBcClhhbF9mZW9mLjMgIFwKWGFsX2ZlcnJv ci4zICBcClhhbF9mZmx1c2guMyAgXApYYWxfZmdldF91c3RyLjMgIFwKWGFsX2ZnZXRjLjMgIFwK WGFsX2ZnZXRzLjMgIFwKWGFsX2ZpbGVuYW1lX2V4aXN0cy4zICBcClhhbF9maXhhY29zLjMgIFwK WGFsX2ZpeGFkZC4zICBcClhhbF9maXhhc2luLjMgIFwKWGFsX2ZpeGF0YW4uMyAgXApYYWxfZml4 YXRhbjIuMyAgXApYYWxfZml4Y2VpbC4zICBcClhhbF9maXhjb3MuMyAgXApYYWxfZml4ZGl2LjMg IFwKWGFsX2ZpeGVkLjMgIFwKWGFsX2ZpeGZsb29yLjMgIFwKWGFsX2ZpeGh5cG90LjMgIFwKWGFs X2ZpeG11bC4zICBcClhhbF9maXhzaW4uMyAgXApYYWxfZml4c3FydC4zICBcClhhbF9maXhzdWIu MyAgXApYYWxfZml4dGFuLjMgIFwKWGFsX2ZpeHRvZi4zICBcClhhbF9maXh0b2kuMyAgXApYYWxf Zml4dG9yYWRfci4zICBcClhhbF9mbGlwX2Rpc3BsYXkuMyAgXApYYWxfZmx1c2hfZXZlbnRfcXVl dWUuMyAgXApYYWxfZm9wZW4uMyAgXApYYWxfZm9wZW5fZmQuMyAgXApYYWxfZm9wZW5faW50ZXJm YWNlLjMgIFwKWGFsX2ZvcGVuX3NsaWNlLjMgIFwKWGFsX2ZwdXRjLjMgIFwKWGFsX2ZwdXRzLjMg IFwKWGFsX2ZyZWFkLjMgIFwKWGFsX2ZyZWFkMTZiZS4zICBcClhhbF9mcmVhZDE2bGUuMyAgXApY YWxfZnJlYWQzMmJlLjMgIFwKWGFsX2ZyZWFkMzJsZS4zICBcClhhbF9mcmVlLjMgIFwKWGFsX2Zy ZWVfd2l0aF9jb250ZXh0LjMgIFwKWGFsX2ZzX2VudHJ5X2V4aXN0cy4zICBcClhhbF9mc2Vlay4z ICBcClhhbF9mc2l6ZS4zICBcClhhbF9mdGVsbC4zICBcClhhbF9mdG9maXguMyAgXApYYWxfZnVu Z2V0Yy4zICBcClhhbF9md3JpdGUuMyAgXApYYWxfZndyaXRlMTZiZS4zICBcClhhbF9md3JpdGUx NmxlLjMgIFwKWGFsX2Z3cml0ZTMyYmUuMyAgXApYYWxfZndyaXRlMzJsZS4zICBcClhhbF9nZXRf YWxsZWdyb19hY29kZWNfdmVyc2lvbi4zICBcClhhbF9nZXRfYWxsZWdyb19hdWRpb192ZXJzaW9u LjMgIFwKWGFsX2dldF9hbGxlZ3JvX2NvbG9yX3ZlcnNpb24uMyAgXApYYWxfZ2V0X2FsbGVncm9f Zm9udF92ZXJzaW9uLjMgIFwKWGFsX2dldF9hbGxlZ3JvX2ltYWdlX3ZlcnNpb24uMyAgXApYYWxf Z2V0X2FsbGVncm9fbWVtZmlsZV92ZXJzaW9uLjMgIFwKWGFsX2dldF9hbGxlZ3JvX25hdGl2ZV9k aWFsb2dfdmVyc2lvbi4zICBcClhhbF9nZXRfYWxsZWdyb19waHlzZnNfdmVyc2lvbi4zICBcClhh bF9nZXRfYWxsZWdyb19wcmltaXRpdmVzX3ZlcnNpb24uMyAgXApYYWxfZ2V0X2FsbGVncm9fdHRm X3ZlcnNpb24uMyAgXApYYWxfZ2V0X2FsbGVncm9fdmVyc2lvbi4zICBcClhhbF9nZXRfYXBwX25h bWUuMyAgXApYYWxfZ2V0X2F1ZGlvX2RlcHRoX3NpemUuMyAgXApYYWxfZ2V0X2F1ZGlvX3N0cmVh bV9hdHRhY2hlZC4zICBcClhhbF9nZXRfYXVkaW9fc3RyZWFtX2NoYW5uZWxzLjMgIFwKWGFsX2dl dF9hdWRpb19zdHJlYW1fZGVwdGguMyAgXApYYWxfZ2V0X2F1ZGlvX3N0cmVhbV9ldmVudF9zb3Vy Y2UuMyAgXApYYWxfZ2V0X2F1ZGlvX3N0cmVhbV9mcmFnbWVudC4zICBcClhhbF9nZXRfYXVkaW9f c3RyZWFtX2ZyYWdtZW50cy4zICBcClhhbF9nZXRfYXVkaW9fc3RyZWFtX2ZyZXF1ZW5jeS4zICBc ClhhbF9nZXRfYXVkaW9fc3RyZWFtX2dhaW4uMyAgXApYYWxfZ2V0X2F1ZGlvX3N0cmVhbV9sZW5n dGguMyAgXApYYWxfZ2V0X2F1ZGlvX3N0cmVhbV9sZW5ndGhfc2Vjcy4zICBcClhhbF9nZXRfYXVk aW9fc3RyZWFtX3Bhbi4zICBcClhhbF9nZXRfYXVkaW9fc3RyZWFtX3BsYXlpbmcuMyAgXApYYWxf Z2V0X2F1ZGlvX3N0cmVhbV9wbGF5bW9kZS4zICBcClhhbF9nZXRfYXVkaW9fc3RyZWFtX3Bvc2l0 aW9uX3NlY3MuMyAgXApYYWxfZ2V0X2F1ZGlvX3N0cmVhbV9zcGVlZC4zICBcClhhbF9nZXRfYXZh aWxhYmxlX2F1ZGlvX3N0cmVhbV9mcmFnbWVudHMuMyAgXApYYWxfZ2V0X2JhY2tidWZmZXIuMyAg XApYYWxfZ2V0X2JpdG1hcF9mbGFncy4zICBcClhhbF9nZXRfYml0bWFwX2Zvcm1hdC4zICBcClhh bF9nZXRfYml0bWFwX2hlaWdodC4zICBcClhhbF9nZXRfYml0bWFwX3dpZHRoLjMgIFwKWGFsX2dl dF9ibGVuZGVyLjMgIFwKWGFsX2dldF9jaGFubmVsX2NvdW50LjMgIFwKWGFsX2dldF9jbGlwcGlu Z19yZWN0YW5nbGUuMyAgXApYYWxfZ2V0X2NvbmZpZ192YWx1ZS4zICBcClhhbF9nZXRfY3VycmVu dF9kaXJlY3RvcnkuMyAgXApYYWxfZ2V0X2N1cnJlbnRfZGlzcGxheS4zICBcClhhbF9nZXRfY3Vy cmVudF90cmFuc2Zvcm0uMyAgXApYYWxfZ2V0X2QzZF9kZXZpY2UuMyAgXApYYWxfZ2V0X2QzZF9z eXN0ZW1fdGV4dHVyZS4zICBcClhhbF9nZXRfZDNkX3RleHR1cmVfcG9zaXRpb24uMyAgXApYYWxf Z2V0X2QzZF92aWRlb190ZXh0dXJlLjMgIFwKWGFsX2dldF9kZWZhdWx0X21peGVyLjMgIFwKWGFs X2dldF9kaXNwbGF5X2V2ZW50X3NvdXJjZS4zICBcClhhbF9nZXRfZGlzcGxheV9mbGFncy4zICBc ClhhbF9nZXRfZGlzcGxheV9mb3JtYXQuMyAgXApYYWxfZ2V0X2Rpc3BsYXlfaGVpZ2h0LjMgIFwK WGFsX2dldF9kaXNwbGF5X21vZGUuMyAgXApYYWxfZ2V0X2Rpc3BsYXlfb3B0aW9uLjMgIFwKWGFs X2dldF9kaXNwbGF5X3JlZnJlc2hfcmF0ZS4zICBcClhhbF9nZXRfZGlzcGxheV93aWR0aC4zICBc ClhhbF9nZXRfZXJybm8uMyAgXApYYWxfZ2V0X2V2ZW50X3NvdXJjZV9kYXRhLjMgIFwKWGFsX2dl dF9maWxlX3VzZXJkYXRhLjMgIFwKWGFsX2dldF9maXJzdF9jb25maWdfZW50cnkuMyAgXApYYWxf Z2V0X2ZpcnN0X2NvbmZpZ19zZWN0aW9uLjMgIFwKWGFsX2dldF9mb250X2FzY2VudC4zICBcClhh bF9nZXRfZm9udF9kZXNjZW50LjMgIFwKWGFsX2dldF9mb250X2xpbmVfaGVpZ2h0LjMgIFwKWGFs X2dldF9mc19lbnRyeV9hdGltZS4zICBcClhhbF9nZXRfZnNfZW50cnlfY3RpbWUuMyAgXApYYWxf Z2V0X2ZzX2VudHJ5X21vZGUuMyAgXApYYWxfZ2V0X2ZzX2VudHJ5X210aW1lLjMgIFwKWGFsX2dl dF9mc19lbnRyeV9uYW1lLjMgIFwKWGFsX2dldF9mc19lbnRyeV9zaXplLjMgIFwKWGFsX2dldF9m c19pbnRlcmZhY2UuMyAgXApYYWxfZ2V0X2pveXN0aWNrLjMgIFwKWGFsX2dldF9qb3lzdGlja19h Y3RpdmUuMyAgXApYYWxfZ2V0X2pveXN0aWNrX2F4aXNfbmFtZS4zICBcClhhbF9nZXRfam95c3Rp Y2tfYnV0dG9uX25hbWUuMyAgXApYYWxfZ2V0X2pveXN0aWNrX2V2ZW50X3NvdXJjZS4zICBcClhh bF9nZXRfam95c3RpY2tfbmFtZS4zICBcClhhbF9nZXRfam95c3RpY2tfbnVtX2F4ZXMuMyAgXApY YWxfZ2V0X2pveXN0aWNrX251bV9idXR0b25zLjMgIFwKWGFsX2dldF9qb3lzdGlja19udW1fc3Rp Y2tzLjMgIFwKWGFsX2dldF9qb3lzdGlja19zdGF0ZS4zICBcClhhbF9nZXRfam95c3RpY2tfc3Rp Y2tfZmxhZ3MuMyAgXApYYWxfZ2V0X2pveXN0aWNrX3N0aWNrX25hbWUuMyAgXApYYWxfZ2V0X2tl eWJvYXJkX2V2ZW50X3NvdXJjZS4zICBcClhhbF9nZXRfa2V5Ym9hcmRfc3RhdGUuMyAgXApYYWxf Z2V0X21peGVyX2F0dGFjaGVkLjMgIFwKWGFsX2dldF9taXhlcl9jaGFubmVscy4zICBcClhhbF9n ZXRfbWl4ZXJfZGVwdGguMyAgXApYYWxfZ2V0X21peGVyX2ZyZXF1ZW5jeS4zICBcClhhbF9nZXRf bWl4ZXJfZ2Fpbi4zICBcClhhbF9nZXRfbWl4ZXJfcGxheWluZy4zICBcClhhbF9nZXRfbWl4ZXJf cXVhbGl0eS4zICBcClhhbF9nZXRfbW9uaXRvcl9pbmZvLjMgIFwKWGFsX2dldF9tb3VzZV9jdXJz b3JfcG9zaXRpb24uMyAgXApYYWxfZ2V0X21vdXNlX2V2ZW50X3NvdXJjZS4zICBcClhhbF9nZXRf bW91c2VfbnVtX2F4ZXMuMyAgXApYYWxfZ2V0X21vdXNlX251bV9idXR0b25zLjMgIFwKWGFsX2dl dF9tb3VzZV9zdGF0ZS4zICBcClhhbF9nZXRfbW91c2Vfc3RhdGVfYXhpcy4zICBcClhhbF9nZXRf bmF0aXZlX2ZpbGVfZGlhbG9nX2NvdW50LjMgIFwKWGFsX2dldF9uYXRpdmVfZmlsZV9kaWFsb2df cGF0aC4zICBcClhhbF9nZXRfbmF0aXZlX3RleHRfbG9nX2V2ZW50X3NvdXJjZS4zICBcClhhbF9n ZXRfbmV3X2JpdG1hcF9mbGFncy4zICBcClhhbF9nZXRfbmV3X2JpdG1hcF9mb3JtYXQuMyAgXApY YWxfZ2V0X25ld19kaXNwbGF5X2FkYXB0ZXIuMyAgXApYYWxfZ2V0X25ld19kaXNwbGF5X2ZsYWdz LjMgIFwKWGFsX2dldF9uZXdfZGlzcGxheV9vcHRpb24uMyAgXApYYWxfZ2V0X25ld19kaXNwbGF5 X3JlZnJlc2hfcmF0ZS4zICBcClhhbF9nZXRfbmV3X2ZpbGVfaW50ZXJmYWNlLjMgIFwKWGFsX2dl dF9uZXdfd2luZG93X3Bvc2l0aW9uLjMgIFwKWGFsX2dldF9uZXh0X2NvbmZpZ19lbnRyeS4zICBc ClhhbF9nZXRfbmV4dF9jb25maWdfc2VjdGlvbi4zICBcClhhbF9nZXRfbmV4dF9ldmVudC4zICBc ClhhbF9nZXRfbnVtX2Rpc3BsYXlfbW9kZXMuMyAgXApYYWxfZ2V0X251bV9qb3lzdGlja3MuMyAg XApYYWxfZ2V0X251bV92aWRlb19hZGFwdGVycy4zICBcClhhbF9nZXRfb3BlbmdsX2V4dGVuc2lv bl9saXN0LjMgIFwKWGFsX2dldF9vcGVuZ2xfZmJvLjMgIFwKWGFsX2dldF9vcGVuZ2xfcHJvY19h ZGRyZXNzLjMgIFwKWGFsX2dldF9vcGVuZ2xfdGV4dHVyZS4zICBcClhhbF9nZXRfb3BlbmdsX3Rl eHR1cmVfcG9zaXRpb24uMyAgXApYYWxfZ2V0X29wZW5nbF90ZXh0dXJlX3NpemUuMyAgXApYYWxf Z2V0X29wZW5nbF92YXJpYW50LjMgIFwKWGFsX2dldF9vcGVuZ2xfdmVyc2lvbi4zICBcClhhbF9n ZXRfb3JnX25hbWUuMyAgXApYYWxfZ2V0X3BhcmVudF9iaXRtYXAuMyAgXApYYWxfZ2V0X3BhdGhf YmFzZW5hbWUuMyAgXApYYWxfZ2V0X3BhdGhfY29tcG9uZW50LjMgIFwKWGFsX2dldF9wYXRoX2Ry aXZlLjMgIFwKWGFsX2dldF9wYXRoX2V4dGVuc2lvbi4zICBcClhhbF9nZXRfcGF0aF9maWxlbmFt ZS4zICBcClhhbF9nZXRfcGF0aF9udW1fY29tcG9uZW50cy4zICBcClhhbF9nZXRfcGF0aF90YWls LjMgIFwKWGFsX2dldF9waXhlbC4zICBcClhhbF9nZXRfcGl4ZWxfZm9ybWF0X2JpdHMuMyAgXApY YWxfZ2V0X3BpeGVsX3NpemUuMyAgXApYYWxfZ2V0X3NhbXBsZS4zICBcClhhbF9nZXRfc2FtcGxl X2NoYW5uZWxzLjMgIFwKWGFsX2dldF9zYW1wbGVfZGF0YS4zICBcClhhbF9nZXRfc2FtcGxlX2Rl cHRoLjMgIFwKWGFsX2dldF9zYW1wbGVfZnJlcXVlbmN5LjMgIFwKWGFsX2dldF9zYW1wbGVfaW5z dGFuY2VfYXR0YWNoZWQuMyAgXApYYWxfZ2V0X3NhbXBsZV9pbnN0YW5jZV9jaGFubmVscy4zICBc ClhhbF9nZXRfc2FtcGxlX2luc3RhbmNlX2RlcHRoLjMgIFwKWGFsX2dldF9zYW1wbGVfaW5zdGFu Y2VfZnJlcXVlbmN5LjMgIFwKWGFsX2dldF9zYW1wbGVfaW5zdGFuY2VfZ2Fpbi4zICBcClhhbF9n ZXRfc2FtcGxlX2luc3RhbmNlX2xlbmd0aC4zICBcClhhbF9nZXRfc2FtcGxlX2luc3RhbmNlX3Bh bi4zICBcClhhbF9nZXRfc2FtcGxlX2luc3RhbmNlX3BsYXlpbmcuMyAgXApYYWxfZ2V0X3NhbXBs ZV9pbnN0YW5jZV9wbGF5bW9kZS4zICBcClhhbF9nZXRfc2FtcGxlX2luc3RhbmNlX3Bvc2l0aW9u LjMgIFwKWGFsX2dldF9zYW1wbGVfaW5zdGFuY2Vfc3BlZWQuMyAgXApYYWxfZ2V0X3NhbXBsZV9p bnN0YW5jZV90aW1lLjMgIFwKWGFsX2dldF9zYW1wbGVfbGVuZ3RoLjMgIFwKWGFsX2dldF9zZXBh cmF0ZV9ibGVuZGVyLjMgIFwKWGFsX2dldF9zdGFuZGFyZF9wYXRoLjMgIFwKWGFsX2dldF9zeXN0 ZW1fY29uZmlnLjMgIFwKWGFsX2dldF90YXJnZXRfYml0bWFwLjMgIFwKWGFsX2dldF90ZXh0X2Rp bWVuc2lvbnMuMyAgXApYYWxfZ2V0X3RleHRfd2lkdGguMyAgXApYYWxfZ2V0X3RocmVhZF9zaG91 bGRfc3RvcC4zICBcClhhbF9nZXRfdGltZS4zICBcClhhbF9nZXRfdGltZXJfY291bnQuMyAgXApY YWxfZ2V0X3RpbWVyX2V2ZW50X3NvdXJjZS4zICBcClhhbF9nZXRfdGltZXJfc3BlZWQuMyAgXApY YWxfZ2V0X3RpbWVyX3N0YXJ0ZWQuMyAgXApYYWxfZ2V0X3VzdHJfZGltZW5zaW9ucy4zICBcClhh bF9nZXRfdXN0cl93aWR0aC4zICBcClhhbF9nZXRfdm9pY2VfY2hhbm5lbHMuMyAgXApYYWxfZ2V0 X3ZvaWNlX2RlcHRoLjMgIFwKWGFsX2dldF92b2ljZV9mcmVxdWVuY3kuMyAgXApYYWxfZ2V0X3Zv aWNlX3BsYXlpbmcuMyAgXApYYWxfZ2V0X3ZvaWNlX3Bvc2l0aW9uLjMgIFwKWGFsX2dldF93aW5f d2luZG93X2hhbmRsZS4zICBcClhhbF9nZXRfd2luZG93X3Bvc2l0aW9uLjMgIFwKWGFsX2dyYWJf Zm9udF9mcm9tX2JpdG1hcC4zICBcClhhbF9ncmFiX21vdXNlLjMgIFwKWGFsX2hhdmVfZDNkX25v bl9wb3cyX3RleHR1cmVfc3VwcG9ydC4zICBcClhhbF9oYXZlX2QzZF9ub25fc3F1YXJlX3RleHR1 cmVfc3VwcG9ydC4zICBcClhhbF9oYXZlX29wZW5nbF9leHRlbnNpb24uMyAgXApYYWxfaGlkZV9t b3VzZV9jdXJzb3IuMyAgXApYYWxfaG9sZF9iaXRtYXBfZHJhd2luZy4zICBcClhhbF9pZGVudGl0 eV90cmFuc2Zvcm0uMyAgXApYYWxfaW5oaWJpdF9zY3JlZW5zYXZlci4zICBcClhhbF9pbml0LjMg IFwKWGFsX2luaXRfYWNvZGVjX2FkZG9uLjMgIFwKWGFsX2luaXRfZm9udF9hZGRvbi4zICBcClhh bF9pbml0X2ltYWdlX2FkZG9uLjMgIFwKWGFsX2luaXRfcHJpbWl0aXZlc19hZGRvbi4zICBcClhh bF9pbml0X3RpbWVvdXQuMyAgXApYYWxfaW5pdF90dGZfYWRkb24uMyAgXApYYWxfaW5pdF91c2Vy X2V2ZW50X3NvdXJjZS4zICBcClhhbF9pbnNlcnRfcGF0aF9jb21wb25lbnQuMyAgXApYYWxfaW5z dGFsbF9hdWRpby4zICBcClhhbF9pbnN0YWxsX2pveXN0aWNrLjMgIFwKWGFsX2luc3RhbGxfa2V5 Ym9hcmQuMyAgXApYYWxfaW5zdGFsbF9tb3VzZS4zICBcClhhbF9pbnN0YWxsX3N5c3RlbS4zICBc ClhhbF9pbnZlcnRfdHJhbnNmb3JtLjMgIFwKWGFsX2lwaG9uZV9vdmVycmlkZV9zY3JlZW5fc2Nh bGUuMyAgXApYYWxfaXBob25lX3Byb2dyYW1faGFzX2hhbHRlZC4zICBcClhhbF9pc19hdWRpb19p bnN0YWxsZWQuMyAgXApYYWxfaXNfYml0bWFwX2RyYXdpbmdfaGVsZC4zICBcClhhbF9pc19iaXRt YXBfbG9ja2VkLjMgIFwKWGFsX2lzX2NvbXBhdGlibGVfYml0bWFwLjMgIFwKWGFsX2lzX2QzZF9k ZXZpY2VfbG9zdC4zICBcClhhbF9pc19ldmVudF9xdWV1ZV9lbXB0eS4zICBcClhhbF9pc19qb3lz dGlja19pbnN0YWxsZWQuMyAgXApYYWxfaXNfa2V5Ym9hcmRfaW5zdGFsbGVkLjMgIFwKWGFsX2lz X21vdXNlX2luc3RhbGxlZC4zICBcClhhbF9pc19zdWJfYml0bWFwLjMgIFwKWGFsX2lzX3N5c3Rl bV9pbnN0YWxsZWQuMyAgXApYYWxfaXRvZml4LjMgIFwKWGFsX2pvaW5fcGF0aHMuMyAgXApYYWxf am9pbl90aHJlYWQuMyAgXApYYWxfa2V5X2Rvd24uMyAgXApYYWxfa2V5Y29kZV90b19uYW1lLjMg IFwKWGFsX2xvYWRfYXVkaW9fc3RyZWFtLjMgIFwKWGFsX2xvYWRfYXVkaW9fc3RyZWFtX2YuMyAg XApYYWxfbG9hZF9iaXRtYXAuMyAgXApYYWxfbG9hZF9iaXRtYXBfZi4zICBcClhhbF9sb2FkX2Jp dG1hcF9mb250LjMgIFwKWGFsX2xvYWRfY29uZmlnX2ZpbGUuMyAgXApYYWxfbG9hZF9jb25maWdf ZmlsZV9mLjMgIFwKWGFsX2xvYWRfZm9udC4zICBcClhhbF9sb2FkX3NhbXBsZS4zICBcClhhbF9s b2FkX3NhbXBsZV9mLjMgIFwKWGFsX2xvYWRfdHRmX2ZvbnQuMyAgXApYYWxfbG9hZF90dGZfZm9u dF9mLjMgIFwKWGFsX2xvYWRfdHRmX2ZvbnRfc3RyZXRjaC4zICBcClhhbF9sb2FkX3R0Zl9mb250 X3N0cmV0Y2hfZi4zICBcClhhbF9sb2NrX2JpdG1hcC4zICBcClhhbF9sb2NrX2JpdG1hcF9yZWdp b24uMyAgXApYYWxfbG9ja19tdXRleC4zICBcClhhbF9tYWtlX2RpcmVjdG9yeS4zICBcClhhbF9t YWtlX3BhdGhfY2Fub25pY2FsLjMgIFwKWGFsX21ha2VfdGVtcF9maWxlLjMgIFwKWGFsX21hbGxv Yy4zICBcClhhbF9tYWxsb2Nfd2l0aF9jb250ZXh0LjMgIFwKWGFsX21hcF9yZ2IuMyAgXApYYWxf bWFwX3JnYl9mLjMgIFwKWGFsX21hcF9yZ2JhLjMgIFwKWGFsX21hcF9yZ2JhX2YuMyAgXApYYWxf bWVyZ2VfY29uZmlnLjMgIFwKWGFsX21lcmdlX2NvbmZpZ19pbnRvLjMgIFwKWGFsX21vdXNlX2J1 dHRvbl9kb3duLjMgIFwKWGFsX29wZW5fZGlyZWN0b3J5LjMgIFwKWGFsX29wZW5fZnNfZW50cnku MyAgXApYYWxfb3Blbl9tZW1maWxlLjMgIFwKWGFsX29wZW5fbmF0aXZlX3RleHRfbG9nLjMgIFwK WGFsX3BhdGhfY3N0ci4zICBcClhhbF9wZWVrX25leHRfZXZlbnQuMyAgXApYYWxfcGxheV9zYW1w bGUuMyAgXApYYWxfcGxheV9zYW1wbGVfaW5zdGFuY2UuMyAgXApYYWxfcHV0X2JsZW5kZWRfcGl4 ZWwuMyAgXApYYWxfcHV0X3BpeGVsLjMgIFwKWGFsX3JhZHRvZml4X3IuMyAgXApYYWxfcmVhZF9k aXJlY3RvcnkuMyAgXApYYWxfcmVhbGxvYy4zICBcClhhbF9yZWFsbG9jX3dpdGhfY29udGV4dC4z ICBcClhhbF9yZWJhc2VfcGF0aC4zICBcClhhbF9yZWNvbmZpZ3VyZV9qb3lzdGlja3MuMyAgXApY YWxfcmVmX2J1ZmZlci4zICBcClhhbF9yZWZfY3N0ci4zICBcClhhbF9yZWZfdXN0ci4zICBcClhh bF9yZWdpc3Rlcl9hc3NlcnRfaGFuZGxlci4zICBcClhhbF9yZWdpc3Rlcl9hdWRpb19zdHJlYW1f bG9hZGVyLjMgIFwKWGFsX3JlZ2lzdGVyX2F1ZGlvX3N0cmVhbV9sb2FkZXJfZi4zICBcClhhbF9y ZWdpc3Rlcl9iaXRtYXBfbG9hZGVyLjMgIFwKWGFsX3JlZ2lzdGVyX2JpdG1hcF9sb2FkZXJfZi4z ICBcClhhbF9yZWdpc3Rlcl9iaXRtYXBfc2F2ZXIuMyAgXApYYWxfcmVnaXN0ZXJfYml0bWFwX3Nh dmVyX2YuMyAgXApYYWxfcmVnaXN0ZXJfZXZlbnRfc291cmNlLjMgIFwKWGFsX3JlZ2lzdGVyX2Zv bnRfbG9hZGVyLjMgIFwKWGFsX3JlZ2lzdGVyX3NhbXBsZV9sb2FkZXIuMyAgXApYYWxfcmVnaXN0 ZXJfc2FtcGxlX2xvYWRlcl9mLjMgIFwKWGFsX3JlZ2lzdGVyX3NhbXBsZV9zYXZlci4zICBcClhh bF9yZWdpc3Rlcl9zYW1wbGVfc2F2ZXJfZi4zICBcClhhbF9yZWxlYXNlX2pveXN0aWNrLjMgIFwK WGFsX3JlbW92ZV9maWxlbmFtZS4zICBcClhhbF9yZW1vdmVfZnNfZW50cnkuMyAgXApYYWxfcmVt b3ZlX29wZW5nbF9mYm8uMyAgXApYYWxfcmVtb3ZlX3BhdGhfY29tcG9uZW50LjMgIFwKWGFsX3Jl cGxhY2VfcGF0aF9jb21wb25lbnQuMyAgXApYYWxfcmVzZXJ2ZV9zYW1wbGVzLjMgIFwKWGFsX3Jl c2V0X2NsaXBwaW5nX3JlY3RhbmdsZS4zICBcClhhbF9yZXNldF9uZXdfZGlzcGxheV9vcHRpb25z LjMgIFwKWGFsX3Jlc2l6ZV9kaXNwbGF5LjMgIFwKWGFsX3Jlc3QuMyAgXApYYWxfcmVzdG9yZV9k ZWZhdWx0X21peGVyLjMgIFwKWGFsX3Jlc3RvcmVfc3RhdGUuMyAgXApYYWxfcmV3aW5kX2F1ZGlv X3N0cmVhbS4zICBcClhhbF9yb3RhdGVfdHJhbnNmb3JtLjMgIFwKWGFsX3J1bl9kZXRhY2hlZF90 aHJlYWQuMyAgXApYYWxfcnVuX21haW4uMyAgXApYYWxfc2F2ZV9iaXRtYXAuMyAgXApYYWxfc2F2 ZV9iaXRtYXBfZi4zICBcClhhbF9zYXZlX2NvbmZpZ19maWxlLjMgIFwKWGFsX3NhdmVfY29uZmln X2ZpbGVfZi4zICBcClhhbF9zYXZlX3NhbXBsZS4zICBcClhhbF9zYXZlX3NhbXBsZV9mLjMgIFwK WGFsX3NjYWxlX3RyYW5zZm9ybS4zICBcClhhbF9zZWVrX2F1ZGlvX3N0cmVhbV9zZWNzLjMgIFwK WGFsX3NldF9hcHBfbmFtZS4zICBcClhhbF9zZXRfYXVkaW9fc3RyZWFtX2ZyYWdtZW50LjMgIFwK WGFsX3NldF9hdWRpb19zdHJlYW1fZ2Fpbi4zICBcClhhbF9zZXRfYXVkaW9fc3RyZWFtX2xvb3Bf c2Vjcy4zICBcClhhbF9zZXRfYXVkaW9fc3RyZWFtX3Bhbi4zICBcClhhbF9zZXRfYXVkaW9fc3Ry ZWFtX3BsYXlpbmcuMyAgXApYYWxfc2V0X2F1ZGlvX3N0cmVhbV9wbGF5bW9kZS4zICBcClhhbF9z ZXRfYXVkaW9fc3RyZWFtX3NwZWVkLjMgIFwKWGFsX3NldF9ibGVuZGVyLjMgIFwKWGFsX3NldF9j bGlwcGluZ19yZWN0YW5nbGUuMyAgXApYYWxfc2V0X2NvbmZpZ192YWx1ZS4zICBcClhhbF9zZXRf Y3VycmVudF9vcGVuZ2xfY29udGV4dC4zICBcClhhbF9zZXRfZGVmYXVsdF9taXhlci4zICBcClhh bF9zZXRfZGlzcGxheV9mbGFnLjMgIFwKWGFsX3NldF9kaXNwbGF5X2ljb24uMyAgXApYYWxfc2V0 X2Vycm5vLjMgIFwKWGFsX3NldF9ldmVudF9zb3VyY2VfZGF0YS4zICBcClhhbF9zZXRfZXhlX25h bWUuMyAgXApYYWxfc2V0X2ZzX2ludGVyZmFjZS4zICBcClhhbF9zZXRfa2V5Ym9hcmRfbGVkcy4z ICBcClhhbF9zZXRfbWVtb3J5X2ludGVyZmFjZS4zICBcClhhbF9zZXRfbWl4ZXJfZnJlcXVlbmN5 LjMgIFwKWGFsX3NldF9taXhlcl9nYWluLjMgIFwKWGFsX3NldF9taXhlcl9wbGF5aW5nLjMgIFwK WGFsX3NldF9taXhlcl9wb3N0cHJvY2Vzc19jYWxsYmFjay4zICBcClhhbF9zZXRfbWl4ZXJfcXVh bGl0eS4zICBcClhhbF9zZXRfbW91c2VfYXhpcy4zICBcClhhbF9zZXRfbW91c2VfY3Vyc29yLjMg IFwKWGFsX3NldF9tb3VzZV93LjMgIFwKWGFsX3NldF9tb3VzZV94eS4zICBcClhhbF9zZXRfbW91 c2Vfei4zICBcClhhbF9zZXRfbmV3X2JpdG1hcF9mbGFncy4zICBcClhhbF9zZXRfbmV3X2JpdG1h cF9mb3JtYXQuMyAgXApYYWxfc2V0X25ld19kaXNwbGF5X2FkYXB0ZXIuMyAgXApYYWxfc2V0X25l d19kaXNwbGF5X2ZsYWdzLjMgIFwKWGFsX3NldF9uZXdfZGlzcGxheV9vcHRpb24uMyAgXApYYWxf c2V0X25ld19kaXNwbGF5X3JlZnJlc2hfcmF0ZS4zICBcClhhbF9zZXRfbmV3X2ZpbGVfaW50ZXJm YWNlLjMgIFwKWGFsX3NldF9uZXdfd2luZG93X3Bvc2l0aW9uLjMgIFwKWGFsX3NldF9vcmdfbmFt ZS4zICBcClhhbF9zZXRfcGF0aF9kcml2ZS4zICBcClhhbF9zZXRfcGF0aF9leHRlbnNpb24uMyAg XApYYWxfc2V0X3BhdGhfZmlsZW5hbWUuMyAgXApYYWxfc2V0X3BoeXNmc19maWxlX2ludGVyZmFj ZS4zICBcClhhbF9zZXRfc2FtcGxlLjMgIFwKWGFsX3NldF9zYW1wbGVfaW5zdGFuY2VfZ2Fpbi4z ICBcClhhbF9zZXRfc2FtcGxlX2luc3RhbmNlX2xlbmd0aC4zICBcClhhbF9zZXRfc2FtcGxlX2lu c3RhbmNlX3Bhbi4zICBcClhhbF9zZXRfc2FtcGxlX2luc3RhbmNlX3BsYXlpbmcuMyAgXApYYWxf c2V0X3NhbXBsZV9pbnN0YW5jZV9wbGF5bW9kZS4zICBcClhhbF9zZXRfc2FtcGxlX2luc3RhbmNl X3Bvc2l0aW9uLjMgIFwKWGFsX3NldF9zYW1wbGVfaW5zdGFuY2Vfc3BlZWQuMyAgXApYYWxfc2V0 X3NlcGFyYXRlX2JsZW5kZXIuMyAgXApYYWxfc2V0X3N0YW5kYXJkX2ZpbGVfaW50ZXJmYWNlLjMg IFwKWGFsX3NldF9zdGFuZGFyZF9mc19pbnRlcmZhY2UuMyAgXApYYWxfc2V0X3N5c3RlbV9tb3Vz ZV9jdXJzb3IuMyAgXApYYWxfc2V0X3RhcmdldF9iYWNrYnVmZmVyLjMgIFwKWGFsX3NldF90YXJn ZXRfYml0bWFwLjMgIFwKWGFsX3NldF90aHJlYWRfc2hvdWxkX3N0b3AuMyAgXApYYWxfc2V0X3Rp bWVyX2NvdW50LjMgIFwKWGFsX3NldF90aW1lcl9zcGVlZC4zICBcClhhbF9zZXRfdm9pY2VfcGxh eWluZy4zICBcClhhbF9zZXRfdm9pY2VfcG9zaXRpb24uMyAgXApYYWxfc2V0X3dpbmRvd19wb3Np dGlvbi4zICBcClhhbF9zZXRfd2luZG93X3RpdGxlLjMgIFwKWGFsX3Nob3dfbW91c2VfY3Vyc29y LjMgIFwKWGFsX3Nob3dfbmF0aXZlX2ZpbGVfZGlhbG9nLjMgIFwKWGFsX3Nob3dfbmF0aXZlX21l c3NhZ2VfYm94LjMgIFwKWGFsX3NodXRkb3duX2ZvbnRfYWRkb24uMyAgXApYYWxfc2h1dGRvd25f aW1hZ2VfYWRkb24uMyAgXApYYWxfc2h1dGRvd25fcHJpbWl0aXZlc19hZGRvbi4zICBcClhhbF9z aHV0ZG93bl90dGZfYWRkb24uMyAgXApYYWxfc2lnbmFsX2NvbmQuMyAgXApYYWxfc3RhcnRfdGhy ZWFkLjMgIFwKWGFsX3N0YXJ0X3RpbWVyLjMgIFwKWGFsX3N0b3Bfc2FtcGxlLjMgIFwKWGFsX3N0 b3Bfc2FtcGxlX2luc3RhbmNlLjMgIFwKWGFsX3N0b3Bfc2FtcGxlcy4zICBcClhhbF9zdG9wX3Rp bWVyLjMgIFwKWGFsX3N0b3JlX3N0YXRlLjMgIFwKWGFsX3RvZ2dsZV9kaXNwbGF5X2ZsYWcuMyAg XApYYWxfdHJhbnNmb3JtX2Nvb3JkaW5hdGVzLjMgIFwKWGFsX3RyYW5zbGF0ZV90cmFuc2Zvcm0u MyAgXApYYWxfdW5ncmFiX21vdXNlLjMgIFwKWGFsX3VuaW5zdGFsbF9hdWRpby4zICBcClhhbF91 bmluc3RhbGxfam95c3RpY2suMyAgXApYYWxfdW5pbnN0YWxsX2tleWJvYXJkLjMgIFwKWGFsX3Vu aW5zdGFsbF9tb3VzZS4zICBcClhhbF91bmluc3RhbGxfc3lzdGVtLjMgIFwKWGFsX3VubG9ja19i aXRtYXAuMyAgXApYYWxfdW5sb2NrX211dGV4LjMgIFwKWGFsX3VubWFwX3JnYi4zICBcClhhbF91 bm1hcF9yZ2JfZi4zICBcClhhbF91bm1hcF9yZ2JhLjMgIFwKWGFsX3VubWFwX3JnYmFfZi4zICBc ClhhbF91bnJlZl91c2VyX2V2ZW50LjMgIFwKWGFsX3VucmVnaXN0ZXJfZXZlbnRfc291cmNlLjMg IFwKWGFsX3VwZGF0ZV9kaXNwbGF5X3JlZ2lvbi4zICBcClhhbF91cGRhdGVfZnNfZW50cnkuMyAg XApYYWxfdXNlX3RyYW5zZm9ybS4zICBcClhhbF91c3RyX2FwcGVuZC4zICBcClhhbF91c3RyX2Fw cGVuZF9jaHIuMyAgXApYYWxfdXN0cl9hcHBlbmRfY3N0ci4zICBcClhhbF91c3RyX2FwcGVuZGYu MyAgXApYYWxfdXN0cl9hc3NpZ24uMyAgXApYYWxfdXN0cl9hc3NpZ25fY3N0ci4zICBcClhhbF91 c3RyX2Fzc2lnbl9zdWJzdHIuMyAgXApYYWxfdXN0cl9jb21wYXJlLjMgIFwKWGFsX3VzdHJfZHVw LjMgIFwKWGFsX3VzdHJfZHVwX3N1YnN0ci4zICBcClhhbF91c3RyX2VtcHR5X3N0cmluZy4zICBc ClhhbF91c3RyX2VuY29kZV91dGYxNi4zICBcClhhbF91c3RyX2VxdWFsLjMgIFwKWGFsX3VzdHJf ZmluZF9jaHIuMyAgXApYYWxfdXN0cl9maW5kX2NzZXQuMyAgXApYYWxfdXN0cl9maW5kX2NzZXRf Y3N0ci4zICBcClhhbF91c3RyX2ZpbmRfY3N0ci4zICBcClhhbF91c3RyX2ZpbmRfcmVwbGFjZS4z ICBcClhhbF91c3RyX2ZpbmRfcmVwbGFjZV9jc3RyLjMgIFwKWGFsX3VzdHJfZmluZF9zZXQuMyAg XApYYWxfdXN0cl9maW5kX3NldF9jc3RyLjMgIFwKWGFsX3VzdHJfZmluZF9zdHIuMyAgXApYYWxf dXN0cl9mcmVlLjMgIFwKWGFsX3VzdHJfZ2V0LjMgIFwKWGFsX3VzdHJfZ2V0X25leHQuMyAgXApY YWxfdXN0cl9oYXNfcHJlZml4LjMgIFwKWGFsX3VzdHJfaGFzX3ByZWZpeF9jc3RyLjMgIFwKWGFs X3VzdHJfaGFzX3N1ZmZpeC4zICBcClhhbF91c3RyX2hhc19zdWZmaXhfY3N0ci4zICBcClhhbF91 c3RyX2luc2VydC4zICBcClhhbF91c3RyX2luc2VydF9jaHIuMyAgXApYYWxfdXN0cl9pbnNlcnRf Y3N0ci4zICBcClhhbF91c3RyX2xlbmd0aC4zICBcClhhbF91c3RyX2x0cmltX3dzLjMgIFwKWGFs X3VzdHJfbmNvbXBhcmUuMyAgXApYYWxfdXN0cl9uZXcuMyAgXApYYWxfdXN0cl9uZXdfZnJvbV9i dWZmZXIuMyAgXApYYWxfdXN0cl9uZXdfZnJvbV91dGYxNi4zICBcClhhbF91c3RyX25ld2YuMyAg XApYYWxfdXN0cl9uZXh0LjMgIFwKWGFsX3VzdHJfb2Zmc2V0LjMgIFwKWGFsX3VzdHJfcHJldi4z ICBcClhhbF91c3RyX3ByZXZfZ2V0LjMgIFwKWGFsX3VzdHJfcmVtb3ZlX2Noci4zICBcClhhbF91 c3RyX3JlbW92ZV9yYW5nZS4zICBcClhhbF91c3RyX3JlcGxhY2VfcmFuZ2UuMyAgXApYYWxfdXN0 cl9yZmluZF9jaHIuMyAgXApYYWxfdXN0cl9yZmluZF9jc3RyLjMgIFwKWGFsX3VzdHJfcmZpbmRf c3RyLjMgIFwKWGFsX3VzdHJfcnRyaW1fd3MuMyAgXApYYWxfdXN0cl9zZXRfY2hyLjMgIFwKWGFs X3VzdHJfc2l6ZS4zICBcClhhbF91c3RyX3NpemVfdXRmMTYuMyAgXApYYWxfdXN0cl90b19idWZm ZXIuMyAgXApYYWxfdXN0cl90cmltX3dzLjMgIFwKWGFsX3VzdHJfdHJ1bmNhdGUuMyAgXApYYWxf dXN0cl92YXBwZW5kZi4zICBcClhhbF91dGYxNl9lbmNvZGUuMyAgXApYYWxfdXRmMTZfd2lkdGgu MyAgXApYYWxfdXRmOF9lbmNvZGUuMyAgXApYYWxfdXRmOF93aWR0aC4zICBcClhhbF93YWl0X2Nv bmQuMyAgXApYYWxfd2FpdF9jb25kX3VudGlsLjMgIFwKWGFsX3dhaXRfZm9yX2V2ZW50LjMgIFwK WGFsX3dhaXRfZm9yX2V2ZW50X3RpbWVkLjMgIFwKWGFsX3dhaXRfZm9yX2V2ZW50X3VudGlsLjMg IFwKWGFsX3dhaXRfZm9yX3ZzeW5jLjMgIFwKZjQ1OTI4OGNhOWJlZjI5ZjA0YzM5N2Y5ZmViMzA2 MWMKZXhpdAoK --00248c7117854091f904c755baae-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 15 23:00:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCEE0106566B for ; Wed, 15 Aug 2012 23: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 8DEC78FC0C for ; Wed, 15 Aug 2012 23: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 q7FN0P8h013843 for ; Wed, 15 Aug 2012 23: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 q7FN0PK9013835; Wed, 15 Aug 2012 23:00:25 GMT (envelope-from gnats) Date: Wed, 15 Aug 2012 23:00:25 GMT Message-Id: <201208152300.q7FN0PK9013835@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/170524: devel/ding-libs fails to build in tinderbox 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: Wed, 15 Aug 2012 23:00:25 -0000 The following reply was made to PR ports/170524; it has been noted by GNATS. From: Michael Scheidell To: , Cc: Subject: Re: ports/170524: devel/ding-libs fails to build in tinderbox Date: Wed, 15 Aug 2012 18:52:38 -0400 --------------020602030007060805070109 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit look at the makefile. see what it does. do a 'make exact' cd into work/* do a ../configure --help. see if there is a knob to turn off docs. use 'sed' (repinline_cmd) to patch Makefile.(in). one of those. if you need help, I suggest you join the FreeBSD-ports@ mailing list and ask detailed questions there. -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell --------------020602030007060805070109 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit look at the makefile. see what it does.

do a 'make exact'  cd into work/*
do a ../configure --help. see if there is a knob to turn off docs.
use 'sed' (repinline_cmd) to patch Makefile.(in).

one of those.

if you need help, I suggest you join the FreeBSD-ports@ mailing list and ask detailed questions there.

--
Michael Scheidell, CTO
> | SECNAP Network Security Corporation
d: +1.561.948.2259
w: http://people.freebsd.org/~scheidell
--------------020602030007060805070109-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 01:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8534E1065673 for ; Thu, 16 Aug 2012 01: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 5B1DB8FC12 for ; Thu, 16 Aug 2012 01: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 q7G1A9Nc034417 for ; Thu, 16 Aug 2012 01: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 q7G1A9g0034416; Thu, 16 Aug 2012 01:10:09 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 01:10:09 GMT Resent-Message-Id: <201208160110.q7G1A9g0034416@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Helfman Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D836C106566C; Thu, 16 Aug 2012 01:03:42 +0000 (UTC) (envelope-from jhelfman@experts-exchange.com) Received: from mail.dw.redsrci.com (mail.pub.dw.redsrci.com [72.29.183.251]) by mx1.freebsd.org (Postfix) with ESMTP id B7C9C8FC15; Thu, 16 Aug 2012 01:03:42 +0000 (UTC) Received: from mail.dw.redsrci.com (localhost [127.0.0.1]) by mail.dw.redsrci.com (Postfix) with ESMTP id 42F13745AF7; Wed, 15 Aug 2012 18:03:34 -0700 (PDT) Received: from mail.dw.redsrci.com ([127.0.0.1]) by mail.dw.redsrci.com (mail.dw.redsrci.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gihHlgzFObjU; Wed, 15 Aug 2012 18:03:34 -0700 (PDT) Received: from experts-exchange.com (unknown [192.168.103.120]) by mail.dw.redsrci.com (Postfix) with SMTP id 1BB28745AF6; Wed, 15 Aug 2012 18:03:34 -0700 (PDT) Received: (nullmailer pid 11214 invoked by uid 1001); Thu, 16 Aug 2012 01:01:29 -0000 Message-Id: <1345078889.383769.11213.nullmailer@experts-exchange.com> Date: Wed, 15 Aug 2012 18:01:29 -0700 From: Jason Helfman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dhn@FreeBSD.org Subject: ports/170659: [PATCH] multimedia/youtube-viewer: Tighten MASTER_SITE, drop chmod X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 01:10:09 -0000 >Number: 170659 >Category: ports >Synopsis: [PATCH] multimedia/youtube-viewer: Tighten MASTER_SITE, drop chmod >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 Aug 16 01:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason Helfman >Release: FreeBSD 8.3-RELEASE amd64 >Organization: >Environment: System: FreeBSD dormouse.experts-exchange.com 8.3-RELEASE FreeBSD 8.3-RELEASE #0: Mon Apr 9 21:23:18 UTC >Description: Simplify GOOGLE_CODE MASTER_SITE with PROJECTHOST definition. INSTALL_SCRIPT installs with 555, so chmod may be dropped, or use: INSTALL_SCRIPT -m ${WRKDIR}/youtube-viewer ${PREFIX}/bin/ Port maintainer (dhn@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- youtube-viewer-2.5.5_1.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 302609) +++ Makefile (working copy) @@ -9,7 +9,7 @@ PORTVERSION= 2.5.5 PORTREVISION= 1 CATEGORIES= multimedia -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE:S|youtube|trizen|g} \ +MASTER_SITES= GOOGLE_CODE \ ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= dhn PKGNAMESUFFIX= -viewer @@ -23,6 +23,7 @@ p5-Term-ANSIColor>=0:${PORTSDIR}/devel/p5-Term-ANSIColor \ mplayer:${PORTSDIR}/multimedia/mplayer +PROJECTHOST= trizen USE_PERL5_RUN= yes NO_BUILD= yes PLIST_FILES= bin/youtube-viewer @@ -31,7 +32,6 @@ @${REINPLACE_CMD} -e "s|#!/usr/bin/perl|#!${PERL}|g" ${WRKDIR}/youtube-viewer do-install: - @${CHMOD} +x ${WRKDIR}/youtube-viewer @${INSTALL_SCRIPT} ${WRKDIR}/youtube-viewer ${PREFIX}/bin/ .include --- youtube-viewer-2.5.5_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 01:10:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A235106566B; Thu, 16 Aug 2012 01:10: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 2D3E48FC15; Thu, 16 Aug 2012 01:10: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 q7G1AOJC034550; Thu, 16 Aug 2012 01:10:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7G1AOMd034546; Thu, 16 Aug 2012 01:10:24 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 01:10:24 GMT Message-Id: <201208160110.q7G1AOMd034546@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dhn@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170659: [PATCH] multimedia/youtube-viewer: Tighten MASTER_SITE, drop chmod X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 01:10:24 -0000 Synopsis: [PATCH] multimedia/youtube-viewer: Tighten MASTER_SITE, drop chmod Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 16 01:10:23 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170659 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 05:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DE17106566B for ; Thu, 16 Aug 2012 05: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 44A138FC15 for ; Thu, 16 Aug 2012 05: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 q7G5UBhV064050 for ; Thu, 16 Aug 2012 05: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 q7G5UBMx064047; Thu, 16 Aug 2012 05:30:11 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 05:30:11 GMT Resent-Message-Id: <201208160530.q7G5UBMx064047@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Oleg A. Mamontov" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73C1A106566C for ; Thu, 16 Aug 2012 05:22:07 +0000 (UTC) (envelope-from lonerr@helene.mamontov.net) Received: from sedna.mamontov.net (sedna.mamontov.net [88.198.25.150]) by mx1.freebsd.org (Postfix) with ESMTP id 312718FC0C for ; Thu, 16 Aug 2012 05:22:06 +0000 (UTC) Received: from helene.mamontov.net ([88.198.25.151]) by sedna.mamontov.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.75 (FreeBSD)) (envelope-from ) id 1T1sGY-000MQw-TR for FreeBSD-gnats-submit@freebsd.org; Thu, 16 Aug 2012 09:05:06 +0400 Received: from lonerr by helene.mamontov.net with local (Exim 4.72 (FreeBSD)) (envelope-from ) id 1T1sGY-000MQi-MR for FreeBSD-gnats-submit@freebsd.org; Thu, 16 Aug 2012 09:05:06 +0400 Message-Id: Date: Thu, 16 Aug 2012 09:05:06 +0400 From: "Oleg A. Mamontov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170660: [MAINTAINER] net/p5-URI-SmartURI: update to 0.032 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 05:30:11 -0000 >Number: 170660 >Category: ports >Synopsis: [MAINTAINER] net/p5-URI-SmartURI: update to 0.032 >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 Aug 16 05:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oleg A. Mamontov >Release: FreeBSD 8.3-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD helene.mamontov.net 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #2: Sat Feb 18 11:23:40 MSK 2012 >Description: - Update to 0.032 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-URI-SmartURI-0.032.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/p5-URI-SmartURI/Makefile /home/lonerr/ports/p5-URI-SmartURI/Makefile --- /usr/ports/net/p5-URI-SmartURI/Makefile 2012-03-19 02:07:36.000000000 +0400 +++ /home/lonerr/ports/p5-URI-SmartURI/Makefile 2012-08-16 09:03:46.197392330 +0400 @@ -6,8 +6,7 @@ # PORTNAME= URI-SmartURI -PORTVERSION= 0.031 -PORTREVISION= 1 +PORTVERSION= 0.032 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -17,9 +16,10 @@ BUILD_DEPENDS= p5-Class-C3-Componentised>=0:${PORTSDIR}/devel/p5-Class-C3-Componentised \ p5-File-Find-Rule>=0:${PORTSDIR}/devel/p5-File-Find-Rule \ + p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-MRO-Compat>=0.09:${PORTSDIR}/devel/p5-MRO-Compat \ p5-Moose>=0:${PORTSDIR}/devel/p5-Moose \ - p5-URI>=0:${PORTSDIR}/net/p5-URI \ + p5-URI>=1.51:${PORTSDIR}/net/p5-URI \ p5-namespace-clean>=0:${PORTSDIR}/devel/p5-namespace-clean RUN_DEPENDS:= ${BUILD_DEPENDS} diff -ruN --exclude=CVS /usr/ports/net/p5-URI-SmartURI/distinfo /home/lonerr/ports/p5-URI-SmartURI/distinfo --- /usr/ports/net/p5-URI-SmartURI/distinfo 2011-03-21 02:30:37.000000000 +0300 +++ /home/lonerr/ports/p5-URI-SmartURI/distinfo 2012-08-16 09:01:39.994544935 +0400 @@ -1,2 +1,2 @@ -SHA256 (URI-SmartURI-0.031.tar.gz) = 30d1dde0a0315f350ee9f57ec9fd7aadc870fca449cd3a30fe2c072a3fb89afe -SIZE (URI-SmartURI-0.031.tar.gz) = 30445 +SHA256 (URI-SmartURI-0.032.tar.gz) = eb174b794622e142b7d094f6a7e36a7ba4fc8bbcf2485e103ee3da35ebcc4f2c +SIZE (URI-SmartURI-0.032.tar.gz) = 31991 --- p5-URI-SmartURI-0.032.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 05:30:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5CD6106564A; Thu, 16 Aug 2012 05: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 890508FC0A; Thu, 16 Aug 2012 05: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 q7G5UMCC064744; Thu, 16 Aug 2012 05: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 q7G5UMiJ064738; Thu, 16 Aug 2012 05:30:22 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 05:30:22 GMT Message-Id: <201208160530.q7G5UMiJ064738@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170660: [MAINTAINER] net/p5-URI-SmartURI: update to 0.032 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 05:30:22 -0000 Synopsis: [MAINTAINER] net/p5-URI-SmartURI: update to 0.032 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 16 05:30:21 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170660 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 08:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD42410658CA for ; Thu, 16 Aug 2012 08: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 95AC38FC16 for ; Thu, 16 Aug 2012 08: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 q7G8UBcZ098143 for ; Thu, 16 Aug 2012 08: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 q7G8UBKJ098139; Thu, 16 Aug 2012 08:30:11 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 08:30:11 GMT Resent-Message-Id: <201208160830.q7G8UBKJ098139@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEC021065672 for ; Thu, 16 Aug 2012 08:25:01 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 598A78FC0A for ; Thu, 16 Aug 2012 08:25:00 +0000 (UTC) Received: (qmail invoked by alias); 16 Aug 2012 08:24:58 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp036) with SMTP; 16 Aug 2012 10:24:58 +0200 Received: by something.email.com (sSMTP sendmail emulation); Thu, 16 Aug 2012 10:24:58 +0200 Message-Id: <20120816082501.DEC021065672@hub.freebsd.org> Date: Thu, 16 Aug 2012 10:24:58 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170661: [NEW PORT] graphics/py27-pyglet-devel: Cross-platform windowing and multimedia 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, 16 Aug 2012 08:30:11 -0000 >Number: 170661 >Category: ports >Synopsis: [NEW PORT] graphics/py27-pyglet-devel: Cross-platform windowing and multimedia library for Python >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 Aug 16 08:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: pyglet provides an object-oriented programming interface for developing games and other visually-rich applications for Windows, Mac OS X and Linux. Some of the features of pyglet are: * No external dependencies or installation requirements. For most application and game requirements, pyglet needs nothing else besides Python, simplifying distribution and installation. * Take advantage of multiple windows and multi-monitor desktops. pyglet allows you to use as many windows as you need, and is fully aware of multi-monitor setups for use with fullscreen games. * Load images, sound, music and video in almost any format. pyglet can optionally use AVbin to play back audio formats such as MP3, OGG/Vorbis and WMA, and video formats such as DivX, MPEG-2, H.264, WMV and Xvid. pyglet is provided under the BSD open-source license, allowing you to use it for both commerical and other open-source projects with very little restriction. WWW: http://pyglet.org/ Generated and tested manually, tested with port test and with RedPorts (all RELEASES), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: --- .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: # # py-pyglet-devel # py-pyglet-devel/Makefile # py-pyglet-devel/distinfo # py-pyglet-devel/pkg-descr # py-pyglet-devel/pkg-plist # echo c - py-pyglet-devel mkdir -p py-pyglet-devel > /dev/null 2>&1 echo x - py-pyglet-devel/Makefile sed 's/^X//' >py-pyglet-devel/Makefile << '3affff6b8c1a8c0e68203b8bda750172' X# New ports collection makefile for: pyglet-devel X# Date created: 2012-08-13 X# Whom: nemysis@gmx.ch X# X# $FreeBSD$ X# X XPORTNAME= pyglet XPORTVERSION= 1.2 XCATEGORIES= graphics multimedia x11-toolkits python XMASTER_SITES= GOOGLE_CODE XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} XPKGNAMESUFFIX= -devel XDISTNAME= ${PORTNAME}-${DISTVERSION}alpha1 X XMAINTAINER= nemysis@gmx.ch XCOMMENT= Cross-platform windowing and multimedia library for Python X XLICENSE= BSD XLICENSE_FILE= ${WRKSRC}/LICENSE X XLIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \ X fontconfig:${PORTSDIR}/x11-fonts/fontconfig X XOPTIONS_DEFINE= DATA XOPTIONS_DEFAULT= DATA X XUSE_PYTHON= yes XUSE_PYDISTUTILS= yes XUSE_GL= gl glu XUSE_OPENAL= al XCONFLICTS= py-pyglet-[0-9]* X XPORTDATA= * XPORTDOCS= CHANGELOG NOTICE README XDATADIR= ${PYTHON_SITELIBDIR}/${PORTNAME} XPYDISTUTILS_EGGINFO= ${DISTNAME}-py${PYTHON_VER}.egg-info X X.include X.include X Xpost-patch: X @(cd ${WRKSRC}/pyglet/ && ${REINPLACE_CMD} -e 's|/usr/include|${PREFIX}/include|g' gl/gl.py \ X gl/glext_arb.py gl/glext_nv.py gl/glu.py gl/glx.py gl/glxext_arb.py gl/glxext_nv.py \ X input/evdev_constants.py libs/x11/cursorfont.py libs/x11/xf86vmode.py libs/x11/xinerama.py \ X libs/x11/xinput.py libs/x11/xlib.py libs/x11/xsync.py media/drivers/openal/lib_alc.py \ X media/drivers/openal/lib_openal.py media/drivers/pulse/lib_pulseaudio.py) X Xpost-install: X# Documentation X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${DOCSDIR} X. for f in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X. endfor X.endif X X# Pixmaps X ${INSTALL_DATA} ${WRKSRC}/examples/${PORTNAME}*.png ${PREFIX}/share/pixmaps X# Examples X cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR} X X.include 3affff6b8c1a8c0e68203b8bda750172 echo x - py-pyglet-devel/distinfo sed 's/^X//' >py-pyglet-devel/distinfo << 'ba40a72ce709ecf0bde1eb13b28ea55b' XSHA256 (pyglet-1.2alpha1.tar.gz) = 3192cdadd032baf1361136ec05a30471b514566edda5b9db3a6f7a76ac5aff34 XSIZE (pyglet-1.2alpha1.tar.gz) = 2014080 ba40a72ce709ecf0bde1eb13b28ea55b echo x - py-pyglet-devel/pkg-descr sed 's/^X//' >py-pyglet-devel/pkg-descr << 'de757cb42bf41a655cf596a1332b9d34' Xpyglet provides an object-oriented programming interface for Xdeveloping games and other visually-rich applications for XWindows, Mac OS X and Linux. Some of the features of pyglet are: X X * No external dependencies or installation requirements. X For most application and game requirements, pyglet needs nothing X else besides Python, simplifying distribution and installation. X * Take advantage of multiple windows and multi-monitor desktops. X pyglet allows you to use as many windows as you need, and is fully X aware of multi-monitor setups for use with fullscreen games. X * Load images, sound, music and video in almost any format. X pyglet can optionally use AVbin to play back audio formats such as X MP3, OGG/Vorbis and WMA, and video formats such as DivX, MPEG-2, X H.264, WMV and Xvid. X Xpyglet is provided under the BSD open-source license, allowing you Xto use it for both commerical and other open-source projects with Xvery little restriction. X XWWW: http://pyglet.org/ de757cb42bf41a655cf596a1332b9d34 echo x - py-pyglet-devel/pkg-plist sed 's/^X//' >py-pyglet-devel/pkg-plist << 'a28253697c450727c115f05cc38ff9dc' X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/apple_remote.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/apple_remote_demo.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/README X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/assets/app.icns X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/assets/app.ico X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/assets/ship.svg X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/astraea.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/asteroid1.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/asteroid2.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/asteroid3.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/bullet.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/bullet.wav X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/explosion.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/explosion.wav X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/pointer.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/ship.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/smoke.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res/starfield.jpg X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/setup.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/events.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fixed_resolution.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/html_label.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/image_convert.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/image_display.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/input.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/joystick.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/media_info.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/media_player.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/multiple_windows.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/noisy/README X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/noisy/ball.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/noisy/ball.wav X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/noisy/noisy.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/opengl.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/opengl_3.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programming_guide/animation.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programming_guide/dinosaur.gif X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programming_guide/events.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programming_guide/hello_world.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programming_guide/image_viewer.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programming_guide/kitten.jpg X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programming_guide/window_subclass.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyglet.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/show_input.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/README X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/reader.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/res/bass.ogg X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/res/drums.ogg X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/res/guitar.ogg X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/res/piano.ogg X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/res/space.txt X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/soundspace.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tablet.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/text_input.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timer.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/video.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/window_platform_event.py Xshare/pixmaps/pyglet.png X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace/res X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundspace X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/programming_guide X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/noisy X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/res X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea/assets X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/astraea X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%% X@dirrmtry %%PYTHON_SITELIBDIR%% X@dirrmtry lib/python2.7 a28253697c450727c115f05cc38ff9dc exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 08:30:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E3EC10658D5 for ; Thu, 16 Aug 2012 08: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 178A98FC19 for ; Thu, 16 Aug 2012 08: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 q7G8UBqe098168 for ; Thu, 16 Aug 2012 08: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 q7G8UB3t098167; Thu, 16 Aug 2012 08:30:11 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 08:30:11 GMT Resent-Message-Id: <201208160830.q7G8UB3t098167@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FDB41065702 for ; Thu, 16 Aug 2012 08:25:12 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 01F258FC08 for ; Thu, 16 Aug 2012 08:25:11 +0000 (UTC) Received: (qmail invoked by alias); 16 Aug 2012 08:25:10 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp016) with SMTP; 16 Aug 2012 10:25:10 +0200 Received: by something.email.com (sSMTP sendmail emulation); Thu, 16 Aug 2012 10:25:10 +0200 Message-Id: <20120816082512.7FDB41065702@hub.freebsd.org> Date: Thu, 16 Aug 2012 10:25:10 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170662: [NEW PORT] devel/pymunk: A easy-to-use pythonic 2d physics library built on top of Chipmunk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 08:30:12 -0000 >Number: 170662 >Category: ports >Synopsis: [NEW PORT] devel/pymunk: A easy-to-use pythonic 2d physics library built on top of Chipmunk >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 Aug 16 08:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: pymunk vision is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python. It is built on top of the very nice 2d physics library Chipmunk WWW: https://code.google.com/p/pymunk/ pymunk vision use new FreeBSD Port graphics/py-pyglet-devel Generated and tested manually, tested with port test and with RedPorts (all RELEASES), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: --- .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: # # pymunk # pymunk/Makefile # pymunk/pkg-descr # pymunk/distinfo # pymunk/pkg-plist # echo c - pymunk mkdir -p pymunk > /dev/null 2>&1 echo x - pymunk/Makefile sed 's/^X//' >pymunk/Makefile << 'fda5315ba8acb7aa9a6b227d5a7144c2' X# New Ports collection makefile for: pymunk X# Date created: 2012-08-13 X# Whom: nemysis@gmx.ch X# X# $FreeBSD$ X# X XPORTNAME= pymunk XPORTVERSION= 2.1.0 XCATEGORIES= devel XMASTER_SITES= GOOGLE_CODE XDIST_SUBDIR= python X XMAINTAINER= nemysis@gmx.ch XCOMMENT= A easy-to-use pythonic 2d physics library built on top of Chipmunk X XLICENSE= BSD XLICENSE_FILE= ${WRKSRC}/LICENSE.txt X XRUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game \ X ${PYTHON_SITELIBDIR}/pyglet/__init__.py:${PORTSDIR}/graphics/py-pyglet-devel X XOPTIONS_DEFINE= DATA XOPTIONS_DEFAULT= DATA X XUSE_ZIP= yes XUSE_GL= yes XUSE_PYTHON= yes XUSE_PYDISTUTILS= yes X XPORTDATA= * XPORTDOCS= README.txt THANKS.txt XDATADIR= ${PYTHON_SITELIBDIR}/${PORTNAME} X X.include X Xpost-install: X#Data X.if ${PORT_OPTIONS:MDATA} X ${MKDIR} ${DATADIR} X. for d in chipmunk_src pymunk tests tools X @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${DATADIR}) X. endfor X.endif X X# Pixmaps X ${INSTALL_DATA} ${WRKSRC}/docs/pymunk_logo_googlecode.png ${PREFIX}/share/pixmaps/${PORTNAME}.png X X# Documentation X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${DOCSDIR} X. for f in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X. endfor X.endif X X# Examples X cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR} X X.include fda5315ba8acb7aa9a6b227d5a7144c2 echo x - pymunk/pkg-descr sed 's/^X//' >pymunk/pkg-descr << '23ed1a8113c75183806e4dd0185c57dd' Xpymunk vision is a easy-to-use pythonic 2d physics library that can be used Xwhenever you need 2d rigid body physics from Python. XIt is built on top of the very nice 2d physics library Chipmunk X XWWW: https://code.google.com/p/pymunk/ 23ed1a8113c75183806e4dd0185c57dd echo x - pymunk/distinfo sed 's/^X//' >pymunk/distinfo << 'e8d45947dde37d8be1d3c7a8d74c4e4d' XSHA256 (python/pymunk-2.1.0.zip) = 5d19261d023522921f600e48f9b84933bf4edcf8d3c7c8805915e9e5d184766c XSIZE (python/pymunk-2.1.0.zip) = 546972 e8d45947dde37d8be1d3c7a8d74c4e4d echo x - pymunk/pkg-plist sed 's/^X//' >pymunk/pkg-plist << 'b2a2dcf3d94033b1ab219b1d4acbeadf' X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/balls_and_lines.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basic_test.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bouncing_balls.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/box2d_pyramid.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/box2d_vertical_stack.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/contact_and_no_flipy.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/contact_with_friction.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flipper.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/newtons_cradle.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/playground.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/point_query.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polygon_triangulation.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/py2exe_setup__basic_test.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pymunk_logo_googlecode.png X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slide_and_pinjoint.py X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/using_sprites.py Xshare/pixmaps/pymunk.png X@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%% X@dirrmtry share/applications X@dirrmtry %%PYTHON_SITELIBDIR%%/pymunk X@dirrmtry %%PYTHON_SITELIBDIR%% X@dirrmtry lib/python2.7 b2a2dcf3d94033b1ab219b1d4acbeadf exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 11:00:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A14A1065672 for ; Thu, 16 Aug 2012 11:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6E2008FC12 for ; Thu, 16 Aug 2012 11:00: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 q7GB0KCC021713 for ; Thu, 16 Aug 2012 11:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GB0KPh021712; Thu, 16 Aug 2012 11:00:20 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 11:00:20 GMT Resent-Message-Id: <201208161100.q7GB0KPh021712@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, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42DC0106566C for ; Thu, 16 Aug 2012 10:57:12 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 15B398FC08 for ; Thu, 16 Aug 2012 10:57:11 +0000 (UTC) Received: by pbbrp2 with SMTP id rp2so1505351pbb.13 for ; Thu, 16 Aug 2012 03:57:11 -0700 (PDT) Received: by 10.66.88.202 with SMTP id bi10mr1673260pab.10.1345114631487; Thu, 16 Aug 2012 03:57:11 -0700 (PDT) Received: from freebsd-9-amd64.localdomain (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPS id sr3sm2460107pbc.44.2012.08.16.03.57.09 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 16 Aug 2012 03:57:10 -0700 (PDT) Received: by freebsd-9-amd64.localdomain (Postfix, from userid 1001) id 119C83A03E; Thu, 16 Aug 2012 20:57:03 +1000 (EST) Message-Id: <20120816105704.119C83A03E@freebsd-9-amd64.localdomain> Date: Thu, 16 Aug 2012 20:57:03 +1000 (EST) From: Kubilay Kocak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170665: [MAINTAINER] devel/py-rauth: update to 0.4.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 11:00:20 -0000 >Number: 170665 >Category: ports >Synopsis: [MAINTAINER] devel/py-rauth: update to 0.4.15 >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 Aug 16 11:00:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD freebsd-9-amd64 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Sat Jul 7 21:26:56 EST >Description: - Update to 0.4.15 ==[QA]== - port test clean - redports build clean: https://redports.org/buildarchive/20120816100246-42568/ Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- py27-rauth-0.4.15.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/py-rauth/Makefile ./Makefile --- /usr/ports/devel/py-rauth/Makefile 2012-08-02 12:42:48.000000000 +1000 +++ ./Makefile 2012-08-16 20:02:21.000000000 +1000 @@ -2,11 +2,11 @@ # Date created: 2012-06-17 # Whom: koobs # -# $FreeBSD: ports/devel/py-rauth/Makefile,v 1.2 2012/08/02 02:42:48 zi Exp $ +# $FreeBSD: ports/devel/py-rauth/Makefile,v 1.1 2012/06/17 19:16:34 rm Exp $ # PORTNAME= rauth -PORTVERSION= 0.4.14 +PORTVERSION= 0.4.15 CATEGORIES= devel www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -ruN --exclude=CVS /usr/ports/devel/py-rauth/distinfo ./distinfo --- /usr/ports/devel/py-rauth/distinfo 2012-08-02 12:42:48.000000000 +1000 +++ ./distinfo 2012-08-16 19:26:02.000000000 +1000 @@ -1,2 +1,2 @@ -SHA256 (rauth-0.4.14.tar.gz) = 4e8c118404053899fb7eaf20aec4e505ec793cf744c7493cdbbc793ec9496a92 -SIZE (rauth-0.4.14.tar.gz) = 13251 +SHA256 (rauth-0.4.15.tar.gz) = cf33e9def3754a61cb7f0d97ba7c19f2194f581f2bf0ad91c84d37dd9e7aecdd +SIZE (rauth-0.4.15.tar.gz) = 13622 --- py27-rauth-0.4.15.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 11:00:37 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C1C8106566B; Thu, 16 Aug 2012 11:00:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E54B38FC0C; Thu, 16 Aug 2012 11: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 q7GB0axq021869; Thu, 16 Aug 2012 11: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 q7GB0awm021865; Thu, 16 Aug 2012 11:00:36 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 11:00:36 GMT Message-Id: <201208161100.q7GB0awm021865@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/170665: [MAINTAINER] devel/py-rauth: update to 0.4.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 11:00:37 -0000 Synopsis: [MAINTAINER] devel/py-rauth: update to 0.4.15 Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Thu Aug 16 11:00:36 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170665 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 11:00:41 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 848D6106564A; Thu, 16 Aug 2012 11:00:41 +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 583888FC17; Thu, 16 Aug 2012 11: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 q7GB0f8N021956; Thu, 16 Aug 2012 11: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 q7GB0fWS021952; Thu, 16 Aug 2012 11:00:41 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 11:00:41 GMT Message-Id: <201208161100.q7GB0fWS021952@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170665: [MAINTAINER] devel/py-rauth: update to 0.4.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 11:00:41 -0000 Synopsis: [MAINTAINER] devel/py-rauth: update to 0.4.15 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 16 11:00:40 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170665 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 11:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 46E54106566B for ; Thu, 16 Aug 2012 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 1FEF08FC14 for ; Thu, 16 Aug 2012 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 q7GBABBv022908 for ; Thu, 16 Aug 2012 11: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 q7GBABOa022907; Thu, 16 Aug 2012 11:10:11 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 11:10:11 GMT Resent-Message-Id: <201208161110.q7GBABOa022907@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, "Jens K. Loewe" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0368A1065672 for ; Thu, 16 Aug 2012 11:07:05 +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 D7D658FC08 for ; Thu, 16 Aug 2012 11:07: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 q7GB74Ma006264 for ; Thu, 16 Aug 2012 11:07:04 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GB735H006250; Thu, 16 Aug 2012 11:07:03 GMT (envelope-from nobody) Message-Id: <201208161107.q7GB735H006250@red.freebsd.org> Date: Thu, 16 Aug 2012 11:07:03 GMT From: "Jens K. Loewe" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170666: New port: graphics/nomacs simple image viewer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 11:10:12 -0000 >Number: 170666 >Category: ports >Synopsis: New port: graphics/nomacs simple image viewer >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 Aug 16 11:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jens K. Loewe >Release: 9.0-RELEASE >Organization: Hochschule Ostfalia >Environment: FreeBSD freebsd 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: nomacs is a small, fast and free image viewer >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: # # nomacs # nomacs/Makefile # nomacs/pkg-descr # nomacs/pkg-plist # nomacs/distinfo # echo c - nomacs mkdir -p nomacs > /dev/null 2>&1 echo x - nomacs/Makefile sed 's/^X//' >nomacs/Makefile << 'c8b1f45b2d148ff97f35da61a2fa6ab3' X# New ports collection makefile for: nomacs X# Date created: 15 August 2012 X# Whom: Jens K. Loewe X# X# $FreeBSD$ X# X XPORTNAME= nomacs XPORTVERSION= 0.4.0 XCATEGORIES= graphics XMASTER_SITES= SF/nomacs/nomacs-${PORTVERSION}/ XDISTNAME= ${PORTNAME}-${PORTVERSION}-source X XMAINTAINER= bsd@tuxproject.de XCOMMENT= nomacs is a small, fast and free image viewer X XLICENSE= GPLv3 X XLIB_DEPENDS= exiv2:${PORTSDIR}/graphics/exiv2 \ X sysinfo:${PORTSDIR}/devel/libsysinfo X XUSE_ZIP= yes XNO_WRKSUBDIR= yes XUSE_CMAKE= yes XUSE_QT_VER= 4 XQT_COMPONENTS+= linguist_build XLDFLAGS+= -lsysinfo -lkvm X X# no RAW support for now. XCMAKE_ARGS+=-DENABLE_RAW=0 X X.include c8b1f45b2d148ff97f35da61a2fa6ab3 echo x - nomacs/pkg-descr sed 's/^X//' >nomacs/pkg-descr << 'fe34fc0787af7582fc1f0bf19b7b9da3' Xnomacs is a free image viewer which is licensed under the GNU Public XLicense v3. X Xnomacs is small, fast and able to handle the most common image formats. XAdditionally it is possible to synchronize multiple viewers. A Xsynchronization of viewers running on the same computer or via LAN is Xpossible. It allows to compare images and spot the differences (e.g. Xschemes of architects to show the progress). X XWWW: http://www.nomacs.org/ fe34fc0787af7582fc1f0bf19b7b9da3 echo x - nomacs/pkg-plist sed 's/^X//' >nomacs/pkg-plist << '8ad96560e39b968d4ab3ae593bb79259' Xbin/nomacs Xshare/applications/nomacs.desktop Xshare/pixmaps/nomacs.png X%%DATADIR%%/translations/nomacs_als.qm X%%DATADIR%%/translations/nomacs_de.qm X%%DATADIR%%/translations/nomacs_en.qm X%%DATADIR%%/translations/nomacs_ru.qm X%%DATADIR%%/translations/nomacs_zh.qm X@dirrm %%DATADIR%%/translations X@dirrm %%DATADIR%% X@dirrmtry share/applications X@dirrmtry share/pixmaps 8ad96560e39b968d4ab3ae593bb79259 echo x - nomacs/distinfo sed 's/^X//' >nomacs/distinfo << 'c34eff6b4dabdc5132e5cf3550ec4ff9' XSHA256 (nomacs-0.4.0-source.zip) = 3432d55d4de23c365912f0c796deb2e25184efdbd8a81304f15914e3fe4da2c7 XSIZE (nomacs-0.4.0-source.zip) = 1112306 c34eff6b4dabdc5132e5cf3550ec4ff9 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 12:42:00 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B53111065672; Thu, 16 Aug 2012 12:42:00 +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 886BC8FC0A; Thu, 16 Aug 2012 12:42: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 q7GCg0PG039487; Thu, 16 Aug 2012 12:42:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GCg0xA039483; Thu, 16 Aug 2012 12:42:00 GMT (envelope-from linimon) Date: Thu, 16 Aug 2012 12:42:00 GMT Message-Id: <201208161242.q7GCg0xA039483@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170664: [patch] www/xpi-quick-locale-switcher: update to version 1.7.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, 16 Aug 2012 12:42:00 -0000 Synopsis: [patch] www/xpi-quick-locale-switcher: update to version 1.7.8 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Aug 16 12:41:46 UTC 2012 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=170664 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 12:42:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 65B69106564A; Thu, 16 Aug 2012 12:42:10 +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 38B4D8FC08; Thu, 16 Aug 2012 12:42: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 q7GCgA03039589; Thu, 16 Aug 2012 12:42:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GCgA8E039585; Thu, 16 Aug 2012 12:42:10 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 12:42:10 GMT Message-Id: <201208161242.q7GCgA8E039585@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170664: [patch] www/xpi-quick-locale-switcher: update to version 1.7.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, 16 Aug 2012 12:42:10 -0000 Synopsis: [patch] www/xpi-quick-locale-switcher: update to version 1.7.8 Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 16 12:42:09 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170664 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 13:40:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B9DF106566C for ; Thu, 16 Aug 2012 13:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF0358FC16 for ; Thu, 16 Aug 2012 13:40: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 q7GDe5rX047249 for ; Thu, 16 Aug 2012 13:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GDe5lI047248; Thu, 16 Aug 2012 13:40:05 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 13:40:05 GMT Resent-Message-Id: <201208161340.q7GDe5lI047248@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, Konstantinos Koukopoulos Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFFDB106564A for ; Thu, 16 Aug 2012 13:37:03 +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 9BA5B8FC16 for ; Thu, 16 Aug 2012 13:37:03 +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 q7GDb3ol057549 for ; Thu, 16 Aug 2012 13:37:03 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GDb3Nt057548; Thu, 16 Aug 2012 13:37:03 GMT (envelope-from nobody) Message-Id: <201208161337.q7GDb3Nt057548@red.freebsd.org> Date: Thu, 16 Aug 2012 13:37:03 GMT From: Konstantinos Koukopoulos To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170667: x11/ rxvt-unicode: missing dependency on libstartup-notification X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 13:40:06 -0000 >Number: 170667 >Category: ports >Synopsis: x11/ rxvt-unicode: missing dependency on libstartup-notification >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 16 13:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Konstantinos Koukopoulos >Release: 9.0-RELEASE-p3 >Organization: >Environment: FreeBSD quoth.noc.uoa.gr 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 01:47:53 UTC 2012 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: The x11/rxvt-unicode port (9.15_1) produces a binary that depends on libstartup-notification in case that library exists on the system that is building it. This binary will not work however if the x11/startup-notification package is uninstalled or generally if it is unavailable on the target system. It should be an option which is explicitly enabled or disabled as a dependency. >How-To-Repeat: $ portmaster x11/startup-notification . $ portmaster x11/rxvt-unicode .. $ pkg_delete -X startup-notification $ /usr/local/bin/urxvt Shared object "libstartup-notification-1.so.0" not found, required by "urxvt" >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 13:40:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4060F1065674 for ; Thu, 16 Aug 2012 13:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 18F598FC18 for ; Thu, 16 Aug 2012 13:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7GDe5GU047258 for ; Thu, 16 Aug 2012 13:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GDe5BH047257; Thu, 16 Aug 2012 13:40:05 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 13:40:05 GMT Resent-Message-Id: <201208161340.q7GDe5BH047257@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, RyoTa SimaMoto Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8D011065672 for ; Thu, 16 Aug 2012 13:38:19 +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 C42398FC14 for ; Thu, 16 Aug 2012 13:38:19 +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 q7GDcJHs057632 for ; Thu, 16 Aug 2012 13:38:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GDcJud057631; Thu, 16 Aug 2012 13:38:19 GMT (envelope-from nobody) Message-Id: <201208161338.q7GDcJud057631@red.freebsd.org> Date: Thu, 16 Aug 2012 13:38:19 GMT From: RyoTa SimaMoto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170668: Update qmmp to v0.6.3, qmmp-plugin-pack to v0.6.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, 16 Aug 2012 13:40:06 -0000 >Number: 170668 >Category: ports >Synopsis: Update qmmp to v0.6.3, qmmp-plugin-pack to v0.6.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 Aug 16 13:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: RyoTa SimaMoto >Release: 9-STABLE >Organization: >Environment: FreeBSD takiba.fakenet 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #12 r238861: Sat Jul 28 22:15:53 JST 2012 root@takiba.fakenet:/usr/obj/usr/src/sys/VAIO i386 >Description: Micro upgrades. multimedia/qmmp: version 0.6.3 multimedia/qmmp-plugin-pack: version 0.6.2 Atached patch file acts updates ports of them. I should apologize that I did not give feedback to ports/170109 after additional obscure reports. Now that report is no longer needed. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: multimedia/qmmp/distinfo =================================================================== --- multimedia/qmmp/distinfo (revision 302526) +++ multimedia/qmmp/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (qmmp-0.6.0.tar.bz2) = 4e2c9cdfd630bb90b2c92cb3e2f95ac4239c7cf8f91c47ca4a5038dd519755fe -SIZE (qmmp-0.6.0.tar.bz2) = 772882 +SHA256 (qmmp-0.6.3.tar.bz2) = 98f5b8121d475ead81c788ec9d5346c8da537e342c0d99eaff08586af4c92ca8 +SIZE (qmmp-0.6.3.tar.bz2) = 775285 Index: multimedia/qmmp/Makefile =================================================================== --- multimedia/qmmp/Makefile (revision 302526) +++ multimedia/qmmp/Makefile (working copy) @@ -6,8 +6,8 @@ # PORTNAME= qmmp -PORTVERSION= 0.6.0 -PORTREVISION= 1 +PORTVERSION= 0.6.3 +PORTREVISION= 0 CATEGORIES= multimedia MASTER_SITES= http://qmmp.ylsoftware.com/files/ \ ${MASTER_SITE_GOOGLE_CODE} @@ -22,6 +22,7 @@ USE_QT4= corelib gui network xml \ qmake_build rcc_build uic_build moc_build linguist_build USE_LDCONFIG= yes +USE_PKGCONFIG= build OPTIONS_DEFINE= SKINNEDUI DIR_ASSOC APIDOC PULSEAUDIO ALSA OSS OSS4 \ JACK NULLOUT FLAC MUSEPACK FFMPEG MODPLUG WILDMIDI GME MAD \ Index: multimedia/qmmp-plugin-pack/distinfo =================================================================== --- multimedia/qmmp-plugin-pack/distinfo (revision 302526) +++ multimedia/qmmp-plugin-pack/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (qmmp-plugin-pack-0.6.0.tar.bz2) = 47fe88ef372e5407a33fdd6d0fdfdc78eab9a746aa5c570b2f489836576ae9e1 -SIZE (qmmp-plugin-pack-0.6.0.tar.bz2) = 268941 +SHA256 (qmmp-plugin-pack-0.6.2.tar.bz2) = 8f241b94a3671a27d1d1f5d4695469760a52dcaafdc5e97f069b932ccb2ed41c +SIZE (qmmp-plugin-pack-0.6.2.tar.bz2) = 121619 Index: multimedia/qmmp-plugin-pack/files/patch-SET_RPATH =================================================================== --- multimedia/qmmp-plugin-pack/files/patch-SET_RPATH (revision 0) +++ multimedia/qmmp-plugin-pack/files/patch-SET_RPATH (working copy) @@ -0,0 +1,10 @@ +--- CMakeLists.txt.orig 2012-07-23 03:56:51.000000000 +0900 ++++ CMakeLists.txt 2012-07-24 07:13:44.000000000 +0900 +@@ -3,6 +3,7 @@ + #freebsd include + include_directories(SYSTEM /usr/include /usr/local/include) + ++SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) + + CONFIGURE_FILE( + "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" Index: multimedia/qmmp-plugin-pack/Makefile =================================================================== --- multimedia/qmmp-plugin-pack/Makefile (revision 302526) +++ multimedia/qmmp-plugin-pack/Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= qmmp-plugin-pack -PORTVERSION= 0.6.0 +PORTVERSION= 0.6.2 CATEGORIES= multimedia MASTER_SITES= http://qmmp.ylsoftware.com/files/plugins/ \ http://qmmp.googlecode.com/files/ @@ -23,13 +23,18 @@ USE_CMAKE= yes USE_QT4= corelib gui qmake_build rcc_build moc_build linguist_build USE_LDCONFIG= yes +USE_PKGCONFIG= build -OPTIONS_MULTI= PLUGINS -OPTIONS_MULTI_PLUGINS= FFAP MPG123 QSUI +OPTIONS_DEFINE= FFAP MPG123 QSUI OPTIONS_DEFAULT= FFAP MPG123 QSUI FFAP_DESC= Support APE sound file MPG123_DESC= Support libmpg123 (MPEG v1/2 layer1/2/3) QSUI_DESC= Simple UI based on standard widgets set +OPTIONS_DEFINE_i386= FFAPASM +OPTIONS_DEFAULT_i386= FFAPASM +OPTIONS_DEFINE_x86_64= FFAPASM +OPTIONS_DEFAULT_x86_64= FFAPASM +FFAPASM_DESC= Optimize FFap decoder using devel/yasm .include @@ -55,8 +60,11 @@ .if ${PORT_OPTIONS:MFFAP} PLIST_SUB+= FFAP="" -. if ${ARCH} == i386 || ${ARCH} == x86_64 +. if (${ARCH} == i386 || ${ARCH} == x86_64) && ${PORT_OPTIONS:MFFAPASM} BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm +PLUGIN_OPTIONS_CMAKE+= -DUSE_ASM:BOOL=TRUE +. else +PLUGIN_OPTIONS_CMAKE+= -DUSE_ASM:BOOL=FALSE . endif LIB_DEPENDS+= tag:${PORTSDIR}/audio/taglib PLUGIN_OPTIONS_CMAKE+= -DUSE_FFAP:BOOL=TRUE >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 13:43:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60957106566C; Thu, 16 Aug 2012 13:43:13 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 348D38FC0A; Thu, 16 Aug 2012 13:43: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 q7GDhD0q047443; Thu, 16 Aug 2012 13:43:13 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GDhDp6047439; Thu, 16 Aug 2012 13:43:13 GMT (envelope-from madpilot) Date: Thu, 16 Aug 2012 13:43:13 GMT Message-Id: <201208161343.q7GDhDp6047439@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/170655: Update textproc/asciidoc to 8.6.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: Thu, 16 Aug 2012 13:43:13 -0000 Synopsis: Update textproc/asciidoc to 8.6.6 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Thu Aug 16 13:43:12 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170655 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 14:00:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF083106566B for ; Thu, 16 Aug 2012 14: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 990798FC08 for ; Thu, 16 Aug 2012 14: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 q7GE0OTS048527 for ; Thu, 16 Aug 2012 14: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 q7GE0OVe048526; Thu, 16 Aug 2012 14:00:24 GMT (envelope-from gnats) Date: Thu, 16 Aug 2012 14:00:24 GMT Message-Id: <201208161400.q7GE0OVe048526@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/170662: [NEW PORT] devel/pymunk: A easy-to-use pythonic 2d physics library built on top of Chipmunk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 14:00:24 -0000 The following reply was made to PR ports/170662; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170662: [NEW PORT] devel/pymunk: A easy-to-use pythonic 2d physics library built on top of Chipmunk Date: Thu, 16 Aug 2012 15:57:09 +0200 --MP_/D6dF2ug13c1mGtsmlTgYyQ_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline --MP_/D6dF2ug13c1mGtsmlTgYyQ_ Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=pymunk.diff diff -ruN pymunk.orig/Makefile pymunk/Makefile --- pymunk.orig/Makefile 2012-08-16 13:24:49.000000000 +0200 +++ pymunk/Makefile 2012-08-16 13:25:22.000000000 +0200 @@ -12,7 +12,7 @@ DIST_SUBDIR= python MAINTAINER= nemysis@gmx.ch -COMMENT= A easy-to-use pythonic 2d physics library built on top of Chipmunk +COMMENT= A easy-to-use pythonic 2d physics library built on top of Chipmunk-Physics LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE.txt @@ -38,7 +38,7 @@ #Data .if ${PORT_OPTIONS:MDATA} ${MKDIR} ${DATADIR} -. for d in chipmunk_src pymunk tests tools +. for d in pymunk tests tools @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${DATADIR}) . endfor .endif diff -ruN pymunk.orig/pkg-descr pymunk/pkg-descr --- pymunk.orig/pkg-descr 2012-08-13 18:06:15.000000000 +0200 +++ pymunk/pkg-descr 2012-08-16 13:25:35.000000000 +0200 @@ -1,5 +1,5 @@ pymunk vision is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python. -It is built on top of the very nice 2d physics library Chipmunk +It is built on top of the very nice 2d physics library Chipmunk-Physics. WWW: https://code.google.com/p/pymunk/ --MP_/D6dF2ug13c1mGtsmlTgYyQ_-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 14:05:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 242B6106566B; Thu, 16 Aug 2012 14:05: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 EBD368FC14; Thu, 16 Aug 2012 14:05: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 q7GE5ZMK049295; Thu, 16 Aug 2012 14:05:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GE5ZGT049291; Thu, 16 Aug 2012 14:05:35 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 14:05:35 GMT Message-Id: <201208161405.q7GE5ZGT049291@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, thierry@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170667: x11/rxvt-unicode: missing dependency on libstartup-notification X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 14:05:36 -0000 Synopsis: x11/rxvt-unicode: missing dependency on libstartup-notification Responsible-Changed-From-To: freebsd-ports-bugs->thierry Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 16 14:05:35 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170667 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 14:20:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61C161065675 for ; Thu, 16 Aug 2012 14: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 2073C8FC1D for ; Thu, 16 Aug 2012 14: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 q7GEK6mm051472 for ; Thu, 16 Aug 2012 14: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 q7GEK6Ej051471; Thu, 16 Aug 2012 14:20:06 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 14:20:06 GMT Resent-Message-Id: <201208161420.q7GEK6Ej051471@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, Alberto Villa Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 323A71065672 for ; Thu, 16 Aug 2012 14:13: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 1DE6B8FC08 for ; Thu, 16 Aug 2012 14:13: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 q7GEDYe9002683 for ; Thu, 16 Aug 2012 14:13:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GEDYoY002682; Thu, 16 Aug 2012 14:13:34 GMT (envelope-from nobody) Message-Id: <201208161413.q7GEDYoY002682@red.freebsd.org> Date: Thu, 16 Aug 2012 14:13:34 GMT From: Alberto Villa To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170669: [patch] devel/subversion: fix build when WITHOUT_NLS and WITH_KDE_KWALLET are defined X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 14:20:07 -0000 >Number: 170669 >Category: ports >Synopsis: [patch] devel/subversion: fix build when WITHOUT_NLS and WITH_KDE_KWALLET are defined >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 Aug 16 14:20:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alberto Villa >Release: >Organization: >Environment: >Description: `make configure` fails in devel/subversion when WITHOUT_NLS and WITH_KDE_KWALLET are defined, with: checking whether to look for KWallet... yes configure: error: missing support for internationalization ===> Script "configure" failed unexpectedly. kwallet.m4 reveals that NLS support is required by KWallet. >How-To-Repeat: make configure -C /usr/ports/devel/subversion -DWITHOUT_NLS -DWITH_KDE_KWALLET >Fix: The attached patch forces NLS support to be built also when WITH_KDE_KWALLET is defined. Patch attached with submission follows: Index: Makefile.common =================================================================== --- Makefile.common (revision 302485) +++ Makefile.common (working copy) @@ -132,7 +132,8 @@ LIB_DEPENDS+= svn_client-1:${PORTSDIR}/devel/subversion .endif -.if !defined(WITHOUT_NLS) +# KWallet requires NLS to be enabled. +.if !defined(WITHOUT_NLS) || defined(WITH_KDE_KWALLET) USE_GETTEXT= yes PLIST_SUB+= WITHOUT_GETTEXT="" .else >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 14:20:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FBF210656B4; Thu, 16 Aug 2012 14:20:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 529DF8FC0A; Thu, 16 Aug 2012 14:20: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 q7GEKHNX051613; Thu, 16 Aug 2012 14:20:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GEKHfW051609; Thu, 16 Aug 2012 14:20:17 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 14:20:17 GMT Message-Id: <201208161420.q7GEKHfW051609@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lev@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170669: [patch] devel/subversion: fix build when WITHOUT_NLS and WITH_KDE_KWALLET are defined X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 14:20:17 -0000 Synopsis: [patch] devel/subversion: fix build when WITHOUT_NLS and WITH_KDE_KWALLET are defined Responsible-Changed-From-To: freebsd-ports-bugs->lev Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 16 14:20:16 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170669 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 15:00:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30117106564A for ; Thu, 16 Aug 2012 15:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 091E88FC14 for ; Thu, 16 Aug 2012 15: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 q7GF0KdU055724 for ; Thu, 16 Aug 2012 15:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GF0Kdr055723; Thu, 16 Aug 2012 15:00:20 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 15:00:20 GMT Resent-Message-Id: <201208161500.q7GF0Kdr055723@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 32171106564A for ; Thu, 16 Aug 2012 14:56:03 +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 04B788FC14 for ; Thu, 16 Aug 2012 14:56:03 +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 q7GEu2s4064935 for ; Thu, 16 Aug 2012 14:56:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GEu20G064931; Thu, 16 Aug 2012 14:56:02 GMT (envelope-from nobody) Message-Id: <201208161456.q7GEu20G064931@red.freebsd.org> Date: Thu, 16 Aug 2012 14:56:02 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170670: [maintainer-update] update converters/bsdconv to 7.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, 16 Aug 2012 15:00:21 -0000 >Number: 170670 >Category: ports >Synopsis: [maintainer-update] update converters/bsdconv to 7.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Aug 16 15:00:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: >Organization: Sixnology Inc. >Environment: >Description: Update converters/bsdconv to 7.5 Switch to optionsNG Changelog: add {from,to}/CP1253 fix several linux issues bugfixes http://redports.org/buildarchive/20120816144243-64733/ >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/converters/bsdconv/Makefile b/converters/bsdconv/Makefile index 01e1501..793a9ca 100644 --- a/converters/bsdconv/Makefile +++ b/converters/bsdconv/Makefile @@ -6,7 +6,7 @@ # PORTNAME= bsdconv -PORTVERSION= 7.3 +PORTVERSION= 7.5 CATEGORIES= converters MASTER_SITES= https://github.com/buganini/${PORTNAME}/tarball/${PORTVERSION}/ DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} @@ -16,11 +16,12 @@ COMMENT= BSD licensed charset/encoding converter library LICENSE= BSD -GITVERSION= 500f86a +GITVERSION= cf1989b FETCH_ARGS= -pRr WRKSRC= ${WRKDIR}/buganini-${PORTNAME}-${GITVERSION} -OPTIONS= EXTRA "Extra codecs (Chinese specifics)" off +OPTIONS_DEFINE= EXTRA +EXTRA_DESC= Extra codecs (Chinese specifics) USE_LDCONFIG= yes @@ -31,7 +32,7 @@ INSTALL_TARGET= installdir install_main install_basic .include -.if defined(WITH_EXTRA) +.if ${PORT_OPTIONS:MEXTRA} ALL_TARGET+= codecs_extra INSTALL_TARGET+=install_extra PLIST_SUB+= EXTRA="" diff --git a/converters/bsdconv/distinfo b/converters/bsdconv/distinfo index 30e9e78..02be08f 100644 --- a/converters/bsdconv/distinfo +++ b/converters/bsdconv/distinfo @@ -1,2 +1,2 @@ -SHA256 (buganini-bsdconv-7.3-0-g500f86a.tar.gz) = 5336501a41946472249afe8492d51c3148ba0cd73fa6f883e93da409409238d6 -SIZE (buganini-bsdconv-7.3-0-g500f86a.tar.gz) = 4828689 +SHA256 (buganini-bsdconv-7.5-0-gcf1989b.tar.gz) = b056fbd1cdddb3d021b3331a1f89bae1bfc5783d8971721cc2267724bbf5db06 +SIZE (buganini-bsdconv-7.5-0-gcf1989b.tar.gz) = 4630675 diff --git a/converters/bsdconv/pkg-plist b/converters/bsdconv/pkg-plist index 930eaee..b3d1108 100644 --- a/converters/bsdconv/pkg-plist +++ b/converters/bsdconv/pkg-plist @@ -35,6 +35,7 @@ lib/libbsdconv.so.7 %%DATADIR%%/from/UTF-32LE.so %%DATADIR%%/from/_CP1251 %%DATADIR%%/from/_CP1252 +%%DATADIR%%/from/_CP1253 %%DATADIR%%/from/_CP874 %%DATADIR%%/from/_CP949 %%DATADIR%%/from/_GB18030 @@ -139,6 +140,7 @@ lib/libbsdconv.so.7 %%DATADIR%%/to/UTF-32LE.so %%DATADIR%%/to/_CP1251 %%DATADIR%%/to/_CP1252 +%%DATADIR%%/to/_CP1253 %%DATADIR%%/to/_CP874 %%DATADIR%%/to/_CP936 %%DATADIR%%/to/_CP949 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 15:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D88E5106566B for ; Thu, 16 Aug 2012 15:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B343E8FC0A for ; Thu, 16 Aug 2012 15:40: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 q7GFe9pu061662 for ; Thu, 16 Aug 2012 15:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GFe9Os061661; Thu, 16 Aug 2012 15:40:09 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 15:40:09 GMT Resent-Message-Id: <201208161540.q7GFe9Os061661@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 471EA106564A for ; Thu, 16 Aug 2012 15:32:00 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id AFEC68FC15 for ; Thu, 16 Aug 2012 15:31:59 +0000 (UTC) Received: (qmail invoked by alias); 16 Aug 2012 15:31:52 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp041) with SMTP; 16 Aug 2012 17:31:52 +0200 Received: by something.email.com (sSMTP sendmail emulation); Thu, 16 Aug 2012 17:31:52 +0200 Message-Id: <20120816153200.471EA106564A@hub.freebsd.org> Date: Thu, 16 Aug 2012 17:31:52 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170671: [MAINTAINER] games/twind: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 15:40:10 -0000 >Number: 170671 >Category: ports >Synopsis: [MAINTAINER] games/twind: Makefile changed, OptionsNG >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Aug 16 15:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed, OptionsNG added .if ${PORT_OPTIONS:MDATA} .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- twind-1.1.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/twind/Makefile ./Makefile --- /usr/ports/games/twind/Makefile 2012-05-03 22:56:57.000000000 +0200 +++ ./Makefile 2012-08-16 17:17:57.000000000 +0200 @@ -15,15 +15,20 @@ LICENSE= GPLv2 +OPTIONS_DEFINE= DATA +OPTIONS_DEFAULT= DATA + USE_SDL= sdl image mixer MAKE_JOBS_SAFE= yes -PLIST_FILES= bin/twind \ +PLIST_FILES= bin/${PORTNAME} \ share/pixmaps/${PORTNAME}.png PORTDATA= * PORTDOCS= AUTHORS CREDITS ChangeLog NEWS README TODO +.include + do-build: cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \ -DDATA_PREFIX=\"${DATADIR}/\" -DAUDIO -DLINUX \ @@ -31,17 +36,22 @@ do-install: # Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -# Pixmaps - ${INSTALL_DATA} ${WRKSRC}/graphics/twind.png ${PREFIX}/share/pixmaps/${PORTNAME}.png + # Data +.if ${PORT_OPTIONS:MDATA} ${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} "graphics music sound" ${DATADIR}) +.endif + +# Pixmaps + ${INSTALL_DATA} ${WRKSRC}/graphics/${PORTNAME}.png ${PREFIX}/share/pixmaps/ + # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} -.for f in ${PORTDOCS} +. for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor +. endfor .endif .include --- twind-1.1.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 15:46:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09435106564A; Thu, 16 Aug 2012 15:46:44 +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 D086C8FC23; Thu, 16 Aug 2012 15:46: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 q7GFkhcS062150; Thu, 16 Aug 2012 15:46:43 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GFkhhF062146; Thu, 16 Aug 2012 15:46:43 GMT (envelope-from culot) Date: Thu, 16 Aug 2012 15:46:43 GMT Message-Id: <201208161546.q7GFkhhF062146@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/170670: [maintainer-update] update converters/bsdconv to 7.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, 16 Aug 2012 15:46:44 -0000 Synopsis: [maintainer-update] update converters/bsdconv to 7.5 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Thu Aug 16 15:46:43 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170670 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 16:20:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28599106566B for ; Thu, 16 Aug 2012 16: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 ED4058FC14 for ; Thu, 16 Aug 2012 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 q7GGKAGR065878 for ; Thu, 16 Aug 2012 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 q7GGKAMX065877; Thu, 16 Aug 2012 16:20:10 GMT (envelope-from gnats) Date: Thu, 16 Aug 2012 16:20:10 GMT Message-Id: <201208161620.q7GGKAMX065877@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/170671: [MAINTAINER] games/twind: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 16:20:11 -0000 The following reply was made to PR ports/170671; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170671: [MAINTAINER] games/twind: Makefile changed, OptionsNG Date: Thu, 16 Aug 2012 18:10:54 +0200 Please change Severity: serious to Severity: non-critical This is a Mistake, sorry. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 16:30:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 307C7106566B for ; Thu, 16 Aug 2012 16: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 192BB8FC0A for ; Thu, 16 Aug 2012 16: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 q7GGUIm1066473 for ; Thu, 16 Aug 2012 16: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 q7GGUIY2066470; Thu, 16 Aug 2012 16:30:18 GMT (envelope-from gnats) Date: Thu, 16 Aug 2012 16:30:18 GMT Message-Id: <201208161630.q7GGUIY2066470@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Marcin Cieslak Cc: Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 16:30:19 -0000 The following reply was made to PR ports/170626; it has been noted by GNATS. From: Marcin Cieslak To: Mikhail Tsatsenko Cc: bug-followup@FreeBSD.org Subject: Re: ports/170626: x11-toolkits/open-motif: X11/extensions/XPrint.h is not detected by configure Date: Thu, 16 Aug 2012 16:29:00 +0000 On Wed, 15 Aug 2012, Mikhail Tsatsenko wrote: > To submitter: please try the following line for CPPFLAGS in port > Makefile and let me know if it works: > CPPFLAGS+= -DCSRG_BASED -DXUSE_MTSAFE_API -DXNO_MTSAFE_PWDAPI > -I${LOCALBASE}/include > > I think it will be better approach than patching configure script. Yes, I can confirm that this fixes the problem mentioned: #ifndef PRINTING_SUPPORTED #define PRINTING_SUPPORTED 1 #endif Thanks! //Marcin From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 17:30:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32736106564A; Thu, 16 Aug 2012 17:30:02 +0000 (UTC) (envelope-from buganini@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 9064A8FC15; Thu, 16 Aug 2012 17:30:01 +0000 (UTC) Received: by weyx56 with SMTP id x56so2362872wey.13 for ; Thu, 16 Aug 2012 10:30:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=/1a1T4/vDiCr+6SgrOfygJhiU/ysnBtUGXybkzaXAF8=; b=Ml5JDZv2tlQ6r+R2VN1xvvMNS+EJbaBSyU3BxG+5WICmZbf8w/FScVh46Ll4rbRDMy cB4K8boMT87MnTxsWnbjm/1E3RVgUmdDMQOKpwnJd3US1v3nFhoaO0l1xaACLypg8wMw BDUyYjREamJoKRVj5nnGK4Sj9N3Mf8s2aBFJx6M5lardiGpeirADQv1HId7nw4Kc/cHh W3kGNJr5rpm/fjTrGLkj2UoeEAmvBuh/NCjrxNKpCdhsOj266wFUlaL4MI4ZImGSG1mq +IyseFHPxSUw2o9xYRjjWWnktMMne6HAwnktpgQpPfKCFhvyZ67jNEH1Zlw1YBKFqwWc nWHA== MIME-Version: 1.0 Received: by 10.180.81.38 with SMTP id w6mr4818323wix.10.1345138200565; Thu, 16 Aug 2012 10:30:00 -0700 (PDT) Received: by 10.216.190.102 with HTTP; Thu, 16 Aug 2012 10:30:00 -0700 (PDT) In-Reply-To: <201208161500.q7GF0K1O055714@freefall.freebsd.org> References: <201208161456.q7GEu20G064931@red.freebsd.org> <201208161500.q7GF0K1O055714@freefall.freebsd.org> Date: Fri, 17 Aug 2012 01:30:00 +0800 Message-ID: From: Buganini To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: Subject: Re: ports/170670: [maintainer-update] update converters/bsdconv to 7.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, 16 Aug 2012 17:30:02 -0000 Sorry, missed a patch http://www.cnmc.tw/~buganini/bsdconv-7.5.patch.txt 2012/8/16 : > Thank you very much for your problem report. > It has the internal identification `ports/170670'. > 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=170670 > >>Category: ports >>Responsible: freebsd-ports-bugs >>Synopsis: [maintainer-update] update converters/bsdconv to 7.5 >>Arrival-Date: Thu Aug 16 15:00:20 UTC 2012 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 18:30:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD7B51065673 for ; Thu, 16 Aug 2012 18: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 6C81E8FC1A for ; Thu, 16 Aug 2012 18: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 q7GIUEWM083923 for ; Thu, 16 Aug 2012 18: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 q7GIUEsR083920; Thu, 16 Aug 2012 18:30:14 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 18:30:14 GMT Resent-Message-Id: <201208161830.q7GIUEsR083920@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, "Jens K. Loewe" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4CBD106564A for ; Thu, 16 Aug 2012 18:23:09 +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 AF7EE8FC15 for ; Thu, 16 Aug 2012 18:23:09 +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 q7GIN8GT076300 for ; Thu, 16 Aug 2012 18:23:09 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GIN8wd076299; Thu, 16 Aug 2012 18:23:08 GMT (envelope-from nobody) Message-Id: <201208161823.q7GIN8wd076299@red.freebsd.org> Date: Thu, 16 Aug 2012 18:23:08 GMT From: "Jens K. Loewe" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170674: libsysinfo fails to link correctly (missing kvm dependency) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 18:30:14 -0000 >Number: 170674 >Category: ports >Synopsis: libsysinfo fails to link correctly (missing kvm dependency) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 16 18:30:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jens K. Loewe >Release: 9.0-RELEASE >Organization: Hochschule Ostfalia >Environment: FreeBSD freebsd 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When compiling libsysinfo, the following happens: --------------- /usr/local/lib/libsysinfo.so: undefined reference to `kvm_getprocs' /usr/local/lib/libsysinfo.so: undefined reference to `kvm_open' /usr/local/lib/libsysinfo.so: undefined reference to `kvm_getloadavg' /usr/local/lib/libsysinfo.so: undefined reference to `kvm_getswapinfo' /usr/local/lib/libsysinfo.so: undefined reference to `kvm_close' cc: error: linker command failed with exit code 1 (use -v to see invocation) --------------- In libsysinfo's Makefile there should be a reference to kvm (as a linker option). >How-To-Repeat: Compile libsysinfo. >Fix: Add the missing -lkvm switch. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 19:40:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 393C31065675 for ; Thu, 16 Aug 2012 19: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 0FDE38FC15 for ; Thu, 16 Aug 2012 19: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 q7GJeB1w093228 for ; Thu, 16 Aug 2012 19: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 q7GJeBgT093227; Thu, 16 Aug 2012 19:40:11 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 19:40:11 GMT Resent-Message-Id: <201208161940.q7GJeBgT093227@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Helfman Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EFD910657F6; Thu, 16 Aug 2012 19:35:22 +0000 (UTC) (envelope-from jhelfman@experts-exchange.com) Received: from mail.dw.redsrci.com (mail.pub.dw.redsrci.com [72.29.183.251]) by mx1.freebsd.org (Postfix) with ESMTP id 5D9AA8FC0C; Thu, 16 Aug 2012 19:35:21 +0000 (UTC) Received: from mail.dw.redsrci.com (localhost [127.0.0.1]) by mail.dw.redsrci.com (Postfix) with ESMTP id C962A701B90; Thu, 16 Aug 2012 12:35:20 -0700 (PDT) Received: from mail.dw.redsrci.com ([127.0.0.1]) by mail.dw.redsrci.com (mail.dw.redsrci.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZIqNVeROVNJY; Thu, 16 Aug 2012 12:35:20 -0700 (PDT) Received: from experts-exchange.com (unknown [192.168.103.120]) by mail.dw.redsrci.com (Postfix) with SMTP id A1E23701B85; Thu, 16 Aug 2012 12:35:20 -0700 (PDT) Received: (nullmailer pid 21878 invoked by uid 1001); Thu, 16 Aug 2012 19:33:15 -0000 Message-Id: <1345145595.452418.21877.nullmailer@experts-exchange.com> Date: Thu, 16 Aug 2012 12:33:15 -0700 From: Jason Helfman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: sumikawa@FreeBSD.org Subject: ports/170678: [PATCH] net/zebra: allow for tuning of zebractl, use optionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 19:40:12 -0000 >Number: 170678 >Category: ports >Synopsis: [PATCH] net/zebra: allow for tuning of zebractl, use optionsNG >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 Aug 16 19:40:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason Helfman >Release: FreeBSD 8.3-RELEASE amd64 >Organization: >Environment: System: FreeBSD dormouse.experts-exchange.com 8.3-RELEASE FreeBSD 8.3-RELEASE #0: Mon Apr 9 21:23:18 UTC >Description: This patch introduces the ability to use arguments for different zebra services. Default is "-d" Also updated to optionsNG. I've renamed LIBPAM to PAM (shared description), and just defined the description. May want to consider adding others within this port to shared descriptions, as well, so others may use the descriptions. Port maintainer (sumikawa@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- zebra-0.95a_2.patch begins here --- Index: files/zebractl.in =================================================================== --- files/zebractl.in (revision 302652) +++ files/zebractl.in (working copy) @@ -24,17 +24,17 @@ exit 1 fi [ -f %%ETCDIR%%/zebra.conf ] \ - && %%PREFIX%%/sbin/zebra -d && echo -n ' zebra' + && %%PREFIX%%/sbin/zebra %%ZEBRAARGS%% && echo -n ' zebra' [ -f %%ETCDIR%%/ripd.conf ] \ - && %%PREFIX%%/sbin/ripd -d && echo -n ' ripd' + && %%PREFIX%%/sbin/ripd %%RIPDARGS%% && echo -n ' ripd' [ -f %%ETCDIR%%/ripngd.conf ] \ - && %%PREFIX%%/sbin/ripngd -d && echo -n ' ripngd' + && %%PREFIX%%/sbin/ripngd %%RIPNGDARGS%% && echo -n ' ripngd' [ -f %%ETCDIR%%/ospfd.conf ] \ - && %%PREFIX%%/sbin/ospfd -d && echo -n ' ospfd' + && %%PREFIX%%/sbin/ospfd %%OSPFDARGS%% && echo -n ' ospfd' [ -f %%ETCDIR%%/ospf6d.conf ] \ - && %%PREFIX%%/sbin/ospf6d -d && echo -n ' ospf6d' + && %%PREFIX%%/sbin/ospf6d %%OSPF6DARGS%% && echo -n ' ospf6d' [ -f %%ETCDIR%%/bgpd.conf ] \ - && %%PREFIX%%/sbin/bgpd -d && echo -n ' bgpd' + && %%PREFIX%%/sbin/bgpd %%BGPDARGS%% && echo -n ' bgpd' ;; stop) Index: Makefile =================================================================== --- Makefile (revision 302652) +++ Makefile (working copy) @@ -21,67 +21,83 @@ CONFLICTS= openbgpd-[0-9]* quagga-[0-9]* quagga-re-[0-9]* openospfd-[0-9]* SUB_FILES= pkg-message zebractl +SUB_LIST= BGPDARGS=${BGPDARGS} \ + OSPFDARGS=${OSPFDARGS} \ + OSPF6DARGS=${OSPFDARGS} \ + RIPDARGS=${RIPDARGS} \ + RIPNGDARGS=${RIPNGDARGS} \ + ZEBRAARGS=${ZEBRAARGS} USE_SUBMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc/zebra SCRIPTS_ENV= WRKDIRPREFIX=${WRKDIRPREFIX} -OPTIONS= IPV6 "enable IPv6 support" on \ - LIBPAM "enable PAM authentication for vtysh" off \ - OSPFNSSA "turn on undergoing NSSA feature" off \ - SNMP "enable SNMP support" off \ - TCPZEBRA "enable TCP/IP socket connection" off \ - BGPD "enable BGPD" on \ - OSPF6D "enable OSPF6D" on \ - OSPFD "enable OSPFD" on \ - RIPD "enable RIPD" on \ - RIPNGD "enable RIPNGD" on \ - VTYSH "enable VTYSH" on +OPTIONS_DEFINE= IPV6 PAM OSPFNSSA SNMP TCPZEBRA BGPD OSPF6D OSPFD RIPD RIPNGD VTYSH +PAM_DESC= PAM authentication for vtysh +OSPFNSSA_DESC= undergoing NSSA feature +TCPZEBRA_DESC= TCP/IP socket connection +BGPD_DESC= BGPD support +OSPF6D_DESC= OSPF6D support +OSPFD_DESC= OSPFD support +RIPD_DESC= RIPD support +RIPNGD_DESC= RIPNGD support +VTYSH_DESC= VTYSH support + +OPTIONS_DEFAULT= IPV6 BGPD OSPF6D OSPFD RIPD RIPNGD VTYSH +NO_OPTIONS_SORT= yes + MAN1= vtysh.1 MAN8= bgpd.8 ospf6d.8 ospfd.8 ripd.8 ripngd.8 zebra.8 INFO= zebra +BGPDARGS?= -d +OSPFDARGS?= -d +OSPF6DARGS?= -d +RIPDARGS?= -d +RIPNGDARGS?= -d +ZEBRAARGS?= -d + .include -.if defined (WITHOUT_IPV6) +.if empty(PORT_OPTIONS:MIPV6) CONFIGURE_ARGS+=--disable-ipv6 WITHOUT_OSPF6D= yes WITHOUT_RIPNGD= yes .endif -.if defined (WITH_LIBPAM) +.if ${PORT_OPTIONS:MPAM} CONFIGURE_ARGS+=--with-libpam .endif -.if defined (WITH_OSPFNSSA) +.if ${PORT_OPTIONS:MOSPFNSSA} CONFIGURE_ARGS+=--enable-nssa .endif -.if defined (WITH_SNMP) +.if ${PORT_OPTIONS:MSNMP} CONFIGURE_ARGS+=--enable-snmp LIB_DEPENDS+=snmp.4:${PORTSDIR}/net-mgmt/net-snmp4:install .endif -.if defined (WITH_TCPZEBRA) +.if ${PORT_OPTIONS:MTCPZEBRA} CONFIGURE_ARGS+=--enable-tcp-zebra .endif -.if !defined(WITHOUT_BGPD) +.if ${PORT_OPTIONS:MBGPD} PLIST_SUB+= BGPD="" .else CONFIGURE_ARGS+=--disable-bgpd PLIST_SUB+= BGPD="@comment " .endif -.if !defined(WITHOUT_OSPF6D) +.if ${PORT_OPTIONS:MOSPF6D} PLIST_SUB+= OSPF6D="" .else CONFIGURE_ARGS+=--disable-ospf6d PLIST_SUB+= OSPF6D="@comment " .endif -.if !defined(WITHOUT_OSPFD) +.if ${PORT_OPTIONS:MOSPFD} PLIST_SUB+= OSPF6D="" PLIST_SUB+= OSPFD="" .else @@ -89,21 +105,21 @@ PLIST_SUB+= OSPFD="@comment " .endif -.if !defined(WITHOUT_RIPD) +.if ${PORT_OPTIONS:MRIPD} PLIST_SUB+= RIPD="" .else CONFIGURE_ARGS+=--disable-ripd PLIST_SUB+= RIPD="@comment " .endif -.if !defined(WITHOUT_RIPNGD) +.if ${PORT_OPTIONS:MRIPNGD} PLIST_SUB+= RIPNGD="" .else CONFIGURE_ARGS+=--disable-ripngd PLIST_SUB+= RIPNGD="@comment " .endif -.if !defined(WITHOUT_VTYSH) +.if ${PORT_OPTIONS:MVTYSH) PLIST_SUB+= VTYSH="" CONFIGURE_ARGS+=--enable-vtysh .else --- zebra-0.95a_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 19:40:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F32510656B7; Thu, 16 Aug 2012 19:40: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 632918FC17; Thu, 16 Aug 2012 19:40: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 q7GJeR3G093312; Thu, 16 Aug 2012 19:40:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GJeRXH093308; Thu, 16 Aug 2012 19:40:27 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 19:40:27 GMT Message-Id: <201208161940.q7GJeRXH093308@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sumikawa@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170678: [PATCH] net/zebra: allow for tuning of zebractl, use optionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 19:40:27 -0000 Synopsis: [PATCH] net/zebra: allow for tuning of zebractl, use optionsNG Responsible-Changed-From-To: freebsd-ports-bugs->sumikawa Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 16 19:40:27 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170678 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 20:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 79706106566B for ; Thu, 16 Aug 2012 20:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 39C178FC0A for ; Thu, 16 Aug 2012 20: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 q7GKABTF095297 for ; Thu, 16 Aug 2012 20: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 q7GKABD6095294; Thu, 16 Aug 2012 20:10:11 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 20:10:11 GMT Resent-Message-Id: <201208162010.q7GKABD6095294@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Peter Boosten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5468A1065672 for ; Thu, 16 Aug 2012 20:07:28 +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 406DE8FC20 for ; Thu, 16 Aug 2012 20:07:28 +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 q7GK7R59038999 for ; Thu, 16 Aug 2012 20:07:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GK7RRY038998; Thu, 16 Aug 2012 20:07:27 GMT (envelope-from nobody) Message-Id: <201208162007.q7GK7RRY038998@red.freebsd.org> Date: Thu, 16 Aug 2012 20:07:27 GMT From: Peter Boosten To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170679: blender core dumps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 20:10:11 -0000 >Number: 170679 >Category: ports >Synopsis: blender core dumps >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 16 20:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Peter Boosten >Release: 8.2 >Organization: >Environment: FreeBSD ra.egypt.nl 8.2-RELEASE-p8 FreeBSD 8.2-RELEASE-p8 #0: Thu May 31 22:33:19 CEST 2012 root@ra.egypt.nl:/usr/obj/usr/src/sys/RA i386 (GENERIC Kernel with ALTQ) >Description: Installing Blender from ports compiles without error, but when starting Blender (even just with -v , for version) it core dumps immediately. A ktrace shows that the last library it tries to load is libirml.so, but cannot find. This library is also not to find in the entire ports collection. Last messages from ktrace: 14036 initial thread CALL access(0x293a1000,F_OK) 14036 initial thread NAMI "/lib/libirml.so" 14036 initial thread RET access -1 errno 2 No such file or directory 14036 initial thread CALL access(0x293a1000,F_OK) 14036 initial thread NAMI "/usr/lib/libirml.so" 14036 initial thread RET access -1 errno 2 No such file or directory 14036 initial thread CALL sigprocmask(SIG_SETMASK,0x2938cff0,0) 14036 initial thread RET sigprocmask 0 14036 initial thread CALL sigprocmask(SIG_BLOCK,0x2938cfe0,0xbfbfe56c) 14036 initial thread RET sigprocmask 0 14036 initial thread CALL sigprocmask(SIG_SETMASK,0x2938cff0,0) 14036 initial thread RET sigprocmask 0 14036 initial thread PSIG SIGSEGV SIG_DFL 14036 initial thread NAMI "blender-bin.core" >How-To-Repeat: Just start blender , regardless the options >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 20:15:38 2012 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 AC52B1065779; Thu, 16 Aug 2012 20:15:37 +0000 (UTC) (envelope-from r.neese@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id D24CD8FC18; Thu, 16 Aug 2012 20:15:36 +0000 (UTC) Received: by yhfs35 with SMTP id s35so4113990yhf.13 for ; Thu, 16 Aug 2012 13:15:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; bh=VIG2D0CBIE0XczRrM6aUEWr/yqGunV4kSOqgwii1CQs=; b=xOsDwkbHSnINh9MLM3Iddslx8WikN4nS0lR8ghjw4574OUJ/uOBR3Cw4Z+lm7gPSul X9pmfYDp8R3Ms5H3bijuAO7xP21FhYry3EhrzcCRul/YZ62RwNEvcbrlSiaegpO+5juM 3HU5tsUa4aLBaGxoDgQSqBWJlHseIl8e6wHoLfQGIKNe4+Xd6FrO8dK7xUvPGLqhpvat 7nrB7SXTcd54MwyKfk+bBLy1raaIDpNmh/vMKVfaqVky0jKGVGZGlKhdGA1pwh6XionB +FfvGGCwIx+67x9aeyj8pU7aB6bDlElo9y6Oru5XNh1i8lKBYpq/yS9VovPlEfkGMy5U rUeA== Received: by 10.236.127.199 with SMTP id d47mr3449811yhi.11.1345148136027; Thu, 16 Aug 2012 13:15:36 -0700 (PDT) Received: from [127.0.0.1] ([97.100.95.108]) by mx.google.com with ESMTPS id y13sm5171693anj.5.2012.08.16.13.15.35 (version=SSLv3 cipher=OTHER); Thu, 16 Aug 2012 13:15:35 -0700 (PDT) Message-ID: <502D54E0.60603@gmail.com> Date: Thu, 16 Aug 2012 16:15:28 -0400 From: Richard E Neese User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <201208012310.q71NAATW017186@freefall.freebsd.org> In-Reply-To: <201208012310.q71NAATW017186@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------020306060806040903080302" Cc: Subject: Re: ports/170319: Update of net/freeswitch-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 20:15:38 -0000 This is a multi-part message in MIME format. --------------020306060806040903080302 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 8/1/2012 7:10 PM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/170319'. > 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=170319 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: Update of net/freeswitch-devel >> Arrival-Date: Wed Aug 01 23:10:10 UTC 2012 update to 1.2.1 --------------020306060806040903080302 Content-Type: text/plain; charset=windows-1252; name="fs-dev.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="fs-dev.diff" Index: Makefile =================================================================== --- Makefile (revision 301530) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= freeswitch -PORTVERSION= 1.2 +PORTVERSION= 1.2.1 CATEGORIES= net MASTER_SITES= # none PKGNAMESUFFIX= -devel @@ -23,19 +23,24 @@ NO_WRKSUBDIR= yes NO_BUILD= yes -OPTIONS= VANILLA "Vanilla Dialplan Configs" off \ - SBC "Session Border Conroller configs" off \ - INSIDEOUT "Inside Out Basic Dialplan Configs" off \ - CURL "Curl dialplan configs" off \ - SOUNDS "Sound files for use with FreeSwitch PBX" off \ - MUSIC "Music on hold for use with FreeSwitch PBX" off \ - PIZZADEMO "Install Pizza Shop voice demo" off \ - SCRIPTS "Install Freeswitch various scripts" off +OPTIONS_DEFINE= VANILLA SBC INSIDEOUT CURL SOUNDS MUSIC PIZZADEMO SCRIPTS +VANILLA_DESC= Vanilla Dialplan Configs +SBC_DESC= Session Border Conroller configs +INSIDEOUT_DESC= Inside Out Basic Dialplan Configs +CURL_DESC= Curl dialplan configs +SOUNDS_DESC= Sound files for use with FreeSwitch PBX +MUSIC_DESC= Music on hold for use with FreeSwitch PBX +PIZZADEMO_DESC= Install Pizza Shop voice demo +SCRIPTS_DESC= Install Freeswitch various scripts + +OPTIONS_DEFAULT= VANILLA SOUNDS MUSIC +NO_OPTIONS_SORT= yes + .include .for conf in vanilla sbc insideout curl -. if defined(WITH_${conf:U}) +.if ${PORT_OPTIONS:M${conf:U}} CNF?= ${conf} . if ${CNF} == ${conf} RUN_DEPENDS+= ${LOCALBASE}/etc/freeswitch/conf/.${conf}:${PORTSDIR}/net/freeswitch-${conf}-devel @@ -46,19 +51,19 @@ .endfor .undef CNF -.if defined(WITH_SOUNDS) +.if ${PORT_OPTIONS:MSOUNDS} RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.freeswitch-sounds:${PORTSDIR}/audio/freeswitch-sounds .endif -.if defined(WITH_MUSIC) +.if ${PORT_OPTIONS:MMUSIC} RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.freeswitch-music:${PORTSDIR}/audio/freeswitch-music .endif -.if defined(WITH_PIZZADEMO) +.if ${PORT_OPTIONS:MPIZZADEMO} RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.pizza:${PORTSDIR}/misc/freeswitch-pizzademo-devel .endif -.if defined(WITH_SCRIPTS) +.if ${PORT_OPTIONS:MSCRIPTS} RUN_DEPENDS+= ${LOCALBASE}/etc/freeswitch/scripts/.freeswitch-scripts:${PORTSDIR}/misc/freeswitch-scripts-devel .endif --------------020306060806040903080302-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 21:15:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B555C1065675; Thu, 16 Aug 2012 21:15:35 +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 898A08FC1B; Thu, 16 Aug 2012 21:15: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 q7GLFZEk004441; Thu, 16 Aug 2012 21:15:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GLFZoT004437; Thu, 16 Aug 2012 21:15:35 GMT (envelope-from linimon) Date: Thu, 16 Aug 2012 21:15:35 GMT Message-Id: <201208162115.q7GLFZoT004437@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danger@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170674: sysutils/sysinfo fails to link correctly (missing kvm dependency) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 21:15:35 -0000 Old Synopsis: libsysinfo fails to link correctly (missing kvm dependency) New Synopsis: sysutils/sysinfo fails to link correctly (missing kvm dependency) Responsible-Changed-From-To: freebsd-ports-bugs->danger Responsible-Changed-By: linimon Responsible-Changed-When: Thu Aug 16 21:13:44 UTC 2012 Responsible-Changed-Why: Take a guess at which port is meant and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=170674 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 21:16:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D41691065678; Thu, 16 Aug 2012 21:16:49 +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 A71F18FC21; Thu, 16 Aug 2012 21: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 q7GLGnIh004723; Thu, 16 Aug 2012 21:16:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GLGnLM004718; Thu, 16 Aug 2012 21:16:49 GMT (envelope-from edwin) Date: Thu, 16 Aug 2012 21:16:49 GMT Message-Id: <201208162116.q7GLGnLM004718@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mva@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170679: graphics/blender core dumps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 21:16:49 -0000 Synopsis: graphics/blender core dumps Responsible-Changed-From-To: freebsd-ports-bugs->mva Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 16 21:16:49 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170679 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 21:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1427F1065674 for ; Thu, 16 Aug 2012 21: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 E12E38FC1C for ; Thu, 16 Aug 2012 21: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 q7GLK8cr005194 for ; Thu, 16 Aug 2012 21: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 q7GLK8Uh005193; Thu, 16 Aug 2012 21:20:08 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 21:20:08 GMT Resent-Message-Id: <201208162120.q7GLK8Uh005193@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68C03106566B for ; Thu, 16 Aug 2012 21:16:35 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id DFCBF8FC12 for ; Thu, 16 Aug 2012 21:16:34 +0000 (UTC) Received: (qmail invoked by alias); 16 Aug 2012 21:16:31 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp041) with SMTP; 16 Aug 2012 23:16:31 +0200 Received: by something.email.com (sSMTP sendmail emulation); Thu, 16 Aug 2012 23:16:31 +0200 Message-Id: <20120816211635.68C03106566B@hub.freebsd.org> Date: Thu, 16 Aug 2012 23:16:31 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170682: [NEW PORT] graphics/puckman: An unofficial clone of the original Pac-Man 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: Thu, 16 Aug 2012 21:20:09 -0000 >Number: 170682 >Category: ports >Synopsis: [NEW PORT] graphics/puckman: An unofficial clone of the original Pac-Man game >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 Aug 16 21:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: This game is an unofficial clone of the original Pac-Man game and is not endorsed by the registered trademark owners Namco, Inc. WWW: https://github.com/patapizza/puckman Generated and tested manually, tested with port test and with RedPorts (all RELEASES), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: --- .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: # # puckman # puckman/Makefile # puckman/pkg-descr # puckman/distinfo # puckman/files # puckman/files/patch-Makefile # puckman/files/patch-puckman.c # echo c - puckman mkdir -p puckman > /dev/null 2>&1 echo x - puckman/Makefile sed 's/^X//' >puckman/Makefile << 'cef89b27799483972a0df749b3af70bf' X# New Ports collection makefile for puckman X# Date created: 2012-08-08 X# Whom: nemysis@gmx.ch X# X# $FreeBSD$ X# X XPORTNAME= puckman XPORTVERSION= 1.0 XCATEGORIES= graphics XMASTER_SITES= https://github.com/patapizza/puckman/tarball/master/ XDISTNAME= patapizza-${PORTNAME}-${DISTVERSION} X XMAINTAINER= nemysis@gmx.ch XCOMMENT= An unofficial clone of the original Pac-Man game X XLICENSE= GPLv3 X XOPTIONS_DEFINE= DATA XOPTIONS_DEFAULT= DATA X XFETCH_ARGS?= -Fpr XUSE_GMAKE= yes XUSE_SDL= sdl image gfx X XPLIST_FILES= bin/${PORTNAME} \ X share/pixmaps/${PORTNAME}.png X XPORTDATA= * XPORTDOCS= INSTALL README.md X X.include X Xdo-build: X cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \ X -DDATA_PREFIX=\"${DATADIR}/\" -DAUDIO -DLINUX \ X -lm `${SDL_CONFIG} --cflags --libs` -lSDL -lSDL_image -lSDL_gfx -lm puckman.c X Xdo-install: X# Executable X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X X# Data X.if ${PORT_OPTIONS:MDATA} X ${MKDIR} ${DATADIR} X @(cd ${WRKSRC} && ${COPYTREE_SHARE} images ${DATADIR}) X.endif X X# Documentation X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${DOCSDIR} X. for f in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X. endfor X.endif X X# Pixmaps X ${INSTALL_DATA} ${WRKSRC}/images/logo.png ${PREFIX}/share/pixmaps/${PORTNAME}.png X X.include cef89b27799483972a0df749b3af70bf echo x - puckman/pkg-descr sed 's/^X//' >puckman/pkg-descr << '393a41fb7184e56fd2c8da8b472e5e63' XThis game is an unofficial clone of the original Pac-Man game Xand is not endorsed by the registered trademark owners Namco, Inc. X XWWW: https://github.com/patapizza/puckman 393a41fb7184e56fd2c8da8b472e5e63 echo x - puckman/distinfo sed 's/^X//' >puckman/distinfo << '040b09250fabd6ac811e48e53fff44f9' XSHA256 (patapizza-puckman-1.0.tar.gz) = 995e90845993600ed6693f4a857cf6b0d6e9dc431ccea35c6b9243830f73e86a XSIZE (patapizza-puckman-1.0.tar.gz) = 191432 040b09250fabd6ac811e48e53fff44f9 echo c - puckman/files mkdir -p puckman/files > /dev/null 2>&1 echo x - puckman/files/patch-Makefile sed 's/^X//' >puckman/files/patch-Makefile << '042f1bbabbf668df5062f33ef7d9a7ac' X--- Makefile.orig 2012-08-16 19:32:29.000000000 +0200 X+++ Makefile 2012-08-16 20:12:01.000000000 +0200 X@@ -1,10 +1,10 @@ X-BIN = $(DESTDIR)/usr/bin X-ICONS = $(DESTDIR)/usr/share/puckman/images X-ICON = $(DESTDIR)/usr/share/pixmaps X-SYMICON = $(DESTDIR)/usr/share/icons/hicolor/48x48/apps X+BIN = $(DESTDIR)/usr/local/bin X+ICONS = $(DESTDIR)/usr/local/share/puckman/images X+ICON = $(DESTDIR)/usr/local/share/pixmaps X+SYMICON = $(DESTDIR)/usr/local/share/icons/hicolor/48x48/apps X SHELL = /bin/sh X CC = g++ X-prefix = /usr X+prefix = /usr/local X includedir = $(prefix)/include X pacdir = ~/.puckman X puckman: puckman.c X@@ -23,4 +23,4 @@ X X uninstall: X rm -vr $(ICONS) $(BIN)/puckman $(ICON)/puckman.png $(SYMICON)/puckman.png X- if test -e $(DESTDIR)/usr/share/applications/puckman.desktop; then rm -v $(DESTDIR)/usr/share/applications/puckman.desktop; fi X+ if test -e $(DESTDIR)/usr/local/share/applications/puckman.desktop; then rm -v $(DESTDIR)/usr/local/share/applications/puckman.desktop; fi 042f1bbabbf668df5062f33ef7d9a7ac echo x - puckman/files/patch-puckman.c sed 's/^X//' >puckman/files/patch-puckman.c << '88b5f5fa5478eb1e48fb4166dc328d03' X--- puckman.c.orig 2012-08-16 19:32:29.000000000 +0200 X+++ puckman.c 2012-08-16 20:11:00.000000000 +0200 X@@ -29,7 +29,7 @@ X #include X #include X X-#define PACPATH "/usr/share/puckman/" X+#define PACPATH "/usr/local/share/puckman/" X #define SCREEN_WIDTH 461 X #define SCREEN_HEIGHT 580 X #define RIGHT 0 88b5f5fa5478eb1e48fb4166dc328d03 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 21:30:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91304106564A for ; Thu, 16 Aug 2012 21: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 7C0D08FC08 for ; Thu, 16 Aug 2012 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 q7GLULsa005904 for ; Thu, 16 Aug 2012 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 q7GLULgR005901; Thu, 16 Aug 2012 21:30:21 GMT (envelope-from gnats) Date: Thu, 16 Aug 2012 21:30:21 GMT Message-Id: <201208162130.q7GLULgR005901@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/170671: [MAINTAINER] games/twind: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 21:30:21 -0000 The following reply was made to PR ports/170671; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170671: [MAINTAINER] games/twind: Makefile changed, OptionsNG Date: Thu, 16 Aug 2012 23:28:15 +0200 --MP_/TVO.TXJwbZq8/bCZ2y3Ox+Z Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline --MP_/TVO.TXJwbZq8/bCZ2y3Ox+Z Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=twind.diff diff -ruN twind.orig/Makefile twind/Makefile --- twind.orig/Makefile 2012-08-16 17:17:57.000000000 +0200 +++ twind/Makefile 2012-08-16 23:25:50.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= twind PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} --MP_/TVO.TXJwbZq8/bCZ2y3Ox+Z-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 22:47:34 2012 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 13F9E106566C; Thu, 16 Aug 2012 22:47:34 +0000 (UTC) (envelope-from r.neese@gmail.com) Received: from mail-gg0-f182.google.com (mail-gg0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id A80FE8FC0A; Thu, 16 Aug 2012 22:47:33 +0000 (UTC) Received: by ggnk4 with SMTP id k4so4290116ggn.13 for ; Thu, 16 Aug 2012 15:47:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; bh=Ww0c+F0+CMlUzsqcZVUaqTO7vWG3uM5EVNFZtyA16zo=; b=d5vMeeJG8GdgEViA51dSsKhWY3IqhcKDSHQayWrPAr7vivJRqfSQz9ypAwMZhBZ2Vu NF9WYdweMhk51G2l/cxh0ALbc9swFy28RaU5iqpt/Ni3bf1bO88ZiZUYSNqPWbOEo9qa Q3zg9CsU09LR3IxL4kvaXbgUbatJmvC3+/edBO7ixi+mkM/4FPYFbaexnAAosx0HDGPu RW/mxFI1r488hGFicDpfx1uFtyKM/TNoM518NKirMl0rkR5kcpKeKO+Y4xUufnkcO0h3 UPzcb7mOm6/m1PNuOmBOvpCDI7nG6T/KLXf1o2Dhh1iDMfM/cDdgbAnGka8KExmrHywg z+jw== Received: by 10.236.114.200 with SMTP id c48mr4169280yhh.118.1345157252667; Thu, 16 Aug 2012 15:47:32 -0700 (PDT) Received: from [127.0.0.1] ([97.100.95.108]) by mx.google.com with ESMTPS id j10sm5506101anl.20.2012.08.16.15.47.31 (version=SSLv3 cipher=OTHER); Thu, 16 Aug 2012 15:47:32 -0700 (PDT) Message-ID: <502D7880.7060209@gmail.com> Date: Thu, 16 Aug 2012 18:47:28 -0400 From: Richard E Neese User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <201208012150.q71Lo1X9008534@freefall.freebsd.org> In-Reply-To: <201208012150.q71Lo1X9008534@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------090707060308080102000707" Cc: Subject: Re: ports/170317: update for audio/freeswitch-music X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 22:47:34 -0000 This is a multi-part message in MIME format. --------------090707060308080102000707 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 8/1/2012 5:50 PM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/170317'. > 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=170317 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: update for audio/freeswitch-music >> Arrival-Date: Wed Aug 01 21:50:01 UTC 2012 update diff --------------090707060308080102000707 Content-Type: text/plain; charset=windows-1252; name="fs-music.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="fs-music.diff" Index: pkg-plist =================================================================== --- pkg-plist (revision 302659) +++ pkg-plist (working copy) @@ -1,24 +1,24 @@ %%DATADIR%%/sounds/.freeswitch-music -%%WITH_8K%%%%DATADIR%%/sounds/music/8000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav -%%WITH_8K%%%%DATADIR%%/sounds/music/8000/ponce-preludio-in-e-major.wav -%%WITH_8K%%%%DATADIR%%/sounds/music/8000/suite-espanola-op-47-leyenda.wav -%%WITH_8K%%%%DATADIR%%/sounds/music/8000/danza-espanola-op-37-h-142-xii-arabesca.wav -%%WITH_16K%%%%DATADIR%%/sounds/music/16000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav -%%WITH_16K%%%%DATADIR%%/sounds/music/16000/ponce-preludio-in-e-major.wav -%%WITH_16K%%%%DATADIR%%/sounds/music/16000/suite-espanola-op-47-leyenda.wav -%%WITH_16K%%%%DATADIR%%/sounds/music/16000/danza-espanola-op-37-h-142-xii-arabesca.wav -%%WITH_16K%%%%DATADIR%%/sounds/music/32000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav -%%WITH_32K%%%%DATADIR%%/sounds/music/32000/ponce-preludio-in-e-major.wav -%%WITH_32K%%%%DATADIR%%/sounds/music/32000/suite-espanola-op-47-leyenda.wav -%%WITH_32K%%%%DATADIR%%/sounds/music/32000/danza-espanola-op-37-h-142-xii-arabesca.wav -%%WITH_48K%%%%DATADIR%%/sounds/music/48000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav -%%WITH_48K%%%%DATADIR%%/sounds/music/48000/ponce-preludio-in-e-major.wav -%%WITH_48K%%%%DATADIR%%/sounds/music/48000/suite-espanola-op-47-leyenda.wav -%%WITH_48K%%%%DATADIR%%/sounds/music/48000/danza-espanola-op-37-h-142-xii-arabesca.wav -%%WITH_8K%%@dirrm %%DATADIR%%/sounds/music/8000 -%%WITH_16K%%@dirrm %%DATADIR%%/sounds/music/16000 -%%WITH_32K%%@dirrm %%DATADIR%%/sounds/music/32000 -%%WITH_48K%%@dirrm %%DATADIR%%/sounds/music/48000 +%%8K%%%%DATADIR%%/sounds/music/8000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav +%%8K%%%%DATADIR%%/sounds/music/8000/ponce-preludio-in-e-major.wav +%%8K%%%%DATADIR%%/sounds/music/8000/suite-espanola-op-47-leyenda.wav +%%8K%%%%DATADIR%%/sounds/music/8000/danza-espanola-op-37-h-142-xii-arabesca.wav +%%16K%%%%DATADIR%%/sounds/music/16000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav +%%16K%%%%DATADIR%%/sounds/music/16000/ponce-preludio-in-e-major.wav +%%16K%%%%DATADIR%%/sounds/music/16000/suite-espanola-op-47-leyenda.wav +%%16K%%%%DATADIR%%/sounds/music/16000/danza-espanola-op-37-h-142-xii-arabesca.wav +%%16K%%%%DATADIR%%/sounds/music/32000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav +%%32K%%%%DATADIR%%/sounds/music/32000/ponce-preludio-in-e-major.wav +%%32K%%%%DATADIR%%/sounds/music/32000/suite-espanola-op-47-leyenda.wav +%%32K%%%%DATADIR%%/sounds/music/32000/danza-espanola-op-37-h-142-xii-arabesca.wav +%%48K%%%%DATADIR%%/sounds/music/48000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav +%%48K%%%%DATADIR%%/sounds/music/48000/ponce-preludio-in-e-major.wav +%%48K%%%%DATADIR%%/sounds/music/48000/suite-espanola-op-47-leyenda.wav +%%48K%%%%DATADIR%%/sounds/music/48000/danza-espanola-op-37-h-142-xii-arabesca.wav +%%8K%%@dirrm %%DATADIR%%/sounds/music/8000 +%%16K%%@dirrm %%DATADIR%%/sounds/music/16000 +%%32K%%@dirrm %%DATADIR%%/sounds/music/32000 +%%48K%%@dirrm %%DATADIR%%/sounds/music/48000 @dirrm %%DATADIR%%/sounds/music @dirrmtry %%DATADIR%%/sounds @dirrmtry %%DATADIR%% Index: Makefile =================================================================== --- Makefile (revision 302659) +++ Makefile (working copy) @@ -24,35 +24,40 @@ SHAREGRP= ${SHAREOWN} LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} -OPTIONS= 8K "Install 8000Hz Music" on \ - 16K "Install 16000Hz Music" on \ - 32K "Install 32000Hz Music" on \ - 48K "Install 48000Hz Music" on +OPTIONS_DEFINE= 8K 16K 32K 48K +8K_DESC= 8000Hz Music +16K_DESC= 16000Hz Music +32K_DESC= 32000Hz Music +48K_DESC= 48000Hz Music + +OPTIONS_DEFAULT= 8K 16K +NO_OPTIONS_SORT= yes + .include -.if defined(WITH_8K) +.if ${PORT_OPTIONS:M8K} DISTFILES+= freeswitch-sounds-music-8000-${DISTVERSION}${EXTRACT_SUFX} .endif -.if defined(WITH_16K) +.if ${PORT_OPTIONS:M16K} DISTFILES+= freeswitch-sounds-music-16000-${DISTVERSION}${EXTRACT_SUFX} .endif -.if defined(WITH_32K) +.if ${PORT_OPTIONS:M32K} DISTFILES+= freeswitch-sounds-music-32000-${DISTVERSION}${EXTRACT_SUFX} .endif -.if defined(WITH_48K) +.if ${PORT_OPTIONS:M48K} DISTFILES+= freeswitch-sounds-music-48000-${DISTVERSION}${EXTRACT_SUFX} .endif -.for i in 8K 16K 32K 48K -. if !defined(WITH_${i}) -PLIST_SUB+= WITH_${i}="@comment " -. else -PLIST_SUB+= WITH_${i}="" -. endif +.for opt in ${ALL_OPTIONS} +.if $(PORT_OPTIONS:M${opt}) +PLIST_SUB+= ${opt}="" +.else +PLIST_SUB+= ${opt}="@comment " +.endif .endfor do-install: --------------090707060308080102000707-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 23:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BD3C1065674 for ; Thu, 16 Aug 2012 23:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4CB698FC17 for ; Thu, 16 Aug 2012 23: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 q7GNA8ce017774 for ; Thu, 16 Aug 2012 23: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 q7GNA8fI017773; Thu, 16 Aug 2012 23:10:08 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 23:10:08 GMT Resent-Message-Id: <201208162310.q7GNA8fI017773@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, Richard Neese Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59ABD106566B for ; Thu, 16 Aug 2012 23:05: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 453A38FC0A for ; Thu, 16 Aug 2012 23:05: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 q7GN5ims092471 for ; Thu, 16 Aug 2012 23:05:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GN5i3D092463; Thu, 16 Aug 2012 23:05:44 GMT (envelope-from nobody) Message-Id: <201208162305.q7GN5i3D092463@red.freebsd.org> Date: Thu, 16 Aug 2012 23:05:44 GMT From: Richard Neese To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170683: update of misc/freeswitch-scripts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 23:10:08 -0000 >Number: 170683 >Category: ports >Synopsis: update of misc/freeswitch-scripts >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 Aug 16 23:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Richard Neese >Release: FreeBSD 9.0-RELEASE >Organization: >Environment: FreeBSD ports.freebsd.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: updating ports for options ng >How-To-Repeat: >Fix: Patch attached with submission follows: Index: distinfo =================================================================== --- distinfo (revision 302590) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (freeswitch/freeswitch-1.2.rc2.tar.bz2) = bbf9b3f6e7a7569b9594b5852d1b8a95266ef3276df222776ac84667adb6cc08 -SIZE (freeswitch/freeswitch-1.2.rc2.tar.bz2) = 38075354 +SHA256 (freeswitch/freeswitch-1.2.1.tar.bz2) = 655fda7e37cae1c5ca1f7d789efcf008592904adc6eb9cdee72fc4bdc364c788 +SIZE (freeswitch/freeswitch-1.2.1.tar.bz2) = 37890105 Index: Makefile =================================================================== --- Makefile (revision 302590) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= freeswitch -DISTVERSION= 1.2.rc2 +DISTVERSION= 1.2.1 CATEGORIES= misc MASTER_SITES= http://files.freeswitch.org/ PKGNAMESUFFIX= -scripts-devel >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 23:18:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39CA6106566B; Thu, 16 Aug 2012 23:18:18 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0E7298FC12; Thu, 16 Aug 2012 23:18: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 q7GNIHnJ019636; Thu, 16 Aug 2012 23:18:17 GMT (envelope-from gjb@freefall.freebsd.org) Received: (from gjb@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7GNIHxw019632; Thu, 16 Aug 2012 23:18:17 GMT (envelope-from gjb) Date: Thu, 16 Aug 2012 23:18:17 GMT Message-Id: <201208162318.q7GNIHxw019632@freefall.freebsd.org> To: gjb@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: gjb@FreeBSD.org Cc: Subject: Re: ports/170684: [patch] update of misc/freeswitch-pizzademo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 16 Aug 2012 23:18:18 -0000 Synopsis: [patch] update of misc/freeswitch-pizzademo Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: gjb Responsible-Changed-When: Thu Aug 16 23:18:01 UTC 2012 Responsible-Changed-Why: Ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=170684 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 16 23:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C9D5106566C for ; Thu, 16 Aug 2012 23: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 0C3A88FC16 for ; Thu, 16 Aug 2012 23: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 q7GNK8rr019897 for ; Thu, 16 Aug 2012 23: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 q7GNK8wL019896; Thu, 16 Aug 2012 23:20:08 GMT (envelope-from gnats) Resent-Date: Thu, 16 Aug 2012 23:20:08 GMT Resent-Message-Id: <201208162320.q7GNK8wL019896@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, Richard Neese Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A14F710656B2 for ; Thu, 16 Aug 2012 23:10: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 8D2258FC0C for ; Thu, 16 Aug 2012 23:10: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 q7GNAQhK006390 for ; Thu, 16 Aug 2012 23:10:26 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7GNAQDd006389; Thu, 16 Aug 2012 23:10:26 GMT (envelope-from nobody) Message-Id: <201208162310.q7GNAQDd006389@red.freebsd.org> Date: Thu, 16 Aug 2012 23:10:26 GMT From: Richard Neese To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170685: update net/freeswitch-vanilla-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 23:20:09 -0000 >Number: 170685 >Category: ports >Synopsis: update net/freeswitch-vanilla-devel >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Aug 16 23:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Richard Neese >Release: FreeBSD 9.0-RELEASE >Organization: >Environment: FreeBSD ports.freebsd.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: updated port to options-ng and new version >How-To-Repeat: >Fix: Patch attached with submission follows: Index: distinfo =================================================================== --- distinfo (revision 301530) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (freeswitch/freeswitch-1.2.rc2.tar.bz2) = bbf9b3f6e7a7569b9594b5852d1b8a95266ef3276df222776ac84667adb6cc08 -SIZE (freeswitch/freeswitch-1.2.rc2.tar.bz2) = 38075354 +SHA256 (freeswitch/freeswitch-1.2.1.tar.bz2) = 655fda7e37cae1c5ca1f7d789efcf008592904adc6eb9cdee72fc4bdc364c788 +SIZE (freeswitch/freeswitch-1.2.1.tar.bz2) = 37890105 Index: Makefile =================================================================== --- Makefile (revision 301530) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= freeswitch -DISTVERSION= 1.2.rc2 +DISTVERSION= 1.2.1 CATEGORIES= net MASTER_SITES= http://files.freeswitch.org/ PKGNAMESUFFIX= -${FREESWITCH_CONF_DIST}-devel >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 01:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F23191065687 for ; Fri, 17 Aug 2012 01: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 BFF3E8FC17 for ; Fri, 17 Aug 2012 01: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 q7H1A9Yd038253 for ; Fri, 17 Aug 2012 01: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 q7H1A9o4038252; Fri, 17 Aug 2012 01:10:09 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 01:10:09 GMT Resent-Message-Id: <201208170110.q7H1A9o4038252@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, Tsurutani Naoki Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 277F3106566B for ; Fri, 17 Aug 2012 01:04:59 +0000 (UTC) (envelope-from turutani@scphys.kyoto-u.ac.jp) Received: from smtp-auth.kuins.kyoto-u.ac.jp (smtp-auth.kuins.kyoto-u.ac.jp [133.3.248.237]) by mx1.freebsd.org (Postfix) with ESMTP id B3E4B8FC08 for ; Fri, 17 Aug 2012 01:04:57 +0000 (UTC) Received: from smtp-auth.kuins.kyoto-u.ac.jp (smtp-auth.kuins.kyoto-u.ac.jp [127.0.0.1]) by postfix.imss70 (Postfix) with ESMTP id 745E7100AB; Fri, 17 Aug 2012 09:38:59 +0900 (JST) Received: from h120.65.226.10.32118.vlan.kuins.net (wd232.BFL23.vectant.ne.jp [210.131.195.232]) by smtp-auth.kuins.kyoto-u.ac.jp (Postfix) with ESMTP id 4F6B1100A9; Fri, 17 Aug 2012 09:38:59 +0900 (JST) Received: from h120.65.226.10.32118.vlan.kuins.net (localhost [127.0.0.1]) by h120.65.226.10.32118.vlan.kuins.net (8.14.4/8.14.4/20071004-1) with ESMTP id q7H0cqwx041343; Fri, 17 Aug 2012 09:38:52 +0900 (JST) (envelope-from turutani@h120.65.226.10.32118.vlan.kuins.net) Received: (from turutani@localhost) by h120.65.226.10.32118.vlan.kuins.net (8.14.4/8.14.4/Submit) id q7H0coet041342; Fri, 17 Aug 2012 09:38:50 +0900 (JST) (envelope-from turutani) Message-Id: <201208170038.q7H0coet041342@h120.65.226.10.32118.vlan.kuins.net> Date: Fri, 17 Aug 2012 09:38:50 +0900 (JST) From: Tsurutani Naoki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: turutani@scphys.kyoto-u.ac.jp Subject: ports/170686: www/linux-f10-flashplugin11 is vulnerable 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: Fri, 17 Aug 2012 01:10:10 -0000 >Number: 170686 >Category: ports >Synopsis: www/linux-f10-flashplugin11 is vulnerable >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Aug 17 01:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tsurutani Naoki >Release: FreeBSD 8.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD h120.65.226.10.32118.vlan.kuins.net 8.2-PRERELEASE FreeBSD 8.2-PRERELEASE #25: Mon Jan 24 10:37:18 JST 2011 turutani@h120.65.226.10.32118.vlan.kuins.net:/usr/local/work/usr/obj/usr/src/sys/POLYMER i386 >Description: www/linux-f10-flashplugin11 is vulnerable. ref: http://www.adobe.com/support/security/bulletins/apsb12-18.html 11.2.202.238 is available. >How-To-Repeat: >Fix: here is a patch: --- Makefile.orig 2012-06-25 10:32:14.000000000 +0900 +++ Makefile 2012-08-17 09:24:36.000000000 +0900 @@ -7,8 +7,7 @@ # PORTNAME= flashplugin -PORTVERSION= 11.2r202.236 -PORTREVISION= 1 +PORTVERSION= 11.2r202.238 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:C/r/\./}/:plugin \ LOCAL/nox:suplib --- distinfo.orig 2012-06-15 06:57:26.000000000 +0900 +++ distinfo 2012-08-17 09:29:14.000000000 +0900 @@ -1,4 +1,4 @@ -SHA256 (flashplugin/11.2r202.236/install_flash_player_11_linux.i386.tar.gz) = c24d9ecda151bd571360eb4988bb743fb956b2674016755cbe8205b7f99cb3a8 -SIZE (flashplugin/11.2r202.236/install_flash_player_11_linux.i386.tar.gz) = 6916648 -SHA256 (flashplugin/11.2r202.236/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.236/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +SHA256 (flashplugin/11.2r202.238/install_flash_player_11_linux.i386.tar.gz) = 8a9deb57288208d9d0300f6545358c04ff886187927ad9951985b0ba49be055c +SIZE (flashplugin/11.2r202.238/install_flash_player_11_linux.i386.tar.gz) = 6917475 +SHA256 (flashplugin/11.2r202.238/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.238/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 01:10:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C7981065680; Fri, 17 Aug 2012 01:10:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 600928FC17; Fri, 17 Aug 2012 01:10: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 q7H1AJrC038386; Fri, 17 Aug 2012 01:10:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H1AJD0038382; Fri, 17 Aug 2012 01:10:19 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 01:10:19 GMT Message-Id: <201208170110.q7H1AJD0038382@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, emulation@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170686: www/linux-f10-flashplugin11 is vulnerable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 01:10:19 -0000 Synopsis: www/linux-f10-flashplugin11 is vulnerable Responsible-Changed-From-To: freebsd-ports-bugs->emulation Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 17 01:10:18 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170686 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 03:30:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D333106567D for ; Fri, 17 Aug 2012 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 67B688FC1B for ; Fri, 17 Aug 2012 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 q7H3UG6D054415 for ; Fri, 17 Aug 2012 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 q7H3UGK5054412; Fri, 17 Aug 2012 03:30:16 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 03:30:16 GMT Message-Id: <201208170330.q7H3UGK5054412@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: HU Dong Cc: Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: HU Dong List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 03:30:16 -0000 The following reply was made to PR ports/169860; it has been noted by GNATS. From: HU Dong To: Michael Scheidell Cc: bug-followup@freebsd.org Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. Date: Fri, 17 Aug 2012 11:25:52 +0800 --bcaec5299feb9f9c1904c76db762 Content-Type: text/plain; charset=ISO-8859-1 Hi, Michael! It has been ten days since last time I responded the PR of ports/169860. I'm still waiting for your reply. -- B.R. HU Dong --bcaec5299feb9f9c1904c76db762 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Hi, Michael!=A0
=A0 =A0 It has been ten days since last time= I responded the PR of ports/169860. I'm still waiting for your reply.= =A0

--
B.R.
HU Dong

--bcaec5299feb9f9c1904c76db762-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 06:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA300106564A for ; Fri, 17 Aug 2012 06:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 949188FC1A for ; Fri, 17 Aug 2012 06: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 q7H6A8ro073057 for ; Fri, 17 Aug 2012 06: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 q7H6A8SM073056; Fri, 17 Aug 2012 06:10:08 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 06:10:08 GMT Message-Id: <201208170610.q7H6A8SM073056@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/170682 graphics/puckman: An unofficial clone of the original Pac-Man game X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 06:10:08 -0000 The following reply was made to PR ports/170682; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170682 graphics/puckman: An unofficial clone of the original Pac-Man game Date: Fri, 17 Aug 2012 08:09:14 +0200 --MP_/NC2FrvE3+MxGOR2MDV9mdg7 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline --MP_/NC2FrvE3+MxGOR2MDV9mdg7 Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=puckman.diff diff -ruN puckman.orig/Makefile puckman/Makefile --- puckman.orig/Makefile 2012-08-17 08:03:02.000000000 +0200 +++ puckman/Makefile 2012-08-17 07:59:29.000000000 +0200 @@ -26,6 +26,8 @@ PLIST_FILES= bin/${PORTNAME} \ share/pixmaps/${PORTNAME}.png +WRKSRC= ${WRKDIR}/patapizza-${PORTNAME}-f5b809c + PORTDATA= * PORTDOCS= INSTALL README.md --MP_/NC2FrvE3+MxGOR2MDV9mdg7-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 06:30:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D428106566B for ; Fri, 17 Aug 2012 06:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 058A58FC12 for ; Fri, 17 Aug 2012 06: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 q7H6U9Ol075310 for ; Fri, 17 Aug 2012 06:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H6U9S7075308; Fri, 17 Aug 2012 06:30:09 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 06:30:09 GMT Resent-Message-Id: <201208170630.q7H6U9S7075308@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, Loganaden Velvindron Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 333C2106566B for ; Fri, 17 Aug 2012 06:20:15 +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 1DF158FC0C for ; Fri, 17 Aug 2012 06:20:15 +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 q7H6KEYd053782 for ; Fri, 17 Aug 2012 06:20:14 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7H6KEDR053781; Fri, 17 Aug 2012 06:20:14 GMT (envelope-from nobody) Message-Id: <201208170620.q7H6KEDR053781@red.freebsd.org> Date: Fri, 17 Aug 2012 06:20:14 GMT From: Loganaden Velvindron To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170692: Incomplete perl module dependency causes password not to update correctly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 06:30:10 -0000 >Number: 170692 >Category: ports >Synopsis: Incomplete perl module dependency causes password not to update correctly >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: Fri Aug 17 06:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Loganaden Velvindron >Release: 9.0 >Organization: Afrinic Ltd >Environment: FreeBSD ops01.mu.afrinic.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Daniel Shaw (daniel@afrinic.net) discovered that usermin couldn't find a dependency to change the password, in change password menu. The dependancy is p5-IO-Tty which is called by changepasswd.cgi. sub pty_process_exec { local ($cmd, $uid, $gid) = @_; if (&is_readonly_mode()) { # When in readonly mode, don't run the command $cmd = "/bin/true"; } &webmin_debug_log('CMD', "cmd=$cmd uid=$uid gid=$gid") if ($gconfig{'debug_what_cmd'}); eval "use IO::Pty"; if (!$@) { # Use the IO::Pty perl module if installed local $ptyfh = new IO::Pty; if (!$ptyfh) { pty_process_exec is later called in changepasswd.cgi: ($fh, $fpid) = &proc::pty_process_exec( $passwd_cmd, $uinfo[2], $uinfo[3]); >How-To-Repeat: Go to change password, and change an existing user password. Nothing is displayed on the web page & the password isn't updated silently either. >Fix: A workaround is to install p5-IO-Tty manually, and then the password is changed correctly and the webpage confirms the change. Patch attached with submission follows: --- Makefile.orig 2012-08-17 10:02:14.000000000 +0400 +++ Makefile 2012-08-17 09:57:36.000000000 +0400 @@ -19,6 +19,7 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Web-based interface for performing some user tasks RUN_DEPENDS= p5-Net-SSLeay>=0:${PORTSDIR}/security/p5-Net-SSLeay \ + p5-IO-Tty>=0:${PORTSDIR}/devel/p5-IO-Tty \ p5-Authen-PAM>=0:${PORTSDIR}/security/p5-Authen-PAM FETCH_CMD?= /usr/bin/fetch -pRr >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 06:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D62E106566B for ; Fri, 17 Aug 2012 06: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 2988C8FC12 for ; Fri, 17 Aug 2012 06: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 q7H6e9ZL078414 for ; Fri, 17 Aug 2012 06:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H6e9Ju078413; Fri, 17 Aug 2012 06:40:09 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 06:40:09 GMT Resent-Message-Id: <201208170640.q7H6e9Ju078413@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, Loganaden Velvindron Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F80B1065713 for ; Fri, 17 Aug 2012 06:37:52 +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 2AD1B8FC0A for ; Fri, 17 Aug 2012 06:37:52 +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 q7H6bpTP083127 for ; Fri, 17 Aug 2012 06:37:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7H6bpUr083126; Fri, 17 Aug 2012 06:37:51 GMT (envelope-from nobody) Message-Id: <201208170637.q7H6bpUr083126@red.freebsd.org> Date: Fri, 17 Aug 2012 06:37:51 GMT From: Loganaden Velvindron To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170693: usermin change password not working X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 06:40:10 -0000 >Number: 170693 >Category: ports >Synopsis: usermin change password not working >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: Fri Aug 17 06:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Loganaden Velvindron >Release: 9.0-RELEASE >Organization: Afrinic Ltd >Environment: FreeBSD ops01.mu.afrinic.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Daniel Shaw (daniel@afrinic.net) discovered a bug in the usermin ports. usermin defines a function known as: ($fh, $fpid) = &proc::pty_process_exec( $passwd_cmd, $uinfo[2], $uinfo[3]); This is used to run passwd. However, this code relies on p5-IO-Tty: sub pty_process_exec { local ($cmd, $uid, $gid) = @_; if (&is_readonly_mode()) { # When in readonly mode, don't run the command $cmd = "/bin/true"; } &webmin_debug_log('CMD', "cmd=$cmd uid=$uid gid=$gid") if ($gconfig{'debug_what_cmd'}); eval "use IO::Pty"; if (!$@) { # Use the IO::Pty perl module if installed local $ptyfh = new IO::Pty; if (!$ptyfh) { &error("Failed to create new PTY with IO::Pty"); } >How-To-Repeat: install usermin & change the unix password of any user. Nothing is displayed after clicking on submit & the password is not updated. >Fix: install p5-IO-Tty manually. Patch attached with submission follows: --- Makefile.orig 2012-08-17 10:02:14.000000000 +0400 +++ Makefile 2012-08-17 09:57:36.000000000 +0400 @@ -19,6 +19,7 @@ MAINTAINER= olgeni@FreeBSD.org COMMENT= Web-based interface for performing some user tasks RUN_DEPENDS= p5-Net-SSLeay>=0:${PORTSDIR}/security/p5-Net-SSLeay \ + p5-IO-Tty>=0:${PORTSDIR}/devel/p5-IO-Tty \ p5-Authen-PAM>=0:${PORTSDIR}/security/p5-Authen-PAM FETCH_CMD?= /usr/bin/fetch -pRr >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 07:40:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C7BE106564A for ; Fri, 17 Aug 2012 07: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 D16858FC20 for ; Fri, 17 Aug 2012 07: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 q7H7eAkP093696 for ; Fri, 17 Aug 2012 07: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 q7H7eAoW093695; Fri, 17 Aug 2012 07:40:10 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 07:40:10 GMT Resent-Message-Id: <201208170740.q7H7eAoW093695@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Chen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 493E4106564A; Fri, 17 Aug 2012 07:36:11 +0000 (UTC) (envelope-from johnpupu@www.johnpupu.tw) Received: from www.johnpupu.tw (60-199-173-18.static.tfn.net.tw [60.199.173.18]) by mx1.freebsd.org (Postfix) with ESMTP id 133568FC12; Fri, 17 Aug 2012 07:36:10 +0000 (UTC) Received: from www.johnpupu.tw (localhost [127.0.0.1]) by www.johnpupu.tw (Postfix) with ESMTP id 2FB80536004; Fri, 17 Aug 2012 15:29:14 +0800 (CST) Received: (from root@localhost) by www.johnpupu.tw (8.14.5/8.14.5/Submit) id q7H7TE3V077278; Fri, 17 Aug 2012 15:29:14 +0800 (CST) (envelope-from johnpupu) Message-Id: <201208170729.q7H7TE3V077278@www.johnpupu.tw> Date: Fri, 17 Aug 2012 15:29:14 +0800 (CST) From: John Chen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: sunpoet@FreeBSD.org Subject: ports/170694: [PATCH] www/pecl-APC: [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: Fri, 17 Aug 2012 07:40:11 -0000 >Number: 170694 >Category: ports >Synopsis: [PATCH] www/pecl-APC: [SUMMARIZE CHANGES] >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 Aug 17 07:40:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: John Chen >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: Watcher >Environment: System: FreeBSD www.johnpupu.tw 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 >Description: [DESCRIBE CHANGES] Port maintainer (sunpoet@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: suffix) >How-To-Repeat: >Fix: --- pecl-APC-3.1.12.patch begins here --- diff -ruN --exclude=CVS ../pecl-APC.orig/Makefile ./Makefile --- ../pecl-APC.orig/Makefile 2012-08-06 19:09:36.000000000 +0800 +++ ./Makefile 2012-08-17 15:27:38.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= APC -DISTVERSION= 3.1.11 +DISTVERSION= 3.1.12 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- diff -ruN --exclude=CVS ../pecl-APC.orig/distinfo ./distinfo --- ../pecl-APC.orig/distinfo 2012-08-06 19:09:36.000000000 +0800 +++ ./distinfo 2012-08-17 15:28:02.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PECL/APC-3.1.11.tgz) = 478ae91c735087dda4f02d03399fb06ceba4355125ad8fd532b187c93004ebc7 -SIZE (PECL/APC-3.1.11.tgz) = 157478 +SHA256 (PECL/APC-3.1.12.tgz) = d41879b2ba08ca861bd6b59605e2544c039a9982d3d92a811fc5f6c85afe9ed2 +SIZE (PECL/APC-3.1.12.tgz) = 170655 --- pecl-APC-3.1.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 07:40:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ECAA71065672; Fri, 17 Aug 2012 07:40:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BFD038FC14; Fri, 17 Aug 2012 07:40: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 q7H7eLbP093862; Fri, 17 Aug 2012 07:40:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H7eLu1093858; Fri, 17 Aug 2012 07:40:21 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 07:40:21 GMT Message-Id: <201208170740.q7H7eLu1093858@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170694: [PATCH] www/pecl-APC: [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: Fri, 17 Aug 2012 07:40:22 -0000 Synopsis: [PATCH] www/pecl-APC: [SUMMARIZE CHANGES] Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 17 07:40:21 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170694 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 08:50:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89E25106564A for ; Fri, 17 Aug 2012 08: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 407AF8FC16 for ; Fri, 17 Aug 2012 08: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 q7H8o7rr007593 for ; Fri, 17 Aug 2012 08: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 q7H8o7BP007592; Fri, 17 Aug 2012 08:50:07 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 08:50:07 GMT Resent-Message-Id: <201208170850.q7H8o7BP007592@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, Dominic Fandrey Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 714BA106564A for ; Fri, 17 Aug 2012 08:47: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 5C9EC8FC14 for ; Fri, 17 Aug 2012 08:47: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 q7H8ll3m075487 for ; Fri, 17 Aug 2012 08:47:47 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7H8llFN075486; Fri, 17 Aug 2012 08:47:47 GMT (envelope-from nobody) Message-Id: <201208170847.q7H8llFN075486@red.freebsd.org> Date: Fri, 17 Aug 2012 08:47:47 GMT From: Dominic Fandrey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170695: sysutils/fusefs-ntfs - instant reboot when mv from UFS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 08:50:07 -0000 >Number: 170695 >Category: ports >Synopsis: sysutils/fusefs-ntfs - instant reboot when mv from UFS >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: Fri Aug 17 08:50:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dominic Fandrey >Release: RELENG_9 >Organization: private >Environment: FreeBSD mobileKamikaze.norad 9.0-STABLE FreeBSD 9.0-STABLE #1: Sat Jun 16 11:09:48 CEST 2012 root@mobileKamikaze.norad:/usr/obj/HP6510b-9/amd64/usr/src/sys/HP6510b-9 amd64 >Description: Ever since I switched from RELENG_8 to RELENG_9 a mv command from UFS to NTFS causes an instant reboot. No panic, no dumps. I just hit enter and get the BIOS loader screen. I mount my NTFS file systems through AMD. >How-To-Repeat: # cd /media/ntfs/5vault/videos/music/ # mount | grep ntfs /dev/fuse0 on /var/run/automounter.mnt/ntfs/5vault (fusefs, local, noatime, synchronous) # mv ~/'Hammerfall - Last Man Standing.flv' ./ >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58B71106564A for ; Fri, 17 Aug 2012 09: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 2DD018FC15 for ; Fri, 17 Aug 2012 09: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 q7H9AC3n009279 for ; Fri, 17 Aug 2012 09: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 q7H9AChx009278; Fri, 17 Aug 2012 09:10:12 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 09:10:12 GMT Resent-Message-Id: <201208170910.q7H9AChx009278@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, "Hans F. Nordhaug" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C29A8106564A for ; Fri, 17 Aug 2012 09:04:29 +0000 (UTC) (envelope-from nordhaug@hiMolde.no) Received: from malle.himolde.no (malle.hiMolde.no [158.38.68.22]) by mx1.freebsd.org (Postfix) with ESMTP id 223178FC0C for ; Fri, 17 Aug 2012 09:04:28 +0000 (UTC) Received: from harr.himolde.no (harr.hiMolde.no [158.38.68.20]) by malle.himolde.no (8.13.8/8.13.8) with ESMTP id q7H8lTTp011310 for ; Fri, 17 Aug 2012 10:47:35 +0200 Received: from harr.himolde.no (harr.himolde.no [127.0.0.1]) by harr.himolde.no (8.13.1/8.13.1) with ESMTP id q7H8lBiw012039 for ; Fri, 17 Aug 2012 10:47:11 +0200 Received: (from nordhaug@localhost) by harr.himolde.no (8.13.1/8.13.1/Submit) id q7H8lBrq012038 for FreeBSD-gnats-submit@freebsd.org; Fri, 17 Aug 2012 10:47:11 +0200 Message-Id: <20120817084711.GA12021@hiMolde.no> Date: Fri, 17 Aug 2012 10:47:11 +0200 From: "Hans F. Nordhaug" To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/170696: [MAINTAINER] www/piwik: update to 1.8.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: Fri, 17 Aug 2012 09:10:12 -0000 >Number: 170696 >Category: ports >Synopsis: [MAINTAINER] www/piwik: update to 1.8.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: Fri Aug 17 09:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Hans Fredrik Nordhaug >Release: FreeBSD 8.2-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD nordhaug.priv.no 8.2-RELEASE-p9 FreeBSD 8.2-RELEASE-p9 #0: Mon Jun 11 22:27:05 UTC 2012 >Description: - Update to 1.8.3 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) PS! This patch is sent from an alternative address since hans@nordhaug.priv.no doesn't work right now - ISP changed public IP .. >How-To-Repeat: >Fix: --- piwik-1.8.3.patch begins here --- diff -ruN --exclude=CVS ../piwik.orig/Makefile ./Makefile --- ../piwik.orig/Makefile 2012-08-17 09:22:56.000000000 +0200 +++ ./Makefile 2012-08-17 09:23:07.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= piwik -PORTVERSION= 1.8.2 +PORTVERSION= 1.8.3 CATEGORIES= www MASTER_SITES= http://builds.piwik.org/ diff -ruN --exclude=CVS ../piwik.orig/distinfo ./distinfo --- ../piwik.orig/distinfo 2012-08-17 09:22:56.000000000 +0200 +++ ./distinfo 2012-08-17 09:23:16.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (piwik-1.8.2.tar.gz) = 613337ec2558f2b056fd75e8062edcc3b3743581919cd4539210592f3d727152 -SIZE (piwik-1.8.2.tar.gz) = 4753349 +SHA256 (piwik-1.8.3.tar.gz) = db8ea4a41351b1df94ac72c2d863522dffe9196e9ffb9dd4146456e2676f5be9 +SIZE (piwik-1.8.3.tar.gz) = 4870162 diff -ruN --exclude=CVS ../piwik.orig/pkg-plist ./pkg-plist --- ../piwik.orig/pkg-plist 2012-08-17 09:22:56.000000000 +0200 +++ ./pkg-plist 2012-08-17 10:02:10.000000000 +0200 @@ -1,5 +1,6 @@ %%WWWDIR%%/LEGALNOTICE %%WWWDIR%%/README +%%WWWDIR%%/composer.json %%WWWDIR%%/config/config.ini.sample.php %%WWWDIR%%/config/global.ini.php %%WWWDIR%%/config/manifest.inc.php @@ -166,6 +167,7 @@ %%WWWDIR%%/core/Tracker/Action.php %%WWWDIR%%/core/Tracker/Config.php %%WWWDIR%%/core/Tracker/Db.php +%%WWWDIR%%/core/Tracker/Db/Exception.php %%WWWDIR%%/core/Tracker/Db/Mysqli.php %%WWWDIR%%/core/Tracker/Db/Pdo/Mysql.php %%WWWDIR%%/core/Tracker/Db/Pdo/Pgsql.php @@ -223,6 +225,7 @@ %%WWWDIR%%/core/Updates/1.7-b1.php %%WWWDIR%%/core/Updates/1.7.2-rc5.php %%WWWDIR%%/core/Updates/1.7.2-rc7.php +%%WWWDIR%%/core/Updates/1.8.3-b1.php %%WWWDIR%%/core/Url.php %%WWWDIR%%/core/Version.php %%WWWDIR%%/core/View.php @@ -967,6 +970,8 @@ %%WWWDIR%%/libs/tcpdf/fonts/helveticabi.php %%WWWDIR%%/libs/tcpdf/fonts/helveticai.php %%WWWDIR%%/libs/tcpdf/fonts/hysmyeongjostdmedium.php +%%WWWDIR%%/libs/tcpdf/fonts/kozminproregular.php +%%WWWDIR%%/libs/tcpdf/fonts/kozgopromedium.php %%WWWDIR%%/libs/tcpdf/fonts/msungstdlight.php %%WWWDIR%%/libs/tcpdf/fonts/stsongstdlight.php %%WWWDIR%%/libs/tcpdf/fonts/symbol.php @@ -995,6 +1000,24 @@ %%WWWDIR%%/misc/cron/archive.sh %%WWWDIR%%/misc/cron/archive.windows.ps1 %%WWWDIR%%/misc/crossdomain.xml +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/CHANGELOG +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/LICENSE +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/Modulefile +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/README.md +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/files/etc/php5/conf.d/mysqli.ini +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/files/etc/php5/conf.d/pdo.ini +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/files/etc/php5/conf.d/pdo_mysql.ini +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/apache.pp +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/base.pp +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/db.pp +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/init.pp +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/loganalytics.pp +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/nginx.pp +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/params.pp +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/php.pp +%%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests/repo.pp +%%WWWDIR%%/misc/deploy/puppet/site.pp +%%WWWDIR%%/misc/deploy/vagrant/precise64/Vagrantfile %%WWWDIR%%/misc/download-count.txt %%WWWDIR%%/misc/generateDoc.bat %%WWWDIR%%/misc/generateDoc.sh @@ -1247,6 +1270,23 @@ %%WWWDIR%%/plugins/Login/templates/lostPassword.tpl %%WWWDIR%%/plugins/Login/templates/passwordchanged.tpl %%WWWDIR%%/plugins/Login/templates/passwordsent.tpl +%%WWWDIR%%/plugins/MobileMessaging/API.php +%%WWWDIR%%/plugins/MobileMessaging/APIException.php +%%WWWDIR%%/plugins/MobileMessaging/Controller.php +%%WWWDIR%%/plugins/MobileMessaging/CountryCallingCodes.php +%%WWWDIR%%/plugins/MobileMessaging/GSMCharset.php +%%WWWDIR%%/plugins/MobileMessaging/MobileMessaging.php +%%WWWDIR%%/plugins/MobileMessaging/ReportRenderer/Exception.php +%%WWWDIR%%/plugins/MobileMessaging/ReportRenderer/Sms.php +%%WWWDIR%%/plugins/MobileMessaging/SMSProvider/Clockwork.php +%%WWWDIR%%/plugins/MobileMessaging/SMSProvider.php +%%WWWDIR%%/plugins/MobileMessaging/images/Clockwork.png +%%WWWDIR%%/plugins/MobileMessaging/images/phone.png +%%WWWDIR%%/plugins/MobileMessaging/lang/en.php +%%WWWDIR%%/plugins/MobileMessaging/scripts/MobileMessagingSettings.js +%%WWWDIR%%/plugins/MobileMessaging/templates/ReportParameters.tpl +%%WWWDIR%%/plugins/MobileMessaging/templates/SMSReport.tpl +%%WWWDIR%%/plugins/MobileMessaging/templates/Settings.tpl %%WWWDIR%%/plugins/Login/templates/resetPassword.tpl %%WWWDIR%%/plugins/MultiSites/API.php %%WWWDIR%%/plugins/MultiSites/CalculateEvolutionFilter.php @@ -1275,6 +1315,7 @@ %%WWWDIR%%/plugins/PDFReports/templates/index.tpl %%WWWDIR%%/plugins/PDFReports/templates/list.tpl %%WWWDIR%%/plugins/PDFReports/templates/pdf.js +%%WWWDIR%%/plugins/PDFReports/templates/report_parameters.tpl %%WWWDIR%%/plugins/PrivacyManager/Controller.php %%WWWDIR%%/plugins/PrivacyManager/PrivacyManager.php %%WWWDIR%%/plugins/PrivacyManager/LogDataPurger.php @@ -2057,6 +2098,7 @@ %%WWWDIR%%/themes/default/images/ok.png %%WWWDIR%%/themes/default/images/page_border_grad.png %%WWWDIR%%/themes/default/images/plus.png +%%WWWDIR%%/themes/default/images/refresh.png %%WWWDIR%%/themes/default/images/row_evolution.png %%WWWDIR%%/themes/default/images/search_bg.png %%WWWDIR%%/themes/default/images/search_ico.png @@ -2142,6 +2184,13 @@ @dirrm %%WWWDIR%%/plugins/MultiSites/templates @dirrm %%WWWDIR%%/plugins/MultiSites/images @dirrm %%WWWDIR%%/plugins/MultiSites +@dirrm %%WWWDIR%%/plugins/MobileMessaging/templates +@dirrm %%WWWDIR%%/plugins/MobileMessaging/scripts +@dirrm %%WWWDIR%%/plugins/MobileMessaging/lang +@dirrm %%WWWDIR%%/plugins/MobileMessaging/images +@dirrm %%WWWDIR%%/plugins/MobileMessaging/SMSProvider +@dirrm %%WWWDIR%%/plugins/MobileMessaging/ReportRenderer +@dirrm %%WWWDIR%%/plugins/MobileMessaging @dirrm %%WWWDIR%%/plugins/Login/templates @dirrm %%WWWDIR%%/plugins/Login @dirrm %%WWWDIR%%/plugins/Live/templates/scripts @@ -2197,8 +2246,19 @@ @dirrm %%WWWDIR%%/plugins/API @dirrm %%WWWDIR%%/plugins @dirrm %%WWWDIR%%/misc/proxy-hide-piwik-url -@dirrm %%WWWDIR%%/misc/cron @dirrm %%WWWDIR%%/misc/log-analytics +@dirrm %%WWWDIR%%/misc/deploy/vagrant/precise64 +@dirrm %%WWWDIR%%/misc/deploy/vagrant +@dirrm %%WWWDIR%%/misc/deploy/puppet/modules/piwik/manifests +@dirrm %%WWWDIR%%/misc/deploy/puppet/modules/piwik/files/etc/php5/conf.d +@dirrm %%WWWDIR%%/misc/deploy/puppet/modules/piwik/files/etc/php5 +@dirrm %%WWWDIR%%/misc/deploy/puppet/modules/piwik/files/etc +@dirrm %%WWWDIR%%/misc/deploy/puppet/modules/piwik/files +@dirrm %%WWWDIR%%/misc/deploy/puppet/modules/piwik +@dirrm %%WWWDIR%%/misc/deploy/puppet/modules +@dirrm %%WWWDIR%%/misc/deploy/puppet +@dirrm %%WWWDIR%%/misc/deploy +@dirrm %%WWWDIR%%/misc/cron @dirrm %%WWWDIR%%/misc @dirrm %%WWWDIR%%/libs/upgradephp @dirrm %%WWWDIR%%/libs/tcpdf/fonts --- piwik-1.8.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C2A31106566B for ; Fri, 17 Aug 2012 09: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 82B0B8FC17 for ; Fri, 17 Aug 2012 09: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 q7H9ACdx009288 for ; Fri, 17 Aug 2012 09: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 q7H9ACre009287; Fri, 17 Aug 2012 09:10:12 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 09:10:12 GMT Resent-Message-Id: <201208170910.q7H9ACre009287@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, Olivier Cochard-Labbe Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C03121065670 for ; Fri, 17 Aug 2012 09:04: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 ABC2C8FC0A for ; Fri, 17 Aug 2012 09:04:54 +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 q7H94s7L091737 for ; Fri, 17 Aug 2012 09:04:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7H94s5Z091736; Fri, 17 Aug 2012 09:04:54 GMT (envelope-from nobody) Message-Id: <201208170904.q7H94s5Z091736@red.freebsd.org> Date: Fri, 17 Aug 2012 09:04:54 GMT From: Olivier Cochard-Labbe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170697: net/bird: adding a master_site for the source X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 09:10:12 -0000 >Number: 170697 >Category: ports >Synopsis: net/bird: adding a master_site for the source >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: Fri Aug 17 09:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Olivier Cochard-Labbe >Release: 9.0-RELEASE >Organization: BSD Router Project >Environment: FreeBSD dev.bsdrp.net 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Trying to build net/bird, I meet fetch error: ftp://bird.network.cz/pub/bird/bird-1.3.8.tar.gz: No route to host ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/bird-1.3.8.tar.gz: File unavailable (e.g., file not found, no access) Adding a new mirror (fossies.org) solve the problem. >How-To-Repeat: This problem depends of the bird ftp server status. >Fix: Here is a quick patch: --- Makefile.orig 2012-08-17 10:51:04.000000000 +0200 +++ Makefile 2012-08-17 10:51:35.000000000 +0200 @@ -8,7 +8,8 @@ PORTNAME= bird PORTVERSION= 1.3.8 CATEGORIES= net -MASTER_SITES= ftp://bird.network.cz/pub/bird/ +MASTER_SITES= ftp://bird.network.cz/pub/bird/ \ + http://fossies.org/unix/misc/ MAINTAINER= melifaro@ipfw.ru COMMENT= Dynamic IP routing daemon (IPv4 version) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E062106566B; Fri, 17 Aug 2012 09: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 718688FC19; Fri, 17 Aug 2012 09: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 q7H9AMA1009410; Fri, 17 Aug 2012 09: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 q7H9AMHM009406; Fri, 17 Aug 2012 09:10:22 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 09:10:22 GMT Message-Id: <201208170910.q7H9AMHM009406@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/170696: [MAINTAINER] www/piwik: update to 1.8.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: Fri, 17 Aug 2012 09:10:22 -0000 Synopsis: [MAINTAINER] www/piwik: update to 1.8.3 Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Aug 17 09:10:22 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170696 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:10:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 378B810656E6; Fri, 17 Aug 2012 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 0B0C78FC1A; Fri, 17 Aug 2012 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 q7H9APTW009485; Fri, 17 Aug 2012 09: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 q7H9APxT009481; Fri, 17 Aug 2012 09:10:25 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 09:10:25 GMT Message-Id: <201208170910.q7H9APxT009481@freefall.freebsd.org> To: Hans.F.Nordhaug@hiMolde.no, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170696: [MAINTAINER] www/piwik: update to 1.8.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: Fri, 17 Aug 2012 09:10:26 -0000 Synopsis: [MAINTAINER] www/piwik: update to 1.8.3 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Aug 17 09:10:25 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170696 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:10:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 632491065673; Fri, 17 Aug 2012 09:10: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 37BAA8FC1D; Fri, 17 Aug 2012 09:10: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 q7H9AWQO009607; Fri, 17 Aug 2012 09:10:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H9AWoI009603; Fri, 17 Aug 2012 09:10:32 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 09:10:32 GMT Message-Id: <201208170910.q7H9AWoI009603@freefall.freebsd.org> To: olivier@cochard.me, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170697: net/bird: adding a master_site for the source X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 09:10:32 -0000 Synopsis: net/bird: adding a master_site for the source State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Aug 17 09:10:31 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170697 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:17:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6E461065672; Fri, 17 Aug 2012 09:17:56 +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 AA8458FC0C; Fri, 17 Aug 2012 09:17: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 q7H9HuKe011626; Fri, 17 Aug 2012 09:17:56 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H9Huu0011621; Fri, 17 Aug 2012 09:17:56 GMT (envelope-from rm) Date: Fri, 17 Aug 2012 09:17:56 GMT Message-Id: <201208170917.q7H9Huu0011621@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170696: [MAINTAINER] www/piwik: update to 1.8.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: Fri, 17 Aug 2012 09:17:56 -0000 Synopsis: [MAINTAINER] www/piwik: update to 1.8.3 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Fri Aug 17 09:17:56 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170696 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:35:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23B1F106564A; Fri, 17 Aug 2012 09:35:19 +0000 (UTC) (envelope-from g.veniamin@googlemail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id D0C968FC0A; Fri, 17 Aug 2012 09:35:18 +0000 (UTC) Received: by obbun3 with SMTP id un3so6758359obb.13 for ; Fri, 17 Aug 2012 02:35:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=LZIvuRn4zcw7EYT15a7HkBG+HA1Q8LKZvvwyIdnGOrA=; b=Epgdyz09QmrxuuNGQGTluBe+jMteWLHW9ftNPolSlONiz/thBRV4GB1b5nscaYF5ik HliQNRq7MVg1X33MyNmhSDqaeFdQk7YTSrtL9xfFLhbEFSNS+70cj8RYoFiU07exi4mM pRdyBs/fFm4IJwcSC41sTNeFmk0NWNka/G8RPFtVQH15uVcpyBZjK+/zD0QeVHfVmjma BrvKhghOKeVwp/Fpm7hKGZCQOe8PdMEf3n0EYzMxShkYfpUR0DnOeUPuq7TOsVSB5rTf Q2RI8JCJwGLyHQhFXywVP3CnZ7MB5G4JlKf3FrWgS7cWav+yeQPiMkuLQiYv6403Vlha HM0w== MIME-Version: 1.0 Received: by 10.60.25.104 with SMTP id b8mr3282103oeg.140.1345196117955; Fri, 17 Aug 2012 02:35:17 -0700 (PDT) Received: by 10.76.5.164 with HTTP; Fri, 17 Aug 2012 02:35:17 -0700 (PDT) In-Reply-To: <201208031959.q73Jx8mW053293@freefall.freebsd.org> References: <201208031959.q73Jx8mW053293@freefall.freebsd.org> Date: Fri, 17 Aug 2012 13:35:17 +0400 Message-ID: From: Veniamin Gvozdikov To: scheidell@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-ports-bugs@freebsd.org Subject: Re: ports/170348: [update]: databases/tarantool up to 1.4.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: Fri, 17 Aug 2012 09:35:19 -0000 All the best. I'm tried build again: https://redports.org/buildarchive/20120817080336-99323/ From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:35:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26C2C10656B2; Fri, 17 Aug 2012 09:35:26 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED27E8FC12; Fri, 17 Aug 2012 09:35: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 q7H9ZPWg014924; Fri, 17 Aug 2012 09:35:25 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H9ZPFr014917; Fri, 17 Aug 2012 09:35:25 GMT (envelope-from gavin) Date: Fri, 17 Aug 2012 09:35:25 GMT Message-Id: <201208170935.q7H9ZPFr014917@freefall.freebsd.org> To: logan@afrinic.net, gavin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: ports/170693: usermin change password not working X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 09:35:26 -0000 Synopsis: usermin change password not working State-Changed-From-To: open->closed State-Changed-By: gavin State-Changed-When: Fri Aug 17 09:35:03 UTC 2012 State-Changed-Why: Close, duplicate of 170692 (requested by submitter) http://www.freebsd.org/cgi/query-pr.cgi?pr=170693 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:37:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8518106564A; Fri, 17 Aug 2012 09:37:06 +0000 (UTC) (envelope-from melifaro@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8A2F68FC0C; Fri, 17 Aug 2012 09:37:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7H9b6s5015167; Fri, 17 Aug 2012 09:37:06 GMT (envelope-from melifaro@freefall.freebsd.org) Received: (from melifaro@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H9b6AJ015163; Fri, 17 Aug 2012 09:37:06 GMT (envelope-from melifaro) Date: Fri, 17 Aug 2012 09:37:06 GMT Message-Id: <201208170937.q7H9b6AJ015163@freefall.freebsd.org> To: melifaro@ipfw.ru, melifaro@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, melifaro@FreeBSD.org From: melifaro@FreeBSD.org Cc: Subject: Re: ports/170697: net/bird: adding a master_site for the source X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 09:37:06 -0000 Synopsis: net/bird: adding a master_site for the source Responsible-Changed-From-To: freebsd-ports-bugs->melifaro Responsible-Changed-By: melifaro Responsible-Changed-When: Fri Aug 17 09:14:17 UTC 2012 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=170697 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 09:51:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27BDA106566B; Fri, 17 Aug 2012 09:51: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 EEBDA8FC0C; Fri, 17 Aug 2012 09:51: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 q7H9pM8h016422; Fri, 17 Aug 2012 09:51:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7H9pMQr016418; Fri, 17 Aug 2012 09:51:22 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 09:51:22 GMT Message-Id: <201208170951.q7H9pMQr016418@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170692: sysutils/usermin: Incomplete perl module dependency causes password not to update correctly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 09:51:23 -0000 Synopsis: sysutils/usermin: Incomplete perl module dependency causes password not to update correctly Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 17 09:51:22 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170692 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 10:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FDF11065672 for ; Fri, 17 Aug 2012 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 1E1108FC19 for ; Fri, 17 Aug 2012 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 q7HAA9B1017696 for ; Fri, 17 Aug 2012 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 q7HAA9g2017695; Fri, 17 Aug 2012 10:10:09 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 10:10:09 GMT Resent-Message-Id: <201208171010.q7HAA9g2017695@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, Dave Evans Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE1D5106564A for ; Fri, 17 Aug 2012 10:04: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 B9AD98FC17 for ; Fri, 17 Aug 2012 10:04: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 q7HA4twX081641 for ; Fri, 17 Aug 2012 10: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 q7HA4tR1081626; Fri, 17 Aug 2012 10:04:55 GMT (envelope-from nobody) Message-Id: <201208171004.q7HA4tR1081626@red.freebsd.org> Date: Fri, 17 Aug 2012 10:04:55 GMT From: Dave Evans To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170698: textproc/p5-XML-AutoWriter does not compile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 10:10:10 -0000 >Number: 170698 >Category: ports >Synopsis: textproc/p5-XML-AutoWriter does not compile >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: Fri Aug 17 10:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dave Evans >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD eight.pearl 9.0-RELEASE FreeBSD 9.0-RELEASE #10: Wed Aug 15 16:22:11 BST 2012 root@eight.pearl:/usr/obj/usr/src/sys/GENERIC i386 >Description: Bareword "auto_set_repository" not allowed while "strict subs" in use at ./Makefile.PL line 12. Execution of ./Makefile.PL aborted due to compilation errors. *** Error code 255 >How-To-Repeat: >Fix: https://rt.cpan.org/ Bug ID 76225 suggests removing auto_set_repository from Makefile.PL I've tried this and it works. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 10:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 700D9106566C; Fri, 17 Aug 2012 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 442678FC0A; Fri, 17 Aug 2012 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 q7HAAMqt017828; Fri, 17 Aug 2012 10: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 q7HAAMxg017824; Fri, 17 Aug 2012 10:10:22 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 10:10:22 GMT Message-Id: <201208171010.q7HAAMxg017824@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170698: textproc/p5-XML-AutoWriter does not compile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 10:10:22 -0000 Synopsis: textproc/p5-XML-AutoWriter does not compile Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 17 10:10:21 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170698 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 10:40:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 755A91065674 for ; Fri, 17 Aug 2012 10:40: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 609248FC18 for ; Fri, 17 Aug 2012 10:40: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 q7HAeKAh024235 for ; Fri, 17 Aug 2012 10:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HAeKGf024234; Fri, 17 Aug 2012 10:40:20 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 10:40:20 GMT Message-Id: <201208171040.q7HAeKGf024234@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/170682 graphics/puckman: An unofficial clone of the original Pac-Man game X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 10:40:21 -0000 The following reply was made to PR ports/170682; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170682 graphics/puckman: An unofficial clone of the original Pac-Man game Date: Fri, 17 Aug 2012 12:33:45 +0200 --MP_/N6y.JsYNTXrNly/HGBpD4fa Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline --MP_/N6y.JsYNTXrNly/HGBpD4fa Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=puckman.diff diff -ruN puckman.orig/Makefile puckman/Makefile --- puckman.orig/Makefile 2012-08-17 08:03:02.000000000 +0200 +++ puckman/Makefile 2012-08-17 12:29:38.000000000 +0200 @@ -8,8 +8,7 @@ PORTNAME= puckman PORTVERSION= 1.0 CATEGORIES= graphics -MASTER_SITES= https://github.com/patapizza/puckman/tarball/master/ -DISTNAME= patapizza-${PORTNAME}-${DISTVERSION} +MASTER_SITES= https://github.com/downloads/patapizza/puckman/ MAINTAINER= nemysis@gmx.ch COMMENT= An unofficial clone of the original Pac-Man game @@ -33,7 +32,7 @@ do-build: cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \ - -DDATA_PREFIX=\"${DATADIR}/\" -DAUDIO -DLINUX \ + -DDATA_PREFIX=\"${DATADIR}/\" \ -lm `${SDL_CONFIG} --cflags --libs` -lSDL -lSDL_image -lSDL_gfx -lm puckman.c do-install: diff -ruN puckman.orig/distinfo puckman/distinfo --- puckman.orig/distinfo 2012-08-17 08:03:02.000000000 +0200 +++ puckman/distinfo 2012-08-17 12:27:01.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (patapizza-puckman-1.0.tar.gz) = 995e90845993600ed6693f4a857cf6b0d6e9dc431ccea35c6b9243830f73e86a -SIZE (patapizza-puckman-1.0.tar.gz) = 191432 +SHA256 (puckman-1.0.tar.gz) = 842919da45c77de4c77f66f11dde9f189b1d0d764f2ba76f5b93ee3288e967b2 +SIZE (puckman-1.0.tar.gz) = 210385 --MP_/N6y.JsYNTXrNly/HGBpD4fa-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 11:00:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2AD2106566B for ; Fri, 17 Aug 2012 11: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 90DBC8FC0C for ; Fri, 17 Aug 2012 11: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 q7HB0Tk9025384 for ; Fri, 17 Aug 2012 11: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 q7HB0SWF025383; Fri, 17 Aug 2012 11:00:28 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 11:00:28 GMT Resent-Message-Id: <201208171100.q7HB0SWF025383@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, Pakhom Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FAE0106566C for ; Fri, 17 Aug 2012 10:53:05 +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 EE9498FC14 for ; Fri, 17 Aug 2012 10:53: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 q7HAr4E4055545 for ; Fri, 17 Aug 2012 10:53:04 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7HAr4N6055544; Fri, 17 Aug 2012 10:53:04 GMT (envelope-from nobody) Message-Id: <201208171053.q7HAr4N6055544@red.freebsd.org> Date: Fri, 17 Aug 2012 10:53:04 GMT From: Pakhom To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170700: net-mgmt/zabbix2-server: 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: Fri, 17 Aug 2012 11:00:30 -0000 >Number: 170700 >Category: ports >Synopsis: net-mgmt/zabbix2-server: 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: Fri Aug 17 11:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pakhom >Release: 9.0-RELEASE >Organization: Golynga >Environment: >Description: - Update to 2.0.2 - Remove patch to proc.c (ZBX-3897 fixed) >How-To-Repeat: >Fix: Patch attached with submission follows: diff --exclude=CVS -urN zabbix2-server.orig/Makefile zabbix2-server/Makefile --- zabbix2-server.orig/Makefile 2012-08-16 16:53:27.000000000 +0400 +++ zabbix2-server/Makefile 2012-08-16 17:31:40.320758853 +0400 @@ -6,7 +6,7 @@ # PORTNAME= zabbix2 -PORTVERSION= 2.0.0 +PORTVERSION= 2.0.2 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server diff --exclude=CVS -urN zabbix2-server.orig/distinfo zabbix2-server/distinfo --- zabbix2-server.orig/distinfo 2012-08-16 16:53:27.000000000 +0400 +++ zabbix2-server/distinfo 2012-08-16 17:36:32.352753562 +0400 @@ -1,2 +1,2 @@ -SHA256 (zabbix-2.0.0.tar.gz) = 52cc4b8a8624d53ff4591ebf86a92c19230964d46d39e5cccf7b8648fb2ecf4d -SIZE (zabbix-2.0.0.tar.gz) = 12091622 +SHA256 (zabbix-2.0.2.tar.gz) = 2db56e4fc291f5469584844703f6815fe739c3b33b4c2d5854285a780650cfbb +SIZE (zabbix-2.0.2.tar.gz) = 12070505 diff --exclude=CVS -urN zabbix2-server.orig/files/patch-src_libs_zbxsysinfo_freebsd__proc.c zabbix2-server/files/patch-src_libs_zbxsysinfo_freebsd__proc.c --- zabbix2-server.orig/files/patch-src_libs_zbxsysinfo_freebsd__proc.c 2012-05-12 17:55:28.000000000 +0400 +++ zabbix2-server/files/patch-src_libs_zbxsysinfo_freebsd__proc.c 1970-01-01 03:00:00.000000000 +0300 @@ -1,98 +0,0 @@ ---- src/libs/zbxsysinfo/freebsd/proc.c.orig 2011-12-28 03:27:42.000000000 -0600 -+++ src/libs/zbxsysinfo/freebsd/proc.c 2012-04-25 21:54:13.877489156 -0500 -@@ -36,17 +36,13 @@ - # define ZBX_PROC_PID ki_pid - # define ZBX_PROC_COMM ki_comm - # define ZBX_PROC_STAT ki_stat --# define ZBX_PROC_TSIZE ki_tsize --# define ZBX_PROC_DSIZE ki_dsize --# define ZBX_PROC_SSIZE ki_ssize -+# define ZBX_PROC_VSIZE ki_size - #else - # define ZBX_COMMLEN MAXCOMLEN - # define ZBX_PROC_PID kp_proc.p_pid - # define ZBX_PROC_COMM kp_proc.p_comm - # define ZBX_PROC_STAT kp_proc.p_stat --# define ZBX_PROC_TSIZE kp_eproc.e_vm.vm_tsize --# define ZBX_PROC_DSIZE kp_eproc.e_vm.vm_dsize --# define ZBX_PROC_SSIZE kp_eproc.e_vm.vm_ssize -+# define ZBX_PROC_VSIZE kp_eproc.e_vm.vm_map.size - #endif - - static char *get_commandline(struct kinfo_proc *proc) -@@ -97,7 +93,7 @@ - char procname[MAX_STRING_LEN], - buffer[MAX_STRING_LEN], - proccomm[MAX_STRING_LEN], *args; -- int do_task, pagesize, count, i, -+ int do_task, count, i, - proc_ok, comm_ok, - mib[4], mibs; - -@@ -152,8 +148,6 @@ - if (0 != get_param(param, 4, proccomm, sizeof(proccomm))) - *proccomm = '\0'; - -- pagesize = getpagesize(); -- - mib[0] = CTL_KERN; - mib[1] = KERN_PROC; - if (NULL != usrinfo) -@@ -164,7 +158,11 @@ - } - else - { -+#if(__FreeBSD_version > 500000) -+ mib[2] = KERN_PROC_PROC; -+#else - mib[2] = KERN_PROC_ALL; -+#endif - mib[3] = 0; - mibs = 3; - } -@@ -184,11 +182,6 @@ - - for (i = 0; i < count; i++) - { --#if(__FreeBSD_version > 500000) -- if (proc[i].ki_flag & P_KTHREAD) /* skip a system thread */ -- continue; --#endif -- - proc_ok = 0; - comm_ok = 0; - if (*procname == '\0' || 0 == strcmp(procname, proc[i].ZBX_PROC_COMM)) -@@ -205,8 +198,7 @@ - - if (proc_ok && comm_ok) - { -- value = proc[i].ZBX_PROC_TSIZE + proc[i].ZBX_PROC_DSIZE + proc[i].ZBX_PROC_SSIZE; -- value *= pagesize; -+ value = proc[i].ZBX_PROC_VSIZE; /* vsize is bytes not pages */ - - if (0 == proccount++) - memsize = value; -@@ -306,7 +298,11 @@ - } - else - { -+#if(__FreeBSD_version > 500000) -+ mib[2] = KERN_PROC_PROC; -+#else - mib[2] = KERN_PROC_ALL; -+#endif - mib[3] = 0; - mibs = 3; - } -@@ -326,11 +322,6 @@ - - for (i = 0; i < count; i++) - { --#if(__FreeBSD_version > 500000) -- if (proc[i].ki_flag & P_KTHREAD) /* skip a system thread */ -- continue; --#endif -- - proc_ok = 0; - stat_ok = 0; - comm_ok = 0; \ No newline at end of file >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 11:01:00 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8081B106564A; Fri, 17 Aug 2012 11:01:00 +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 537C38FC14; Fri, 17 Aug 2012 11:01: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 q7HB10iS025487; Fri, 17 Aug 2012 11:01:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HB1026025483; Fri, 17 Aug 2012 11:01:00 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 11:01:00 GMT Message-Id: <201208171101.q7HB1026025483@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/170700: net-mgmt/zabbix2-server: 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: Fri, 17 Aug 2012 11:01:00 -0000 Synopsis: net-mgmt/zabbix2-server: update to 2.0.2 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Fri Aug 17 11:00:52 UTC 2012 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170700 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 11:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0B6C1065672 for ; Fri, 17 Aug 2012 11: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 818068FC08 for ; Fri, 17 Aug 2012 11: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 q7HBeAuQ034436 for ; Fri, 17 Aug 2012 11: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 q7HBeAjG034435; Fri, 17 Aug 2012 11:40:10 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 11:40:10 GMT Message-Id: <201208171140.q7HBeAjG034435@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. 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: Fri, 17 Aug 2012 11:40:10 -0000 The following reply was made to PR ports/169860; it has been noted by GNATS. From: Michael Scheidell To: , Cc: Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. Date: Fri, 17 Aug 2012 07:31:10 -0400 --------------010101040902020005040907 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit patch will not apply against current ports tree. I can't help you until you fix the patch. do this: update your portstree, completely, bring it back to orignal. then 'rsync -avC --delete /usr/ports/www/xxxterm /usr/ports/www/xombrero cd /usr/ports/www/xombrero bring in your latest patch: fetch -o /tmp/patch 'http://www.freebsd.org/cgi/query-pr.cgi?pr=ports%2F169860&getpatch=4' patch it: patch -EuN -d /usr/ports/xombrero -i /tmp/patch won't apply. fix your patch. -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell --------------010101040902020005040907 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit patch will not apply against current ports tree.
I can't help you until you fix the patch.


do this:

update your portstree, completely, bring it back to orignal.

then 'rsync -avC --delete  /usr/ports/www/xxxterm /usr/ports/www/xombrero

cd /usr/ports/www/xombrero

bring in your latest patch:
fetch -o /tmp/patch  'http://www.freebsd.org/cgi/query-pr.cgi?pr=ports%2F169860&getpatch=4'

patch it:

patch -EuN -d /usr/ports/xombrero -i /tmp/patch

won't apply.

fix your patch.


--
Michael Scheidell, CTO
> | SECNAP Network Security Corporation
d: +1.561.948.2259
w: http://people.freebsd.org/~scheidell
--------------010101040902020005040907-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 12:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A108D1065676 for ; Fri, 17 Aug 2012 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 786F98FC14 for ; Fri, 17 Aug 2012 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 q7HCeAWQ042258 for ; Fri, 17 Aug 2012 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 q7HCeAER042257; Fri, 17 Aug 2012 12:40:10 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 12:40:10 GMT Resent-Message-Id: <201208171240.q7HCeAER042257@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pietro Cerutti Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36FDD106566B for ; Fri, 17 Aug 2012 12:31: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 2166B8FC16 for ; Fri, 17 Aug 2012 12:31: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 q7HCVs2q004235 for ; Fri, 17 Aug 2012 12:31:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7HCVsQN004234; Fri, 17 Aug 2012 12:31:54 GMT (envelope-from nobody) Message-Id: <201208171231.q7HCVsQN004234@red.freebsd.org> Date: Fri, 17 Aug 2012 12:31:54 GMT From: Pietro Cerutti To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170703: [patch] finance/cbb -- update to 0.9.5.b + support Tcl/Tk > 8.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 12:40:10 -0000 >Number: 170703 >Category: ports >Synopsis: [patch] finance/cbb -- update to 0.9.5.b + support Tcl/Tk > 8.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: Fri Aug 17 12:40:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pietro Cerutti >Release: >Organization: The FreeBSD Project >Environment: >Description: Hi, * update finance/cbb to the latest 0.9.5.b version * update WWW in pkg-descr * support Tcl/Tk > 8.2 Please run it and see whether you can find any errors with newer Tcl/Tk. I have patched to errors directly in the port Makefile (see post-patch). >How-To-Repeat: >Fix: Patch attached with submission follows: Index: pkg-descr =================================================================== --- pkg-descr (revision 302680) +++ pkg-descr (working copy) @@ -6,4 +6,4 @@ interface for users to add their own reports, graphs, and external modules without having to modify any of the CBB source. -WWW: http://cbb.sourceforge.net/ +WWW: http://gna.org/projects/cbb/ Index: distinfo =================================================================== --- distinfo (revision 302680) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (cbb-0.8.1.tar.gz) = 5e6b6e5bc8c64c21690041f4d05529f032d014b258ec17a6768d46aef7a90b21 -SIZE (cbb-0.8.1.tar.gz) = 460490 +SHA256 (cbb-0.9.5b.tgz) = c18d707889608ae497b4c4cec030feb0129a73f4cfdcae227d20a6e61f41fc28 +SIZE (cbb-0.9.5b.tgz) = 298252 Index: pkg-plist =================================================================== --- pkg-plist (revision 302680) +++ pkg-plist (working copy) @@ -1,116 +1,129 @@ bin/cbb -bin/dialog4duplicate -lib/cbb/languages/english.tcl -lib/cbb/languages/french.tcl -lib/cbb/languages/german.tcl -lib/cbb/reports/reports.conf -lib/cbb/reports/ave-by-cat.pl -lib/cbb/reports/by-cat.pl -lib/cbb/reports/by-payee.pl -lib/cbb/reports/miss-check.pl -lib/cbb/reports/shrt-by-cat.pl -lib/cbb/reports/txn-list.pl -lib/cbb/reports/uncleared-txn.pl -lib/cbb/graphs/graphs.conf -lib/cbb/graphs/cat-col.pl -lib/cbb/graphs/cat-pie.pl -lib/cbb/graphs/cat2-col.pl -lib/cbb/graphs/desc-pie.pl -lib/cbb/graphs/txn-list.pl -lib/cbb/graphs/descpie -lib/cbb/graphs/graphbal -lib/cbb/graphs/graphcol -lib/cbb/graphs/graphcolpos -lib/cbb/graphs/graphpie -lib/cbb/images/author.xbm -lib/cbb/images/cbb.xbm -lib/cbb/images/mini-cross.gif -lib/cbb/images/mini-exclam.gif -lib/cbb/images/splash-32.gif -lib/cbb/contrib/change.pl -lib/cbb/contrib/conv-french-qif.pl -lib/cbb/contrib/emacs-edb -lib/cbb/contrib/emacs-forms -lib/cbb/contrib/fetch-latest.pl -lib/cbb/contrib/importcat.README -lib/cbb/contrib/importcat.pl -lib/cbb/contrib/invest.pl -lib/cbb/contrib/loan.gnuplot -lib/cbb/contrib/loan.pl -lib/cbb/contrib/loan_recur.pl -lib/cbb/contrib/mym_to_cbb.pl -lib/cbb/contrib/recur.pl -lib/cbb/contrib/term.pl -lib/cbb/contrib/trimold.pl -lib/cbb/contrib/txn.README -lib/cbb/contrib/txn -lib/cbb/contrib/upgrade-splits.pl -lib/cbb/contrib/yearend.pl -lib/cbb/docs/cbb-man/icons.png/blueball.png -lib/cbb/docs/cbb-man/icons.png/change_begin.png -lib/cbb/docs/cbb-man/icons.png/change_delete.png -lib/cbb/docs/cbb-man/icons.png/change_end.png -lib/cbb/docs/cbb-man/icons.png/contents_motif.png -lib/cbb/docs/cbb-man/icons.png/cross_ref_motif.png -lib/cbb/docs/cbb-man/icons.png/foot_motif.png -lib/cbb/docs/cbb-man/icons.png/greenball.png -lib/cbb/docs/cbb-man/icons.png/image.png -lib/cbb/docs/cbb-man/icons.png/index_motif.png -lib/cbb/docs/cbb-man/icons.png/next_group_motif.png -lib/cbb/docs/cbb-man/icons.png/next_group_motif_gr.png -lib/cbb/docs/cbb-man/icons.png/next_motif.png -lib/cbb/docs/cbb-man/icons.png/next_motif_gr.png -lib/cbb/docs/cbb-man/icons.png/orangeball.png -lib/cbb/docs/cbb-man/icons.png/pinkball.png -lib/cbb/docs/cbb-man/icons.png/previous_group_motif.png -lib/cbb/docs/cbb-man/icons.png/previous_group_motif_gr.png -lib/cbb/docs/cbb-man/icons.png/previous_motif.png -lib/cbb/docs/cbb-man/icons.png/previous_motif_gr.png -lib/cbb/docs/cbb-man/icons.png/purpleball.png -lib/cbb/docs/cbb-man/icons.png/redball.png -lib/cbb/docs/cbb-man/icons.png/up_motif.png -lib/cbb/docs/cbb-man/icons.png/up_motif_gr.png -lib/cbb/docs/cbb-man/icons.png/whiteball.png -lib/cbb/docs/cbb-man/icons.png/yellowball.png -lib/cbb/docs/cbb-man/cbb-man.html -lib/cbb/docs/cbb-man/index.html -lib/cbb/docs/cbb-man/img1.png -lib/cbb/docs/cbb-man/img2.png -lib/cbb/docs/cbb-man/img3.png -lib/cbb/docs/cbb-man.txt -lib/cbb/wrapper.pl -lib/cbb/categories.pl -lib/cbb/common.pl -lib/cbb/engine.pl -lib/cbb/export.pl -lib/cbb/file.pl -lib/cbb/import.pl -lib/cbb/log.pl -lib/cbb/memorized.pl -lib/cbb/reports.pl -lib/cbb/balloon.tcl -lib/cbb/balance.tcl -lib/cbb/bindings.tcl -lib/cbb/categories.tcl -lib/cbb/common.tcl -lib/cbb/file.tcl -lib/cbb/filebox.tcl -lib/cbb/help.tcl -lib/cbb/init.tcl -lib/cbb/main.tcl -lib/cbb/menu.tcl -lib/cbb/prefs.tcl -lib/cbb/reports.tcl -lib/cbb/splits.tcl -lib/cbb/undo.tcl -lib/cbb/default.cat -lib/cbb/extern.conf -@dirrm lib/cbb/contrib -@dirrm lib/cbb/docs/cbb-man/icons.png -@dirrm lib/cbb/docs/cbb-man -@dirrm lib/cbb/docs -@dirrm lib/cbb/graphs -@dirrm lib/cbb/images -@dirrm lib/cbb/languages -@dirrm lib/cbb/reports -@dirrm lib/cbb +lib/cbb-%%VERSION%%/cbbdb +lib/cbb-%%VERSION%%/contrib/change.pl +lib/cbb-%%VERSION%%/contrib/conv-french-qif.pl +lib/cbb-%%VERSION%%/contrib/emacs-edb +lib/cbb-%%VERSION%%/contrib/emacs-forms +lib/cbb-%%VERSION%%/contrib/fetch-latest.pl +lib/cbb-%%VERSION%%/contrib/importcat.README +lib/cbb-%%VERSION%%/contrib/importcat.pl +lib/cbb-%%VERSION%%/contrib/invest.pl +lib/cbb-%%VERSION%%/contrib/loan.gnuplot +lib/cbb-%%VERSION%%/contrib/loan.pl +lib/cbb-%%VERSION%%/contrib/loan_recur.pl +lib/cbb-%%VERSION%%/contrib/mym_to_cbb.pl +lib/cbb-%%VERSION%%/contrib/recur.pl +lib/cbb-%%VERSION%%/contrib/term.pl +lib/cbb-%%VERSION%%/contrib/trimold.pl +lib/cbb-%%VERSION%%/contrib/txn +lib/cbb-%%VERSION%%/contrib/txn.README +lib/cbb-%%VERSION%%/contrib/upgrade-splits.pl +lib/cbb-%%VERSION%%/contrib/yearend.pl +lib/cbb-%%VERSION%%/docs/cbb-man.txt +lib/cbb-%%VERSION%%/docs/cbb-man/cbb-man.html +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/blueball.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/change_begin.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/change_delete.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/change_end.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/contents_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/cross_ref_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/foot_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/greenball.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/image.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/index_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/next_group_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/next_group_motif_gr.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/next_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/next_motif_gr.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/orangeball.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/pinkball.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/previous_group_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/previous_group_motif_gr.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/previous_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/previous_motif_gr.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/purpleball.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/redball.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/up_motif.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/up_motif_gr.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/whiteball.png +lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/yellowball.png +lib/cbb-%%VERSION%%/docs/cbb-man/img1.png +lib/cbb-%%VERSION%%/docs/cbb-man/img2.png +lib/cbb-%%VERSION%%/docs/cbb-man/img3.png +lib/cbb-%%VERSION%%/docs/cbb-man/index.html +lib/cbb-%%VERSION%%/docs/graphs.txt +lib/cbb-%%VERSION%%/docs/notes +lib/cbb-%%VERSION%%/docs/perl.commands +lib/cbb-%%VERSION%%/docs/perl.functions +lib/cbb-%%VERSION%%/docs/plsubs +lib/cbb-%%VERSION%%/docs/tcl.functions +lib/cbb-%%VERSION%%/docs/todo.txt +lib/cbb-%%VERSION%%/docs/update.notes +lib/cbb-%%VERSION%%/etc/default.cat +lib/cbb-%%VERSION%%/etc/extern.conf +lib/cbb-%%VERSION%%/graphs/cat-col.pl +lib/cbb-%%VERSION%%/graphs/cat-pie.pl +lib/cbb-%%VERSION%%/graphs/cat2-col.pl +lib/cbb-%%VERSION%%/graphs/desc-pie.pl +lib/cbb-%%VERSION%%/graphs/descpie +lib/cbb-%%VERSION%%/graphs/graphbal +lib/cbb-%%VERSION%%/graphs/graphcol +lib/cbb-%%VERSION%%/graphs/graphcolpos +lib/cbb-%%VERSION%%/graphs/graphpie +lib/cbb-%%VERSION%%/graphs/graphs.conf +lib/cbb-%%VERSION%%/graphs/txn-list.pl +lib/cbb-%%VERSION%%/images/author.xbm +lib/cbb-%%VERSION%%/images/cbb.xbm +lib/cbb-%%VERSION%%/images/mini-cross.gif +lib/cbb-%%VERSION%%/images/mini-exclam.gif +lib/cbb-%%VERSION%%/images/splash-32.gif +lib/cbb-%%VERSION%%/languages/english.tcl +lib/cbb-%%VERSION%%/languages/french.tcl +lib/cbb-%%VERSION%%/languages/german.tcl +lib/cbb-%%VERSION%%/perl/accounts.pl +lib/cbb-%%VERSION%%/perl/categories.pl +lib/cbb-%%VERSION%%/perl/common.pl +lib/cbb-%%VERSION%%/perl/engine.pl +lib/cbb-%%VERSION%%/perl/export.pl +lib/cbb-%%VERSION%%/perl/file.pl +lib/cbb-%%VERSION%%/perl/groups.pl +lib/cbb-%%VERSION%%/perl/import.pl +lib/cbb-%%VERSION%%/perl/log.pl +lib/cbb-%%VERSION%%/perl/memorized.pl +lib/cbb-%%VERSION%%/perl/reports.pl +lib/cbb-%%VERSION%%/reports/ave-by-cat.pl +lib/cbb-%%VERSION%%/reports/by-cat.pl +lib/cbb-%%VERSION%%/reports/by-payee.pl +lib/cbb-%%VERSION%%/reports/miss-check.pl +lib/cbb-%%VERSION%%/reports/rep-txn-list.pl +lib/cbb-%%VERSION%%/reports/reports.conf +lib/cbb-%%VERSION%%/reports/shrt-by-cat.pl +lib/cbb-%%VERSION%%/reports/uncleared-txn.pl +lib/cbb-%%VERSION%%/tcl/balance.tcl +lib/cbb-%%VERSION%%/tcl/balloon.tcl +lib/cbb-%%VERSION%%/tcl/bindings.tcl +lib/cbb-%%VERSION%%/tcl/categories.tcl +lib/cbb-%%VERSION%%/tcl/common.tcl +lib/cbb-%%VERSION%%/tcl/dates.tcl +lib/cbb-%%VERSION%%/tcl/file.tcl +lib/cbb-%%VERSION%%/tcl/filebox.tcl +lib/cbb-%%VERSION%%/tcl/help.tcl +lib/cbb-%%VERSION%%/tcl/init.tcl +lib/cbb-%%VERSION%%/tcl/main.tcl +lib/cbb-%%VERSION%%/tcl/menu.tcl +lib/cbb-%%VERSION%%/tcl/prefs.tcl +lib/cbb-%%VERSION%%/tcl/reports.tcl +lib/cbb-%%VERSION%%/tcl/splits.tcl +lib/cbb-%%VERSION%%/tcl/undo.tcl +@dirrm lib/cbb-%%VERSION%%/tcl +@dirrm lib/cbb-%%VERSION%%/reports +@dirrm lib/cbb-%%VERSION%%/perl +@dirrm lib/cbb-%%VERSION%%/languages +@dirrm lib/cbb-%%VERSION%%/images +@dirrm lib/cbb-%%VERSION%%/graphs +@dirrm lib/cbb-%%VERSION%%/etc +@dirrm lib/cbb-%%VERSION%%/docs/cbb-man/icons.png +@dirrm lib/cbb-%%VERSION%%/docs/cbb-man +@dirrm lib/cbb-%%VERSION%%/docs +@dirrm lib/cbb-%%VERSION%%/contrib +@dirrm lib/cbb-%%VERSION%% Index: Makefile =================================================================== --- Makefile (revision 302680) +++ Makefile (working copy) @@ -6,29 +6,28 @@ # PORTNAME= cbb -PORTVERSION= 0.8.1 -PORTREVISION= 1 +DISTVERSION= 0.9.5b CATEGORIES= finance deskutils -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-0.8%20%28stable%29/${PORTVERSION} +MASTER_SITES= http://download.gna.org/cbb/ +EXTRACT_SUFX= .tgz MAINTAINER= kline@thought.org COMMENT= Checkbook balancing tool -RUN_DEPENDS= wish8.2:${PORTSDIR}/x11-toolkits/tk82 +USE_TK= yes NO_BUILD= yes USE_PERL5= yes GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-perl=${PERL} \ + --with-wish=${WISH} +WRKSRC= ${WRKDIR}/${PKGNAME:R} +PLIST_SUB+= VERSION=${PORTVERSION:R:R} post-patch: - @${REINPLACE_CMD} -e "s|PERL = /usr/bin/perl|PERL = ${PERL5}|" \ - -e "s|WISH = /usr/bin/wish|WISH = ${LOCALBASE}/bin/wish8.2|" \ - -e "s|DESTDIR =||" ${WRKSRC}/Makefile - @${REINPLACE_CMD} "s|DESTDIR =||" ${WRKSRC}/Makefile - @${REINPLACE_CMD} -e 's|$$destdir/bin|$$prefix/bin|' \ - -e 's|$$destdir/lib/cbb|$$prefix/lib/cbb|' \ - ${WRKSRC}/install.pl - @${REINPLACE_CMD} -e "s|=wish|=wish8.2|" -e 's|=""wish""|=""wish8.2""|' \ - ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's|.aboutwin.frame.a.l6 ||' \ + ${WRKSRC}/tcl/help.tcl + ${REINPLACE_CMD} -e 's|%4Y%02m%02d|%Y%m%d|' \ + ${WRKSRC}/tcl/main.tcl .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 12:40:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EC6A1065687; Fri, 17 Aug 2012 12:40: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 529FC8FC19; Fri, 17 Aug 2012 12:40: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 q7HCeSva042389; Fri, 17 Aug 2012 12:40:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HCeS0l042385; Fri, 17 Aug 2012 12:40:28 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 12:40:28 GMT Message-Id: <201208171240.q7HCeS0l042385@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170703: [patch] finance/cbb -- update to 0.9.5.b + support Tcl/Tk > 8.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 12:40:28 -0000 Synopsis: [patch] finance/cbb -- update to 0.9.5.b + support Tcl/Tk > 8.2 Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 17 12:40:27 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170703 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 13:00:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E142B106564A for ; Fri, 17 Aug 2012 13: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 C206B8FC18 for ; Fri, 17 Aug 2012 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 q7HD0NuD043571 for ; Fri, 17 Aug 2012 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 q7HD0N8e043570; Fri, 17 Aug 2012 13:00:23 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 13:00:23 GMT Message-Id: <201208171300.q7HD0N8e043570@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: HU Dong Cc: Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: HU Dong List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 13:00:24 -0000 The following reply was made to PR ports/169860; it has been noted by GNATS. From: HU Dong To: Michael Scheidell Cc: bug-followup@freebsd.org Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. Date: Fri, 17 Aug 2012 20:52:40 +0800 --14dae93408aba98b5304c775a21c Content-Type: multipart/alternative; boundary=14dae93408aba98b4f04c775a21a --14dae93408aba98b4f04c775a21a Content-Type: text/plain; charset=ISO-8859-1 Thanks for your reply. How about a shar file? I'm not familiar with diff and patch commands, so I made a shar file. It should work now. --14dae93408aba98b4f04c775a21a Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Thanks for your reply.=A0

How about a shar file? I'm= not familiar with diff and patch commands, so I made a shar file. It shoul= d work now.
--14dae93408aba98b4f04c775a21a-- --14dae93408aba98b5304c775a21c Content-Type: text/plain; charset=US-ASCII; name="xombrero.txt" Content-Disposition: attachment; filename="xombrero.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_h5za1rie0 IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUgYW55 dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50ZXJpbmcg InNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBmaWxlcyBhbmQg ZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBkZWZhdWx0IHBlcm1p c3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJeG9tYnJlcm8KIwl4b21icmVy by9maWxlcwojCXhvbWJyZXJvL2ZpbGVzL3hvbWJyZXJvLmluCiMJeG9tYnJlcm8vZmlsZXMvcGF0 Y2gtZnJlZWJzZF9fTWFrZWZpbGUKIwl4b21icmVyby9maWxlcy9wYXRjaC14b21icmVyby5jCiMJ eG9tYnJlcm8vZGlzdGluZm8KIwl4b21icmVyby9wa2ctZGVzY3IKIwl4b21icmVyby9wa2ctbWVz c2FnZQojCXhvbWJyZXJvL3BrZy1wbGlzdAojCXhvbWJyZXJvL01ha2VmaWxlCiMKZWNobyBjIC0g eG9tYnJlcm8KbWtkaXIgLXAgeG9tYnJlcm8gPiAvZGV2L251bGwgMj4mMQplY2hvIGMgLSB4b21i cmVyby9maWxlcwpta2RpciAtcCB4b21icmVyby9maWxlcyA+IC9kZXYvbnVsbCAyPiYxCmVjaG8g eCAtIHhvbWJyZXJvL2ZpbGVzL3hvbWJyZXJvLmluCnNlZCAncy9eWC8vJyA+eG9tYnJlcm8vZmls ZXMveG9tYnJlcm8uaW4gPDwgJzhhYmU0ZDJjZGVhMzgyMGRjMWNkNWYwNmI2YzY2MDMzJwpYIyEv YmluL3NoClgKWCMgQSB3cmFwcGVyIHNjcmlwdCBmb3IgeG9tYnJlcm8KWCMgQ3JlYXRlZCBieSBI VSBEb25nPGl0ZWNoYmVhckBnbWFpbC5jb20+ClgKWGlmIFsgISAtZCAifi8ueG9tYnJlcm8iIF07 IHRoZW4KWAlta2RpciAtcCAtbSA3MDAgfi8ueG9tYnJlcm8KWGZpClgKWGlmIFsgISAtZiAifi8u eG9tYnJlcm8uY29uZiIgXTsgdGhlbgpYCWNwICUlRVhBTVBMRVNESVIlJS94b21icmVyby5jb25m IH4vLnhvbWJyZXJvLmNvbmYKWAljaG1vZCArdyB+Ly54b21icmVyby5jb25mClhmaQpYClhpZiBb ICEgLWYgIn4vLnhvbWJyZXJvL3BsYXlmbGFzaC5zaCIgXTsgdGhlbgpYCWNwICUlRVhBTVBMRVNE SVIlJS9wbGF5Zmxhc2guc2ggfi8ueG9tYnJlcm8vcGxheWZsYXNoLnNoClgJY2htb2QgK3ggfi8u eG9tYnJlcm8vcGxheWZsYXNoLnNoClhmaQpYClhleGVjICUlUFJFRklYJSUvYmluL3hvbWJyZXJv LWJpbgo4YWJlNGQyY2RlYTM4MjBkYzFjZDVmMDZiNmM2NjAzMwplY2hvIHggLSB4b21icmVyby9m aWxlcy9wYXRjaC1mcmVlYnNkX19NYWtlZmlsZQpzZWQgJ3MvXlgvLycgPnhvbWJyZXJvL2ZpbGVz L3BhdGNoLWZyZWVic2RfX01ha2VmaWxlIDw8ICdlYWFlZDRlYmYzZTE3OWFhMzdhMjQ2YTlmNTc5 ZDUyOCcKWC0tLSAuL2ZyZWVic2QvTWFrZWZpbGUub3JpZwkyMDEyLTA3LTI1IDE3OjM3OjU1LjAw MDAwMDAwMCAtMDQwMApYKysrIC4vZnJlZWJzZC9NYWtlZmlsZQkyMDEyLTA3LTMxIDA4OjEzOjAy LjAwMDAwMDAwMCAtMDQwMApYQEAgLTksOCArOSw4IEBAClggTERBREQ9IC1sdXRpbCAtbGdjcnlw dApYIEdUS19DRkxBR1MhPSBwa2ctY29uZmlnIC0tY2ZsYWdzICQoTElCUykKWCBHVEtfTERGTEFH UyE9IHBrZy1jb25maWcgLS1saWJzICQoTElCUykKWC1DRkxBR1MrPSAkKEdUS19DRkxBR1MpIC1P MiAtV2FsbCAtcHRocmVhZApYLUxERkxBR1MrPSAkKEdUS19MREZMQUdTKSAtcHRocmVhZApYK0NG TEFHUys9ICQoR1RLX0NGTEFHUykgLVdhbGwgLURfR0NSWVBUX0lOX0xJQkdDUllQVD0xIC1JLi4g JHtQVEhSRUFEX0NGTEFHU30KWCtMREZMQUdTKz0gJChHVEtfTERGTEFHUykgJHtQVEhSRUFEX0xJ QlN9ClggClggUFJFRklYPz0gL3Vzci9sb2NhbApYIEJJTkRJUj89ICQoUFJFRklYKS9iaW4KZWFh ZWQ0ZWJmM2UxNzlhYTM3YTI0NmE5ZjU3OWQ1MjgKZWNobyB4IC0geG9tYnJlcm8vZmlsZXMvcGF0 Y2gteG9tYnJlcm8uYwpzZWQgJ3MvXlgvLycgPnhvbWJyZXJvL2ZpbGVzL3BhdGNoLXhvbWJyZXJv LmMgPDwgJzE0YTBkMjBhNzNlYWQzNmVjYzJlN2JjNzczZjQ2NjQyJwpYLS0tIC4veG9tYnJlcm8u Yy5vcmlnCTIwMTItMDctMjUgMTc6Mzc6NTUuMDAwMDAwMDAwIC0wNDAwClgrKysgLi94b21icmVy by5jCTIwMTItMDctMzEgMDg6MTM6MDIuMDAwMDAwMDAwIC0wNDAwClhAQCAtMTQyMyw3ICsxNDIz LDcgQEAKWCB7ClggCXN0cnVjdCBwYXNzd2QJCSpwd2Q7ClggCWludAkJCWk7ClgtCWNoYXIJCQl1 c2VyW0xPR0lOX05BTUVfTUFYXTsKWCsJY2hhcgkJCXVzZXJbc3lzY29uZihfU0NfTE9HSU5fTkFN RV9NQVgpXTsKWCAJY29uc3QgY2hhcgkJKnNjID0gczsKWCAKWCAJaWYgKHBhdGggPT0gTlVMTCB8 fCBzID09IE5VTEwpCjE0YTBkMjBhNzNlYWQzNmVjYzJlN2JjNzczZjQ2NjQyCmVjaG8geCAtIHhv bWJyZXJvL2Rpc3RpbmZvCnNlZCAncy9eWC8vJyA+eG9tYnJlcm8vZGlzdGluZm8gPDwgJzdmMWQ5 ZjFlYmNkZTcyMTMzMmM5MmJlNDVhNzUwMzhmJwpYU0hBMjU2ICh4b21icmVyby0xLjIuMi50Z3op ID0gN2NkMmQxMTc0MjM5YjVlM2Y4OTc0NzNjYTY5ZWZjMWZiMzAzNDkxZDZlZDYwYmYwNjgyNjNh ZGZiNzZiMTY0YQpYU0laRSAoeG9tYnJlcm8tMS4yLjIudGd6KSA9IDI0MjAzOAo3ZjFkOWYxZWJj ZGU3MjEzMzJjOTJiZTQ1YTc1MDM4ZgplY2hvIHggLSB4b21icmVyby9wa2ctZGVzY3IKc2VkICdz L15YLy8nID54b21icmVyby9wa2ctZGVzY3IgPDwgJzExYjUzNzE2NDM4YjZlNWY3MGU1MmZhM2Yx NjNjZmQyJwpYeG9tYnJlcm8sIHByZXZpb3VzbHkga25vd24gYXMgeHh4dGVybSwgaXMgYSBtaW5p bWFsaXN0cyB3ZWIgYnJvd3Nlci4gSXQgc3RyaXZlcyAKWHRvIGJlIHZpLWxpa2UgZm9yIGhlYXZ5 IGtleWJvYXJkIHVzZXJzIHdoaWxlIG1haW50YWluaW5nIHRyYWRpdGlvbmFsIHdlYiBicm93c2Vy ClggYmVoYXZpb3VyLiBJdCBpcyBJU0MgbGljZW5zZWQuIEl0IGlzIGJhc2VkIG9uIHdlYmtpdCB1 c2luZyBHVEsrLiAKWApYV1dXOiBodHRwczovL29wZW5zb3VyY2UuY29uZm9ybWFsLmNvbS93aWtp L3hvbWJyZXJvCjExYjUzNzE2NDM4YjZlNWY3MGU1MmZhM2YxNjNjZmQyCmVjaG8geCAtIHhvbWJy ZXJvL3BrZy1tZXNzYWdlCnNlZCAncy9eWC8vJyA+eG9tYnJlcm8vcGtnLW1lc3NhZ2UgPDwgJ2Rl MWViOWE1ZGYwZDMxM2JlMjhiZWY3MTNlMjk4M2NhJwpYKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqClgKWE5vdGUg dGhhdCB4b21icmVybyB3aWxsIGNvcHkgYSBzY3JpcHQgcGxheWZsYXNoLnNoIHRvIH4vLnhvbWJy ZXJvLyB0aGUKWGZpcnN0IHRpbWUgaXQgcnVucywgYnV0IHRoaXMgc2NyaXB0ICB3aWxsIG5vdCB3 b3JrIG91dGJveCwgYmVjYXVzZSBpdApYZGVwZW5kcyBvbiB3d3cvZ2V0X2ZsYXNoX3ZpZGVvcyBh bmQgYSBidW5jaCBvZiBzdWJzZXF1ZW50IGRlcGVuZGVuY2llcy4KWApYKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq CmRlMWViOWE1ZGYwZDMxM2JlMjhiZWY3MTNlMjk4M2NhCmVjaG8geCAtIHhvbWJyZXJvL3BrZy1w bGlzdApzZWQgJ3MvXlgvLycgPnhvbWJyZXJvL3BrZy1wbGlzdCA8PCAnNDc4NWEyNGZhNmY2ZGI3 NzliMTVmZTY3MDYxNTdhYmEnClhiaW4veG9tYnJlcm8KWGJpbi94b21icmVyby1iaW4KWHNoYXJl L2FwcGxpY2F0aW9ucy94b21icmVyby5kZXNrdG9wClhzaGFyZS9pY29ucy9oaWNvbG9yLzEyOHgx MjgvYXBwcy94b21icmVyb2ljb24xMjgucG5nClhzaGFyZS9pY29ucy9oaWNvbG9yLzE2eDE2L2Fw cHMveG9tYnJlcm9pY29uMTYucG5nClhzaGFyZS9pY29ucy9oaWNvbG9yLzMyeDMyL2FwcHMveG9t YnJlcm9pY29uMzIucG5nClhzaGFyZS9pY29ucy9oaWNvbG9yLzQ4eDQ4L2FwcHMveG9tYnJlcm9p Y29uNDgucG5nClhzaGFyZS9pY29ucy9oaWNvbG9yLzY0eDY0L2FwcHMveG9tYnJlcm9pY29uNjQu cG5nClglJURBVEFESVIlJS9zdHlsZS5jc3MKWCUlREFUQURJUiUlL3RsZC1ydWxlcwpYQGRpcnJt ICUlREFUQURJUiUlClhAZGlycm10cnkgc2hhcmUvaWNvbnMvaGljb2xvci82NHg2NC9hcHBzClhA ZGlycm10cnkgc2hhcmUvaWNvbnMvaGljb2xvci82NHg2NApYQGRpcnJtdHJ5IHNoYXJlL2ljb25z L2hpY29sb3IvNDh4NDgvYXBwcwpYQGRpcnJtdHJ5IHNoYXJlL2ljb25zL2hpY29sb3IvNDh4NDgK WEBkaXJybXRyeSBzaGFyZS9pY29ucy9oaWNvbG9yLzMyeDMyL2FwcHMKWEBkaXJybXRyeSBzaGFy ZS9pY29ucy9oaWNvbG9yLzMyeDMyClhAZGlycm10cnkgc2hhcmUvaWNvbnMvaGljb2xvci8xNngx Ni9hcHBzClhAZGlycm10cnkgc2hhcmUvaWNvbnMvaGljb2xvci8xNngxNgpYQGRpcnJtdHJ5IHNo YXJlL2ljb25zL2hpY29sb3IvMTI4eDEyOC9hcHBzClhAZGlycm10cnkgc2hhcmUvaWNvbnMvaGlj b2xvci8xMjh4MTI4ClhAZGlycm10cnkgc2hhcmUvaWNvbnMvaGljb2xvcgpYQGRpcnJtdHJ5IHNo YXJlL2ljb25zClhAZGlycm10cnkgc2hhcmUvYXBwbGljYXRpb25zCjQ3ODVhMjRmYTZmNmRiNzc5 YjE1ZmU2NzA2MTU3YWJhCmVjaG8geCAtIHhvbWJyZXJvL01ha2VmaWxlCnNlZCAncy9eWC8vJyA+ eG9tYnJlcm8vTWFrZWZpbGUgPDwgJzVlYmU3ZDhmYTNmMGI5MzRlOGQ2YWViYTk4YTA0NzhiJwpY IyBOZXcgcG9ydHMgY29sbGVjdGlvbiBtYWtlZmlsZSBmb3I6CXhvbWJyZXJvClgjIERhdGUgY3Jl YXRlZDoJCQkJSnVseSAyNyAyMDEyClgjIFdob206CQkJCQlIVSBEb25nIDxpdGVjaGJlYXJAZ21h aWwuY29tPgpYIwpYIyAkRnJlZUJTRCQKWCMKWApYUE9SVE5BTUU9CXhvbWJyZXJvClhQT1JUVkVS U0lPTj0JMS4yLjIKWENBVEVHT1JJRVM9CXd3dwpYTUFTVEVSX1NJVEVTPQlodHRwczovL29wZW5z b3VyY2UuY29uZm9ybWFsLmNvbS9zbmFwc2hvdHMveG9tYnJlcm8vIFwKWAkJU0YveHh4dGVybS8K WEVYVFJBQ1RfU1VGWD0JLnRnegpYClhNQUlOVEFJTkVSPQlpdGVjaGJlYXJAZ21haWwuY29tClhD T01NRU5UPQlNaW5pbWFsaXN0cyB2aS1saWtlIHdlYiBicm93c2VyIGJhc2VkIG9uIHdlYmtpdCBh bmQgR1RLKwpYClhMSUNFTlNFPQlJU0NMClgKWExJQl9ERVBFTkRTPQlnbnV0bHM6JHtQT1JUU0RJ Un0vc2VjdXJpdHkvZ251dGxzIFwKWAkJc291cC0yOiR7UE9SVFNESVJ9L2RldmVsL2xpYnNvdXAg XApYCQl3ZWJraXRndGstMToke1BPUlRTRElSfS93d3cvd2Via2l0LWd0azIKWApYVVNFX1BLR0NP TkZJRz0JeWVzClhVU0VfUEVSTDVfQlVJTEQ9eWVzClhVU0VfR05PTUU9CWd0azIwClhJTlNUQUxM U19JQ09OUz0JeWVzClgKWE1BS0VfRU5WPQlHVEtfVkVSU0lPTj0iZ3RrMiIgXApYCQlQVEhSRUFE X0NGTEFHUz0iJHtQVEhSRUFEX0NGTEFHU30iIFwKWAkJUFRIUkVBRF9MSUJTPSIke1BUSFJFQURf TElCU30iClgKWE1BTjE9CQl4b21icmVyby4xClhQT1JURVhBTVBMRVM9CWZhdm9yaXRlcyBwbGF5 Zmxhc2guc2ggeG9tYnJlcm8uY29uZgpYClhCVUlMRF9XUktTUkM9CSR7V1JLU1JDfS9mcmVlYnNk ClgKWE9QVElPTlNfREVGSU5FPQlFWEFNUExFUwpYClhTVUJfRklMRVM9CXhvbWJyZXJvClgKWC5p bmNsdWRlIDxic2QucG9ydC5wcmUubWs+ClgKWC5pZiAke09TVkVSU0lPTn0gPCA4MDAwNDEKWEJS T0tFTj0JCWRvZXMgbm90IGJ1aWxkIGR1ZSB0byBtaXNzaW5nIGFyYzRyYW5kb21fYnVmIGluIGxp YmMKWC5lbmRpZgpYClhwb3N0LXBhdGNoOgpYCUBjZCAke1dSS1NSQ307ICR7UkVJTlBMQUNFX0NN RH0gLWUgJ3N8L3Vzci9sb2NhbHwke0xPQ0FMQkFTRX18ZycgXApYCQktZSAnc3wjIHNzbF9jYV9m aWxlfHNzbF9jYV9maWxlfCcgXApYCQktZSAnc3wvZXRjL3NzbC9jZXJ0LnBlbXwke0xPQ0FMQkFT RX0vc2hhcmUvY2VydHMvY2Etcm9vdC1uc3MuY3J0fCcgXApYCQkJdW5peC5jIHhvbWJyZXJvLmNv bmYKWGRvLWluc3RhbGw6ClgJJHtJTlNUQUxMX1NDUklQVH0gJHtXUktESVJ9L3hvbWJyZXJvICR7 UFJFRklYfS9iaW4veG9tYnJlcm8KWAkke0lOU1RBTExfUFJPR1JBTX0gJHtXUktTUkN9L2ZyZWVi c2QveG9tYnJlcm8gJHtQUkVGSVh9L2Jpbi94b21icmVyby1iaW4KWAkke0lOU1RBTExfTUFOfSAk e1dSS1NSQ30veG9tYnJlcm8uMSAke01BTlBSRUZJWH0vbWFuL21hbjEKWC5mb3IgaSBpbiAxNiAz MiA0OCA2NCAxMjgKWAkke01LRElSfSAke1BSRUZJWH0vc2hhcmUvaWNvbnMvaGljb2xvci8ke2l9 eCR7aX0vYXBwcwpYCSR7SU5TVEFMTF9EQVRBfSAgJHtXUktTUkN9L3hvbWJyZXJvaWNvbiR7aX0u cG5nICR7UFJFRklYfS9zaGFyZS9pY29ucy9oaWNvbG9yLyR7aX14JHtpfS9hcHBzClguZW5kZm9y ClgJJHtNS0RJUn0gJHtEQVRBRElSfQpYLmZvciBpIGluIHN0eWxlLmNzcyB0bGQtcnVsZXMKWAkk e0lOU1RBTExfREFUQX0gICR7V1JLU1JDfS8ke2l9ICR7REFUQURJUn0KWC5lbmRmb3IKWAkke01L RElSfSAke1BSRUZJWH0vc2hhcmUvYXBwbGljYXRpb25zClgJJHtJTlNUQUxMX0RBVEF9ICAke1dS S1NSQ30veG9tYnJlcm8uZGVza3RvcCAke1BSRUZJWH0vc2hhcmUvYXBwbGljYXRpb25zClguaWYg JHtQT1JUX09QVElPTlM6TUVYQU1QTEVTfQpYCSR7TUtESVJ9ICR7RVhBTVBMRVNESVJ9ClguZm9y IGkgaW4gZmF2b3JpdGVzIHhvbWJyZXJvLmNvbmYKWAkke0lOU1RBTExfREFUQX0gJHtXUktTUkN9 LyR7aX0gJHtFWEFNUExFU0RJUn0KWC5lbmRmb3IKWAkke0lOU1RBTExfU0NSSVBUfSAke1dSS1NS Q30vcGxheWZsYXNoLnNoICR7RVhBTVBMRVNESVJ9ClguZW5kaWYKWApYLmluY2x1ZGUgPGJzZC5w b3J0LnBvc3QubWs+CjVlYmU3ZDhmYTNmMGI5MzRlOGQ2YWViYTk4YTA0NzhiCmV4aXQKCg== --14dae93408aba98b5304c775a21c-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 13:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BCA21065673 for ; Fri, 17 Aug 2012 13: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 E01E08FC08 for ; Fri, 17 Aug 2012 13: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 q7HD0PNI043580 for ; Fri, 17 Aug 2012 13: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 q7HD0PeU043579; Fri, 17 Aug 2012 13:00:25 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 13:00:25 GMT Message-Id: <201208171300.q7HD0PeU043579@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. 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: Fri, 17 Aug 2012 13:00:26 -0000 The following reply was made to PR ports/169860; it has been noted by GNATS. From: Michael Scheidell To: HU Dong Cc: Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. Date: Fri, 17 Aug 2012 08:53:45 -0400 --------------010608050504000404080202 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit On 8/17/12 8:52 AM, HU Dong wrote: > Thanks for your reply. > > How about a shar file? I'm not familiar with diff and patch commands, > so I made a shar file. It should work now. you should maybe ask someone else to maintain the port then. -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell --------------010608050504000404080202 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit

On 8/17/12 8:52 AM, HU Dong wrote:
Thanks for your reply. 

How about a shar file? I'm not familiar with diff and patch commands, so I made a shar file. It should work now.
you should maybe ask someone else to maintain the port then.

--
Michael Scheidell, CTO
> | SECNAP Network Security Corporation
d: +1.561.948.2259
w: http://people.freebsd.org/~scheidell
--------------010608050504000404080202-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 13:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1698106564A for ; Fri, 17 Aug 2012 13:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 724708FC17 for ; Fri, 17 Aug 2012 13: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 q7HDA8Ax044404 for ; Fri, 17 Aug 2012 13: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 q7HDA8Zs044403; Fri, 17 Aug 2012 13:10:08 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 13:10:08 GMT Message-Id: <201208171310.q7HDA8Zs044403@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: HU Dong Cc: Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: HU Dong List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 13:10:08 -0000 The following reply was made to PR ports/169860; it has been noted by GNATS. From: HU Dong To: Michael Scheidell Cc: bug-followup@freebsd.org Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. Date: Fri, 17 Aug 2012 21:08:08 +0800 --e89a8f3ba719f0ed4f04c775d946 Content-Type: text/plain; charset=ISO-8859-1 On Fri, Aug 17, 2012 at 8:53 PM, Michael Scheidell wrote: > ** > > > On 8/17/12 8:52 AM, HU Dong wrote: > > Thanks for your reply. > > How about a shar file? I'm not familiar with diff and patch commands, so > I made a shar file. It should work now. > > you should maybe ask someone else to maintain the port then. > > > -- > Michael Scheidell, CTO > > *| * SECNAP Network Security Corporation > d: +1.561.948.2259 > w: http://people.freebsd.org/~scheidell > OK, I'll write to the mailing list to ask them. -- B.R. HU Dong --e89a8f3ba719f0ed4f04c775d946 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

On Fri, Aug 17, 2012 at 8:53 PM, Michael= Scheidell <scheidell@freebsd.org> wrote:
=20 =20 =20


On 8/17/12 8:52 AM, HU Dong wrote:
=20 Thanks for your reply.=A0

How about a shar file? I'm not familiar with diff and patch commands, so I made a shar file. It should work now.
you should maybe ask someone else to maintain the port then.


--
Michael Scheidell, CTO
> | = SECNAP Network Security Corporation
d: +1.561.948.2259
w: http://people.freebsd.org/~scheidell

OK, I'll write to the mailing list to= ask them.

--
B.R.
HU Dong

--e89a8f3ba719f0ed4f04c775d946-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 13:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3690106566C for ; Fri, 17 Aug 2012 13: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 8D8508FC12 for ; Fri, 17 Aug 2012 13: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 q7HDK8M3046418 for ; Fri, 17 Aug 2012 13: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 q7HDK8vo046417; Fri, 17 Aug 2012 13:20:08 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 13:20:08 GMT Resent-Message-Id: <201208171320.q7HDK8vo046417@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3EEC1065670 for ; Fri, 17 Aug 2012 13:10:31 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 34A0A8FC0A for ; Fri, 17 Aug 2012 13:10:30 +0000 (UTC) Received: (qmail invoked by alias); 17 Aug 2012 13:10:28 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp070) with SMTP; 17 Aug 2012 15:10:28 +0200 Received: by something.email.com (sSMTP sendmail emulation); Fri, 17 Aug 2012 15:10:23 +0200 Message-Id: <20120817131031.B3EEC1065670@hub.freebsd.org> Date: Fri, 17 Aug 2012 15:10:23 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170704: [NEW PORT] games/patapizza-tetris: An unofficial clone of the original Tetris 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: Fri, 17 Aug 2012 13:20:08 -0000 >Number: 170704 >Category: ports >Synopsis: [NEW PORT] games/patapizza-tetris: An unofficial clone of the original Tetris game >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 Aug 17 13:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: This game is an unofficial clone of the original Tetris game and is not endorsed by the registered trademark owners The Tetris Company, Inc. WWW: https://github.com/patapizza/tetris Generated and tested manually, tested with port test and with RedPorts (all RELEASES), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: --- .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: # # patapizza-tetris # patapizza-tetris/files # patapizza-tetris/files/patch-Makefile # patapizza-tetris/files/patch-tetris.c # patapizza-tetris/files/patapizza-tetris.sh.in # patapizza-tetris/Makefile # patapizza-tetris/pkg-descr # patapizza-tetris/distinfo # echo c - patapizza-tetris mkdir -p patapizza-tetris > /dev/null 2>&1 echo c - patapizza-tetris/files mkdir -p patapizza-tetris/files > /dev/null 2>&1 echo x - patapizza-tetris/files/patch-Makefile sed 's/^X//' >patapizza-tetris/files/patch-Makefile << '3e7614c7d6e140795cb7cd0a068d9b11' X--- Makefile.orig 2012-04-09 13:32:21.000000000 +0200 X+++ Makefile 2012-08-17 00:24:43.000000000 +0200 X@@ -1,6 +1,6 @@ X SHELL = /bin/sh X-CC = gcc X-prefix = /usr X+CC = g++ X+prefix = /usr/local X includedir = $(prefix)/include X tetris: tetris.c X $(CC) -Wall -I$(includedir)/SDL $< -o $@ -lSDL -lSDL_image -lSDL_gfx -lSDL_ttf -lm 3e7614c7d6e140795cb7cd0a068d9b11 echo x - patapizza-tetris/files/patch-tetris.c sed 's/^X//' >patapizza-tetris/files/patch-tetris.c << 'c00603c32f7607310976d287939f5190' X--- tetris.c.orig 2012-04-09 13:32:21.000000000 +0200 X+++ tetris.c 2012-08-17 00:10:28.000000000 +0200 X@@ -20,7 +20,6 @@ X * along with this program. If not, see . X */ X X-#include X #include X #include X #include c00603c32f7607310976d287939f5190 echo x - patapizza-tetris/files/patapizza-tetris.sh.in sed 's/^X//' >patapizza-tetris/files/patapizza-tetris.sh.in << '86a6499e22d0cdcbfc14435b985a71e7' X#!/bin/sh X# X# $FreeBSD$ X Xecho "patapizza Tetris: Starting up..." Xcd "%%DATADIR%%" X./patapizza-tetris 86a6499e22d0cdcbfc14435b985a71e7 echo x - patapizza-tetris/Makefile sed 's/^X//' >patapizza-tetris/Makefile << 'b6dd6d9e3fc5fb1056d292025b271f8d' X# New Ports collection makefile for patapizza-tetris X# Date created: 2012-08-16 X# Whom: nemysis@gmx.ch X# X# $FreeBSD$ X# X XPORTNAME= patapizza-tetris XPORTVERSION= 1.0 XCATEGORIES= games XMASTER_SITES= https://github.com/patapizza/tetris/downloads/ XDISTNAME= ${PORTNAME:S/patapizza-//}-${DISTVERSION} X XMAINTAINER= nemysis@gmx.ch XCOMMENT= An unofficial clone of the original Tetris game X XLICENSE= GPLv3 X XOPTIONS_DEFINE= DATA XOPTIONS_DEFAULT= DATA X XFETCH_ARGS?= -Fpr XUSE_GMAKE= yes XUSE_SDL= sdl image gfx ttf X XPLIST_FILES= bin/${PORTNAME} \ X share/pixmaps/${PORTNAME}.png X XPORTDATA= * XPORTDOCS= README.md X XSUB_FILES= ${PORTNAME}.sh X X.include X Xdo-build: X cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \ X -DDATA_PREFIX=\"${DATADIR}/\" \ X -lm `${SDL_CONFIG} --cflags --libs` -lSDL -lSDL_image -lSDL_gfx -lSDL_ttf -lm tetris.c X Xdo-install: X# Scripts X ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME} X X# Executable X ${MKDIR} ${DATADIR} X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${DATADIR} X X# Data X.if ${PORT_OPTIONS:MDATA} X @(cd ${WRKSRC} && ${COPYTREE_SHARE} images ${DATADIR}) X.endif X X# Pixmaps X ${INSTALL_DATA} ${WRKSRC}/images/logo.png ${PREFIX}/share/pixmaps/${PORTNAME}.png X X# Documentation X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${DOCSDIR} X. for f in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X. endfor X.endif X X.include b6dd6d9e3fc5fb1056d292025b271f8d echo x - patapizza-tetris/pkg-descr sed 's/^X//' >patapizza-tetris/pkg-descr << '42210853b48da60838738c760415551e' XThis game is an unofficial clone of the original Tetris game Xand is not endorsed by the registered trademark owners The Tetris Company, Inc. X XWWW: https://github.com/patapizza/tetris 42210853b48da60838738c760415551e echo x - patapizza-tetris/distinfo sed 's/^X//' >patapizza-tetris/distinfo << '95d08708f98c1d1892f04b5da4375cb7' XSHA256 (tetris-1.0.tar.gz) = 06945705ca0b5242f4c3e7c86c1e6111e452a47a11919a549e0fb19bbb78210e XSIZE (tetris-1.0.tar.gz) = 47115 95d08708f98c1d1892f04b5da4375cb7 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 13:34:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE8361065670; Fri, 17 Aug 2012 13:34:44 +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 C23908FC08; Fri, 17 Aug 2012 13:34: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 q7HDYiAw049165; Fri, 17 Aug 2012 13:34:44 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HDYhIX049155; Fri, 17 Aug 2012 13:34:43 GMT (envelope-from linimon) Date: Fri, 17 Aug 2012 13:34:43 GMT Message-Id: <201208171334.q7HDYhIX049155@freefall.freebsd.org> To: bsd@tuxproject.de, linimon@FreeBSD.org, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170674: devel/libsysinfo fails to link correctly (missing kvm dependency) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 13:34:45 -0000 Old Synopsis: sysutils/sysinfo fails to link correctly (missing kvm dependency) New Synopsis: devel/libsysinfo fails to link correctly (missing kvm dependency) State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Fri Aug 17 13:34:11 UTC 2012 State-Changed-Why: Correct Synopsis after feedback from submitter. Responsible-Changed-From-To: linimon->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Aug 17 13:34:11 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=170674 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 13:57:43 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44FE2106564A; Fri, 17 Aug 2012 13:57:43 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 16D7E8FC18; Fri, 17 Aug 2012 13:57: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 q7HDvgQx050855; Fri, 17 Aug 2012 13:57:42 GMT (envelope-from zeising@freefall.freebsd.org) Received: (from zeising@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HDvgJ2050851; Fri, 17 Aug 2012 13:57:42 GMT (envelope-from zeising) Date: Fri, 17 Aug 2012 13:57:42 GMT Message-Id: <201208171357.q7HDvgJ2050851@freefall.freebsd.org> To: graudeejs@gmail.com, zeising@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, zeising@FreeBSD.org From: zeising@FreeBSD.org Cc: Subject: Re: ports/169860: [patch]www/xxxterm has been renamed. I want to take over the maintainership. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 13:57:43 -0000 Synopsis: [patch]www/xxxterm has been renamed. I want to take over the maintainership. Responsible-Changed-From-To: freebsd-ports-bugs->zeising Responsible-Changed-By: zeising Responsible-Changed-When: Fri Aug 17 13:57:42 UTC 2012 Responsible-Changed-Why: Take the pr, since I intend to grab the port as well. http://www.freebsd.org/cgi/query-pr.cgi?pr=169860 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 14:20:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FE04106566B for ; Fri, 17 Aug 2012 14: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 3AB7E8FC08 for ; Fri, 17 Aug 2012 14: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 q7HEKAnU053829 for ; Fri, 17 Aug 2012 14: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 q7HEKAbI053828; Fri, 17 Aug 2012 14:20:10 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 14:20:10 GMT Message-Id: <201208171420.q7HEKAbI053828@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Alex Kozlov Cc: Subject: Re: ports/170524: devel/ding-libs fails to build in tinderbox X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Kozlov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 14:20:10 -0000 The following reply was made to PR ports/170524; it has been noted by GNATS. From: Alex Kozlov To: Rainer Duffner , bug-followup@FreeBSD.org, aweits@rit.edu Cc: Subject: Re: ports/170524: devel/ding-libs fails to build in tinderbox Date: Fri, 17 Aug 2012 17:17:08 +0300 On Tue, Aug 14, 2012 at 05:38:53PM +0200, Rainer Duffner wrote: > Am Sat, 11 Aug 2012 21:43:46 +0300 > schrieb Alex Kozlov : > > > It's because of this construction in port's Makefile: > > > > .if !defined(NOPORTDOCS) > > CONFIGURE_ARGS= --docdir=${DOCSDIR} > > .else > > CONFIGURE_ARGS= --docdir=/dev/null > > .endif > OK, this is obviously not a very good solution. > > But what is the proper way to handle that, actually? You need to patch configure and Makefiles. Or you can wait for stagedir implementation (http://wiki.freebsd.org/ports/StageDir) which will make DOCS knob support very easy. -- Alex From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 15:48:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC2F5106566B; Fri, 17 Aug 2012 15:48:06 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 543F28FC0C; Fri, 17 Aug 2012 15:48:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7HFm66o063966; Fri, 17 Aug 2012 15:48:06 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HFm6VX063962; Fri, 17 Aug 2012 15:48:06 GMT (envelope-from madpilot) Date: Fri, 17 Aug 2012 15:48:06 GMT Message-Id: <201208171548.q7HFm6VX063962@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/170668: Update multimedia/qmmp to v0.6.3, qmmp-plugin-pack to v0.6.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 15:48:06 -0000 Synopsis: Update multimedia/qmmp to v0.6.3, qmmp-plugin-pack to v0.6.2 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Fri Aug 17 15:48:05 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170668 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 15:48:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE1CC1065670; Fri, 17 Aug 2012 15:48:21 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1DA38FC15; Fri, 17 Aug 2012 15: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 q7HFmLgW064085; Fri, 17 Aug 2012 15:48:21 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HFmLEK064081; Fri, 17 Aug 2012 15:48:21 GMT (envelope-from madpilot) Date: Fri, 17 Aug 2012 15:48:21 GMT Message-Id: <201208171548.q7HFmLEK064081@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/170109: Update multimedia/qmmp, multimedia/qmmp-plugin-pack to v0.6.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, 17 Aug 2012 15:48:21 -0000 Synopsis: Update multimedia/qmmp, multimedia/qmmp-plugin-pack to v0.6.1 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Fri Aug 17 15:48:21 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170109 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 17:00:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D81B106566C for ; Fri, 17 Aug 2012 17: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 EBA1B8FC18 for ; Fri, 17 Aug 2012 17: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 q7HH0N2m072646 for ; Fri, 17 Aug 2012 17: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 q7HH0Nex072645; Fri, 17 Aug 2012 17:00:23 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 17:00:23 GMT Resent-Message-Id: <201208171700.q7HH0Nex072645@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, MIMIFIR Pierre Jacques Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9942F106566C for ; Fri, 17 Aug 2012 16:54:16 +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 848DF8FC16 for ; Fri, 17 Aug 2012 16:54: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 q7HGsGQv082279 for ; Fri, 17 Aug 2012 16:54:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7HGsG6X082278; Fri, 17 Aug 2012 16:54:16 GMT (envelope-from nobody) Message-Id: <201208171654.q7HGsG6X082278@red.freebsd.org> Date: Fri, 17 Aug 2012 16:54:16 GMT From: MIMIFIR Pierre Jacques To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170706: make errors while installing unknow-horizon X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 17:00:24 -0000 >Number: 170706 >Category: ports >Synopsis: make errors while installing unknow-horizon >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: Fri Aug 17 17:00:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: MIMIFIR Pierre Jacques >Release: FreeBSD 9.0-RELEASE >Organization: >Environment: FreeBSD sakura 9.0-RELEASE FreeBSD 9.0-RELEASE #1: Mon Jun 18 22:18:18 CEST 2012 pierre@sakura:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I've got some errors when compiling the game with make command: sakura# make ===> unknown-horizons-2012.1 depends on file: /usr/local/share/xsl/docbook/manpages/docbook.xsl - found ===> unknown-horizons-2012.1 depends on file: /usr/local/bin/xsltproc - found ===> unknown-horizons-2012.1 depends on file: /usr/local/bin/python3.2 - found ===> unknown-horizons-2012.1 depends on executable: xgettext - found ===> unknown-horizons-2012.1 depends on file: /usr/local/bin/intltool-extract - found ===> Configuring for unknown-horizons-2012.1 Traceback (most recent call last): File "setup.py", line 17, in from horizons.constants import VERSION File "/usr/ports/games/unknown-horizons/work/unknown-horizons/horizons/constants.py", line 45 return u"" ^ SyntaxError: invalid syntax *** Error code 1 Stop in /usr/ports/games/unknown-horizons. >How-To-Repeat: cd /usr/ports/games/unknown-horizons make >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 17:32:37 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9EDC1065674; Fri, 17 Aug 2012 17:32:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9C9808FC0C; Fri, 17 Aug 2012 17:32: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 q7HHWb9I077740; Fri, 17 Aug 2012 17:32:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HHWbSU077736; Fri, 17 Aug 2012 17:32:37 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 17:32:37 GMT Message-Id: <201208171732.q7HHWbSU077736@freefall.freebsd.org> To: pierrejacques.mimifir@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170706: games/unknown-horizons: make errors while installing unknow-horizon X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 17:32:37 -0000 Synopsis: games/unknown-horizons: make errors while installing unknow-horizon State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Aug 17 17:32:37 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170706 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 17:40:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 168401065674 for ; Fri, 17 Aug 2012 17: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 0117D8FC17 for ; Fri, 17 Aug 2012 17: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 q7HHeCoG078825 for ; Fri, 17 Aug 2012 17: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 q7HHeCNi078824; Fri, 17 Aug 2012 17:40:12 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 17:40:12 GMT Message-Id: <201208171740.q7HHeCNi078824@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170706: games/unknown-horizons: make errors while installing unknow-horizon 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, 17 Aug 2012 17:40:13 -0000 The following reply was made to PR ports/170706; it has been noted by GNATS. From: Edwin Groothuis To: fiziologus@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/170706: games/unknown-horizons: make errors while installing unknow-horizon Date: Fri, 17 Aug 2012 17:32:34 UT Maintainer of games/unknown-horizons, Please note that PR ports/170706 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/170706 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 17:44:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC00D1065741; Fri, 17 Aug 2012 17:44:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F85F8FC17; Fri, 17 Aug 2012 17:44: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 q7HHiBW0079064; Fri, 17 Aug 2012 17:44:11 GMT (envelope-from amdmi3@freefall.freebsd.org) Received: (from amdmi3@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HHiBYq079060; Fri, 17 Aug 2012 17:44:11 GMT (envelope-from amdmi3) Date: Fri, 17 Aug 2012 17:44:11 GMT Message-Id: <201208171744.q7HHiBYq079060@freefall.freebsd.org> To: amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: amdmi3@FreeBSD.org Cc: Subject: Re: ports/170671: [MAINTAINER] games/twind: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 17:44:11 -0000 Synopsis: [MAINTAINER] games/twind: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Fri Aug 17 17:44:11 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170671 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 18:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4CE11065673 for ; Fri, 17 Aug 2012 18:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 94AA38FC08 for ; Fri, 17 Aug 2012 18: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 q7HIo8Qs086591 for ; Fri, 17 Aug 2012 18: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 q7HIo8OK086590; Fri, 17 Aug 2012 18:50:08 GMT (envelope-from gnats) Date: Fri, 17 Aug 2012 18:50:08 GMT Message-Id: <201208171850.q7HIo8OK086590@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: green dog Cc: Subject: Re: ports/170706: games/unknown-horizons: make errors while installing unknow-horizon X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: green dog List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 18:50:08 -0000 The following reply was made to PR ports/170706; it has been noted by GNATS. From: green dog To: bug-followup@freebsd.org Cc: Subject: Re: ports/170706: games/unknown-horizons: make errors while installing unknow-horizon Date: Fri, 17 Aug 2012 22:49:41 +0400 --e89a8fb206b668eba604c77a9ff5 Content-Type: text/plain; charset=ISO-8859-1 2012/8/17 Edwin Groothuis > Maintainer of games/unknown-horizons, > > Please note that PR ports/170706 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/170706 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > [quote]Python3.* doesn't work together with Unknown Horizons yet.[/quote] sorry, did not check. correct in Makefile USE_PYTHON=yes to USE_PYTHON=-2.7 --e89a8fb206b668eba604c77a9ff5 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 2012/8/17 Edwin Groothuis <edwin@freebsd.org>
Maintainer of games/unknown-horizons,

Please note that PR ports/170706 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
=A0 =A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/170= 706

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org

[quote]Python3.* doesn't work= together with Unknown Horizons yet.[/quote]

sorry= , did not check.

correct in Makefile USE_PYTHON=3D= yes to USE_PYTHON=3D-2.7
--e89a8fb206b668eba604c77a9ff5-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 19:00:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B295E106566B for ; Fri, 17 Aug 2012 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 A07D48FC14 for ; Fri, 17 Aug 2012 19:00: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 q7HJ0IRI086815 for ; Fri, 17 Aug 2012 19:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HJ0IdL086811; Fri, 17 Aug 2012 19:00:18 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 19:00:18 GMT Resent-Message-Id: <201208171900.q7HJ0IdL086811@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Matuska Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F63A106566B; Fri, 17 Aug 2012 18:50:20 +0000 (UTC) (envelope-from mm@neo.vx.sk) Received: from neo.vx.sk (neo.vx.sk [176.9.47.205]) by mx1.freebsd.org (Postfix) with ESMTP id 325798FC14; Fri, 17 Aug 2012 18:50:20 +0000 (UTC) Received: by neo.vx.sk (Postfix, from userid 1001) id 10C469360; Fri, 17 Aug 2012 20:40:37 +0200 (CEST) Message-Id: <20120817184037.10C469360@neo.vx.sk> Date: Fri, 17 Aug 2012 20:40:37 +0200 (CEST) From: Martin Matuska To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: wen@FreeBSD.org Subject: ports/170709: [PATCH] dns/pear-Net_DNS2: fix upstream bug #19569 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 19:00:23 -0000 >Number: 170709 >Category: ports >Synopsis: [PATCH] dns/pear-Net_DNS2: fix upstream bug #19569 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Aug 17 19:00:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 9.0-STABLE amd64 >Organization: >Environment: System: FreeBSD neo.vx.sk 9.0-STABLE FreeBSD 9.0-STABLE #6 r237147M: Sat Jun 16 01:05:38 CEST >Description: Fix upstream bug #19569 References: http://pear.php.net/bugs/bug.php?id=19569 Added file(s): - files/patch-Net-DNS2-Socket-Streams.php Port maintainer (wen@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- pear-Net_DNS2-1.2.2.patch begins here --- Index: files/patch-Net-DNS2-Socket-Streams.php =================================================================== RCS file: files/patch-Net-DNS2-Socket-Streams.php diff -N files/patch-Net-DNS2-Socket-Streams.php --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-Net-DNS2-Socket-Streams.php 17 Aug 2012 18:39:40 -0000 @@ -0,0 +1,68 @@ +Index: Net/DNS2/Socket/Streams.php +=================================================================== +--- Net/DNS2/Socket/Streams.php (revision 164) ++++ Net/DNS2/Socket/Streams.php (revision 165) +@@ -329,27 +329,51 @@ + // + // read the data from the socket + // +- $chunk = ''; +- $chunk_size = $length; + $data = ''; + + // +- // loop so we make sure we read all the data ++ // the streams socket is weird for TCP sockets; it doesn't seem to always ++ // return all the data properly; but the looping code I added broke UDP ++ // packets- my fault- + // +- while (1) { ++ // the sockets library works much better. ++ // ++ if ($this->type == SOCK_STREAM) { + +- $chunk = fread($this->sock, $chunk_size); +- if ($chunk === false) { ++ $chunk = ''; ++ $chunk_size = $length; ++ ++ // ++ // loop so we make sure we read all the data ++ // ++ while (1) { ++ ++ $chunk = fread($this->sock, $chunk_size); ++ if ($chunk === false) { + +- $this->last_error = 'failed on fread() for data'; +- return false; ++ $this->last_error = 'failed on fread() for data'; ++ return false; ++ } ++ ++ $data .= $chunk; ++ $chunk_size -= strlen($chunk); ++ ++ if (strlen($data) >= $length) { ++ break; ++ } + } + +- $data .= $chunk; +- $chunk_size -= strlen($chunk); ++ // ++ // if it's UDP, ti's a single fixed-size frame, and the streams library ++ // doesn't seem to have a problem reading it. ++ // ++ } else { + +- if (strlen($data) >= $length) { +- break; ++ $data = fread($this->sock, $length); ++ if ($length === false) { ++ ++ $this->last_error = 'failed on fread() for data'; ++ return false; + } + } + --- pear-Net_DNS2-1.2.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 19:01:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17D97106564A; Fri, 17 Aug 2012 19:01: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 E00688FC0A; Fri, 17 Aug 2012 19:01: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 q7HJ1EYc087088; Fri, 17 Aug 2012 19:01:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HJ1EVl087084; Fri, 17 Aug 2012 19:01:14 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 19:01:14 GMT Message-Id: <201208171901.q7HJ1EVl087084@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170709: [PATCH] dns/pear-Net_DNS2: fix upstream bug #19569 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 19:01:15 -0000 Synopsis: [PATCH] dns/pear-Net_DNS2: fix upstream bug #19569 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 17 19:01:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170709 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 20:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0F7E106564A for ; Fri, 17 Aug 2012 20: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 5A14D8FC12 for ; Fri, 17 Aug 2012 20: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 q7HKA9Vx094418 for ; Fri, 17 Aug 2012 20: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 q7HKA95I094415; Fri, 17 Aug 2012 20:10:09 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 20:10:09 GMT Resent-Message-Id: <201208172010.q7HKA95I094415@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, Green Dog Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBBB4106566C for ; Fri, 17 Aug 2012 20:02: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 BE6DE8FC1A for ; Fri, 17 Aug 2012 20:02: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 q7HK2UUh063326 for ; Fri, 17 Aug 2012 20:02:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7HK2UFD063325; Fri, 17 Aug 2012 20:02:30 GMT (envelope-from nobody) Message-Id: <201208172002.q7HK2UFD063325@red.freebsd.org> Date: Fri, 17 Aug 2012 20:02:30 GMT From: Green Dog To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170711: [games/unknown-horizons] fix python version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 20:10:09 -0000 >Number: 170711 >Category: ports >Synopsis: [games/unknown-horizons] fix python version >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 Aug 17 20:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Green Dog >Release: FreeBSD-9.0 >Organization: >Environment: >Description: [games/unknown-horizons] fix python version to <= 2.7 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2012-06-02 15:01:51.000000000 +0400 +++ Makefile 2012-08-17 22:48:19.000000000 +0400 @@ -26,7 +26,7 @@ USE_XZ= yes USE_GNOME= intltool USE_GETTEXT= build -USE_PYTHON= yes +USE_PYTHON= -2.7 USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= UnknownHorizons >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 20:10:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 959E5106564A; Fri, 17 Aug 2012 20:10:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 68D9F8FC0A; Fri, 17 Aug 2012 20:10: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 q7HKAJH2094548; Fri, 17 Aug 2012 20:10:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HKAJ4Q094544; Fri, 17 Aug 2012 20:10:19 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 20:10:19 GMT Message-Id: <201208172010.q7HKAJ4Q094544@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/170711: [games/unknown-horizons] fix python version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 20:10:19 -0000 Synopsis: [games/unknown-horizons] fix python version Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Fri Aug 17 20:10:19 UTC 2012 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170711 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 20:14:28 2012 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 1A8881065673; Fri, 17 Aug 2012 20:14:28 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id DB6908FC0C; Fri, 17 Aug 2012 20:14:27 +0000 (UTC) Received: by pbbrp2 with SMTP id rp2so4140283pbb.13 for ; Fri, 17 Aug 2012 13:14:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=YTkewv2+QjDj78qWQT53jwOp4XgXqlijDbg+yZI0v0Y=; b=0qpeLd7vPg37r9Bv64yiiI7N4LYtJRBunYMHLZn+LMKJBXZtcGQa/4hNrquVTj90Jj VRv8+5ghGT+7aaJ9/iM+PpbV1vYkiBqAYfhoxBMZ8DgjDS5lxwUOI2whQ5FvM57YDAzb ogl+/mF2c7vJGlYxKhigwkOPitCmSd+W6qDIKM+twVc5TlGO1IeQHT0QsAMPk2m2algs dqOL9GQILfEaw8aIYGjev8vRB63dFtDIaJ/9QEzM/CotCb7Sqyb3znI3+KbtuQuKFeQy IzWP7U2y4DrdSg9GydpkLUqBDsYbXF1ErgPcIR/kdtIEOtV6DaSlPoHScHLlARkFxIHj WYAw== MIME-Version: 1.0 Received: by 10.68.204.137 with SMTP id ky9mr14231078pbc.90.1345234467375; Fri, 17 Aug 2012 13:14:27 -0700 (PDT) Received: by 10.66.191.233 with HTTP; Fri, 17 Aug 2012 13:14:27 -0700 (PDT) In-Reply-To: <201208140830.q7E8URQV097310@freefall.freebsd.org> References: <201208140830.q7E8URQV097310@freefall.freebsd.org> Date: Fri, 17 Aug 2012 22:14:27 +0200 Message-ID: From: =?ISO-8859-1?Q?Ren=E9_Ladan?= To: pav@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-ports-bugs@freebsd.org Subject: Re: ports/170628: net/boinc-client: install ${WRKSRC}/lib/shmem.h for no-X11 Astropulse X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 20:14:28 -0000 I also found that reduce.h always needs to be installed. This is correct in Makefile but pkg-plist lets it depend on %%X11%% Ren=E9 2012/8/14, edwin@freebsd.org : > Synopsis: net/boinc-client: install ${WRKSRC}/lib/shmem.h for no-X11 > Astropulse > > Responsible-Changed-From-To: freebsd-ports-bugs->pav > Responsible-Changed-By: edwin > Responsible-Changed-When: Tue Aug 14 08:30:26 UTC 2012 > Responsible-Changed-Why: > Over to maintainer (via the GNATS Auto Assign Tool) > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D170628 > _______________________________________________ > 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" > --=20 http://www.rene-ladan.nl/ GPG fingerprint =3D E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 21:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 852CC106566B for ; Fri, 17 Aug 2012 21:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 576798FC0C for ; Fri, 17 Aug 2012 21: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 q7HLA8gq003202 for ; Fri, 17 Aug 2012 21: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 q7HLA8kA003201; Fri, 17 Aug 2012 21:10:08 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 21:10:08 GMT Resent-Message-Id: <201208172110.q7HLA8kA003201@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, Richard Neese Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C187106566C for ; Fri, 17 Aug 2012 21:07:18 +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 7650D8FC08 for ; Fri, 17 Aug 2012 21:07:18 +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 q7HL7IlC009974 for ; Fri, 17 Aug 2012 21:07:18 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7HL7H0O009973; Fri, 17 Aug 2012 21:07:17 GMT (envelope-from nobody) Message-Id: <201208172107.q7HL7H0O009973@red.freebsd.org> Date: Fri, 17 Aug 2012 21:07:17 GMT From: Richard Neese To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170714: update for audio/freeswitch-sounds X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 21:10:08 -0000 >Number: 170714 >Category: ports >Synopsis: update for audio/freeswitch-sounds >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 Aug 17 21:10:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Richard Neese >Release: FreeBSD 9.0-RELEASE >Organization: >Environment: FreeBSD ports.freebsd.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: update freeswitch-sounds to use options-ng >How-To-Repeat: >Fix: Patch attached with submission follows: Index: distinfo =================================================================== --- distinfo (revision 302692) +++ distinfo (working copy) @@ -1,24 +1,24 @@ -SHA256 (freeswitch-sounds/freeswitch-sounds-en-us-callie-8000-1.0.18.tar.gz) = 131b87a4c190d40ce3c5a67c2d2096158f11e85a1659eeb2bbf38e08bf7be812 -SIZE (freeswitch-sounds/freeswitch-sounds-en-us-callie-8000-1.0.18.tar.gz) = 14180974 -SHA256 (freeswitch-sounds/freeswitch-sounds-en-us-callie-16000-1.0.18.tar.gz) = c1c6d4405055db31eeb47d3a90ffaf9fb5ca5eecc962749f1409780223fd761a -SIZE (freeswitch-sounds/freeswitch-sounds-en-us-callie-16000-1.0.18.tar.gz) = 28161362 -SHA256 (freeswitch-sounds/freeswitch-sounds-en-us-callie-32000-1.0.18.tar.gz) = cbd55b6355829bb559741700d2a310718a95800f8cf8b229e1d15eb99b94d3a4 -SIZE (freeswitch-sounds/freeswitch-sounds-en-us-callie-32000-1.0.18.tar.gz) = 55081458 -SHA256 (freeswitch-sounds/freeswitch-sounds-en-us-callie-48000-1.0.18.tar.gz) = a060fc118090b679408f8e712af9e556816e0d7f4c59422f7504066c693d71e9 -SIZE (freeswitch-sounds/freeswitch-sounds-en-us-callie-48000-1.0.18.tar.gz) = 80491982 -SHA256 (freeswitch-sounds/freeswitch-sounds-fr-ca-june-8000-1.0.14.tar.gz) = 2a10fdae75cdd6cbb12c5e99a854b01433221ebe99c49d6db024164fdc72d252 -SIZE (freeswitch-sounds/freeswitch-sounds-fr-ca-june-8000-1.0.14.tar.gz) = 9203881 -SHA256 (freeswitch-sounds/freeswitch-sounds-fr-ca-june-16000-1.0.14.tar.gz) = 0dc4351534547994daf7b3bfdbb8df9b4bf75e8e4f576819468e6c708578b0a2 -SIZE (freeswitch-sounds/freeswitch-sounds-fr-ca-june-16000-1.0.14.tar.gz) = 18198669 -SHA256 (freeswitch-sounds/freeswitch-sounds-fr-ca-june-32000-1.0.14.tar.gz) = efb3842a638dcfa9376f602b80ef00416bfa4fc5922f05aea772009690a6792f -SIZE (freeswitch-sounds/freeswitch-sounds-fr-ca-june-32000-1.0.14.tar.gz) = 35601264 -SHA256 (freeswitch-sounds/freeswitch-sounds-fr-ca-june-48000-1.0.14.tar.gz) = a53f53604b38e5313637cb057f3f61e48bea335b312ad822165dde9bc8cfc6ff -SIZE (freeswitch-sounds/freeswitch-sounds-fr-ca-june-48000-1.0.14.tar.gz) = 52402291 -SHA256 (freeswitch-sounds/freeswitch-sounds-ru-RU-elena-8000-1.0.12.tar.gz) = 44db35574216af8ccbb48a7f1a08065df253adb4cebed8bc7ece7d0a4da920e7 -SIZE (freeswitch-sounds/freeswitch-sounds-ru-RU-elena-8000-1.0.12.tar.gz) = 9115259 -SHA256 (freeswitch-sounds/freeswitch-sounds-ru-RU-elena-16000-1.0.12.tar.gz) = aef0d3dc7fed657bc9c9d5ebbb458bc28e55c62af0087623ad060f1b4de3c74c -SIZE (freeswitch-sounds/freeswitch-sounds-ru-RU-elena-16000-1.0.12.tar.gz) = 17952582 -SHA256 (freeswitch-sounds/freeswitch-sounds-ru-RU-elena-32000-1.0.12.tar.gz) = 3be071456c03d8eac191f1a417ffcc48eb7100633cbb8d8cc62fde1c328ede08 -SIZE (freeswitch-sounds/freeswitch-sounds-ru-RU-elena-32000-1.0.12.tar.gz) = 35345749 -SHA256 (freeswitch-sounds/freeswitch-sounds-ru-RU-elena-48000-1.0.12.tar.gz) = 12e164bbc99729a87d9a57bff557b6a190b5349b30cad71dcae458d92288aa3b -SIZE (freeswitch-sounds/freeswitch-sounds-ru-RU-elena-48000-1.0.12.tar.gz) = 51864057 +SHA256 (freeswitch/freeswitch-sounds-en-us-callie-8000-1.0.20.tar.gz) = 663b72ebf4f2b99202daf9783aafa3e056a67c1ec803f2b2f1d1e71207e3b2ec +SIZE (freeswitch/freeswitch-sounds-en-us-callie-8000-1.0.20.tar.gz) = 15643920 +SHA256 (freeswitch/freeswitch-sounds-en-us-callie-16000-1.0.20.tar.gz) = af788e98a8a638366a2dc7510aa56a4a82507b606f63f982b288ebad7e571a0c +SIZE (freeswitch/freeswitch-sounds-en-us-callie-16000-1.0.20.tar.gz) = 31160818 +SHA256 (freeswitch/freeswitch-sounds-en-us-callie-32000-1.0.20.tar.gz) = 66a192dcf5ebf2b57c5c01ee9e8e2a04d8c50614ce7000698984d5ca8252735c +SIZE (freeswitch/freeswitch-sounds-en-us-callie-32000-1.0.20.tar.gz) = 61199871 +SHA256 (freeswitch/freeswitch-sounds-en-us-callie-48000-1.0.20.tar.gz) = 4f5522ccac0167cd6b0de79e1f386a57ba57c3a157910901b0dc28989624678c +SIZE (freeswitch/freeswitch-sounds-en-us-callie-48000-1.0.20.tar.gz) = 87945358 +SHA256 (freeswitch/freeswitch-sounds-fr-ca-june-8000-1.0.16.tar.gz) = 65f6a1bd385c6075e4203a637ecb85bbf97ec3b3ebe308cb2228920dc7b218d1 +SIZE (freeswitch/freeswitch-sounds-fr-ca-june-8000-1.0.16.tar.gz) = 11132039 +SHA256 (freeswitch/freeswitch-sounds-fr-ca-june-16000-1.0.16.tar.gz) = 4e00722c5487c25f403e432c21a7be72eded0347496490167b82494edc6b4682 +SIZE (freeswitch/freeswitch-sounds-fr-ca-june-16000-1.0.16.tar.gz) = 22007198 +SHA256 (freeswitch/freeswitch-sounds-fr-ca-june-32000-1.0.16.tar.gz) = c5d986db76369062671bdd1c7adfbd26613ea42ec14f2ace3f007b54a18e4f7a +SIZE (freeswitch/freeswitch-sounds-fr-ca-june-32000-1.0.16.tar.gz) = 43083229 +SHA256 (freeswitch/freeswitch-sounds-fr-ca-june-48000-1.0.16.tar.gz) = 5b689c85e08bc83d3c40c1829d250580e92c673587b14b7e20768efcd1afe55f +SIZE (freeswitch/freeswitch-sounds-fr-ca-june-48000-1.0.16.tar.gz) = 63475346 +SHA256 (freeswitch/freeswitch-sounds-ru-RU-elena-8000-1.0.13.tar.gz) = a04f0d33462a782c9fe8e81331a7c0928950c3fcc83f90cdf774974114bf1e53 +SIZE (freeswitch/freeswitch-sounds-ru-RU-elena-8000-1.0.13.tar.gz) = 14363334 +SHA256 (freeswitch/freeswitch-sounds-ru-RU-elena-16000-1.0.13.tar.gz) = f68bf958625d7fec95ffdec374b197bdddceff372e43c01d6502f39a362a0e15 +SIZE (freeswitch/freeswitch-sounds-ru-RU-elena-16000-1.0.13.tar.gz) = 28650196 +SHA256 (freeswitch/freeswitch-sounds-ru-RU-elena-32000-1.0.13.tar.gz) = 621fbe1d6d4c7bafc407aac9898676fe2807a74e5f907a27870095804f6f5652 +SIZE (freeswitch/freeswitch-sounds-ru-RU-elena-32000-1.0.13.tar.gz) = 56843560 +SHA256 (freeswitch/freeswitch-sounds-ru-RU-elena-48000-1.0.13.tar.gz) = f2db5f456e94e10f262ee08407484e4faf538a28e38c67867a8598636cca0d4a +SIZE (freeswitch/freeswitch-sounds-ru-RU-elena-48000-1.0.13.tar.gz) = 84394475 Index: Makefile =================================================================== --- Makefile (revision 302692) +++ Makefile (working copy) @@ -6,12 +6,11 @@ # PORTNAME= freeswitch -DISTVERSION= 1.0.18 -PORTREVISION= 1 +DISTVERSION= 1.0.20 CATEGORIES= audio MASTER_SITES= http://files.freeswitch.org/ PKGNAMESUFFIX= -sounds -DIST_SUBDIR= freeswitch-sounds +DIST_SUBDIR= ${PORTNAME}${PORTNAMESUFFIX} MAINTAINER= r.neese@gmail.com COMMENT= FreeSwitch Sounds (All Bitrates) @@ -24,36 +23,47 @@ GROUPS= ${USERS} LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} -OPTIONS= DOWNLOAD "Don't resample, download all." off \ - 8K "Compile sounds for 8K" on \ - 16K "Compile sounds for 16K" on \ - 32K "Compile sounds for 32K" on \ - 48K "Compile sounds for 48K" on \ - ENGLISH "Compile US English Language Sounds" on \ - FRENCH "Compile French Canadian Language Sounds" off \ - RUSSIAN "Compile Russian Language Sounds" off - +DOWNLOAD_DESC= Download Sounds +8K_DESC= 8000Hz Audio Files +16K_DESC= 16000Hz Audio Files +32K_DESC= 32000Hz Audio Files +48K_DESC= 48000Hz Audio Files +ENGLISH_DESC= Compile US English Language Sounds +FRENCH_DESC= Compile French Canadian Language Sounds +RUSSIAN_DESC= Compile Russian Language Sounds + +OPTIONS_DEFINE= DOWNLOAD + +OPTIONS_SINGLE= LANG +OPTIONS_SINGLE_LANG= ENGLISH FRENCH RUSSIAN + +OPTIONS_MULTI= AUDIO +OPTIONS_MULTI_AUDIO= 8K 16K 32K 48K + +OPTIONS_DEFAULT= 8K 16K ENGLISH +NO_OPTIONS_SORT= yes + .include -.if ! defined(WITH_DOWNLOAD) +.if empty(PORT_OPTIONS:MDOWNLOAD) BUILD_DEPENDS+= sox:${PORTSDIR}/audio/sox .endif -.if defined(WITH_8K) +.if ${PORT_OPTIONS:M8K} BITRATES+= 8000 .endif -.if defined(WITH_16K) +.if ${PORT_OPTIONS:M16K} BITRATES+= 16000 .endif -.if defined(WITH_32K) +.if ${PORT_OPTIONS:M32K} BITRATES+= 32000 .endif -.if defined(WITH_48K) +.if ${PORT_OPTIONS:M48K} BITRATES+= 48000 .endif -.if defined(WITH_ENGLISH) -.if defined(WITH_DOWNLOAD) +.if ${PORT_OPTIONS:MENGLISH} +.if ${PORT_OPTIONS:MDOWNLOAD} .for rate in ${BITRATES} DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-en-us-callie-${rate}-${DISTVERSION}${EXTRACT_SUFX} .endfor @@ -61,45 +71,44 @@ DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-en-us-callie-48000-${DISTVERSION}${EXTRACT_SUFX} .endif .endif -.if defined(WITH_FRENCH) -.if defined(WITH_DOWNLOAD) +.if ${PORT_OPTIONS:MFRENCH} +.if ${PORT_OPTIONS:MDOWNLOAD} .for rate in ${BITRATES} -DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-fr-ca-june-${rate}-1.0.14${EXTRACT_SUFX} +DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-fr-ca-june-${rate}-1.0.16${EXTRACT_SUFX} .endfor .else -DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-fr-ca-june-48000-1.0.14${EXTRACT_SUFX} +DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-fr-ca-june-48000-1.0.16${EXTRACT_SUFX} .endif .endif -.if defined(WITH_RUSSIAN) -.if defined(WITH_DOWNLOAD) +.if ${PORT_OPTIONS:MRUSSIAN} +.if ${PORT_OPTIONS:MDOWNLOAD} .for rate in ${BITRATES} -DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-ru-RU-elena-${rate}-1.0.12${EXTRACT_SUFX} +DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-ru-RU-elena-${rate}-1.0.13${EXTRACT_SUFX} .endfor .else -DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-ru-RU-elena-48000-1.0.12${EXTRACT_SUFX} +DISTFILES+= ${PORTNAME}${PKGNAMESUFFIX}-ru-RU-elena-48000-1.0.13${EXTRACT_SUFX} .endif .endif -.if ! defined(WITH_ENGLISH) && ! defined(WITH_FRENCH) && ! defined(WITH_RUSSIAN) -BROKEN= you must build with atleast English or French or Russian, -.endif - -.if ! defined(WITH_8K) && ! defined(WITH_16K) && ! defined(WITH_32K) && \ - ! defined(WITH_48K) -BROKEN= you must build with at least one of 8K, 16K, 32K, or 48K sounds -.endif - .if defined(FREESWITCH_VSCALE) SCALE=${FREESWITCH_VSCALE} .else SCALE=0.2 .endif +.for opt in ${ALL_OPTIONS} +.if $(PORT_OPTIONS:M${opt}) +PLIST_SUB+= ${opt}="" +.else +PLIST_SUB+= ${opt}="@comment " +.endif +.endfor + do-build: @${ECHO_MSG} "===> Building for bitrates: ${BITRATES}" - @${ECHO_MSG} "===> Download >>>${WITH_DOWNLOAD}<<<" + @${ECHO_MSG} "===> Download >>>${PORT_OPTIONS:MDOWNLOAD}<<<" @${ECHO_MSG} "===> Scaling audio to ${SCALE}" - if [ "${WITH_ENGLISH}" != "" -a ! -e "${WRKDIR}/ENGLISH.done" ]; then \ + if [ -n "${PORT_OPTIONS:MENGLISH}" -a ! -e "${WRKDIR}/ENGLISH.done" ]; then \ ${ECHO_MSG} "====> English selected."; \ for rate in ${BITRATES}; do \ ${ECHO_MSG} "WORKING on $${rate}!"; \ @@ -108,7 +117,7 @@ for filename in `ls ${WRKSRC}/en/us/callie/$${dir}/48000`; do \ echo "${DATADIR_REL}/sounds/en/us/callie/$${dir}/$${rate}/$${filename}" >> ${PLIST}; \ if [ ! -e "${WRKDIR}/tmp/en/us/callie/$${dir}/$${rate}/$${filename}" ]; then \ - if [ "${WITH_DOWNLOAD}" = "true" ]; then \ + if [ "${PORT_OPTIONS:MDOWNLOAD}" = "true" ]; then \ ${ECHO} -n "."; \ ${MV} ${WRKSRC}/en/us/callie/$${dir}/$${rate}/$${filename} ${WRKDIR}/tmp/en/us/callie/$${dir}/$${rate}/$${filename} ; \ else \ @@ -124,7 +133,7 @@ ${TOUCH} ${WRKDIR}/ENGLISH.done; \ fi - if [ "${WITH_FRENCH}" != "" -a ! -e "${WRKDIR}/FRENCH.done" ]; then \ + if [ -n "${PORT_OPTIONS:MFRENCH}" -a ! -e "${WRKDIR}/FRENCH.done" ]; then \ ${ECHO_MSG} "====> French selected."; \ for rate in ${BITRATES}; do \ ${ECHO_MSG} "WORKING on $${rate}!"; \ @@ -133,7 +142,7 @@ for filename in `ls ${WRKSRC}/fr/ca/june/$${dir}/48000`; do \ echo "${DATADIR_REL}/sounds/fr/ca/june/$${dir}/$${rate}/$${filename}" >> ${PLIST}; \ if [ ! -e "${WRKDIR}/tmp/fr/ca/june/$${dir}/$${rate}/$${filename}" ]; then \ - if [ "${WITH_DOWNLOAD}" = "true" ]; then \ + if [ "${PORT_OPTIONS:MDOWNLOAD}" = "true" ]; then \ ${ECHO} -n "."; \ ${MV} ${WRKSRC}/fr/ca/june/$${dir}/$${rate}/$${filename} ${WRKDIR}/tmp/fr/ca/june/$${dir}/$${rate}/$${filename} ; \ else \ @@ -149,7 +158,7 @@ ${TOUCH} ${WRKDIR}/FRENCH.done; \ fi - if [ "${WITH_RUSSIAN}" != "" -a ! -e "${WRKDIR}/RUSSIAN.done" ]; then \ + if [ -n "${PORT_OPTIONS:MRUSSIAN}" -a ! -e "${WRKDIR}/RUSSIAN.done" ]; then \ ${ECHO_MSG} "====> Russian selected."; \ for rate in ${BITRATES}; do \ ${ECHO_MSG} "WORKING on $${rate}!"; \ @@ -158,7 +167,7 @@ for filename in `ls ${WRKSRC}/ru/RU/elena/$${dir}/48000`; do \ echo "share/${DATADIR_REL}/sounds/ru/RU/elena/$${dir}/$${rate}/$${filename}" >> ${PLIST}; \ if [ ! -e "${WRKDIR}/tmp/ru/RU/elena/$${dir}/$${rate}/$${filename}" ]; then \ - if [ "${WITH_DOWNLOAD}" = "true" ]; then \ + if [ "${PORT_OPTIONS:MDOWNLOAD}" = "true" ]; then \ ${ECHO} -n "."; \ ${MV} ${WRKSRC}/ru/RU/elena/$${dir}/$${rate}/$${filename} ${WRKDIR}/tmp/ru/RU/elena/$${dir}/$${rate}/$${filename}; \ else \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 21:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 51C37106566B; Fri, 17 Aug 2012 21:20:18 +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 262CA8FC08; Fri, 17 Aug 2012 21: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 q7HLKI7F005392; Fri, 17 Aug 2012 21:20:18 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HLKIi1005388; Fri, 17 Aug 2012 21:20:18 GMT (envelope-from jgh) Date: Fri, 17 Aug 2012 21:20:18 GMT Message-Id: <201208172120.q7HLKIi1005388@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170714: update for audio/freeswitch-sounds X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 21:20:18 -0000 Synopsis: update for audio/freeswitch-sounds Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Aug 17 21:20:17 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170714 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 21:34:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8103D106564A; Fri, 17 Aug 2012 21:34:22 +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 541B78FC08; Fri, 17 Aug 2012 21:34: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 q7HLYMh5008010; Fri, 17 Aug 2012 21:34:22 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HLYMlD008006; Fri, 17 Aug 2012 21:34:22 GMT (envelope-from jgh) Date: Fri, 17 Aug 2012 21:34:22 GMT Message-Id: <201208172134.q7HLYMlD008006@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170683: update of misc/freeswitch-scripts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 21:34:22 -0000 Synopsis: update of misc/freeswitch-scripts Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Aug 17 21:34:21 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170683 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 21:34:31 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB26C106564A; Fri, 17 Aug 2012 21:34:31 +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 8F4AD8FC0C; Fri, 17 Aug 2012 21:34: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 q7HLYVqO008116; Fri, 17 Aug 2012 21:34:31 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HLYVGq008111; Fri, 17 Aug 2012 21:34:31 GMT (envelope-from jgh) Date: Fri, 17 Aug 2012 21:34:31 GMT Message-Id: <201208172134.q7HLYVGq008111@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170684: [patch] update of misc/freeswitch-pizzademo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 17 Aug 2012 21:34:31 -0000 Synopsis: [patch] update of misc/freeswitch-pizzademo Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Aug 17 21:34:31 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170684 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 21:34:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E3991065678; Fri, 17 Aug 2012 21:34:37 +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 BCBB18FC16; Fri, 17 Aug 2012 21:34: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 q7HLYboQ008230; Fri, 17 Aug 2012 21:34:37 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7HLYbFS008226; Fri, 17 Aug 2012 21:34:37 GMT (envelope-from jgh) Date: Fri, 17 Aug 2012 21:34:37 GMT Message-Id: <201208172134.q7HLYbFS008226@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170685: update net/freeswitch-vanilla-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 21:34:38 -0000 Synopsis: update net/freeswitch-vanilla-devel Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Aug 17 21:34:37 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170685 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 22:30:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B45B3106566B for ; Fri, 17 Aug 2012 22: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 87ECE8FC14 for ; Fri, 17 Aug 2012 22: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 q7HMUArQ013178 for ; Fri, 17 Aug 2012 22: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 q7HMUA8A013177; Fri, 17 Aug 2012 22:30:10 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 22:30:10 GMT Resent-Message-Id: <201208172230.q7HMUA8A013177@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, William Grzybowski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E3DC106564A for ; Fri, 17 Aug 2012 22:21:02 +0000 (UTC) (envelope-from william88@gmail.com) Received: from mail-gh0-f182.google.com (mail-gh0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 277908FC0A for ; Fri, 17 Aug 2012 22:21:02 +0000 (UTC) Received: by ghrr13 with SMTP id r13so5437235ghr.13 for ; Fri, 17 Aug 2012 15:21:01 -0700 (PDT) Received: by 10.236.201.195 with SMTP id b43mr10754123yho.27.1345242061373; Fri, 17 Aug 2012 15:21:01 -0700 (PDT) Received: from localhost ([177.40.126.104]) by mx.google.com with ESMTPS id e5sm16004348yhi.12.2012.08.17.15.20.59 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 17 Aug 2012 15:21:00 -0700 (PDT) Message-Id: <502ec3cc.0580ec0a.5951.ffffcd35@mx.google.com> Date: Fri, 17 Aug 2012 15:21:00 -0700 (PDT) From: William Grzybowski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170715: [PATCH] www/py-rhodecode: update to 1.3.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: William Grzybowski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 22:30:10 -0000 >Number: 170715 >Category: ports >Synopsis: [PATCH] www/py-rhodecode: update to 1.3.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: Fri Aug 17 22:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: William Grzybowski >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: >Description: Convert to optionsNG Update to 1.3.6 Add PasteScript as a dependency >How-To-Repeat: >Fix: See attached patch --- py-rhodecode.patch begins here --- Index: distinfo =================================================================== --- distinfo (revision 302697) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (RhodeCode-1.3.4.tar.gz) = bccd9af196c67bc488b3005c374ca4867e9440012c3476ebcc257b83bdef1a9b -SIZE (RhodeCode-1.3.4.tar.gz) = 1953937 +SHA256 (RhodeCode-1.3.6.tar.gz) = b10ad7264afb8ed116599753f6f4553c972307fbeed68c85a998f29ccdbd919a +SIZE (RhodeCode-1.3.6.tar.gz) = 1993123 Index: pkg-plist =================================================================== --- pkg-plist (revision 302697) +++ pkg-plist (working copy) @@ -34,6 +34,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config/routing.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config/routing.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config/routing.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config/setup_rhodecode.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config/setup_rhodecode.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config/setup_rhodecode.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers/__init__.pyo @@ -130,6 +133,8 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/pt_BR/LC_MESSAGES/rhodecode.mo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/pt_BR/LC_MESSAGES/rhodecode.po %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/rhodecode.pot +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/zh_TW/LC_MESSAGES/rhodecode.mo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/zh_TW/LC_MESSAGES/rhodecode.po %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/__init__.pyo @@ -338,6 +343,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/exceptions.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/exceptions.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/exceptions.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/ext_json.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/ext_json.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/ext_json.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/helpers.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/helpers.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/helpers.pyo @@ -1652,6 +1660,7 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changelog/changelog.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changelog/changelog_details.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changeset/changeset.html +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changeset/changeset_comment_block.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changeset/changeset_file_comment.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changeset/changeset_range.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changeset/diff_block.html @@ -1665,7 +1674,6 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files/file_diff.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files/files.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files/files_add.html -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files/files_annotate.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files/files_browser.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files/files_edit.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files/files_source.html @@ -1799,80 +1807,82 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/websetup.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/websetup.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/websetup.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/tests/functional -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/tags -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/summary -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/shortlog -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/settings -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/search -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/journal -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/forks -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/followers -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/errors -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/email_templates -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changeset -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changelog -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/branches -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/bookmarks -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/base -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/users_groups -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/users -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/settings -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/repos_groups -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/repos -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/permissions -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/notifications -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/ldap -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/_data_table -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rcextensions +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/public/css @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/public/js @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/public/images/icons @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/public/images -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/public/css @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/public +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/tests/functional +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/tests +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers/admin +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers/api +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config/rcextensions +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/model -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/utils -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/conf -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/backends/hg -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/backends/git -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/backends -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/rcmail -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/middleware -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/indexers -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/versions -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/schema @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/util -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/script +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/script +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/repository/default/versions +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/repository/default @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/repository/pylons/versions @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/repository/pylons -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/repository/default/versions -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/repository/default @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/repository +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates/script @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/templates -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning/script @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/versioning @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/changeset/databases @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate/changeset @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/migrate +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/versions +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate/schema @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/dbmigrate +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/indexers +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/utils +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/conf +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/backends/git +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/backends/hg +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs/backends +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/vcs @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/celerypylons +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/rcmail @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/celerylib +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib/middleware @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/lib +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/zh_TW/LC_MESSAGES +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/zh_TW @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/pt_BR/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/pt_BR @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/en/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n/en @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/i18n -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers/api -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers/admin -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/controllers -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config/rcextensions -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/config +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changeset +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/bookmarks +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/summary +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/_data_table +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/journal +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/errors +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/ldap +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/permissions +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/users +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/notifications +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/users_groups +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/repos +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/repos_groups +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin/settings +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/admin +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/forks +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/settings +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/shortlog +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/files +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/followers +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/email_templates +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/changelog +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/base +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/search +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/tags +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates/branches +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode/templates @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rhodecode -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rcextensions -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% Index: Makefile =================================================================== --- Makefile (revision 302697) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= rhodecode -PORTVERSION= 1.3.4 +PORTVERSION= 1.3.6 CATEGORIES= www devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -26,6 +26,7 @@ ${PYTHON_PKGNAMEPREFIX}dulwich>=0.8.5:${PORTSDIR}/devel/dulwich \ ${PYTHON_PKGNAMEPREFIX}docutils>=0.8.1:${PORTSDIR}/textproc/py-docutils \ ${PYTHON_PKGNAMEPREFIX}bcrypt>=0.2:${PORTSDIR}/security/py-bcrypt \ + ${PYTHON_PKGNAMEPREFIX}PasteScript>=1.6.3:${PORTSDIR}/py-pastescript \ ${LOCALBASE}/bin/hg:${PORTSDIR}/devel/mercurial USE_PYTHON= 2.6+ @@ -33,21 +34,22 @@ USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= RhodeCode -OPTIONS= LDAP "support authenticate via LDAP" off -OPTIONS+= GIT "use GIT cvs support" off -OPTIONS+= CELERY "use Celery for better performance" off +OPTIONS_DEFINE= LDAP GIT CELERY +GIT_DESC= GIT support +CELERY_DESC= Use Celery for better performance + .include -.if defined(WITH_LDAP) +.if ${PORT_OPTIONS:MLDAP} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ldap>=2.4.6:${PORTSDIR}/net/py-ldap2 .endif -.if defined(WITH_GIT) +.if ${PORT_OPTIONS:MGIT} RUN_DEPENDS+= ${LOCALBASE}/bin/git:${PORTSDIR}/devel/git .endif -.if defined(WITH_CELERY) +.if ${PORT_OPTIONS:MCELERY} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}celery>=2.4.6:${PORTSDIR}/devel/py-celery .endif --- py-rhodecode.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 22:30:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DA7B106564A; Fri, 17 Aug 2012 22: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 4122E8FC18; Fri, 17 Aug 2012 22: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 q7HMUNpo013895; Fri, 17 Aug 2012 22: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 q7HMUNvX013889; Fri, 17 Aug 2012 22:30:23 GMT (envelope-from edwin) Date: Fri, 17 Aug 2012 22:30:23 GMT Message-Id: <201208172230.q7HMUNvX013889@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170715: [PATCH] www/py-rhodecode: update to 1.3.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: Fri, 17 Aug 2012 22:30:23 -0000 Synopsis: [PATCH] www/py-rhodecode: update to 1.3.6 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 17 22:30:22 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170715 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 17 23:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6770B106566C for ; Fri, 17 Aug 2012 23: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 44AE08FC12 for ; Fri, 17 Aug 2012 23: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 q7HNK9BR019978 for ; Fri, 17 Aug 2012 23: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 q7HNK9Ax019977; Fri, 17 Aug 2012 23:20:09 GMT (envelope-from gnats) Resent-Date: Fri, 17 Aug 2012 23:20:09 GMT Resent-Message-Id: <201208172320.q7HNK9Ax019977@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9208106566B for ; Fri, 17 Aug 2012 23:13:42 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id 74C558FC08 for ; Fri, 17 Aug 2012 23:13:41 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id ADCF95CEC; Sat, 18 Aug 2012 07:13:34 +0800 (CST) Message-Id: <20120817231334.ADCF95CEC@deep.tw> Date: Sat, 18 Aug 2012 07:13:34 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170716: [MAINTAINER] www/node-devel: update to 0.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: Fri, 17 Aug 2012 23:20:09 -0000 >Number: 170716 >Category: ports >Synopsis: [MAINTAINER] www/node-devel: update to 0.9.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: Fri Aug 17 23:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #1: Fri Aug 17 02:38:23 CST 2012 >Description: - Update to 0.9.0 Removed file(s): - files/patch-tools-install.py Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- node-devel-0.9.0.patch begins here --- diff -ruN --exclude=CVS ../node-devel.orig/Makefile ./Makefile --- ../node-devel.orig/Makefile 2012-08-11 23:36:06.000000000 +0800 +++ ./Makefile 2012-07-27 10:35:40.000000000 +0800 @@ -2,18 +2,18 @@ # Date created: 2010-04-12 # Whom: Jin-Sih Lin # -# $FreeBSD: ports/www/node-devel/Makefile,v 1.38 2012/08/11 15:36:06 ak Exp $ +# $FreeBSD: ports/www/node-devel/Makefile,v 1.35 2012/07/26 15:26:15 vanilla Exp $ # PORTNAME= node -PORTVERSION= 0.8.6 +PORTVERSION= 0.9.0 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ PKGNAMESUFFIX= -devel DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= linpct@gmail.com -COMMENT= V8 JavaScript for client and server +COMMENT= V8 javascript for client and server LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo @@ -34,6 +34,7 @@ post-patch: @${RM} ${WRKSRC}/tools/wafadmin/Node.py.orig + @${REINPLACE_CMD} -e 's|share/man/man1/|man/man1|' ${WRKSRC}/tools/installer.js post-install: ${MKDIR} ${PREFIX}/lib/node_modules/ diff -ruN --exclude=CVS ../node-devel.orig/distinfo ./distinfo --- ../node-devel.orig/distinfo 2012-08-08 12:53:18.000000000 +0800 +++ ./distinfo 2012-07-27 10:35:52.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.8.6.tar.gz) = dbd42800e69644beff5c2cf11a9d4cf6dfbd644a9a36ffdd5e8c6b8db9240854 -SIZE (node-v0.8.6.tar.gz) = 11468801 +SHA256 (node-v0.9.0.tar.gz) = 4d2e5d7c8b345f6e401eed7d06b4bbc6cb012aefc34b46e7c3aedb4a0fccd258 +SIZE (node-v0.9.0.tar.gz) = 11827167 diff -ruN --exclude=CVS ../node-devel.orig/files/patch-tools-install.py ./files/patch-tools-install.py --- ../node-devel.orig/files/patch-tools-install.py 2012-08-11 16:00:15.000000000 +0800 +++ ./files/patch-tools-install.py 1970-01-01 08:00:00.000000000 +0800 @@ -1,11 +0,0 @@ ---- tools/install.py.orig 2012-08-11 15:59:08.000000000 +0800 -+++ tools/install.py 2012-08-11 15:59:36.000000000 +0800 -@@ -191,7 +191,7 @@ - 'deps/uv/include/uv-private/uv-unix.h', - 'deps/uv/include/uv-private/uv-win.h'], - 'include/node/uv-private/') -- action(['doc/node.1'], 'share/man/man1/') -+ action(['doc/node.1'], 'man/man1/') - action(['out/Release/node'], 'bin/node') - - # install unconditionally, checking if the platform supports dtrace doesn't --- node-devel-0.9.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 00:00:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3278B106566B for ; Sat, 18 Aug 2012 00:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E868B8FC0C for ; Sat, 18 Aug 2012 00:00: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 q7I00JQo023970 for ; Sat, 18 Aug 2012 00:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I00JaX023969; Sat, 18 Aug 2012 00:00:19 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 00:00:19 GMT Resent-Message-Id: <201208180000.q7I00JaX023969@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB34F106566C for ; Fri, 17 Aug 2012 23:58:04 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id 57FCE8FC0C for ; Fri, 17 Aug 2012 23:58:04 +0000 (UTC) Received: (qmail invoked by alias); 17 Aug 2012 23:58:01 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp027) with SMTP; 18 Aug 2012 01:58:01 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 01:57:59 +0200 Message-Id: <20120817235804.EB34F106566C@hub.freebsd.org> Date: Sat, 18 Aug 2012 01:57:59 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170718: [MAINTAINER] games/blockrage: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 00:00:20 -0000 >Number: 170718 >Category: ports >Synopsis: [MAINTAINER] games/blockrage: Makefile changed, Port require always DATA >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 Aug 18 00:00:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Deleted why Port require always DATA -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA Here works better NOPORTDATA -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- blockrage-0.2.3_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/blockrage/Makefile ./Makefile --- /usr/ports/games/blockrage/Makefile 2012-08-09 14:01:19.000000000 +0200 +++ ./Makefile 2012-08-18 01:46:46.000000000 +0200 @@ -12,13 +12,10 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} MAINTAINER= nemysis@gmx.ch -COMMENT= Block Rage is falling blocks game with a 2-player hotseat mode +COMMENT= A falling blocks game with a 2-player hotseat mode LICENSE= GPLv2 -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA - GNU_CONFIGURE= yes ALL_TARGET= ${PORTNAME} USE_SDL= sdl image mixer @@ -47,13 +44,13 @@ ${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MAN6PREFIX}/man/man6 # Data -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) . for d in data blockrage-fhs.rc blockrage.cfg blockrage.rc @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${DATADIR}) . endfor .endif -# Documentations +# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} --- blockrage-0.2.3_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 00:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 317C51065670 for ; Sat, 18 Aug 2012 00: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 E52BE8FC12 for ; Sat, 18 Aug 2012 00: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 q7I0A9IH030157 for ; Sat, 18 Aug 2012 00: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 q7I0A9hv030156; Sat, 18 Aug 2012 00:10:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 00:10:09 GMT Resent-Message-Id: <201208180010.q7I0A9hv030156@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F1BC31065670 for ; Sat, 18 Aug 2012 00:09:11 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 46C468FC14 for ; Sat, 18 Aug 2012 00:09:10 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 00:09:09 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp010) with SMTP; 18 Aug 2012 02:09:09 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 02:09:08 +0200 Message-Id: <20120818000911.F1BC31065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 02:09:08 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170719: [MAINTAINER] games/asteroids3d: Makefile changed, added OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 00:10:10 -0000 >Number: 170719 >Category: ports >Synopsis: [MAINTAINER] games/asteroids3d: Makefile changed, added OptionsNG >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 Aug 18 00:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed, added OptionsNG Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- asteroids3d-0.5.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/asteroids3d/Makefile ./Makefile --- /usr/ports/games/asteroids3d/Makefile 2012-07-18 13:27:01.000000000 +0200 +++ ./Makefile 2012-08-18 02:04:21.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= asteroids3d PORTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/a3d/${PORTVERSION}/ \ LOCAL/madpilot/asteroids3d/:icons @@ -44,17 +45,22 @@ post-patch: @${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|g' ${WRKSRC}/autogen.sh +.include + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME:S/3d/3D/} ${PREFIX}/bin/${PORTNAME} -# Pixmaps - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png ${PREFIX}/share/pixmaps + # Data .if !defined(NOPORTDATA) ${MKDIR} ${DATADIR} @(cd ${WRKSRC}/src && ${COPYTREE_SHARE} "*.ub *.ppm" ${DATADIR}) .endif + +# Pixmaps + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png ${PREFIX}/share/pixmaps + # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.html ${DOCSDIR} .endif --- asteroids3d-0.5.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 00:20:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B3F210656A7 for ; Sat, 18 Aug 2012 00: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 2F2098FC14 for ; Sat, 18 Aug 2012 00: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 q7I0K9tm032295 for ; Sat, 18 Aug 2012 00: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 q7I0K9Gd032293; Sat, 18 Aug 2012 00:20:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 00:20:09 GMT Resent-Message-Id: <201208180020.q7I0K9Gd032293@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A65E106564A for ; Sat, 18 Aug 2012 00:10:05 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id F418E8FC08 for ; Sat, 18 Aug 2012 00:10:04 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id 808945CEC; Sat, 18 Aug 2012 08:10:03 +0800 (CST) Message-Id: <20120818001003.808945CEC@deep.tw> Date: Sat, 18 Aug 2012 08:10:03 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170720: [MAINTAINER] www/node: update to 0.8.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: Sat, 18 Aug 2012 00:20:10 -0000 >Number: 170720 >Category: ports >Synopsis: [MAINTAINER] www/node: update to 0.8.7 >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 Aug 18 00:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #1: Fri Aug 17 02:38:23 CST 2012 >Description: - Update to 0.8.7 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- node-0.8.7.patch begins here --- diff -ruN --exclude=CVS ../node.orig/Makefile ./Makefile --- ../node.orig/Makefile 2012-08-18 00:06:47.000000000 +0800 +++ ./Makefile 2012-08-18 07:13:55.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= node -PORTVERSION= 0.8.6 +PORTVERSION= 0.8.7 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN --exclude=CVS ../node.orig/distinfo ./distinfo --- ../node.orig/distinfo 2012-08-18 00:06:47.000000000 +0800 +++ ./distinfo 2012-08-18 07:14:23.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.8.6.tar.gz) = dbd42800e69644beff5c2cf11a9d4cf6dfbd644a9a36ffdd5e8c6b8db9240854 -SIZE (node-v0.8.6.tar.gz) = 11468801 +SHA256 (node-v0.8.7.tar.gz) = fa979488347ad08ea6e36d3fe9c543807cd6f84cad31b22bfc6179b54b1e9d04 +SIZE (node-v0.8.7.tar.gz) = 11490955 --- node-0.8.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 00:30:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F54F106566C for ; Sat, 18 Aug 2012 00: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 5896F8FC0A for ; Sat, 18 Aug 2012 00: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 q7I0U862032664 for ; Sat, 18 Aug 2012 00: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 q7I0U8bu032661; Sat, 18 Aug 2012 00:30:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 00:30:08 GMT Resent-Message-Id: <201208180030.q7I0U8bu032661@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B3F71065670 for ; Sat, 18 Aug 2012 00:22:31 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id A08FC8FC16 for ; Sat, 18 Aug 2012 00:22:30 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 00:22:28 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp016) with SMTP; 18 Aug 2012 02:22:28 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 02:22:27 +0200 Message-Id: <20120818002231.3B3F71065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 02:22:27 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170721: [MAINTAINER] games/avoision: Makefile changed, added OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 00:30:08 -0000 >Number: 170721 >Category: ports >Synopsis: [MAINTAINER] games/avoision: Makefile changed, added OptionsNG >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 Aug 18 00:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed, added OptionsNG Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- avoision-1.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/avoision/Makefile ./Makefile --- /usr/ports/games/avoision/Makefile 2012-06-01 07:18:29.000000000 +0200 +++ ./Makefile 2012-08-18 02:17:42.000000000 +0200 @@ -2,7 +2,7 @@ # Date created: 2012-05-17 # Whom: nemysis@gmx.ch # -# $FreeBSD: ports/games/avoision/Makefile,v 1.2 2012/06/01 05:18:29 dinoex Exp $ +# $FreeBSD: ports/games/avoision/Makefile,v 1.1 2012/05/18 04:41:12 miwi Exp $ # PORTNAME= avoision @@ -12,7 +12,7 @@ MASTER_SITES= SF/avsn/ MAINTAINER= nemysis@gmx.ch -COMMENT= Avoision is a simple collect-dots-avoid-blocks game +COMMENT= A simple collect-dots-avoid-blocks game LICENSE= GPLv2 CCbyNCSA3 LICENSE_COMB= dual @@ -22,9 +22,9 @@ LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept LIB_DEPENDS= radius:${PORTSDIR}/graphics/radius-engine \ - lua-5.1:${PORTSDIR}/lang/lua \ - png15:${PORTSDIR}/graphics/png \ - physfs.1:${PORTSDIR}/devel/physfs + lua:${PORTSDIR}/lang/lua \ + png:${PORTSDIR}/graphics/png \ + physfs:${PORTSDIR}/devel/physfs RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip GNU_CONFIGURE= yes @@ -41,8 +41,10 @@ PORTDATA= * PORTDOCS= ChangeLog +.include + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR} .endif --- avoision-1.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 00:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 797FF106566C for ; Sat, 18 Aug 2012 00: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 53A338FC16 for ; Sat, 18 Aug 2012 00: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 q7I0o8uK036391 for ; Sat, 18 Aug 2012 00: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 q7I0o8HG036390; Sat, 18 Aug 2012 00:50:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 00:50:08 GMT Resent-Message-Id: <201208180050.q7I0o8HG036390@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EAEB1065670 for ; Sat, 18 Aug 2012 00:48:51 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 764298FC0A for ; Sat, 18 Aug 2012 00:48:49 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 00:48:47 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp024) with SMTP; 18 Aug 2012 02:48:47 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 02:48:46 +0200 Message-Id: <20120818004851.0EAEB1065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 02:48:46 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170722: [MAINTAINER] games/bubble-chains: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 00:50:08 -0000 >Number: 170722 >Category: ports >Synopsis: [MAINTAINER] games/bubble-chains: Makefile changed, OptionsNG >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 Aug 18 00:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Changed all to ${PORTNAME} OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- bubble-chains-0.1.1_4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/bubble-chains/Makefile ./Makefile --- /usr/ports/games/bubble-chains/Makefile 2012-08-05 00:52:02.000000000 +0200 +++ ./Makefile 2012-08-18 02:37:09.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= bubble-chains PORTVERSION= 0.1.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= http://bubble-chains.sintegrial.com/files/ DISTNAME= chains-${DISTVERSION} @@ -31,9 +31,9 @@ MAKE_JOBS_SAFE= yes -PLIST_FILES= bin/bubble-chains \ - share/pixmaps/bubble-chains.ico \ - share/pixmaps/bubble-chains.png +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.ico \ + share/pixmaps/${PORTNAME}.png PLIST_DIRSTRY= share/applications PORTDATA= * @@ -50,6 +50,8 @@ @${REINPLACE_CMD} -e 's|/usr/local/games/chains|${DATADIR}|' \ ${WRKSRC}/main.cpp ${WRKSRC}/Game.pro +.include + do-configure: @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ ${QMAKE} ${QMAKEFLAGS} @@ -58,20 +60,20 @@ # Executable ${INSTALL_PROGRAM} ${WRKSRC}/bin/chains ${PREFIX}/bin/${PORTNAME} -# Pixmaps and Desktop - ${INSTALL_DATA} ${WRKSRC}/images/logo.png \ - ${PREFIX}/share/pixmaps/${PORTNAME}.png - ${INSTALL_DATA} ${WRKSRC}/icon.ico \ - ${PREFIX}/share/pixmaps/${PORTNAME}.ico - # Data .if !defined (NOPORTDATA) ${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} data ${DATADIR}) .endif +# Pixmaps and Desktop + ${INSTALL_DATA} ${WRKSRC}/images/logo.png \ + ${PREFIX}/share/pixmaps/${PORTNAME}.png + ${INSTALL_DATA} ${WRKSRC}/icon.ico \ + ${PREFIX}/share/pixmaps/${PORTNAME}.ico + # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif --- bubble-chains-0.1.1_4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 01:10:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E794F106566C for ; Sat, 18 Aug 2012 01:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A73A78FC08 for ; Sat, 18 Aug 2012 01:10: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 q7I1A7Ig037940 for ; Sat, 18 Aug 2012 01:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I1A7II037939; Sat, 18 Aug 2012 01:10:07 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 01:10:07 GMT Resent-Message-Id: <201208180110.q7I1A7II037939@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EB901065673 for ; Sat, 18 Aug 2012 01:07:01 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id 9B0498FC20 for ; Sat, 18 Aug 2012 01:07:00 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 01:06:58 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp033) with SMTP; 18 Aug 2012 03:06:58 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 03:06:57 +0200 Message-Id: <20120818010701.4EB901065673@hub.freebsd.org> Date: Sat, 18 Aug 2012 03:06:57 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170724: [MAINTAINER] games/connectagram: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 01:10:08 -0000 >Number: 170724 >Category: ports >Synopsis: [MAINTAINER] games/connectagram: Makefile changed, Port require always DATA >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 Aug 18 01:10:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Deleted why Port require always DATA -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA Not install this file, why isn't needed for installed Port INSTALL Changed all to ${PORTNAME} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- connectagram-1.0.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/connectagram/Makefile ./Makefile --- /usr/ports/games/connectagram/Makefile 2012-08-14 07:51:07.000000000 +0200 +++ ./Makefile 2012-08-18 02:58:56.000000000 +0200 @@ -16,9 +16,6 @@ LICENSE= GPLv3 -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA - WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_BZIP2= yes @@ -29,11 +26,11 @@ MAKE_JOBS_SAFE= yes PORTDATA= * -PORTDOCS= ChangeLog INSTALL +PORTDOCS= ChangeLog -PLIST_FILES= bin/connectagram \ - share/applications/connectagram.desktop \ - share/icons/hicolor/48x48/apps/connectagram.png +PLIST_FILES= bin/${PORTNAME} \ + share/applications/${PORTNAME}.desktop \ + share/icons/hicolor/48x48/apps/${PORTNAME}.png PLIST_DIRSTRY= share/icons/hicolor/48x48/apps \ share/icons/hicolor/48x48 \ --- connectagram-1.0.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 01:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64807106566B for ; Sat, 18 Aug 2012 01:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3C2D58FC0C for ; Sat, 18 Aug 2012 01:30: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 q7I1U9ia040257 for ; Sat, 18 Aug 2012 01:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I1U9NP040253; Sat, 18 Aug 2012 01:30:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 01:30:09 GMT Resent-Message-Id: <201208180130.q7I1U9NP040253@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B4B110656DC for ; Sat, 18 Aug 2012 01:25:28 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id F419D8FC15 for ; Sat, 18 Aug 2012 01:25:27 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 01:25:25 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp040) with SMTP; 18 Aug 2012 03:25:25 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 03:25:24 +0200 Message-Id: <20120818012528.8B4B110656DC@hub.freebsd.org> Date: Sat, 18 Aug 2012 03:25:24 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170725: [MAINTAINER] games/cutemaze: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 01:30:09 -0000 >Number: 170725 >Category: ports >Synopsis: [MAINTAINER] games/cutemaze: Makefile changed, OptionsNG >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 Aug 18 01:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- cutemaze-1.1.0_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/cutemaze/Makefile ./Makefile --- /usr/ports/games/cutemaze/Makefile 2012-06-06 08:43:46.000000000 +0200 +++ ./Makefile 2012-08-18 03:21:22.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= cutemaze PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://gottcode.org/${PORTNAME}/ EXTRACT_SUFX= -src.tar.bz2 @@ -26,6 +26,8 @@ PORTDATA= * PORTDOCS= ChangeLog README +.include + do-configure: @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ ${QMAKE} ${QMAKEFLAGS} @@ -34,6 +36,12 @@ # Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin +# Data +.if !defined (NOPORTDATA) + ${MKDIR} ${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "preview themes" ${DATADIR}) +.endif + # Icons ${MKDIR} ${PREFIX}/share/icons/oxygen .for d in icons @@ -46,14 +54,8 @@ ${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop \ ${PREFIX}/share/applications/ -# Data -.if !defined (NOPORTDATA) - ${MKDIR} ${DATADIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} "preview themes" ${DATADIR}) -.endif - # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} --- cutemaze-1.1.0_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 01:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 17F28106564A for ; Sat, 18 Aug 2012 01: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 CCB5F8FC16 for ; Sat, 18 Aug 2012 01: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 q7I1o8fZ043930 for ; Sat, 18 Aug 2012 01: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 q7I1o8r8043928; Sat, 18 Aug 2012 01:50:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 01:50:08 GMT Resent-Message-Id: <201208180150.q7I1o8r8043928@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0F1E1065670 for ; Sat, 18 Aug 2012 01:48:36 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 443A18FC15 for ; Sat, 18 Aug 2012 01:48:35 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 01:48:34 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp036) with SMTP; 18 Aug 2012 03:48:34 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 03:48:33 +0200 Message-Id: <20120818014836.F0F1E1065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 03:48:33 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170726: [MAINTAINER] games/fbg2: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 01:50:09 -0000 >Number: 170726 >Category: ports >Synopsis: [MAINTAINER] games/fbg2: Makefile changed, OptionsNG >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 Aug 18 01:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- fbg2-0.4_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/fbg2/Makefile ./Makefile --- /usr/ports/games/fbg2/Makefile 2012-06-01 07:18:40.000000000 +0200 +++ ./Makefile 2012-08-18 03:45:37.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= fbg2 PORTVERSION= 0.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/fbg/ @@ -22,9 +22,9 @@ LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept LIB_DEPENDS= radius:${PORTSDIR}/graphics/radius-engine \ - lua-5.1:${PORTSDIR}/lang/lua \ + lua:${PORTSDIR}/lang/lua \ png15:${PORTSDIR}/graphics/png \ - physfs.1:${PORTSDIR}/devel/physfs + physfs:${PORTSDIR}/devel/physfs RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip GNU_CONFIGURE= yes @@ -41,8 +41,10 @@ PORTDATA= * PORTDOCS= ChangeLog +.include + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR} .endif --- fbg2-0.4_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 02:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B4057106564A for ; Sat, 18 Aug 2012 02:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 73C628FC0C for ; Sat, 18 Aug 2012 02: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 q7I2A8B0046245 for ; Sat, 18 Aug 2012 02: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 q7I2A8fn046244; Sat, 18 Aug 2012 02:10:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 02:10:08 GMT Resent-Message-Id: <201208180210.q7I2A8fn046244@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D1B4106564A for ; Sat, 18 Aug 2012 02:01:08 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id DCDA98FC1A for ; Sat, 18 Aug 2012 02:01:07 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 02:01:05 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp020) with SMTP; 18 Aug 2012 04:01:05 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 04:01:04 +0200 Message-Id: <20120818020108.8D1B4106564A@hub.freebsd.org> Date: Sat, 18 Aug 2012 04:01:04 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170727: [MAINTAINER] games/impossible_mission_puzzle: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 02:10:08 -0000 >Number: 170727 >Category: ports >Synopsis: [MAINTAINER] games/impossible_mission_puzzle: Makefile changed, OptionsNG >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 Aug 18 02:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- impossible_mission_puzzle-1.0.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/impossible_mission_puzzle/Makefile ./Makefile --- /usr/ports/games/impossible_mission_puzzle/Makefile 2012-05-19 12:23:04.000000000 +0200 +++ ./Makefile 2012-08-18 03:51:44.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= impossible_mission_puzzle PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.linuxmotors.com/puzzle/downloads/ DISTNAME= puzzle-${PORTVERSION} @@ -26,6 +27,8 @@ PORTDOCS= README +.include + do-build: @cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \ `${SDL_CONFIG} --cflags --libs` puzzle.c @@ -35,7 +38,7 @@ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif --- impossible_mission_puzzle-1.0.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 02:37:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C6EE106566B; Sat, 18 Aug 2012 02:37:15 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5124D8FC0C; Sat, 18 Aug 2012 02:37: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 q7I2bFlc051097; Sat, 18 Aug 2012 02:37:15 GMT (envelope-from swills@freefall.freebsd.org) Received: (from swills@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I2bFoL051093; Sat, 18 Aug 2012 02:37:15 GMT (envelope-from swills) Date: Sat, 18 Aug 2012 02:37:15 GMT Message-Id: <201208180237.q7I2bFoL051093@freefall.freebsd.org> To: swills@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: swills@FreeBSD.org Cc: Subject: Re: ports/170716: [MAINTAINER] www/node-devel: update to 0.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: Sat, 18 Aug 2012 02:37:15 -0000 Synopsis: [MAINTAINER] www/node-devel: update to 0.9.0 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: swills Responsible-Changed-When: Sat Aug 18 02:37:14 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170716 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 02:37:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7053D106564A; Sat, 18 Aug 2012 02:37:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 43BA08FC14; Sat, 18 Aug 2012 02:37: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 q7I2bWXI051186; Sat, 18 Aug 2012 02:37:32 GMT (envelope-from swills@freefall.freebsd.org) Received: (from swills@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I2bWYi051182; Sat, 18 Aug 2012 02:37:32 GMT (envelope-from swills) Date: Sat, 18 Aug 2012 02:37:32 GMT Message-Id: <201208180237.q7I2bWYi051182@freefall.freebsd.org> To: swills@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: swills@FreeBSD.org Cc: Subject: Re: ports/170720: [MAINTAINER] www/node: update to 0.8.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: Sat, 18 Aug 2012 02:37:32 -0000 Synopsis: [MAINTAINER] www/node: update to 0.8.7 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: swills Responsible-Changed-When: Sat Aug 18 02:37:31 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170720 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 03:45:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E890106566B; Sat, 18 Aug 2012 03:45: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 0DEEB8FC0A; Sat, 18 Aug 2012 03:45: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 q7I3j0U7058832; Sat, 18 Aug 2012 03:45:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I3j0Q3058828; Sat, 18 Aug 2012 03:45:00 GMT (envelope-from linimon) Date: Sat, 18 Aug 2012 03:45:00 GMT Message-Id: <201208180345.q7I3j0Q3058828@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/170723: [patch] x11-wm/dwm: add optional Xft support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2012 03:45:01 -0000 Synopsis: [patch] x11-wm/dwm: add optional Xft support Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Aug 18 03:44:47 UTC 2012 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=170723 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 03:45:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 79EA61065670; Sat, 18 Aug 2012 03:45:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4DA238FC14; Sat, 18 Aug 2012 03:45: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 q7I3jEBY058959; Sat, 18 Aug 2012 03:45:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I3jETH058955; Sat, 18 Aug 2012 03:45:14 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 03:45:14 GMT Message-Id: <201208180345.q7I3jETH058955@freefall.freebsd.org> To: vmagerya@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170723: [patch] x11-wm/dwm: add optional Xft support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2012 03:45:14 -0000 Synopsis: [patch] x11-wm/dwm: add optional Xft support State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Aug 18 03:45:13 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170723 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 03:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D7BF1065672 for ; Sat, 18 Aug 2012 03: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 189E58FC0A for ; Sat, 18 Aug 2012 03: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 q7I3o95j059943 for ; Sat, 18 Aug 2012 03: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 q7I3o9mH059942; Sat, 18 Aug 2012 03:50:09 GMT (envelope-from gnats) Date: Sat, 18 Aug 2012 03:50:09 GMT Message-Id: <201208180350.q7I3o9mH059942@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/170723: [patch] x11-wm/dwm: add optional Xft support 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, 18 Aug 2012 03:50:10 -0000 The following reply was made to PR ports/170723; it has been noted by GNATS. From: Edwin Groothuis To: schot@a-eskwadraat.nl Cc: bug-followup@FreeBSD.org Subject: Re: ports/170723: [patch] x11-wm/dwm: add optional Xft support Date: Sat, 18 Aug 2012 03:45:10 UT Maintainer of x11-wm/dwm, Please note that PR ports/170723 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/170723 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 03:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3E871065673 for ; Sat, 18 Aug 2012 03: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 87E008FC12 for ; Sat, 18 Aug 2012 03: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 q7I3oAuI059953 for ; Sat, 18 Aug 2012 03: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 q7I3oAdf059952; Sat, 18 Aug 2012 03:50:10 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 03:50:10 GMT Resent-Message-Id: <201208180350.q7I3oAdf059952@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46CD2106564A for ; Sat, 18 Aug 2012 03:48:53 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id 126438FC08 for ; Sat, 18 Aug 2012 03:48:52 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id 892435C85; Sat, 18 Aug 2012 11:48:51 +0800 (CST) Message-Id: <20120818034851.892435C85@deep.tw> Date: Sat, 18 Aug 2012 11:48:51 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170728: [MAINTAINER] www/phalcon: update to 0.4.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, 18 Aug 2012 03:50:10 -0000 >Number: 170728 >Category: ports >Synopsis: [MAINTAINER] www/phalcon: update to 0.4.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 Aug 18 03:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 18 08:09:36 CST 2012 >Description: - Update to 0.4.4 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- phalcon-0.4.4.patch begins here --- diff -ruN --exclude=CVS ../phalcon.orig/Makefile ./Makefile --- ../phalcon.orig/Makefile 2012-06-28 18:05:36.000000000 +0800 +++ ./Makefile 2012-08-18 11:36:58.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= phalcon -PORTVERSION= 0.4.2 +PORTVERSION= 0.4.4 CATEGORIES= www MASTER_SITES= https://github.com/${PORTNAME}/c${PORTNAME}/tarball/${GITVERSION}/ DISTNAME= ${PORTNAME}-c${PORTNAME}-${GITVERSION} @@ -14,7 +14,7 @@ MAINTAINER= linpct@gmail.com COMMENT= Phalcon PHP Framework written in C-language -GITVERSION= 129b8e7 +GITVERSION= 37f3290 FETCH_ARGS= -pRr WRKSRC= ${WRKDIR}/${PORTNAME}-c${PORTNAME}-${GITVERSION}/release/ diff -ruN --exclude=CVS ../phalcon.orig/distinfo ./distinfo --- ../phalcon.orig/distinfo 2012-08-18 11:35:24.000000000 +0800 +++ ./distinfo 2012-08-18 11:39:19.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (phalcon-cphalcon-129b8e7.tar.gz) = 44aa58fa8b1bef79ab5f131fb257ffcce847b6c7166dff77e4c7bb083ecc1a59 -SIZE (phalcon-cphalcon-129b8e7.tar.gz) = 616489 +SHA256 (phalcon-cphalcon-37f3290.tar.gz) = d4a787a7803f06b0fcb6969c596787700024f8fb2fde4add220a898770b42972 +SIZE (phalcon-cphalcon-37f3290.tar.gz) = 663687 --- phalcon-0.4.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:40:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A4F2106564A for ; Sat, 18 Aug 2012 05:40: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 3D1188FC0C for ; Sat, 18 Aug 2012 05:40: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 q7I5e57Y073340 for ; Sat, 18 Aug 2012 05:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5e5HG073339; Sat, 18 Aug 2012 05:40:05 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 05:40:05 GMT Resent-Message-Id: <201208180540.q7I5e5HG073339@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Chen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B971106566B for ; Sat, 18 Aug 2012 05:36:12 +0000 (UTC) (envelope-from johnpupu@www.johnpupu.tw) Received: from www.johnpupu.tw (60-199-173-18.static.tfn.net.tw [60.199.173.18]) by mx1.freebsd.org (Postfix) with ESMTP id 494328FC0A for ; Sat, 18 Aug 2012 05:36:10 +0000 (UTC) Received: from www.johnpupu.tw (localhost [127.0.0.1]) by www.johnpupu.tw (Postfix) with ESMTP id 96274536004 for ; Sat, 18 Aug 2012 13:36:05 +0800 (CST) Received: (from root@localhost) by www.johnpupu.tw (8.14.5/8.14.5/Submit) id q7I5a54U085021; Sat, 18 Aug 2012 13:36:05 +0800 (CST) (envelope-from johnpupu) Message-Id: <201208180536.q7I5a54U085021@www.johnpupu.tw> Date: Sat, 18 Aug 2012 13:36:05 +0800 (CST) From: John Chen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170729: [MAINTAINER] databases/pecl-mysqlnd_ms: update to 1.4.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, 18 Aug 2012 05:40:05 -0000 >Number: 170729 >Category: ports >Synopsis: [MAINTAINER] databases/pecl-mysqlnd_ms: update to 1.4.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: Sat Aug 18 05:40:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: John Chen >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: Watcher >Environment: System: FreeBSD www.johnpupu.tw 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 >Description: - Update to 1.4.2 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- pecl-mysqlnd_ms-1.4.2.patch begins here --- diff -ruN --exclude=CVS ../pecl-mysqlnd_ms.orig/Makefile ./Makefile --- ../pecl-mysqlnd_ms.orig/Makefile 2012-02-07 12:37:51.000000000 +0800 +++ ./Makefile 2012-08-18 13:34:54.000000000 +0800 @@ -2,11 +2,11 @@ # Date created: 13 Oct 2011 # Whom: johnpupu # -# $FreeBSD: ports/databases/pecl-mysqlnd_ms/Makefile,v 1.4 2012/02/07 04:37:51 miwi Exp $ +# $FreeBSD: ports/databases/pecl-mysqlnd_ms/Makefile,v 1.5 2012/05/03 16:29:04 miwi Exp $ # PORTNAME= mysqlnd_ms -PORTVERSION= 1.2.2 +PORTVERSION= 1.4.2 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- diff -ruN --exclude=CVS ../pecl-mysqlnd_ms.orig/distinfo ./distinfo --- ../pecl-mysqlnd_ms.orig/distinfo 2012-02-03 19:21:56.000000000 +0800 +++ ./distinfo 2012-08-18 13:35:26.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PECL/mysqlnd_ms-1.2.2.tgz) = c80f8e7901583130b5c5d6115f0f78eecb5d09d78a8ba8090bdf1f36fe6aacd6 -SIZE (PECL/mysqlnd_ms-1.2.2.tgz) = 337534 +SHA256 (PECL/mysqlnd_ms-1.4.2.tgz) = 481ebcf8e3ddaac7a89d96f746f19f729d9e33e77ae650decfae28fa3ba39265 +SIZE (PECL/mysqlnd_ms-1.4.2.tgz) = 354515 --- pecl-mysqlnd_ms-1.4.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:40:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA06B1065673; Sat, 18 Aug 2012 05: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 8DE298FC12; Sat, 18 Aug 2012 05: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 q7I5eGDY073470; Sat, 18 Aug 2012 05: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 q7I5eG79073466; Sat, 18 Aug 2012 05:40:16 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 05:40:16 GMT Message-Id: <201208180540.q7I5eG79073466@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170729: [MAINTAINER] databases/pecl-mysqlnd_ms: update to 1.4.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, 18 Aug 2012 05:40:16 -0000 Synopsis: [MAINTAINER] databases/pecl-mysqlnd_ms: update to 1.4.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 18 05:40:16 UTC 2012 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170729 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:48:42 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53EF510657CB; Sat, 18 Aug 2012 05:48:42 +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 26CB48FC0A; Sat, 18 Aug 2012 05:48: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 q7I5mgP1074100; Sat, 18 Aug 2012 05:48:42 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5mgNa074096; Sat, 18 Aug 2012 05:48:42 GMT (envelope-from jgh) Date: Sat, 18 Aug 2012 05:48:42 GMT Message-Id: <201208180548.q7I5mgNa074096@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170718: [MAINTAINER] games/blockrage: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 05:48:42 -0000 Synopsis: [MAINTAINER] games/blockrage: Makefile changed, Port require always DATA Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Aug 18 05:48:41 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170718 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:48:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E99A610657C2; Sat, 18 Aug 2012 05:48:56 +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 BD7528FC08; Sat, 18 Aug 2012 05:48: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 q7I5muGT074210; Sat, 18 Aug 2012 05:48:56 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5mufo074206; Sat, 18 Aug 2012 05:48:56 GMT (envelope-from jgh) Date: Sat, 18 Aug 2012 05:48:56 GMT Message-Id: <201208180548.q7I5mufo074206@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170719: [MAINTAINER] games/asteroids3d: Makefile changed, added OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 05:48:57 -0000 Synopsis: [MAINTAINER] games/asteroids3d: Makefile changed, added OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Aug 18 05:48:56 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170719 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:49:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A37DC1065680; Sat, 18 Aug 2012 05:49:09 +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 773F88FC16; Sat, 18 Aug 2012 05:49: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 q7I5n9ZL074319; Sat, 18 Aug 2012 05:49:09 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5n9MS074315; Sat, 18 Aug 2012 05:49:09 GMT (envelope-from jgh) Date: Sat, 18 Aug 2012 05:49:09 GMT Message-Id: <201208180549.q7I5n9MS074315@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170721: [MAINTAINER] games/avoision: Makefile changed, added OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 05:49:09 -0000 Synopsis: [MAINTAINER] games/avoision: Makefile changed, added OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Aug 18 05:49:08 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170721 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:49:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BA161065680; Sat, 18 Aug 2012 05:49:16 +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 E30D38FC1B; Sat, 18 Aug 2012 05:49: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 q7I5nFJ1074415; Sat, 18 Aug 2012 05:49:15 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5nFPH074411; Sat, 18 Aug 2012 05:49:15 GMT (envelope-from jgh) Date: Sat, 18 Aug 2012 05:49:15 GMT Message-Id: <201208180549.q7I5nFPH074411@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170722: [MAINTAINER] games/bubble-chains: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 05:49:16 -0000 Synopsis: [MAINTAINER] games/bubble-chains: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Aug 18 05:49:15 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170722 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:49:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DBED91065686; Sat, 18 Aug 2012 05:49:22 +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 AEF388FC16; Sat, 18 Aug 2012 05:49: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 q7I5nMFs074513; Sat, 18 Aug 2012 05:49:22 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5nMxA074509; Sat, 18 Aug 2012 05:49:22 GMT (envelope-from jgh) Date: Sat, 18 Aug 2012 05:49:22 GMT Message-Id: <201208180549.q7I5nMxA074509@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170724: [MAINTAINER] games/connectagram: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 05:49:23 -0000 Synopsis: [MAINTAINER] games/connectagram: Makefile changed, Port require always DATA Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Aug 18 05:49:22 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170724 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:49:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A1FC106564A; Sat, 18 Aug 2012 05:49:29 +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 D232C8FC1E; Sat, 18 Aug 2012 05:49: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 q7I5nSnR074612; Sat, 18 Aug 2012 05:49:28 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5nSMH074608; Sat, 18 Aug 2012 05:49:28 GMT (envelope-from jgh) Date: Sat, 18 Aug 2012 05:49:28 GMT Message-Id: <201208180549.q7I5nSMH074608@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170725: [MAINTAINER] games/cutemaze: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 05:49:29 -0000 Synopsis: [MAINTAINER] games/cutemaze: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Aug 18 05:49:28 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170725 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:49:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1A7B106564A; Sat, 18 Aug 2012 05:49:36 +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 752428FC14; Sat, 18 Aug 2012 05:49: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 q7I5naVi074715; Sat, 18 Aug 2012 05:49:36 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5naFu074711; Sat, 18 Aug 2012 05:49:36 GMT (envelope-from jgh) Date: Sat, 18 Aug 2012 05:49:36 GMT Message-Id: <201208180549.q7I5naFu074711@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170726: [MAINTAINER] games/fbg2: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 05:49:36 -0000 Synopsis: [MAINTAINER] games/fbg2: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Aug 18 05:49:36 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170726 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 05:49:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29CED1065672; Sat, 18 Aug 2012 05:49:47 +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 F065C8FC17; Sat, 18 Aug 2012 05:49: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 q7I5nkk2074822; Sat, 18 Aug 2012 05:49:46 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I5nkgL074818; Sat, 18 Aug 2012 05:49:46 GMT (envelope-from jgh) Date: Sat, 18 Aug 2012 05:49:46 GMT Message-Id: <201208180549.q7I5nkgL074818@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/170727: [MAINTAINER] games/impossible_mission_puzzle: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 05:49:47 -0000 Synopsis: [MAINTAINER] games/impossible_mission_puzzle: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Aug 18 05:49:46 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170727 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 07:30:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AF0F106566B; Sat, 18 Aug 2012 07:30:03 +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 335028FC0C; Sat, 18 Aug 2012 07:30: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 q7I7U3vx090930; Sat, 18 Aug 2012 07:30:03 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I7U3n2090926; Sat, 18 Aug 2012 07:30:03 GMT (envelope-from culot) Date: Sat, 18 Aug 2012 07:30:03 GMT Message-Id: <201208180730.q7I7U3n2090926@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/170728: [MAINTAINER] www/phalcon: update to 0.4.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, 18 Aug 2012 07:30:03 -0000 Synopsis: [MAINTAINER] www/phalcon: update to 0.4.4 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Sat Aug 18 07:30:02 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170728 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 08:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 663381065676 for ; Sat, 18 Aug 2012 08: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 3EECC8FC16 for ; Sat, 18 Aug 2012 08: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 q7I80QCR098650 for ; Sat, 18 Aug 2012 08: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 q7I80QEM098649; Sat, 18 Aug 2012 08:00:26 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 08:00:26 GMT Resent-Message-Id: <201208180800.q7I80QEM098649@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Zander Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F4089106566C for ; Sat, 18 Aug 2012 07:50: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 DF5368FC14 for ; Sat, 18 Aug 2012 07:50: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 q7I7oWf5063007 for ; Sat, 18 Aug 2012 07:50:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7I7oWba063006; Sat, 18 Aug 2012 07:50:32 GMT (envelope-from nobody) Message-Id: <201208180750.q7I7oWba063006@red.freebsd.org> Date: Sat, 18 Aug 2012 07:50:32 GMT From: Thomas Zander To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170730: [pkgng] mplayer-skins plist generation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 08:00:26 -0000 >Number: 170730 >Category: ports >Synopsis: [pkgng] mplayer-skins plist generation >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 Aug 18 08:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Thomas Zander >Release: FreeBSD 9.1-PRERELEASE >Organization: >Environment: >Description: I received via pm a suggestion to fix the mplayer-skin port for pkgng. Apparently the problem is that pkgng picks up its metadata dir when doing a reinstall. >How-To-Repeat: >Fix: The attached patch is supposed to fix the problem. Could someone from the pkgng team please check whether this is the recommended way to deal with the issue? Thanks. Patch attached with submission follows: diff -ruN /usr/ports/multimedia/mplayer-skins/Makefile mplayer-skins/Makefile --- /usr/ports/multimedia/mplayer-skins/Makefile 2012-01-11 20:16:58.000000000 +0100 +++ mplayer-skins/Makefile 2012-08-18 09:32:13.722445544 +0200 @@ -72,8 +72,8 @@ .endif do-install: -# both anotate and create target directories - @for dir in `cd ${WRKDIR} && ${FIND} . -type d ! -name ".*" | ${SORT} -r` ; do \ +# anotate and create target directories + @for dir in `cd ${WRKDIR} && ${FIND} ./* -type d | ${SORT} -r` ; do \ ${MKDIR} "${PREFIX}/${myDATADIR}/$${dir#./}" ; \ LAST_DIR="$${dir#./}"; \ done && \ @@ -81,8 +81,8 @@ .ifdef(WITH_SKIN_DEFAULT) @${LN} -sfh "${PREFIX}/${myDATADIR}/Blue" "${PREFIX}/${myDATADIR}/default" .endif -# both anotate installed and install files - @for f in `cd ${WRKDIR} && ${FIND} . -type f ! -name ".*" | ${SORT}` ; do \ +# anotate installed and install files + @for f in `cd ${WRKDIR} && ${FIND} ./* -type f | ${SORT}` ; do \ ${INSTALL_DATA} "${WRKDIR}/$${f#./}" ${PREFIX}/${myDATADIR}/$${f#./} ; \ done # add marker file >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 08:30:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7355106566C for ; Sat, 18 Aug 2012 08:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 853798FC12 for ; Sat, 18 Aug 2012 08:30:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7I8U6lT005615 for ; Sat, 18 Aug 2012 08:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I8U6UE005614; Sat, 18 Aug 2012 08:30:06 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 08:30:06 GMT Resent-Message-Id: <201208180830.q7I8U6UE005614@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, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4DE1E1065670 for ; Sat, 18 Aug 2012 08:27:49 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 1FA038FC08 for ; Sat, 18 Aug 2012 08:27:48 +0000 (UTC) Received: by pbbrp2 with SMTP id rp2so4837835pbb.13 for ; Sat, 18 Aug 2012 01:27:48 -0700 (PDT) Received: by 10.68.200.227 with SMTP id jv3mr17669383pbc.162.1345278468404; Sat, 18 Aug 2012 01:27:48 -0700 (PDT) Received: from freebsd-9-amd64.localdomain (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPS id sj5sm6647717pbc.30.2012.08.18.01.27.46 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 18 Aug 2012 01:27:47 -0700 (PDT) Received: by freebsd-9-amd64.localdomain (Postfix, from userid 1001) id 639FC3AE19; Sat, 18 Aug 2012 18:27:42 +1000 (EST) Message-Id: <20120818082742.639FC3AE19@freebsd-9-amd64.localdomain> Date: Sat, 18 Aug 2012 18:27:42 +1000 (EST) From: Kubilay Kocak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170731: [NEW PORT] databases/py-umemcache: Memcache client written in highly optimized C++ with Python bindings X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 08:30:06 -0000 >Number: 170731 >Category: ports >Synopsis: [NEW PORT] databases/py-umemcache: Memcache client written in highly optimized C++ with Python bindings >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 Aug 18 08:30:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD freebsd-9-amd64 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Sat Jul 7 21:26:56 EST >Description: Ultra fast memcache client written in highly optimized C++ with Python bindings WWW: https://github.com/esnme/ultramemcache/ ==[QA]== port test clean: looks fine. redports build clean: https://redports.org/buildarchive/20120818073129-61606/ unit test clean: Ran 31 tests in 76.202s - OK ======== Generated with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: --- .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: # # py-umemcache # py-umemcache/Makefile # py-umemcache/pkg-descr # py-umemcache/distinfo # echo c - py-umemcache mkdir -p py-umemcache > /dev/null 2>&1 echo x - py-umemcache/Makefile sed 's/^X//' >py-umemcache/Makefile << '57b14ac3a5158b4986c179aee16592d2' X# New ports collection makefile for: py-umemcache X# Date created: 2012-08-18 X# Whom: Kubilay Kocak X# X# $FreeBSD$ X# X XPORTNAME= umemcache XPORTVERSION= 1.4 XCATEGORIES= databases python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= koobs.freebsd@gmail.com XCOMMENT= Memcache client written in highly optimized C++ with Python bindings X XLICENSE= BSD X XUSE_DOS2UNIX= yes XUSE_ZIP= yes XUSE_PYTHON= -2.7 XUSE_PYDISTUTILS= yes X XPLIST_FILES= %%PYTHON_SITELIBDIR%%/umemcache.so X X.include 57b14ac3a5158b4986c179aee16592d2 echo x - py-umemcache/pkg-descr sed 's/^X//' >py-umemcache/pkg-descr << '7e09208ea32d40d4a35cfe459aff71b1' XUltra fast memcache client written in highly optimized C++ with Python bindings X XWWW: https://github.com/esnme/ultramemcache/ 7e09208ea32d40d4a35cfe459aff71b1 echo x - py-umemcache/distinfo sed 's/^X//' >py-umemcache/distinfo << 'fa4f9fa490ce340d86785cd01059ba43' XSHA256 (umemcache-1.4.zip) = 0552e07cfa05bf19cbfa4b3b725b5daa5be9184d4bdeca98fb00f23aee20afb3 XSIZE (umemcache-1.4.zip) = 24005 fa4f9fa490ce340d86785cd01059ba43 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 08:30:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 338521065670 for ; Sat, 18 Aug 2012 08:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0A8818FC0A for ; Sat, 18 Aug 2012 08:30: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 q7I8U6Jp005648 for ; Sat, 18 Aug 2012 08:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I8U6x6005645; Sat, 18 Aug 2012 08:30:06 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 08:30:06 GMT Resent-Message-Id: <201208180830.q7I8U6x6005645@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08F87106564A for ; Sat, 18 Aug 2012 08:29:24 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id 71AEF8FC08 for ; Sat, 18 Aug 2012 08:29:22 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 08:29:20 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp027) with SMTP; 18 Aug 2012 10:29:20 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 10:29:20 +0200 Message-Id: <20120818082924.08F87106564A@hub.freebsd.org> Date: Sat, 18 Aug 2012 10:29:20 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170732: [MAINTAINER] games/krank: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 08:30:07 -0000 >Number: 170732 >Category: ports >Synopsis: [MAINTAINER] games/krank: Makefile changed, OptionsNG >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 Aug 18 08:30:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Changed all to ${PORTNAME} ${PYNUMPY} OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- krank-07_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/krank/Makefile ./Makefile --- /usr/ports/games/krank/Makefile 2012-05-14 20:06:55.000000000 +0200 +++ ./Makefile 2012-08-18 10:07:45.000000000 +0200 @@ -7,29 +7,32 @@ PORTNAME= krank PORTVERSION= 07 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} MAINTAINER= nemysis@gmx.ch -COMMENT= Krank is a little casual game +COMMENT= A little casual game LICENSE= GPLv2 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game \ - ${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy + ${PYNUMPY} USE_BZIP2= yes USE_PYTHON= yes NO_BUILD= yes -PLIST_FILES= bin/krank \ - share/pixmaps/Krank.png +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.png PORTDATA= * PORTDOCS= CHANGELOG.txt README post-patch: - ${REINPLACE_CMD} -e 's|`dirname.*|${DATADIR}|' ${WRKSRC}/krank + ${REINPLACE_CMD} -e 's|`dirname.*|${DATADIR}|' ${WRKSRC}/${PORTNAME} + +.include do-install: # Wrapper script @@ -44,11 +47,11 @@ . endfor ${INSTALL_DATA} ${WRKSRC}/krank.iss ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/logo.xcf ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/html/gfx/logo.png ${PREFIX}/share/pixmaps/Krank.png + ${INSTALL_DATA} ${WRKSRC}/html/gfx/logo.png ${PREFIX}/share/pixmaps/${PORTNAME}.png .endif # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} --- krank-07_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 08:30:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC75A106564A; Sat, 18 Aug 2012 08:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE1B38FC12; Sat, 18 Aug 2012 08: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 q7I8UHO6006321; Sat, 18 Aug 2012 08:30:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7I8UHVa006313; Sat, 18 Aug 2012 08:30:17 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 08:30:17 GMT Message-Id: <201208180830.q7I8UHVa006313@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170731: [NEW PORT] databases/py-umemcache: Memcache client written in highly optimized C++ with Python bindings X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 08:30:18 -0000 Synopsis: [NEW PORT] databases/py-umemcache: Memcache client written in highly optimized C++ with Python bindings Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 18 08:30:17 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170731 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 08:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84BC5106566B for ; Sat, 18 Aug 2012 08: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 5EFF08FC18 for ; Sat, 18 Aug 2012 08: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 q7I8o8Ha009092 for ; Sat, 18 Aug 2012 08: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 q7I8o8fB009091; Sat, 18 Aug 2012 08:50:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 08:50:08 GMT Resent-Message-Id: <201208180850.q7I8o8fB009091@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04F3D1065670 for ; Sat, 18 Aug 2012 08:41:24 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id 2AE8F8FC0A for ; Sat, 18 Aug 2012 08:41:22 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 08:41:20 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp027) with SMTP; 18 Aug 2012 10:41:20 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 10:41:19 +0200 Message-Id: <20120818084124.04F3D1065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 10:41:19 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170733: [MAINTAINER] games/kye: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 08:50:08 -0000 >Number: 170733 >Category: ports >Synopsis: [MAINTAINER] games/kye: Makefile changed, Port require always DATA >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 Aug 18 08:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Deleted why Port require always DATA -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA Here works better NOPORTDATA -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) pkg-message.in changed: + /bin/chmod 644 %%DATADIR%%/*.kye Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- py27-kye-1.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/kye/Makefile ./Makefile --- /usr/ports/games/kye/Makefile 2012-08-04 23:59:15.000000000 +0200 +++ ./Makefile 2012-08-18 10:35:57.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= kye PORTVERSION= 1.0 +#PORTREVISION= 1 CATEGORIES= games python MASTER_SITES= http://games.moria.org.uk/kye/download/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,9 +18,6 @@ LICENSE= GPLv2 -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA - USE_GNOME= pygtk2 librsvg2 USE_PYTHON= yes USE_PYDISTUTILS= yes @@ -34,7 +32,7 @@ post-install: # Data -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) ${INSTALL_DATA} ${WRKSRC}/kye-icon.png ${PREFIX}/share/pixmaps/Kye.png ${INSTALL_DATA} ${WRKSRC}/kye-edit-icon.png ${PREFIX}/share/pixmaps/Kye-edit.png .endif diff -ruN --exclude=CVS /usr/ports/games/kye/files/pkg-message.in ./files/pkg-message.in --- /usr/ports/games/kye/files/pkg-message.in 2012-08-04 23:59:15.000000000 +0200 +++ ./files/pkg-message.in 2012-08-18 10:35:17.000000000 +0200 @@ -20,6 +20,6 @@ You could manually change Permissions these Levels with: - /bin/chmod 444 %%DATADIR%%/*.kye + /bin/chmod 644 %%DATADIR%%/*.kye =============================================================================== --- py27-kye-1.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 09:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDBDB1065670 for ; Sat, 18 Aug 2012 09: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 9D7FD8FC0C for ; Sat, 18 Aug 2012 09: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 q7I9AB2r010372 for ; Sat, 18 Aug 2012 09: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 q7I9ABGA010371; Sat, 18 Aug 2012 09:10:11 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 09:10:11 GMT Resent-Message-Id: <201208180910.q7I9ABGA010371@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, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5EA86106566C for ; Sat, 18 Aug 2012 09:09: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 4A2488FC08 for ; Sat, 18 Aug 2012 09:09:54 +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 q7I99sr1085952 for ; Sat, 18 Aug 2012 09:09:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7I99sTA085949; Sat, 18 Aug 2012 09:09:54 GMT (envelope-from nobody) Message-Id: <201208180909.q7I99sTA085949@red.freebsd.org> Date: Sat, 18 Aug 2012 09:09:54 GMT From: Kubilay Kocak To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170734: Rename www/django-mezzanine-{filebrowser, grappelli} 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: Sat, 18 Aug 2012 09:10:11 -0000 >Number: 170734 >Category: ports >Synopsis: Rename www/django-mezzanine-{filebrowser,grappelli} ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Aug 18 09:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: 9.0-RELEASE-p3 >Organization: >Environment: FreeBSD freebsd-9-amd64 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Sat Jul 7 21:26:56 EST 2012 root@freebsd-90-amd64:/usr/obj/usr/src/sys/DTRACE amd64 >Description: The following ports were submitted incorrectly missing a py- prefix in their directory names: www/django-mezzanine-filebrowser (ports/168489) www/django-mezzanine-grappelli (ports/168490) Requesting rename to: www/py-django-mezzanine-filebrowser www/py-django-mezzanine-grappelli Have checked that both ports correctly use: - PORTNAME 'without' py- prefix, and - PKGNAMEPREFIX = ${PYTHON_PKGNAMEPREFIX} >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 10:31:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 036E2106566B; Sat, 18 Aug 2012 10:31:27 +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 CC4318FC0A; Sat, 18 Aug 2012 10:31: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 q7IAVQTL021985; Sat, 18 Aug 2012 10:31:26 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IAVQ2k021980; Sat, 18 Aug 2012 10:31:26 GMT (envelope-from rm) Date: Sat, 18 Aug 2012 10:31:26 GMT Message-Id: <201208181031.q7IAVQ2k021980@freefall.freebsd.org> To: fiziologus@gmail.com, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170711: games/unknown-horizons: fix python version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2012 10:31:27 -0000 Synopsis: games/unknown-horizons: fix python version State-Changed-From-To: open->closed State-Changed-By: rm State-Changed-When: Sat Aug 18 10:31:23 UTC 2012 State-Changed-Why: Committed, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=170711 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 10:32:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32CEF1065670; Sat, 18 Aug 2012 10:32:33 +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 05EB88FC1B; Sat, 18 Aug 2012 10:32: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 q7IAWW6Z022142; Sat, 18 Aug 2012 10:32:32 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IAWWio022138; Sat, 18 Aug 2012 10:32:32 GMT (envelope-from rm) Date: Sat, 18 Aug 2012 10:32:32 GMT Message-Id: <201208181032.q7IAWWio022138@freefall.freebsd.org> To: fiziologus@gmail.com, pierrejacques.mimifir@gmail.com, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170706: games/unknown-horizons: make errors while installing unknow-horizon X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 10:32:33 -0000 Synopsis: games/unknown-horizons: make errors while installing unknow-horizon State-Changed-From-To: feedback->closed State-Changed-By: rm State-Changed-When: Sat Aug 18 10:32:31 UTC 2012 State-Changed-Why: unknown-horizons didn't work with python3 yet. The port was changed to require python2. http://www.freebsd.org/cgi/query-pr.cgi?pr=170706 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 10:40:41 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6129106564A for ; Sat, 18 Aug 2012 10:40:41 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B168E8FC0C for ; Sat, 18 Aug 2012 10:40: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 q7IAefES022911 for ; Sat, 18 Aug 2012 10:40:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IAefww022910; Sat, 18 Aug 2012 10:40:41 GMT (envelope-from gnats) Date: Sat, 18 Aug 2012 10:40:41 GMT Message-Id: <201208181040.q7IAefww022910@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/170711: 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, 18 Aug 2012 10:40:41 -0000 The following reply was made to PR ports/170711; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170711: commit references a PR Date: Sat, 18 Aug 2012 10:30:33 +0000 (UTC) Author: rm Date: Sat Aug 18 10:30:18 2012 New Revision: 302719 URL: http://svn.freebsd.org/changeset/ports/302719 Log: - strict python version 2.x - fix portling warnings (missing tabs), while here PR: 170711 Submitted by: Green Dog (maintainer) Modified: head/games/unknown-horizons/Makefile Modified: head/games/unknown-horizons/Makefile ============================================================================== --- head/games/unknown-horizons/Makefile Sat Aug 18 10:28:18 2012 (r302718) +++ head/games/unknown-horizons/Makefile Sat Aug 18 10:30:18 2012 (r302719) @@ -26,7 +26,7 @@ ONLY_FOR_ARCHS= i386 amd64 USE_XZ= yes USE_GNOME= intltool USE_GETTEXT= build -USE_PYTHON= yes +USE_PYTHON= -2.7 USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= UnknownHorizons @@ -35,15 +35,15 @@ MAN6= unknown-horizons.6 .include .if ${ARCH} == i386 -PLIST_SUB+= X86_ONLY="" +PLIST_SUB+= X86_ONLY="" .else -PLIST_SUB+= X86_ONLY="@comment " +PLIST_SUB+= X86_ONLY="@comment " .endif .if ${ARCH} == amd64 -PLIST_SUB+= X64_ONLY="" +PLIST_SUB+= X64_ONLY="" .else -PLIST_SUB+= X64_ONLY="@comment " +PLIST_SUB+= X64_ONLY="@comment " .endif post-patch: _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 12:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DB99106564A for ; Sat, 18 Aug 2012 12: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 5B72E8FC12 for ; Sat, 18 Aug 2012 12: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 q7ICK9Wh038594 for ; Sat, 18 Aug 2012 12: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 q7ICK98d038593; Sat, 18 Aug 2012 12:20:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 12:20:09 GMT Resent-Message-Id: <201208181220.q7ICK98d038593@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Zander Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE1B2106566B for ; Sat, 18 Aug 2012 12:16:19 +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 A59DE8FC15 for ; Sat, 18 Aug 2012 12:16:19 +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 q7ICGJ8k061391 for ; Sat, 18 Aug 2012 12:16:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7ICGJvF061369; Sat, 18 Aug 2012 12:16:19 GMT (envelope-from nobody) Message-Id: <201208181216.q7ICGJvF061369@red.freebsd.org> Date: Sat, 18 Aug 2012 12:16:19 GMT From: Thomas Zander To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170735: Update multimedia/mplayer and mencoder to a recent snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 12:20:09 -0000 >Number: 170735 >Category: ports >Synopsis: Update multimedia/mplayer and mencoder to a recent snapshot >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 Aug 18 12:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Thomas Zander >Release: FreeBSD 9.1-PRERELEASE >Organization: >Environment: >Description: Update multimedia/mplayer and mencoder to a recent snapshot. CFT on ports mailing list did not report any more problems for a couple of weeks. >How-To-Repeat: >Fix: Patch is attached for both ports. Patch attached with submission follows: diff -r c33e92eb4350 mencoder/Makefile --- a/mencoder/Makefile Sat Aug 18 14:06:32 2012 +0200 +++ b/mencoder/Makefile Sat Aug 18 14:14:22 2012 +0200 @@ -6,17 +6,15 @@ PORTNAME= mencoder PORTVERSION= ${MPLAYER_PORT_VERSION} -PORTREVISION= 3 COMMENT= Convenient video file and movie encoder -RESTRICTED= Port has restricted dependencies .include "${.CURDIR}/../mplayer/Makefile.shared" OPTIONS= DEBUG "Include debug symbols in mencoder's binary" off OPTIONS+= RTCPU "Allow runtime CPU detection" on OPTIONS+= OCFLAGS "Use optimized compiler flags" on -OPTIONS+= OTCHAIN "Use up-to-date toolchain (gcc 4.6)" on +OPTIONS+= OTCHAIN "Use gcc 4.6+ toolchain on legacy systems" off OPTIONS+= IPV6 "Include inet6 network support" on OPTIONS+= JACK "Enable JackIt audio server support" off OPTIONS+= NAS "Enable NAS sound server support" off @@ -55,6 +53,8 @@ MAN1= mencoder.1 +RESTRICTED= Port has restricted dependencies + PATCHDIR= ${.CURDIR}/../mplayer/files FILESDIR= ${PATCHDIR} DATADIR= ${PREFIX}/share/mplayer @@ -70,7 +70,7 @@ .include -LIB_DEPENDS+= mp3lame.0:${PORTSDIR}/audio/lame +LIB_DEPENDS+= mp3lame:${PORTSDIR}/audio/lame CONFIGURE_ARGS+= --disable-mplayer \ --disable-libdca \ @@ -95,37 +95,37 @@ .include "${.CURDIR}/../mplayer/Makefile.options" .if defined(WITH_FONTCONFIG) -LIB_DEPENDS+= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig +LIB_DEPENDS+= fontconfig:${PORTSDIR}/x11-fonts/fontconfig .else CONFIGURE_ARGS+= --disable-fontconfig .endif .if defined(WITH_TWOLAME) -LIB_DEPENDS+= twolame.0:${PORTSDIR}/audio/twolame +LIB_DEPENDS+= twolame:${PORTSDIR}/audio/twolame .else CONFIGURE_ARGS+= --disable-twolame .endif .if defined(WITH_FAAC) -LIB_DEPENDS+= faac.0:${PORTSDIR}/audio/faac +LIB_DEPENDS+= faac:${PORTSDIR}/audio/faac .else CONFIGURE_ARGS+= --disable-faac .endif .if !defined(WITHOUT_X264) -LIB_DEPENDS+= x264.125:${PORTSDIR}/multimedia/x264 +LIB_DEPENDS+= x264.125:${PORTSDIR}/multimedia/x264 .else CONFIGURE_ARGS+= --disable-x264 .endif .if !defined(WITHOUT_XVID) -LIB_DEPENDS+= xvidcore.4:${PORTSDIR}/multimedia/xvid +LIB_DEPENDS+= xvidcore:${PORTSDIR}/multimedia/xvid .else CONFIGURE_ARGS+= --disable-xvid .endif .ifdef(WITH_DIRAC) -LIB_DEPENDS+= dirac_encoder.1:${PORTSDIR}/multimedia/dirac +LIB_DEPENDS+= dirac_encoder:${PORTSDIR}/multimedia/dirac .else CONFIGURE_ARGS+= --disable-libdirac-lavc .endif diff -r c33e92eb4350 mencoder/distinfo --- a/mencoder/distinfo Sat Aug 18 14:06:32 2012 +0200 +++ b/mencoder/distinfo Sat Aug 18 14:14:22 2012 +0200 @@ -1,2 +1,2 @@ -SHA256 (mplayer-1.0rc20120322.tar.xz) = 602a5a1c4e25ae054fdc2df49c19672b189978df12617748feb5307ff16b33cd -SIZE (mplayer-1.0rc20120322.tar.xz) = 10033056 +SHA256 (mplayer-1.1.20120721.tar.xz) = 30b120bf8543b7cfad36272e3ae29a017282caa90f4d635fe157f29036393787 +SIZE (mplayer-1.1.20120721.tar.xz) = 10480368 diff -r c33e92eb4350 mplayer/Makefile --- a/mplayer/Makefile Sat Aug 18 14:06:32 2012 +0200 +++ b/mplayer/Makefile Sat Aug 18 14:14:22 2012 +0200 @@ -7,7 +7,6 @@ PORTNAME= mplayer PORTVERSION= ${MPLAYER_PORT_VERSION} -PORTREVISION= 2 COMMENT= High performance media player supporting many formats @@ -16,7 +15,7 @@ OPTIONS= DEBUG "Include debug symbols in mplayer's binaries" off OPTIONS+= RTCPU "Allow runtime CPU detection" on OPTIONS+= OCFLAGS "Use optimized compiler flags" on -OPTIONS+= OTCHAIN "Use up-to-date toolchain (gcc 4.6)" on +OPTIONS+= OTCHAIN "Use gcc 4.6+ toolchain on legacy systems" off OPTIONS+= IPV6 "Include inet6 network support" on OPTIONS+= X11 "Enable X11 support for mplayer's video output" on OPTIONS+= X11XV "X11 video drivers: XV" on @@ -129,7 +128,7 @@ .endif .if !defined(WITHOUT_X11GL) USE_XORG+= glproto -LIB_DEPENDS+= GL.1:${PORTSDIR}/graphics/libGL +LIB_DEPENDS+= GL:${PORTSDIR}/graphics/libGL .else CONFIGURE_ARGS+=--disable-gl .endif @@ -153,7 +152,7 @@ .endif .if defined(WITH_VDPAU) -LIB_DEPENDS+= vdpau.1:${PORTSDIR}/multimedia/libvdpau +LIB_DEPENDS+= vdpau:${PORTSDIR}/multimedia/libvdpau .else CONFIGURE_ARGS+= --disable-vdpau .endif @@ -167,19 +166,19 @@ .endif .if defined(WITH_ARTS) -LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts +LIB_DEPENDS+= artsc:${PORTSDIR}/audio/arts .else CONFIGURE_ARGS+= --disable-arts .endif .if defined(WITH_LIBCACA) -LIB_DEPENDS+=caca.0:${PORTSDIR}/graphics/libcaca +LIB_DEPENDS+= caca:${PORTSDIR}/graphics/libcaca .else CONFIGURE_ARGS+= --disable-caca .endif .if defined(WITH_LIRC) -LIB_DEPENDS+= lirc_client.2:${PORTSDIR}/comms/lirc +LIB_DEPENDS+= lirc_client:${PORTSDIR}/comms/lirc .else CONFIGURE_ARGS+= --disable-lirc .endif @@ -193,13 +192,13 @@ .endif .if defined(WITH_SVGALIB) -LIB_DEPENDS+= vga.1:${PORTSDIR}/graphics/svgalib +LIB_DEPENDS+= vga:${PORTSDIR}/graphics/svgalib .else CONFIGURE_ARGS+= --disable-svga .endif .if defined(WITH_AALIB) -LIB_DEPENDS+= aa.1:${PORTSDIR}/graphics/aalib +LIB_DEPENDS+= aa:${PORTSDIR}/graphics/aalib .else CONFIGURE_ARGS+= --disable-aa .endif @@ -224,7 +223,7 @@ .endif .if defined(WITH_ENCA) -LIB_DEPENDS+= enca.5:${PORTSDIR}/converters/enca +LIB_DEPENDS+= enca:${PORTSDIR}/converters/enca .else CONFIGURE_ARGS+= --disable-enca .endif diff -r c33e92eb4350 mplayer/Makefile.options --- a/mplayer/Makefile.options Sat Aug 18 14:06:32 2012 +0200 +++ b/mplayer/Makefile.options Sat Aug 18 14:14:22 2012 +0200 @@ -55,12 +55,26 @@ CONFIGURE_ARGS+=--enable-runtime-cpudetection .endif +.if ${OSVERSION} >= 900033 +WITH_BASE_CLANG=yes +.endif + +.if defined(WITH_BASE_CLANG) +CC= clang +CXX= clang++ +.else .if defined(WITH_OTCHAIN) USE_GCC?= 4.6+ BUILD_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils .else CONFIGURE_ARGS+=--disable-ssse3 --disable-fast-cmov EXTRA_PATCHES+= ${FILESDIR}/extra-patch-base_system_gcc +.if ${ARCH} == "amd64" +BUILD_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils +CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin +MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin +.endif +.endif .endif .if defined(WITHOUT_IPV6) @@ -70,37 +84,37 @@ .endif .if !defined(WITHOUT_LIBUNGIF) -LIB_DEPENDS+= gif.5:${PORTSDIR}/graphics/giflib +LIB_DEPENDS+= gif:${PORTSDIR}/graphics/giflib .else CONFIGURE_ARGS+= --disable-gif .endif .if defined(WITH_OPENJPEG) -LIB_DEPENDS+= openjpeg.2:${PORTSDIR}/graphics/openjpeg +LIB_DEPENDS+= openjpeg:${PORTSDIR}/graphics/openjpeg .else CONFIGURE_ARGS+= --disable-libopenjpeg .endif .if defined(WITH_MAD) -LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad +LIB_DEPENDS+= mad:${PORTSDIR}/audio/libmad .else CONFIGURE_ARGS+= --disable-mad .endif .if defined(WITH_LIBDV) -LIB_DEPENDS+= dv.4:${PORTSDIR}/multimedia/libdv +LIB_DEPENDS+= dv:${PORTSDIR}/multimedia/libdv .else CONFIGURE_ARGS+= --disable-libdv .endif .if defined(WITH_THEORA) -LIB_DEPENDS+= theora.0:${PORTSDIR}/multimedia/libtheora +LIB_DEPENDS+= theora:${PORTSDIR}/multimedia/libtheora .else CONFIGURE_ARGS+= --disable-theora .endif .if defined(WITH_VPX) -LIB_DEPENDS+= vpx.1:${PORTSDIR}/multimedia/libvpx +LIB_DEPENDS+= vpx:${PORTSDIR}/multimedia/libvpx .else CONFIGURE_ARGS+= --disable-libvpx-lavc .endif @@ -112,7 +126,7 @@ .endif .if !defined(WITHOUT_SPEEX) -LIB_DEPENDS+= speex.1:${PORTSDIR}/audio/speex +LIB_DEPENDS+= speex:${PORTSDIR}/audio/speex .else CONFIGURE_ARGS+= --disable-speex .endif @@ -125,13 +139,13 @@ .endif .if defined(WITH_JACK) -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack +LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack .else CONFIGURE_ARGS+= --disable-jack .endif .if defined(WITH_NAS) -LIB_DEPENDS+= audio.2:${PORTSDIR}/audio/nas +LIB_DEPENDS+= audio:${PORTSDIR}/audio/nas .else CONFIGURE_ARGS+= --disable-nas .endif @@ -143,37 +157,37 @@ .endif .if defined(WITH_PULSE) -LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio +LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio .else CONFIGURE_ARGS+= --disable-pulse .endif .if defined(WITH_BLURAY) -LIB_DEPENDS+= bluray.2:${PORTSDIR}/multimedia/libbluray +LIB_DEPENDS+= bluray:${PORTSDIR}/multimedia/libbluray .else CONFIGURE_ARGS+= --disable-bluray .endif .if defined(WITH_SMB) -LIB_DEPENDS+= smbclient.0:${PORTSDIR}/net/samba-libsmbclient +LIB_DEPENDS+= smbclient:${PORTSDIR}/net/samba-libsmbclient .else CONFIGURE_ARGS+= --disable-smb .endif .if defined(WITH_FRIBIDI) -LIB_DEPENDS+= fribidi.3:${PORTSDIR}/converters/fribidi +LIB_DEPENDS+= fribidi:${PORTSDIR}/converters/fribidi .else CONFIGURE_ARGS+= --disable-fribidi .endif .if defined(WITH_CDPARANOIA) -LIB_DEPENDS+= cdda_paranoia.0:${PORTSDIR}/audio/cdparanoia +LIB_DEPENDS+= cdda_paranoia:${PORTSDIR}/audio/cdparanoia .else CONFIGURE_ARGS+= --disable-cdparanoia .endif .if defined(WITH_LIBCDIO) && !defined(WITH_CDPARANOIA) -LIB_DEPENDS+= cdio.13:${PORTSDIR}/sysutils/libcdio +LIB_DEPENDS+= cdio:${PORTSDIR}/sysutils/libcdio .else CONFIGURE_ARGS+= --disable-libcdio .endif @@ -185,7 +199,7 @@ .endif .if defined(WITH_LIBLZO) -LIB_DEPENDS+= lzo2.2:${PORTSDIR}/archivers/lzo2 +LIB_DEPENDS+= lzo2:${PORTSDIR}/archivers/lzo2 .else CONFIGURE_ARGS+= --disable-liblzo .endif @@ -222,7 +236,7 @@ .endif .if defined(WITH_AMR_NB) || defined (WITH_AMR_WB) -LIB_DEPENDS+= opencore-amrnb.0:${PORTSDIR}/audio/opencore-amr +LIB_DEPENDS+= opencore-amrnb:${PORTSDIR}/audio/opencore-amr .endif .ifdef(WITHOUT_AMR_NB) @@ -234,7 +248,7 @@ .endif .ifdef(WITH_GSM) -LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm +LIB_DEPENDS+= gsm:${PORTSDIR}/audio/gsm .else CONFIGURE_ARGS+= --disable-libgsm .endif @@ -251,7 +265,7 @@ .endif .if defined(WITH_LIBRTMP) -LIB_DEPENDS+= rtmp.0:${PORTSDIR}/multimedia/rtmpdump +LIB_DEPENDS+= rtmp:${PORTSDIR}/multimedia/rtmpdump CONFIGURE_ARGS+= --enable-librtmp EXTRA_LIBS+= -lrtmp .else @@ -259,7 +273,7 @@ .endif .if defined(WITH_MNG) -LIB_DEPENDS+= mng.1:${PORTSDIR}/graphics/libmng +LIB_DEPENDS+= mng:${PORTSDIR}/graphics/libmng .else CONFIGURE_ARGS+= --disable-mng .endif diff -r c33e92eb4350 mplayer/Makefile.shared --- a/mplayer/Makefile.shared Sat Aug 18 14:06:32 2012 +0200 +++ b/mplayer/Makefile.shared Sat Aug 18 14:14:22 2012 +0200 @@ -4,12 +4,11 @@ # # $FreeBSD: ports/multimedia/mplayer/Makefile.shared,v 1.19 2012/07/11 15:07:50 pawel Exp $ -MPLAYER_SNAPSHOT_DATE= 2012-03-22 -MPLAYER_PORT_VERSION= 1.0.r${MPLAYER_SNAPSHOT_DATE:S/-//g} +MPLAYER_SNAPSHOT_DATE= 2012-07-21 +MPLAYER_PORT_VERSION= 1.1.r${MPLAYER_SNAPSHOT_DATE:S/-//g} CATEGORIES?= multimedia audio -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ - http://www.rrr.de/~riggs/mplayer/ -DISTNAME= mplayer-${MPLAYER_PORT_VERSION:S/.r/rc/g} +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} +DISTNAME= mplayer-${MPLAYER_PORT_VERSION:S/.r/./g} WRKSRC= ${WRKDIR}/mplayer-export-${MPLAYER_SNAPSHOT_DATE} PROJECTHOST= bsdistfiles @@ -19,7 +18,7 @@ LICENSE= GPLv2 LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - freetype.9:${PORTSDIR}/print/freetype2 + freetype:${PORTSDIR}/print/freetype2 BUILD_DEPENDS= ${LOCALBASE}/bin/yasm:${PORTSDIR}/devel/yasm diff -r c33e92eb4350 mplayer/distinfo --- a/mplayer/distinfo Sat Aug 18 14:06:32 2012 +0200 +++ b/mplayer/distinfo Sat Aug 18 14:14:22 2012 +0200 @@ -1,2 +1,2 @@ -SHA256 (mplayer-1.0rc20120322.tar.xz) = 602a5a1c4e25ae054fdc2df49c19672b189978df12617748feb5307ff16b33cd -SIZE (mplayer-1.0rc20120322.tar.xz) = 10033056 +SHA256 (mplayer-1.1.20120721.tar.xz) = 30b120bf8543b7cfad36272e3ae29a017282caa90f4d635fe157f29036393787 +SIZE (mplayer-1.1.20120721.tar.xz) = 10480368 diff -r c33e92eb4350 mplayer/files/extra-patch-base_system_gcc --- a/mplayer/files/extra-patch-base_system_gcc Sat Aug 18 14:06:32 2012 +0200 +++ b/mplayer/files/extra-patch-base_system_gcc Sat Aug 18 14:14:22 2012 +0200 @@ -11,15 +11,6 @@ --- configure.orig 2011-12-31 00:40:03.990976000 +0100 +++ configure 2011-12-31 01:33:51.407685009 +0100 -@@ -1533,7 +1533,7 @@ - fi - - extra_cflags="-I. -Iffmpeg $extra_cflags" --extra_ldflags="-lm $extra_ldflags" -+extra_ldflags="-lm $extra_ldflags -L$_prefix/lib" - _timer=timer-linux.c - _getch=getch2.c - @@ -2683,10 +2683,6 @@ def_ebx_available='#define HAVE_EBX_AVAILABLE 0' def_xmm_clobbers='#define HAVE_XMM_CLOBBERS 0' diff -r c33e92eb4350 mplayer/files/extra-patch-base_system_log2f --- a/mplayer/files/extra-patch-base_system_log2f Sat Aug 18 14:06:32 2012 +0200 +++ b/mplayer/files/extra-patch-base_system_log2f Sat Aug 18 14:14:22 2012 +0200 @@ -1,15 +1,15 @@ ---- configure.orig 2011-12-15 15:01:05.000000000 +0100 -+++ configure 2012-01-28 17:33:54.674887100 +0100 -@@ -3107,7 +3107,7 @@ +--- configure.orig 2012-07-24 20:47:24.721531229 +0200 ++++ configure 2012-07-24 20:49:56.207569906 +0200 +@@ -3130,7 +3130,7 @@ echores "$_kstat" --for func in cbrtf exp2 exp2f llrint llrintf log2 log2f lrint lrintf round roundf trunc truncf; do -+for func in cbrtf exp2 exp2f llrint llrintf lrint lrintf round roundf trunc truncf; do +-for func in cbrtf exp2 exp2f isnan isinf llrint llrintf log2 log2f lrint lrintf rint round roundf trunc truncf; do ++for func in cbrtf exp2 exp2f isnan isinf llrint llrintf lrint lrintf rint round roundf trunc truncf; do echocheck $func eval _$func=no statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE && eval _$func=yes -@@ -3119,7 +3119,9 @@ +@@ -3142,7 +3142,9 @@ echores no fi done diff -r c33e92eb4350 mplayer/files/patch-configure --- a/mplayer/files/patch-configure Sat Aug 18 14:06:32 2012 +0200 +++ b/mplayer/files/patch-configure Sat Aug 18 14:14:22 2012 +0200 @@ -17,6 +17,15 @@ ;; esac +@@ -1533,7 +1533,7 @@ + fi + + extra_cflags="-I. -Iffmpeg $extra_cflags" +-extra_ldflags="-lm $extra_ldflags" ++extra_ldflags="-lm $extra_ldflags -L$_prefix/lib" + _timer=timer-linux.c + _getch=getch2.c + @@ -3576,7 +3575,7 @@ if linux ; then THREAD_CFLAGS=-D_REENTRANT diff -r c33e92eb4350 mplayer/files/patch-ffmpeg-Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mplayer/files/patch-ffmpeg-Makefile Sat Aug 18 14:14:22 2012 +0200 @@ -0,0 +1,11 @@ +--- ffmpeg/Makefile.orig 2012-06-29 19:20:03.000000000 +0200 ++++ ffmpeg/Makefile 2012-07-21 18:47:01.068697043 +0200 +@@ -82,7 +82,7 @@ + $(foreach V,$(SUBDIR_VARS),$(eval $(call RESET,$(V)))) + SUBDIR := $(1)/ + include $(SRC_PATH)/$(1)/Makefile +--include $(SRC_PATH)/$(1)/$(ARCH)/Makefile ++-include $(SRC_PATH)/$(1)/$(MPLAYER_ARCH)/Makefile + include $(SRC_PATH)/library.mak + endef + diff -r c33e92eb4350 mplayer/files/patch-libavcodec-Makefile --- a/mplayer/files/patch-libavcodec-Makefile Sat Aug 18 14:06:32 2012 +0200 +++ b/mplayer/files/patch-libavcodec-Makefile Sat Aug 18 14:14:22 2012 +0200 @@ -1,18 +1,11 @@ ---- ffmpeg/libavcodec/Makefile.orig 2012-03-21 19:20:05.000000000 +0100 -+++ ffmpeg/libavcodec/Makefile 2012-03-22 16:12:43.333951792 +0100 -@@ -735,12 +735,14 @@ - # well. - OBJS-$(!CONFIG_SMALL) += inverse.o - -+-include $(SRC_PATH)/$(SUBDIR)$(MPLAYER_ARCH)/Makefile -+ - SKIPHEADERS += %_tablegen.h \ - %_tables.h \ - aac_tablegen_decl.h \ +--- ffmpeg/libavcodec/Makefile.orig 2012-07-20 19:20:04.000000000 +0200 ++++ ffmpeg/libavcodec/Makefile 2012-07-21 18:25:12.582670118 +0200 +@@ -788,7 +788,7 @@ + codec_names.h \ fft-internal.h \ tableprint.h \ -- $(ARCH)/vp56_arith.h -+ $(MPLAYER_ARCH)/vp56_arith.h +- $(ARCH)/vp56_arith.h \ ++ $(MPLAYER_ARCH)/vp56_arith.h \ + SKIPHEADERS-$(CONFIG_DXVA2) += dxva2.h dxva2_internal.h - SKIPHEADERS-$(CONFIG_LIBDIRAC) += libdirac.h SKIPHEADERS-$(CONFIG_LIBSCHROEDINGER) += libschroedinger.h >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 12:30:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 306F41065687 for ; Sat, 18 Aug 2012 12: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 E33F28FC0A for ; Sat, 18 Aug 2012 12:30: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 q7ICU9rP039021 for ; Sat, 18 Aug 2012 12:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7ICU9CP039019; Sat, 18 Aug 2012 12:30:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 12:30:09 GMT Resent-Message-Id: <201208181230.q7ICU9CP039019@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5AE91065670 for ; Sat, 18 Aug 2012 12:20:29 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id CA3838FC12 for ; Sat, 18 Aug 2012 12:20:28 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 12:20:20 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp040) with SMTP; 18 Aug 2012 14:20:20 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 14:20:16 +0200 Message-Id: <20120818122029.C5AE91065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 14:20:16 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170736: [MAINTAINER] games/moagg: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 12:30:10 -0000 >Number: 170736 >Category: ports >Synopsis: [MAINTAINER] games/moagg: Makefile changed, Port require always DATA >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 Aug 18 12:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Deleted why Port require always DATA -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA Here works better NOPORTDATA -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- moagg-1.95b.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/moagg/Makefile ./Makefile --- /usr/ports/games/moagg/Makefile 2012-08-08 22:09:40.000000000 +0200 +++ ./Makefile 2012-08-18 14:13:20.000000000 +0200 @@ -20,9 +20,6 @@ LICENSE= GPLv2 -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA - USE_ZIP= yes USE_JAVA= yes JAVA_VERSION= 1.5+ @@ -47,7 +44,7 @@ ${INSTALL_SCRIPT} ${WRKSRC}/run.sh.new ${PREFIX}/bin/${PORTNAME} # Data -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) ${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} "data ghosts jar" ${DATADIR}) . for d in hiscores.dat log4j.properties --- moagg-1.95b.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 12:30:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8608A106564A for ; Sat, 18 Aug 2012 12: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 5E03F8FC15 for ; Sat, 18 Aug 2012 12: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 q7ICUAao039046 for ; Sat, 18 Aug 2012 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 q7ICUAVM039045; Sat, 18 Aug 2012 12:30:10 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 12:30:10 GMT Resent-Message-Id: <201208181230.q7ICUAVM039045@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, Tomek CEDRO Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5564106564A for ; Sat, 18 Aug 2012 12:26:24 +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 901668FC08 for ; Sat, 18 Aug 2012 12:26: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 q7ICQOpA074012 for ; Sat, 18 Aug 2012 12:26:24 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7ICQNhm074006; Sat, 18 Aug 2012 12:26:23 GMT (envelope-from nobody) Message-Id: <201208181226.q7ICQNhm074006@red.freebsd.org> Date: Sat, 18 Aug 2012 12:26:23 GMT From: Tomek CEDRO To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170737: GTK based application crashes very often X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 12:30:10 -0000 >Number: 170737 >Category: ports >Synopsis: GTK based application crashes very often >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 Aug 18 12:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tomek CEDRO >Release: FreeBSD 9.0-RELEASE amd64 >Organization: CeDeROM >Environment: FreeBSD hexagon 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: GTK2 based applications crashes very often, including Chromium, Glade, Gimp, even file selection dialogs. Rebuilding all ports with portupgrade -a does not help. There is something really wrong with current GTK port :-( Information for gtk-2.24.6_2: Comment: Gimp Toolkit for X11 GUI (previous stable version) Required by: ImageMagick-6.7.8.6 Terminal-0.4.8_1 Thunar-1.4.0_1 abiword-2.8.4_2 alsa-plugins-1.0.25 apache-ant-1.8.3_1 avidemux2-2.5.6_4 blender-2.63a bluefish-2.2.2_1 chromium-20.0.1132.57 cm-super-0.3.4_4 cups-1.5.2 cups-base-1.5.2_2 cups-pdf-2.6.1_1 cups-pstoraster-8.15.4_7 dconf-0.5.1_4 directfb-1.4.13_2 docproj-jadetex-1.17_6 dosbox-0.74_3 drpython-py27-3.11.3 dvdauthor-0.7.0_3 dvipdfmx-20100328_1 dvipsk-tetex-5.95a_6 eclipse-3.7.1_1 eclipse-cdt-6.0.2_1 eclipse-pydev-2.6.0_1 ecore-evas-1.1.0 ecore-sdl-1.1.0 edje-1.1.0,2 emprint-20111128 ethumb-0.1.1.65643 evas-engine-sdl-1.1.0 evince-2.32.0_9 farsight2-0.0.22_1 ffmpeg-0.7.13_6,1 ffmpegthumbnailer-2.0.7_2 fluidsynth-1.1.5 foomatic-filters-4.0.7_1 freetype-tools-1.3.1_9 frei0r-plugins-opencv-1.3_2 gconf2-2.32.0_3 gegl-0.1.8_4 gftp-gnome-2.0.19_5 ghostscript9-9.05_5 gimp-2.6.12,2 gimp-app-2.6.12_1,1 gimp-gutenprint-5.2.8 glade3-gnome-3.7.3_1 gnome-cups-manager-0.31_14,1 gnome-desktop-2.32.1_2 gnome-icon-theme-2.31.0_2 gnome-keyring-2.32.1_2 gnome-mount-0.8_10 gnome-vfs-2.24.4_1 goffice-0.8.17_2 goocanvas-0.15_4 gqview-2.0.4_13 graphviz-2.28.0_1 gstreamer-plugins-gconf-0.10.31,3 gstreamer-plugins-gnomevfs-0.10.36,3 gtk-engines2-2.20.2_1 gtk-xfce-engine-3.0.0_1 gtkglarea-2.0.1_3 gtkglext-1.2.0_9 gtkmm-2.24.2_1 gtkspell-2.0.16_4 gucharmap-2.32.1_1 gutenprint-5.2.8 gutenprint-base-5.2.8 gutenprint-cups-5.2.8_1 gutenprint-foomatic-5.2.8_1 gutenprint-ijs-5.2.8 gvfs-1.6.6_3 hplip-3.12.2_2 inkscape-0.48.2_2 jadetex-3.13_8 kdelibs-4.8.4 kdenlive-0.9.2_1 latex-cjk-4.8.2_6 libbonoboui-2.24.4_1 libcanberra-0.28_3 libexo-0.8.0_2 libglade2-2.6.4_5 libgnome-2.32.0_1 libgnome-keyring-2.32.0_2 libgnomecanvas-2.30.3_1 libgnomeprintui-2.18.6_1 libgnomesu-1.0.0_10 libgnomeui-2.24.4_1 libgsf-1.14.21_1 libnotify-0.7.3_2 libopenraw-0.0.8_4 libpurple-2.10.6 libquicktime-1.2.4_4 libreoffice-3.4.4 librsvg2-2.34.1_1 libsoup-gnome-2.34.3_2 libspectre-0.2.6_1 libwnck-2.30.6_1 libwpd-0.9.4_1 libwpg-0.2.1_1 libwps-0.2.7 libxfce4gui-4.10.0_1 libxfce4menu-4.10.0_2 libxine-1.2.2_1 libxul-1.9.2.28_1 links-2.7,1 magicfilter-2.3.h_6 mirage-0.9.5.2_1 mjpegtools-2.0.0_4 mkvtoolnix-5.0.1_2 mlt-0.8.0_1 mousepad-0.2.16_11 mplayer-1.0.r20120322_2 nautilus-2.32.2.1_2 nspluginwrapper-1.4.4 ntfsprogs-2.0.0_2 nvidia-settings-295.59 openal-soft-1.14 opencv-2.3.1_4 openimageio-1.0.6 openjdk6-b25_1 openshot-1.4.2_1 orage-4.8.3_1 peps-2.0_5 pidgin-2.10.6 pidgin-latex-1.0_6 pidgin-libnotify-0.14_11 pidgin-skype-0.0.0.628_1 pitivi-0.13.4.2_3 policykit-gnome-0.9.2_6 pulseaudio-0.9.23_2 pwcview-1.4.1_4 py27-gimp-app-2.6.12_1 py27-goocanvas-0.14.1_4 py27-gtk-2.24.0_1 py27-matplotlib-1.1.1 py27-mlt-0.8.0 py27-wxPython-2.8.12.1_1 py27-wxPython-common-2.8.12.1_1 py27-wxPython-unicode-2.8.12.1_1 roxterm-2.2.2_1 sane-frontends-1.0.14_8 sdl-1.2.15_2,2 sdl_gfx-2.0.23 sdl_image-1.2.12_1 sdl_net-1.2.8 sdl_sound-1.0.3_6 smpeg-0.4.4_9 sox-14.3.2_5 squeeze-0.2.3_4 strigi-0.7.7_3 swfdec-0.8.4_4 teTeX-3.0_6 teTeX-base-3.0_23 thunar-vfs-1.2.0_2 tightvnc-1.3.10_3 transmission-gtk2-2.42 transmission-gtk2-2.51 unique-1.1.6_3 vim-7.3.556_1 virtualbox-ose-4.1.18 vlc-1.1.13_12,3 vte-0.26.2_3 w3m-0.5.3_1 webkit-gtk2-1.4.3_1 winpdb-1.4.8_1 wireshark-1.8.1_1 wv-1.2.9_1 wxgtk2-2.8.12_1 wxgtk2-common-2.8.12_1 wxgtk2-contrib-2.8.12_1 wxgtk2-contrib-common-2.8.12_1 wxgtk2-unicode-2.8.12_1 wxgtk2-unicode-contrib-2.8.12_1 xdvik-tetex-22.84.16_4 xfce-4.10 xfce4-appfinder-4.10.0_1 xfce4-conf-4.10.0_3 xfce4-desktop-4.10.0_1 xfce4-mixer-4.8.0_2 xfce4-notifyd-0.2.2_2 xfce4-panel-4.10.0_2 xfce4-print-4.6.1_8 xfce4-screenshooter-plugin-1.8.1 xfce4-session-4.10.0_1 xfce4-settings-4.10.0_2 xfce4-taskmanager-1.0.0_3 xfce4-tumbler-0.1.25_2 xfce4-weather-plugin-0.8.1 xfce4-wm-4.10.0_1 xine-0.99.7_1 xmlto-0.0.25 xsane-0.998_1 xvidcap-1.1.4.p1_11,1 yelp-2.30.2_3 zh-docproj-0.1.20060303_6 >How-To-Repeat: Use any GTK based application for a while to see its crash, use dialogs and text related stuff :-( >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 12:40:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A027106567B for ; Sat, 18 Aug 2012 12: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 1480B8FC12 for ; Sat, 18 Aug 2012 12: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 q7ICeAbU043342 for ; Sat, 18 Aug 2012 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 q7ICeAFU043341; Sat, 18 Aug 2012 12:40:10 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 12:40:10 GMT Resent-Message-Id: <201208181240.q7ICeAFU043341@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB2081065672 for ; Sat, 18 Aug 2012 12:39:19 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 4F0A18FC12 for ; Sat, 18 Aug 2012 12:39:18 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 12:39:17 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp070) with SMTP; 18 Aug 2012 14:39:17 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 14:39:16 +0200 Message-Id: <20120818123919.DB2081065672@hub.freebsd.org> Date: Sat, 18 Aug 2012 14:39:16 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170738: [MAINTAINER] games/mopesnake: Makefile changed, OptionsNG, deleted script in Makefile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 12:40:11 -0000 >Number: 170738 >Category: ports >Synopsis: [MAINTAINER] games/mopesnake: Makefile changed, OptionsNG, deleted script in Makefile >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 Aug 18 12:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Changed all to ${PORTNAME} OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Added file(s): - files/mopesnake.in Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- mopesnake-0.5_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/mopesnake/Makefile ./Makefile --- /usr/ports/games/mopesnake/Makefile 2012-07-18 14:39:16.000000000 +0200 +++ ./Makefile 2012-08-18 14:33:59.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= mopesnake PORTVERSION= 0.5 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}-pc-${DISTVERSION} @@ -22,23 +23,25 @@ USE_PYTHON= yes NO_BUILD= yes -PLIST_FILES= bin/mopesnake \ +PLIST_FILES= bin/${PORTNAME} \ share/pixmaps/${PORTNAME}.png PORTDATA= * PORTDOCS= TODO.txt index.html +SUB_FILES= ${PORTNAME} + post-patch: # Fix path to python interpreter @${REINPLACE_CMD} -e 's,/usr/bin/python,${PYTHON_CMD},' \ ${WRKSRC}/*.py ${WRKSRC}/mopelib/*.py @(cd ${WRKSRC} && ${RM} *.py.bak mopelib/*py.bak) +.include + do-install: # Scripts - @${PRINTF} "#!/bin/sh\n\ncd ${DATADIR} &&\ - ./${PORTNAME}.py\n" > ${WRKDIR}/${PORTNAME}.sh - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME} + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin # Executable ${MKDIR} ${DATADIR} @@ -52,7 +55,7 @@ ${INSTALL_DATA} ${WRKSRC}/version ${DATADIR} # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} diff -ruN --exclude=CVS /usr/ports/games/mopesnake/files/mopesnake.in ./files/mopesnake.in --- /usr/ports/games/mopesnake/files/mopesnake.in 1970-01-01 01:00:00.000000000 +0100 +++ ./files/mopesnake.in 2012-08-18 14:29:00.000000000 +0200 @@ -0,0 +1,7 @@ +#!/bin/sh +# +# $FreeBSD$ + +echo "Master Of Pain (Eating) - Snake: Starting up..." +cd "%%DATADIR%%" +./mopesnake.py --- mopesnake-0.5_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 12:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5A90106564A for ; Sat, 18 Aug 2012 12: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 71CFC8FC0A for ; Sat, 18 Aug 2012 12: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 q7ICo9bM044113 for ; Sat, 18 Aug 2012 12: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 q7ICo9I0044112; Sat, 18 Aug 2012 12:50:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 12:50:09 GMT Resent-Message-Id: <201208181250.q7ICo9I0044112@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A8951065670 for ; Sat, 18 Aug 2012 12:49:55 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 2A0E18FC0C for ; Sat, 18 Aug 2012 12:49:53 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 12:49:52 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp070) with SMTP; 18 Aug 2012 14:49:52 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 14:49:51 +0200 Message-Id: <20120818124955.1A8951065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 14:49:51 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170739: [MAINTAINER] games/nelly: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 12:50:09 -0000 >Number: 170739 >Category: ports >Synopsis: [MAINTAINER] games/nelly: Makefile changed, Port require always DATA >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 Aug 18 12:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Deleted why Port require always DATA -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA Here works better NOPORTDATA -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- nelly-1.0_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/nelly/Makefile ./Makefile --- /usr/ports/games/nelly/Makefile 2012-08-10 05:20:10.000000000 +0200 +++ ./Makefile 2012-08-18 14:47:37.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= nelly PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= games python MASTER_SITES= http://www.partiallydisassembled.net/nelly/ \ http://media.pyweek.org/dl/2/rushed/ @@ -17,9 +18,6 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}game>=0:${PORTSDIR}/devel/py-game \ ${PYTHON_PKGNAMEPREFIX}opengl>=0:${PORTSDIR}/graphics/py-opengl -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA - USE_PYTHON_RUN= yes NO_BUILD= yes @@ -47,7 +45,7 @@ ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIR} # Data -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) . for d in fonts levels textures @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${DATADIR}) . endfor --- nelly-1.0_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 13:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E23E9106564A for ; Sat, 18 Aug 2012 13: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 BC35C8FC12 for ; Sat, 18 Aug 2012 13: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 q7IDK7W4047258 for ; Sat, 18 Aug 2012 13: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 q7IDK7en047257; Sat, 18 Aug 2012 13:20:07 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 13:20:07 GMT Resent-Message-Id: <201208181320.q7IDK7en047257@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB3621065670 for ; Sat, 18 Aug 2012 13:18:17 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 3E9F58FC0A for ; Sat, 18 Aug 2012 13:18:16 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 13:18:15 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp072) with SMTP; 18 Aug 2012 15:18:15 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 15:18:14 +0200 Message-Id: <20120818131817.CB3621065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 15:18:14 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170740: [MAINTAINER] games/sdl_scavenger: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 13:20:08 -0000 >Number: 170740 >Category: ports >Synopsis: [MAINTAINER] games/sdl_scavenger: Makefile changed, OptionsNG >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 Aug 18 13:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Added .if !defined (NOPORTDATA) OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- sdl_scavenger-145.1.2010.11.5_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/sdl_scavenger/Makefile ./Makefile --- /usr/ports/games/sdl_scavenger/Makefile 2012-04-27 20:09:10.000000000 +0200 +++ ./Makefile 2012-08-18 15:10:59.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= sdl_scavenger PORTVERSION= 145.1.2010.11.5 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/sdlscavenger/ DISTNAME= sdlscav-145.1_2010_11_5 @@ -31,6 +32,8 @@ ALL_TARGET= +.include + post-patch: @${REINPLACE_CMD} -e 's|data:/usr/local/games/scavenger|data:${DATADIR}/data|' \ ${WRKSRC}/names.h @@ -39,15 +42,17 @@ # Executable ${INSTALL_PROGRAM} ${WRKSRC}/sdlscav ${PREFIX}/bin/sdlscavenger -# Pixmaps - ${CP} ${WRKSRC}/data/scav.png ${PREFIX}/share/pixmaps/${PORTNAME}.png - # Data +.if !defined (NOPORTDATA) ${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} data ${DATADIR}) +.endif + +# Pixmaps + ${CP} ${WRKSRC}/data/scav.png ${PREFIX}/share/pixmaps/${PORTNAME}.png -# Documentations -.if !defined(NOPORTDOCS) +# Documentation +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} --- sdl_scavenger-145.1.2010.11.5_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 13:40:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D78371065670 for ; Sat, 18 Aug 2012 13: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 902488FC12 for ; Sat, 18 Aug 2012 13: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 q7IDe7BO050410 for ; Sat, 18 Aug 2012 13: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 q7IDe7Aw050409; Sat, 18 Aug 2012 13:40:07 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 13:40:07 GMT Resent-Message-Id: <201208181340.q7IDe7Aw050409@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AAEE5106566B for ; Sat, 18 Aug 2012 13:31:45 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 03EA28FC16 for ; Sat, 18 Aug 2012 13:31:44 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 13:31:42 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp036) with SMTP; 18 Aug 2012 15:31:42 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 15:31:42 +0200 Message-Id: <20120818133145.AAEE5106566B@hub.freebsd.org> Date: Sat, 18 Aug 2012 15:31:42 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170741: [MAINTAINER] games/sets: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 13:40:07 -0000 >Number: 170741 >Category: ports >Synopsis: [MAINTAINER] games/sets: Makefile changed, OptionsNG >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 Aug 18 13:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Changed all to ${PORTNAME} OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- sets-1.0.0_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/sets/Makefile ./Makefile --- /usr/ports/games/sets/Makefile 2012-05-14 20:11:46.000000000 +0200 +++ ./Makefile 2012-08-18 15:28:21.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= sets PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.linuxmotors.com/sets/downloads/ EXTRACT_SUFX= .tgz @@ -20,17 +21,19 @@ ALL_TARGET= ${PORTNAME} USE_SDL= sdl image -PLIST_FILES= bin/sets +PLIST_FILES= bin/${PORTNAME} PORTDOCS= README +.include + do-install: # Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin post-install: # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} --- sets-1.0.0_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 14:50:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B340106566C for ; Sat, 18 Aug 2012 14: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 3F1F98FC14 for ; Sat, 18 Aug 2012 14: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 q7IEo7Mn057783 for ; Sat, 18 Aug 2012 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 q7IEo7X1057782; Sat, 18 Aug 2012 14:50:07 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 14:50:07 GMT Resent-Message-Id: <201208181450.q7IEo7X1057782@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 761A4106564A for ; Sat, 18 Aug 2012 14:46:51 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id DD0508FC12 for ; Sat, 18 Aug 2012 14:46:50 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 14:46:48 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp035) with SMTP; 18 Aug 2012 16:46:48 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 16:46:47 +0200 Message-Id: <20120818144651.761A4106564A@hub.freebsd.org> Date: Sat, 18 Aug 2012 16:46:47 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170742: [MAINTAINER] games/simsu: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 14:50:07 -0000 >Number: 170742 >Category: ports >Synopsis: [MAINTAINER] games/simsu: Makefile changed, OptionsNG >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 Aug 18 14:50:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Deleted INSTALL why isn't needed after Installation. Added .if !defined (NOPORTDATA) OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- simsu-1.2.2_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/simsu/Makefile ./Makefile --- /usr/ports/games/simsu/Makefile 2012-06-06 08:43:49.000000000 +0200 +++ ./Makefile 2012-08-18 16:35:06.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= simsu PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://gottcode.org/${PORTNAME}/ EXTRACT_SUFX= -src.tar.bz2 @@ -32,12 +33,20 @@ MAKE_JOBS_SAFE= yes PORTDATA= * -PORTDOCS= CREDITS ChangeLog INSTALL +PORTDOCS= CREDITS ChangeLog + +.include do-install: # Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin +# Data +.if !defined (NOPORTDATA) + ${MKDIR} ${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "symmetry translations" ${DATADIR}) +.endif + # Icons ${CP} -R ${WRKSRC}/icons/hicolor ${PREFIX}/share/icons/ @@ -46,15 +55,8 @@ ${MKDIR} ${PREFIX}/share/applications ${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/ -post-install: -# Data -.if !defined (NOPORTDATA) - ${MKDIR} ${DATADIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} "symmetry translations" ${DATADIR}) -.endif - -# Documentations -.if !defined(NOPORTDOCS) +# Documentation +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} --- simsu-1.2.2_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 15:00:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7CF4106564A for ; Sat, 18 Aug 2012 15:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9FB368FC0C for ; Sat, 18 Aug 2012 15: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 q7IF0MUo058033 for ; Sat, 18 Aug 2012 15: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 q7IF0Mx7058032; Sat, 18 Aug 2012 15:00:22 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 15:00:22 GMT Resent-Message-Id: <201208181500.q7IF0Mx7058032@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, Waitman Gobble Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6682B106566B for ; Sat, 18 Aug 2012 14:54: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 51D9F8FC08 for ; Sat, 18 Aug 2012 14:54: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 q7IEsQjP020279 for ; Sat, 18 Aug 2012 14:54:26 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7IEsQK8020278; Sat, 18 Aug 2012 14:54:26 GMT (envelope-from nobody) Message-Id: <201208181454.q7IEsQK8020278@red.freebsd.org> Date: Sat, 18 Aug 2012 14:54:26 GMT From: Waitman Gobble To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170743: wget amd64 package depends on older version of openssl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 15:00:23 -0000 >Number: 170743 >Category: ports >Synopsis: wget amd64 package depends on older version of openssl >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 Aug 18 15:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: FreeBSD 10.0-CURRENT amd64 >Organization: Waitman Gobble >Environment: FreeBSD jail.waitman.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 11 13:25:18 PDT 2012 root@hunny.waitman.net:/usr/obj/usr/src/sys/KEYSHIA amd64 >Description: wget package in /Latest depends on libssl.so.6, but newer version in packages >How-To-Repeat: # setenv PACKAGESITE http://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages/Latest/ # pkg_add -r wget (ok) # wget Shared object "libssl.so.6" not found, required by "wget" # pkg_add -r openssl (ok) # wget Shared object "libssl.so.6" not found, required by "wget" # pkg_info | grep openssl openssl-1.0.1_4 SSL and crypto library # ls /usr/local/lib/libssl.so.* /usr/local/lib/libssl.so.8 # pkg_info | grep wget wget-1.13.4_1 Retrieve files from the Net via HTTP(S) and FTP >Fix: Please update package, thank you. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 15:00:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EB52106566B for ; Sat, 18 Aug 2012 15:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B9478FC15 for ; Sat, 18 Aug 2012 15: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 q7IF0MTL058063 for ; Sat, 18 Aug 2012 15: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 q7IF0MDj058057; Sat, 18 Aug 2012 15:00:22 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 15:00:22 GMT Resent-Message-Id: <201208181500.q7IF0MDj058057@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 904B0106564A for ; Sat, 18 Aug 2012 14:57:45 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 8D2998FC0A for ; Sat, 18 Aug 2012 14:57:44 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 14:57:42 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp072) with SMTP; 18 Aug 2012 16:57:42 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 16:57:41 +0200 Message-Id: <20120818145745.904B0106564A@hub.freebsd.org> Date: Sat, 18 Aug 2012 16:57:41 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170744: [MAINTAINER] games/syobon: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 15:00:23 -0000 >Number: 170744 >Category: ports >Synopsis: [MAINTAINER] games/syobon: Makefile changed, OptionsNG >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 Aug 18 15:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- syobon-1.0.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/syobon/Makefile ./Makefile --- /usr/ports/games/syobon/Makefile 2012-05-15 11:58:14.000000000 +0200 +++ ./Makefile 2012-08-18 16:50:22.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= syobon PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://download.zapek.com/software/${PORTNAME}/ DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -25,18 +26,25 @@ PLIST_FILES= bin/${PORTNAME} -PORTDOCS= README.txt PORTDATA= * +PORTDOCS= README.txt MAKE_ENV= GAMEDATA="${DATADIR}" +.include + do-install: +# Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +# Data .if !defined(NOPORTDATA) ${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} "BGM SE res" ${DATADIR}) .endif -.if !defined(NOPORTDOCS) + +# Documentation +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR} .endif --- syobon-1.0.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 15:30:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1708B1065670 for ; Sat, 18 Aug 2012 15:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E470E8FC0A for ; Sat, 18 Aug 2012 15:30: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 q7IFU9PI061214 for ; Sat, 18 Aug 2012 15:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IFU9bt061207; Sat, 18 Aug 2012 15:30:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 15:30:09 GMT Resent-Message-Id: <201208181530.q7IFU9bt061207@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E9E71065670 for ; Sat, 18 Aug 2012 15:23:55 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id F3B128FC08 for ; Sat, 18 Aug 2012 15:23:54 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 15:23:52 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp030) with SMTP; 18 Aug 2012 17:23:52 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 17:23:52 +0200 Message-Id: <20120818152355.8E9E71065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 17:23:52 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170745: [MAINTAINER] games/tanglet: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 15:30:10 -0000 >Number: 170745 >Category: ports >Synopsis: [MAINTAINER] games/tanglet: Makefile changed, OptionsNG >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 Aug 18 15:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Deleted INSTALL why isn't needed after Installation. OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- tanglet-1.2.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/tanglet/Makefile ./Makefile --- /usr/ports/games/tanglet/Makefile 2012-06-06 08:43:49.000000000 +0200 +++ ./Makefile 2012-08-18 17:00:04.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= tanglet PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://gottcode.org/${PORTNAME}/ EXTRACT_SUFX= -src.tar.bz2 @@ -23,7 +24,9 @@ MAKE_JOBS_SAFE= yes PORTDATA= * -PORTDOCS= CREDITS ChangeLog INSTALL +PORTDOCS= CREDITS ChangeLog + +.include do-configure: @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ @@ -33,6 +36,11 @@ # Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin +# Data +.if !defined(NOPORTDATA) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "data translations" ${DATADIR}) +.endif + # Icons cd ${WRKSRC}/icons && ${FIND} hicolor -type d -name apps -exec \ ${MKDIR} ${PREFIX}/share/icons/{} \; @@ -44,13 +52,8 @@ ${MKDIR} ${PREFIX}/share/applications ${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/ -# Data -.if !defined(NOPORTDATA) - @(cd ${WRKSRC} && ${COPYTREE_SHARE} "data translations" ${DATADIR}) -.endif - # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} --- tanglet-1.2.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:09:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACC13106564A; Sat, 18 Aug 2012 16:09:02 +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 7FF6E8FC0C; Sat, 18 Aug 2012 16:09: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 q7IG92mD065884; Sat, 18 Aug 2012 16:09:02 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IG92hR065880; Sat, 18 Aug 2012 16:09:02 GMT (envelope-from sunpoet) Date: Sat, 18 Aug 2012 16:09:02 GMT Message-Id: <201208181609.q7IG92hR065880@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/170738: [MAINTAINER] games/mopesnake: Makefile changed, OptionsNG, deleted script in Makefile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:09:02 -0000 Synopsis: [MAINTAINER] games/mopesnake: Makefile changed, OptionsNG, deleted script in Makefile Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Aug 18 16:09:02 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170738 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:09:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 892A1106566B; Sat, 18 Aug 2012 16:09:05 +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 5C2BE8FC08; Sat, 18 Aug 2012 16:09: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 q7IG95WO065949; Sat, 18 Aug 2012 16:09:05 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IG95Ot065945; Sat, 18 Aug 2012 16:09:05 GMT (envelope-from sunpoet) Date: Sat, 18 Aug 2012 16:09:05 GMT Message-Id: <201208181609.q7IG95Ot065945@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/170739: [MAINTAINER] games/nelly: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:09:05 -0000 Synopsis: [MAINTAINER] games/nelly: Makefile changed, Port require always DATA Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Aug 18 16:09:04 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170739 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:09:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CA4C106564A; Sat, 18 Aug 2012 16:09:08 +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 205228FC16; Sat, 18 Aug 2012 16:09: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 q7IG98NL066014; Sat, 18 Aug 2012 16:09:08 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IG975R066010; Sat, 18 Aug 2012 16:09:08 GMT (envelope-from sunpoet) Date: Sat, 18 Aug 2012 16:09:08 GMT Message-Id: <201208181609.q7IG975R066010@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/170740: [MAINTAINER] games/sdl_scavenger: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:09:08 -0000 Synopsis: [MAINTAINER] games/sdl_scavenger: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Aug 18 16:09:07 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170740 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:09:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D702106564A; Sat, 18 Aug 2012 16:09:11 +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 D3F198FC17; Sat, 18 Aug 2012 16:09: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 q7IG9AO4066079; Sat, 18 Aug 2012 16:09:10 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IG9Asd066075; Sat, 18 Aug 2012 16:09:10 GMT (envelope-from sunpoet) Date: Sat, 18 Aug 2012 16:09:10 GMT Message-Id: <201208181609.q7IG9Asd066075@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/170741: [MAINTAINER] games/sets: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:09:11 -0000 Synopsis: [MAINTAINER] games/sets: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Aug 18 16:09:10 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170741 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:09:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C02FA106566C; Sat, 18 Aug 2012 16:09:13 +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 92A4D8FC19; Sat, 18 Aug 2012 16:09: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 q7IG9D2O066144; Sat, 18 Aug 2012 16:09:13 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IG9Dlq066140; Sat, 18 Aug 2012 16:09:13 GMT (envelope-from sunpoet) Date: Sat, 18 Aug 2012 16:09:13 GMT Message-Id: <201208181609.q7IG9Dlq066140@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/170742: [MAINTAINER] games/simsu: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:09:13 -0000 Synopsis: [MAINTAINER] games/simsu: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Aug 18 16:09:13 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170742 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:09:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D198106566B; Sat, 18 Aug 2012 16:09:16 +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 5050D8FC14; Sat, 18 Aug 2012 16:09: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 q7IG9Ggi066209; Sat, 18 Aug 2012 16:09:16 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IG9GpI066205; Sat, 18 Aug 2012 16:09:16 GMT (envelope-from sunpoet) Date: Sat, 18 Aug 2012 16:09:16 GMT Message-Id: <201208181609.q7IG9GpI066205@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/170744: [MAINTAINER] games/syobon: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:09:16 -0000 Synopsis: [MAINTAINER] games/syobon: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Aug 18 16:09:15 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170744 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:09:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E91210656A8; Sat, 18 Aug 2012 16:09:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 131DD8FC1D; Sat, 18 Aug 2012 16:09: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 q7IG9IaK066274; Sat, 18 Aug 2012 16:09:18 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IG9Id8066270; Sat, 18 Aug 2012 16:09:18 GMT (envelope-from sunpoet) Date: Sat, 18 Aug 2012 16:09:18 GMT Message-Id: <201208181609.q7IG9Id8066270@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/170745: [MAINTAINER] games/tanglet: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:09:19 -0000 Synopsis: [MAINTAINER] games/tanglet: Makefile changed, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sat Aug 18 16:09:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170745 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C44491065675 for ; Sat, 18 Aug 2012 16:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 998D38FC1A for ; Sat, 18 Aug 2012 16: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 q7IGADRs066377 for ; Sat, 18 Aug 2012 16: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 q7IGADNp066376; Sat, 18 Aug 2012 16:10:13 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 16:10:13 GMT Resent-Message-Id: <201208181610.q7IGADNp066376@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, Richard Neese Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56389106566B for ; Sat, 18 Aug 2012 16:05:41 +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 409AE8FC12 for ; Sat, 18 Aug 2012 16:05:41 +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 q7IG5fdT024951 for ; Sat, 18 Aug 2012 16:05:41 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7IG5eaL024947; Sat, 18 Aug 2012 16:05:40 GMT (envelope-from nobody) Message-Id: <201208181605.q7IG5eaL024947@red.freebsd.org> Date: Sat, 18 Aug 2012 16:05:40 GMT From: Richard Neese To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170746: update of www/fusionpbx web gui 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: Sat, 18 Aug 2012 16:10:13 -0000 >Number: 170746 >Category: ports >Synopsis: update of www/fusionpbx web gui port >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 Aug 18 16:10:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Richard Neese >Release: FreeBSD 9.0-RELEASE >Organization: >Environment: FreeBSD ports.freebsd.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Updated fusion to the new 3.1 release and cleaned and brought the port to options ng >How-To-Repeat: >Fix: Patch attached with submission follows: Index: distinfo =================================================================== --- distinfo (revision 302692) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (fusionpbx-3.0.4.tar.gz) = 1066f32759a7bdaa8e8ac802f71b10af38db63c33c7a1aeef109044fd8309427 -SIZE (fusionpbx-3.0.4.tar.gz) = 5159078 +SHA256 (fusionpbx-3.1.tar.gz) = 8dde792b2bac81196cfb51ea871004f39192d9c1944044fcf8a8f9713aef0ed8 +SIZE (fusionpbx-3.1.tar.gz) = 5179008 Index: pkg-plist =================================================================== --- pkg-plist (revision 302692) +++ pkg-plist (working copy) @@ -134,8 +134,20 @@ %%WWWDIR%%/app/dialplan/resources/xml/dialplan/450_park_in.xml %%WWWDIR%%/app/dialplan/resources/xml/dialplan/455_park_out.xml %%WWWDIR%%/app/dialplan/resources/xml/dialplan/460_park_slots.xml +%%WWWDIR%%/app/dialplan/resources/xml/dialplan/480_operator.xml +%%WWWDIR%%/app/dialplan/resources/xml/dialplan/485_operator-forward.xml +%%WWWDIR%%/app/dialplan/resources/xml/dialplan/490_do-not-disturb.xml %%WWWDIR%%/app/dialplan/resources/xml/dialplan/999_local_extension.xml %%WWWDIR%%/app/dialplan/root.php +%%WWWDIR%%/app/dialplan_features/app_config.php +%%WWWDIR%%/app/dialplan_features/resources/xml/dialplan/300_dx.xml +%%WWWDIR%%/app/dialplan_features/resources/xml/dialplan/310_att_xfer.xml +%%WWWDIR%%/app/dialplan_features/resources/xml/dialplan/320_xfer_vm.xml +%%WWWDIR%%/app/dialplan_features/resources/xml/dialplan/330_is_transfer.xml +%%WWWDIR%%/app/dialplan_features/resources/xml/dialplan/340_cf.xml +%%WWWDIR%%/app/dialplan_features/resources/xml/dialplan/350_please_hold.xml +%%WWWDIR%%/app/dialplan_features/resources/xml/dialplan/360_is_zrtp_secure.xml +%%WWWDIR%%/app/dialplan_features/resources/xml/dialplan/370_is_secure.xml %%WWWDIR%%/app/dialplan_inbound/app_config.php %%WWWDIR%%/app/dialplan_inbound/app_defaults.php %%WWWDIR%%/app/dialplan_inbound/dialplan_inbound_add.php @@ -155,11 +167,12 @@ %%WWWDIR%%/app/extensions/v_extensions_delete.php %%WWWDIR%%/app/extensions/v_extensions_edit.php %%WWWDIR%%/app/fax/app_config.php +%%WWWDIR%%/app/fax/fax.php +%%WWWDIR%%/app/fax/fax_copy.php +%%WWWDIR%%/app/fax/fax_delete.php +%%WWWDIR%%/app/fax/fax_edit.php +%%WWWDIR%%/app/fax/fax_view.php %%WWWDIR%%/app/fax/root.php -%%WWWDIR%%/app/fax/v_fax.php -%%WWWDIR%%/app/fax/v_fax_delete.php -%%WWWDIR%%/app/fax/v_fax_edit.php -%%WWWDIR%%/app/fax/v_fax_view.php %%WWWDIR%%/app/fifo/app_config.php %%WWWDIR%%/app/fifo/root.php %%WWWDIR%%/app/fifo/v_fifo.php @@ -259,6 +272,13 @@ %%WWWDIR%%/app/hardware_phones/v_hardware_phones.php %%WWWDIR%%/app/hardware_phones/v_hardware_phones_delete.php %%WWWDIR%%/app/hardware_phones/v_hardware_phones_edit.php +%%WWWDIR%%/app/hot_desking/app_config.php +%%WWWDIR%%/app/hot_desking/extension_delete.php +%%WWWDIR%%/app/hot_desking/extension_edit.php +%%WWWDIR%%/app/hot_desking/index.php +%%WWWDIR%%/app/hot_desking/resources/xml/dialplan/470_hot-desk-login.xml +%%WWWDIR%%/app/hot_desking/resources/xml/dialplan/475_hot-desk-logout.xml +%%WWWDIR%%/app/hot_desking/root.php %%WWWDIR%%/app/hunt_group/app_config.php %%WWWDIR%%/app/hunt_group/root.php %%WWWDIR%%/app/hunt_group/v_hunt_group.php @@ -336,6 +356,7 @@ %%WWWDIR%%/app/php_service/v_php_service_delete.php %%WWWDIR%%/app/php_service/v_php_service_edit.php %%WWWDIR%%/app/provision/app_config.php +%%WWWDIR%%/app/provision/app_defaults.php %%WWWDIR%%/app/provision/index.php %%WWWDIR%%/app/provision/provision_write.php %%WWWDIR%%/app/provision/root.php @@ -436,6 +457,7 @@ %%WWWDIR%%/app/services/v_services_delete.php %%WWWDIR%%/app/services/v_services_edit.php %%WWWDIR%%/app/settings/app_config.php +%%WWWDIR%%/app/settings/app_defaults.php %%WWWDIR%%/app/settings/root.php %%WWWDIR%%/app/settings/v_settings_edit.php %%WWWDIR%%/app/signup/app_config.php @@ -451,6 +473,7 @@ %%WWWDIR%%/app/sip_profiles/resources/xml/sip_profiles/internal-ipv6.xml %%WWWDIR%%/app/sip_profiles/resources/xml/sip_profiles/internal.xml %%WWWDIR%%/app/sip_profiles/root.php +%%WWWDIR%%/app/sip_profiles/sip_profile_copy.php %%WWWDIR%%/app/sip_profiles/sip_profile_settings.php %%WWWDIR%%/app/sip_profiles/sip_profile_settings_delete.php %%WWWDIR%%/app/sip_profiles/sip_profile_settings_edit.php @@ -594,6 +617,7 @@ %%WWWDIR%%/core/backup/backupandrestore.php %%WWWDIR%%/core/backup/root.php %%WWWDIR%%/core/databases/app_config.php +%%WWWDIR%%/core/databases/app_defaults.php %%WWWDIR%%/core/databases/database_delete.php %%WWWDIR%%/core/databases/database_edit.php %%WWWDIR%%/core/databases/databases.php @@ -690,13 +714,13 @@ %%WWWDIR%%/includes/classes/array_order.php %%WWWDIR%%/includes/classes/call_forward.php %%WWWDIR%%/includes/classes/database.php -%%WWWDIR%%/includes/classes/dialplan.php %%WWWDIR%%/includes/classes/do_not_disturb.php %%WWWDIR%%/includes/classes/follow_me.php %%WWWDIR%%/includes/classes/install.php %%WWWDIR%%/includes/classes/menu.php %%WWWDIR%%/includes/classes/root.php %%WWWDIR%%/includes/classes/schema.php +%%WWWDIR%%/includes/classes/switch_dialplan.php %%WWWDIR%%/includes/classes/switch_directory.php %%WWWDIR%%/includes/classes/switch_fax.php %%WWWDIR%%/includes/classes/switch_ivr_menu.php @@ -838,6 +862,7 @@ %%WWWDIR%%/includes/install/lang/en/wakeup/sounds.xml %%WWWDIR%%/includes/install/scripts/call_broadcast_originate.js %%WWWDIR%%/includes/install/scripts/call_forward.lua +%%WWWDIR%%/includes/install/scripts/dial_string.lua %%WWWDIR%%/includes/install/scripts/disa.lua %%WWWDIR%%/includes/install/scripts/eavesdrop.lua %%WWWDIR%%/includes/install/scripts/fax_retry.lua @@ -853,6 +878,7 @@ %%WWWDIR%%/includes/install/scripts/ring_group.lua %%WWWDIR%%/includes/install/scripts/roku.lua %%WWWDIR%%/includes/install/scripts/wakeup.lua +%%WWWDIR%%/includes/install/scripts/xml_handler.lua %%WWWDIR%%/includes/install/sounds/en/us/callie/custom/16000/4.wav %%WWWDIR%%/includes/install/sounds/en/us/callie/custom/16000/a.wav %%WWWDIR%%/includes/install/sounds/en/us/callie/custom/16000/accept.wav @@ -1034,6 +1060,7 @@ %%WWWDIR%%/includes/templates/conf/autoload_configs/event_socket.conf.xml %%WWWDIR%%/includes/templates/conf/autoload_configs/fax.conf.xml %%WWWDIR%%/includes/templates/conf/autoload_configs/fifo.conf.xml +%%WWWDIR%%/includes/templates/conf/autoload_configs/freetdm.conf.xml %%WWWDIR%%/includes/templates/conf/autoload_configs/hash.conf.xml %%WWWDIR%%/includes/templates/conf/autoload_configs/httapi.conf.xml %%WWWDIR%%/includes/templates/conf/autoload_configs/http_cache.conf.xml @@ -1097,6 +1124,7 @@ %%WWWDIR%%/includes/templates/conf/directory/default/skinny-example.xml.noload %%WWWDIR%%/includes/templates/conf/extensions.conf %%WWWDIR%%/includes/templates/conf/freeswitch.xml +%%WWWDIR%%/includes/templates/conf/freetdm.conf %%WWWDIR%%/includes/templates/conf/fur_elise.ttml %%WWWDIR%%/includes/templates/conf/ivr_menus/demo_ivr.xml %%WWWDIR%%/includes/templates/conf/jingle_profiles/client.xml @@ -1401,6 +1429,10 @@ @dirrm %%WWWDIR%%/app/log_viewer @dirrm %%WWWDIR%%/app/ivr_menu @dirrm %%WWWDIR%%/app/hunt_group +@dirrm %%WWWDIR%%/app/hot_desking/resources/xml/dialplan +@dirrm %%WWWDIR%%/app/hot_desking/resources/xml +@dirrm %%WWWDIR%%/app/hot_desking/resources +@dirrm %%WWWDIR%%/app/hot_desking @dirrm %%WWWDIR%%/app/hardware_phones @dirrm %%WWWDIR%%/app/grammar_edit/images/thumbnails @dirrm %%WWWDIR%%/app/grammar_edit/images @@ -1419,6 +1451,10 @@ @dirrm %%WWWDIR%%/app/exec @dirrm %%WWWDIR%%/app/dialplan_outbound @dirrm %%WWWDIR%%/app/dialplan_inbound +@dirrm %%WWWDIR%%/app/dialplan_features/resources/xml/dialplan +@dirrm %%WWWDIR%%/app/dialplan_features/resources/xml +@dirrm %%WWWDIR%%/app/dialplan_features/resources +@dirrm %%WWWDIR%%/app/dialplan_features @dirrm %%WWWDIR%%/app/dialplan/resources/xml/dialplan @dirrm %%WWWDIR%%/app/dialplan/resources/xml @dirrm %%WWWDIR%%/app/dialplan/resources @@ -1440,9 +1476,3 @@ @exec mkdir -p %D/%%WWWDIR%%/includes/templates/provision/grandstream @exec mkdir -p %D/%%WWWDIR%%/includes/templates/provision/cisco/7960 @exec mkdir -p %D/%%WWWDIR%%/includes/templates/provision/cisco/7940 -@exec chown -R www:www /usr/local/www/fusionpbx -@dirrmtry www/fusionpbx/ 2> /dev/null || /usr/bin/true -@cwd /var -@dirrmtry db/fusionpbx -@exec mkdir -p %D/db/fusionpbx -@exec chown www:www %D/db/fusionpbx Index: Makefile =================================================================== --- Makefile (revision 302692) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= fusionpbx -DISTVERSION= 3.0.4 +DISTVERSION= 3.1 CATEGORIES= www MASTER_SITES= http://www.fusionpbx.com/downloads/ \ ${MASTER_SITE_GOOGLE_CODE} @@ -15,8 +15,7 @@ COMMENT= Fusionpbx PHP5 Graphical User Interface for FreeSwitch LIB_DEPENDS= odbc:${PORTSDIR}/databases/unixODBC -RUN_DEPENDS+= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/pdo_odbc.so:${PORTSDIR}/databases/php5-pdo_odbc - +RUN_DEPENDS+= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/pdo_odbc.so:${PORTSDIR}/databases/php${PHP_VER}-pdo_odbc USE_SQLITE= yes USE_PHP= dom filter ftp json pcre pdo pdo_sqlite posix \ @@ -31,23 +30,28 @@ WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= yes -#config options -OPTIONS= PDOPGSQL "Install POSTGRESQL PDO Connecor" off \ - PDOMYSQL "Install MySQL PDO Connector " off +OPTIONS_DEFINE= PDOPGSQL PDOMYSQL +PDOPGSQL_DESC= Install POSTGRESQL PDO Connecor +PDOMYSQL_DESC= Install MySQL PDO Connector + .include -.if !defined(WITH_PDOPGSQL) -PLIST_SUB+= WITH_PDOPGSQL="@comment " +.for opt in ${ALL_OPTIONS} +.if $(PORT_OPTIONS:M${opt}) +PLIST_SUB+= ${opt}="" .else +PLIST_SUB+= ${opt}="@comment " +.endif +.endfor + +.if ${PORT_OPTIONS:MPDOPGSQL) USE_PGSQL= yes USE_PHP+= pgsql pdo_pgsql PLIST_SUB+= WITH_PDOPGSQL="" .endif -.if !defined(WITH_PDOMYSQL) -PLIST_SUB+= WITHPDO-MYSQL="@comment " -.else +.if ${PORT_OPTIONS:MPDOMYSQL) USE_MYSQL= client USE_PHP+= mysql pdo_mysql PLIST_SUB+= WITH_PDOMYSQL="" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 281F91065677 for ; Sat, 18 Aug 2012 16: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 DE0618FC1C for ; Sat, 18 Aug 2012 16: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 q7IGADUc066386 for ; Sat, 18 Aug 2012 16: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 q7IGADqr066385; Sat, 18 Aug 2012 16:10:13 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 16:10:13 GMT Resent-Message-Id: <201208181610.q7IGADqr066385@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 89EFF1065675 for ; Sat, 18 Aug 2012 16:09:06 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id DA2CF8FC14 for ; Sat, 18 Aug 2012 16:09:05 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 16:09:03 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp019) with SMTP; 18 Aug 2012 18:09:03 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 18:09:02 +0200 Message-Id: <20120818160906.89EFF1065675@hub.freebsd.org> Date: Sat, 18 Aug 2012 18:09:02 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170747: [MAINTAINER] games/thegrind: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:10:14 -0000 >Number: 170747 >Category: ports >Synopsis: [MAINTAINER] games/thegrind: Makefile changed, OptionsNG >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 Aug 18 16:10:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- thegrind-0.1.2_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/thegrind/Makefile ./Makefile --- /usr/ports/games/thegrind/Makefile 2012-06-01 07:19:22.000000000 +0200 +++ ./Makefile 2012-08-18 18:07:18.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= thegrind PORTVERSION= 0.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/radius-engine/ld21/ @@ -36,8 +36,11 @@ PORTDATA= * PORTDOCS= ChangeLog +.include + post-install: -.if !defined(NOPORTDOCS) +# Documentation +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR} .endif --- thegrind-0.1.2_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B73B7106566B for ; Sat, 18 Aug 2012 16: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 76D818FC0A for ; Sat, 18 Aug 2012 16: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 q7IGK9tO068466 for ; Sat, 18 Aug 2012 16: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 q7IGK9ri068465; Sat, 18 Aug 2012 16:20:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 16:20:09 GMT Resent-Message-Id: <201208181620.q7IGK9ri068465@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CB1B1065670 for ; Sat, 18 Aug 2012 16:17:24 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id CBE658FC1A for ; Sat, 18 Aug 2012 16:17:23 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 16:17:21 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp040) with SMTP; 18 Aug 2012 18:17:21 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 18:17:21 +0200 Message-Id: <20120818161724.7CB1B1065670@hub.freebsd.org> Date: Sat, 18 Aug 2012 18:17:21 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170748: [MAINTAINER] games/twind: Makefile changed, Port require always DATA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:20:09 -0000 >Number: 170748 >Category: ports >Synopsis: [MAINTAINER] games/twind: Makefile changed, Port require always DATA >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 Aug 18 16:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Deleted why Port require always DATA -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA Here works better NOPORTDATA -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- twind-1.1.0_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/twind/Makefile ./Makefile --- /usr/ports/games/twind/Makefile 2012-08-17 19:46:32.000000000 +0200 +++ ./Makefile 2012-08-18 18:13:07.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= twind PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} @@ -15,9 +16,6 @@ LICENSE= GPLv2 -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA - USE_SDL= sdl image mixer MAKE_JOBS_SAFE= yes @@ -38,7 +36,7 @@ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin # Data -.if ${PORT_OPTIONS:MDATA} +.if !defined (NOPORTDATA) ${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} "graphics music sound" ${DATADIR}) .endif --- twind-1.1.0_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 16:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32E3C106564A for ; Sat, 18 Aug 2012 16:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E73808FC14 for ; Sat, 18 Aug 2012 16: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 q7IGU8dZ068774 for ; Sat, 18 Aug 2012 16: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 q7IGU8IG068770; Sat, 18 Aug 2012 16:30:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 16:30:08 GMT Resent-Message-Id: <201208181630.q7IGU8IG068770@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7368C106564A for ; Sat, 18 Aug 2012 16:24:58 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id C28278FC14 for ; Sat, 18 Aug 2012 16:24:57 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 16:24:55 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp034) with SMTP; 18 Aug 2012 18:24:55 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 18:24:55 +0200 Message-Id: <20120818162458.7368C106564A@hub.freebsd.org> Date: Sat, 18 Aug 2012 18:24:55 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170749: [MAINTAINER] graphics/founts: Makefile changed, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 16:30:09 -0000 >Number: 170749 >Category: ports >Synopsis: [MAINTAINER] graphics/founts: Makefile changed, OptionsNG >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 Aug 18 16:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Changed all to ${PORTNAME} OptionsNG .include .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- founts-12_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/graphics/founts/Makefile ./Makefile --- /usr/ports/graphics/founts/Makefile 2012-05-06 16:30:38.000000000 +0200 +++ ./Makefile 2012-08-18 18:21:50.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= founts PORTVERSION= 12 +PORTREVISION= 1 CATEGORIES= graphics games MASTER_SITES= http://www.linuxmotors.com/founts/downloads/ EXTRACT_SUFX= .tgz @@ -18,10 +19,12 @@ USE_SDL= sdl -PLIST_FILES= bin/founts +PLIST_FILES= bin/${PORTNAME} PORTDOCS= Changelog README +.include + do-build: cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \ -lm `${SDL_CONFIG} --cflags --libs` founts.c @@ -29,8 +32,9 @@ do-install: # Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + # Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} --- founts-12_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 17:50:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E520F106566C for ; Sat, 18 Aug 2012 17:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ACC6A8FC18 for ; Sat, 18 Aug 2012 17: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 q7IHo772079417 for ; Sat, 18 Aug 2012 17: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 q7IHo7Yw079415; Sat, 18 Aug 2012 17:50:07 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 17:50:07 GMT Resent-Message-Id: <201208181750.q7IHo7Yw079415@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 [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D52A2106564A for ; Sat, 18 Aug 2012 17:48:36 +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 3C3108FC0A for ; Sat, 18 Aug 2012 17:48:34 +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 q7IHmPXd052592; Sat, 18 Aug 2012 19:48:25 +0200 (CEST) (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; 18 Aug 2012 19:48:25 +0200 Received: from backoffice.colby.local ([192.168.1.56]) by exchange.colby.local over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sat, 18 Aug 2012 19:48:25 +0200 Received: from backoffice.colby.local (localhost [127.0.0.1]) by backoffice.colby.local (8.14.5/8.14.5) with ESMTP id q7IHmPEG050980; Sat, 18 Aug 2012 19:48:25 +0200 (CEST) (envelope-from olgeni@backoffice.colby.local) Received: (from olgeni@localhost) by backoffice.colby.local (8.14.5/8.14.5/Submit) id q7IHmPu4050979; Sat, 18 Aug 2012 19:48:25 +0200 (CEST) (envelope-from olgeni) Message-Id: <201208181748.q7IHmPu4050979@backoffice.colby.local> Date: Sat, 18 Aug 2012 19:48:25 +0200 (CEST) From: Jimmy Olgeni To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jdunn@aquezada.com Subject: ports/170750: [PATCH] net-im/ttytter: upgrade to 2.0.03 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 17:50:08 -0000 >Number: 170750 >Category: ports >Synopsis: [PATCH] net-im/ttytter: upgrade to 2.0.03 >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 Aug 18 17:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD olgeni 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #3: Wed Aug 8 20:17:06 CEST >Description: - Upgrade port to version 2.0.03 - Switch to the new options framework Port maintainer (jdunn@aquezada.com) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- ttytter-2.0.03.patch begins here --- Index: distinfo =================================================================== --- distinfo (revision 302726) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (2.0.02.txt) = 5020ac4834297c7ca35b2f14db1760ee1097e55552248d4cf00e7ee67246fb34 -SIZE (2.0.02.txt) = 218842 +SHA256 (2.0.03.txt) = 507213785591640b0e6056fc25604adb905c09a545ec376620813c476d10e194 +SIZE (2.0.03.txt) = 220092 Index: Makefile =================================================================== --- Makefile (revision 302726) +++ Makefile (working copy) @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= ttytter -PORTVERSION= 2.0.02 +PORTVERSION= 2.0.03 CATEGORIES= net-im perl5 MASTER_SITES= http://www.floodgap.com/software/ttytter/dist2/ DISTNAME= ${PORTVERSION} @@ -20,18 +20,20 @@ NO_BUILD= yes USE_PERL5_RUN= 5.8.6+ -OPTIONS= READLINE "Include rich readline support" on \ - RLTTYTTER "Use T::R::TTYtter readline driver (beta!)" off \ +OPTIONS_DEFINE= READLINE RLTTYTTER +OPTIONS_DEFAULT=READLINE +READLINE_DESC= Include rich readline support +RLTTYTTER_DESC= Use T::R::TTYtter readline driver (beta!) PLIST_FILES= bin/${PORTNAME} .include -.if !defined(WITHOUT_READLINE) +.if ${PORT_OPTIONS:MREADLINE} RUN_DEPENDS+= p5-ReadLine-Perl>=0:${PORTSDIR}/devel/p5-ReadLine-Perl .endif -.if defined(WITH_RLTTYTTER) +.if ${PORT_OPTIONS:MRLTTYTTER} RUN_DEPENDS+= p5-ReadLine-TTYtter>=1.3:${PORTSDIR}/devel/p5-ReadLine-TTYtter .endif --- ttytter-2.0.03.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 17:50:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA702106566C; Sat, 18 Aug 2012 17:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E2698FC08; Sat, 18 Aug 2012 17:50: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 q7IHoHxU079561; Sat, 18 Aug 2012 17:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IHoH5p079557; Sat, 18 Aug 2012 17:50:17 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 17:50:17 GMT Message-Id: <201208181750.q7IHoH5p079557@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170750: [PATCH] net-im/ttytter: upgrade to 2.0.03 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 17:50:17 -0000 Synopsis: [PATCH] net-im/ttytter: upgrade to 2.0.03 Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 18 17:50:17 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170750 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 18:09:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42117106566C; Sat, 18 Aug 2012 18:09:34 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 06A798FC0A; Sat, 18 Aug 2012 18:09: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 q7II9XKB080770; Sat, 18 Aug 2012 18:09:33 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7II9XV7080766; Sat, 18 Aug 2012 18:09:33 GMT (envelope-from bdrewery) Date: Sat, 18 Aug 2012 18:09:33 GMT Message-Id: <201208181809.q7II9XV7080766@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/170700: net-mgmt/zabbix2-server: 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: Sat, 18 Aug 2012 18:09:34 -0000 Synopsis: net-mgmt/zabbix2-server: update to 2.0.2 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Sat Aug 18 18:09:33 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170700 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 18:30:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13570106566C for ; Sat, 18 Aug 2012 18: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 E18EE8FC12 for ; Sat, 18 Aug 2012 18: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 q7IIUBtI083252 for ; Sat, 18 Aug 2012 18: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 q7IIUBI4083246; Sat, 18 Aug 2012 18:30:11 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 18:30:11 GMT Resent-Message-Id: <201208181830.q7IIUBI4083246@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60C21106566B for ; Sat, 18 Aug 2012 18:20:18 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id C7EE98FC12 for ; Sat, 18 Aug 2012 18:20:17 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 18:20:15 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp012) with SMTP; 18 Aug 2012 20:20:15 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 20:20:14 +0200 Message-Id: <20120818182018.60C21106566B@hub.freebsd.org> Date: Sat, 18 Aug 2012 20:20:14 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170751: [MAINTAINER] graphics/viewnior: Makefile changed, OptionsNG for 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: Sat, 18 Aug 2012 18:30:12 -0000 >Number: 170751 >Category: ports >Synopsis: [MAINTAINER] graphics/viewnior: Makefile changed, OptionsNG for NLS >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 Aug 18 18:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RC1 amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RC1 FreeBSD 9.0-RC1 #0: Tue Oct 18 18:51:43 UTC 2011 >Description: Makefile changed: >From bsd.gnome.mk glib20 and gtk20 use intltool and pkgconfig -USE_GNOME=<--->glib20 gtk20 intltool pkgconfig +USE_GNOME=<--->glib20 gtk20 Deleted INSTALL why isn't needed after Installation. OptionsNG New OptionsNG for NLS .if ${PORT_OPTIONS:MDOCS} Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- viewnior-1.3_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/graphics/viewnior/Makefile ./Makefile --- /usr/ports/graphics/viewnior/Makefile 2012-05-02 13:38:46.000000000 +0200 +++ ./Makefile 2012-08-18 20:04:04.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= viewnior PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://cloud.github.com/downloads/xsisqox/Viewnior/ @@ -21,29 +22,32 @@ GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf USE_GMAKE= yes -USE_GNOME= glib20 gtk20 intltool pkgconfig +USE_GNOME= glib20 gtk20 INSTALLS_ICONS= yes MAN1= viewnior.1 -PORTDOCS= AUTHORS ChangeLog INSTALL NEWS README TODO +PORTDOCS= AUTHORS ChangeLog NEWS README TODO -OPTIONS= NLS "Enable gettext support" on +OPTIONS_DEFINE= NLS +NLS_DESC= Native Language Support via gettext +OPTIONS_DEFAULT= NLS .include -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.else +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " .endif post-install: ${INSTALL_MAN} ${WRKSRC}/man/${MAN1} ${MAN1PREFIX}/man/man1 -# Documentations -.if !defined(NOPORTDOCS) + +# Documentation +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} . for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} --- viewnior-1.3_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 18:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DD82106566B for ; Sat, 18 Aug 2012 18:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1E3568FC0A for ; Sat, 18 Aug 2012 18: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 q7IIo7Z5086584 for ; Sat, 18 Aug 2012 18: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 q7IIo7TY086583; Sat, 18 Aug 2012 18:50:07 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 18:50:07 GMT Resent-Message-Id: <201208181850.q7IIo7TY086583@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, Olli Hauer Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29D17106566B for ; Sat, 18 Aug 2012 18:43:56 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0A3468FC14; Sat, 18 Aug 2012 18:43: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 q7IIhtnv085869; Sat, 18 Aug 2012 18:43:55 GMT (envelope-from ohauer@freefall.freebsd.org) Received: (from ohauer@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IIhtV9085868; Sat, 18 Aug 2012 18:43:55 GMT (envelope-from ohauer) Message-Id: <201208181843.q7IIhtV9085868@freefall.freebsd.org> Date: Sat, 18 Aug 2012 18:43:55 GMT From: Olli Hauer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ozawa@ongs.co.jp Subject: ports/170752: X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Olli Hauer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2012 18:50:08 -0000 >Number: 170752 >Category: ports >Synopsis: >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 Aug 18 18:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Olli Hauer >Release: >Organization: >Environment: >Description: Use the new option framework, additional www/apache13 is gone since a while, so remove apache13 support from the port. >How-To-Repeat: >Fix: --- neko.diff begins here --- Index: pkg-plist =================================================================== --- pkg-plist (revision 302724) +++ pkg-plist (working copy) @@ -6,8 +6,6 @@ lib/libneko.so lib/neko/std.ndll lib/neko/zlib.ndll -%%APACHE13%%lib/neko/mod_neko.ndll -%%APACHE13%%lib/neko/mod_tora.ndll %%APACHE22%%lib/neko/mod_neko2.ndll %%APACHE22%%lib/neko/mod_tora2.ndll %%MYSQL4%%lib/neko/mysql.ndll Index: Makefile =================================================================== --- Makefile (revision 302724) +++ Makefile (working copy) @@ -21,37 +21,24 @@ USE_AUTOTOOLS= libtool:env USE_GMAKE= yes -OPTIONS= APACHE13 "Build with mod_neko for Apache 1.3.x" off \ - APACHE22 "Build with mod_neko for Apache 2.2.x" off \ - MYSQL4 "Build with MySQL 4.x library" off \ - MYSQL5 "Build with MySQL 5.x library" off \ - SQLITE3 "Build with Sqlite 3.x SQL library" off \ - PCRE "Build with PCRE library" on \ - GTK2 "Build with Gtk 2.x UI library" on +NO_OPTIONS_SORT=yes +OPTIONS_DEFINE= APACHE PCRE GTK2 SQLITE MYSQL +OPTIONS_SINGLE= MYSQL +OPTIONS_SINGLE_MYSQL=MYSQL5 MYSQL4 +OPTIONS_DEFAULT=PCRE GTK2 -.include +MYSQL_DESC= Choose from MySQL backends +MYSQL4_DESC= MySQL 4.x backend +MYSQL5_DESC= MySQL 5.x backend +.include + CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -LIBKEYNAME= - -.if defined(WITH_APACHE13) && defined(WITH_APACHE22) -IGNORE= option APACHE13 and APACHE22 conflict -.endif - -.if defined(WITH_APACHE13) -BUILD_DEPENDS+= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS+= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -CFLAGS+= -I${LOCALBASE}/include/apache -PLIST_SUB+= APACHE13= -.else LIBKEYNAME+= mod_neko mod_tora -PLIST_SUB+= APACHE13="@comment " -.endif -.if defined(WITH_APACHE22) -BUILD_DEPENDS+= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache22 -RUN_DEPENDS+= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache22 +.if ${PORT_OPTIONS:MAPACHE} +USE_APACHE= 22 CFLAGS+= -I${LOCALBASE}/include/apache22 PLIST_SUB+= APACHE22= .else @@ -59,11 +46,7 @@ PLIST_SUB+= APACHE22="@comment " .endif -.if defined(WITH_MYSQL4) && defined(WITH_MYSQL5) -IGNORE= option MYSQL4 and MYSQL5 conflict -.endif - -.if defined(WITH_MYSQL4) +.if ${PORT_OPTIONS:MMYSQL4} BUILD_DEPENDS+= mysql:${PORTSDIR}/databases/mysql41-client RUN_DEPENDS+= mysql:${PORTSDIR}/databases/mysql41-client CFLAGS+= -I${LOCALBASE}/include/mysql @@ -73,7 +56,7 @@ PLIST_SUB+= MYSQL4="@comment " .endif -.if defined(WITH_MYSQL5) +.if ${PORT_OPTIONS:MMYSQL5} BUILD_DEPENDS+= mysql:${PORTSDIR}/databases/mysql51-client RUN_DEPENDS+= mysql:${PORTSDIR}/databases/mysql51-client CFLAGS+= -I${LOCALBASE}/include/mysql @@ -83,7 +66,7 @@ PLIST_SUB+= MYSQL5="@comment " .endif -.if defined(WITH_SQLITE3) +.if ${PORT_OPTIONS:MSQLITE} BUILD_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 RUN_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 PLIST_SUB+= SQLITE3= @@ -92,7 +75,7 @@ PLIST_SUB+= SQLITE3="@comment " .endif -.if defined(WITH_PCRE) +.if ${PORT_OPTIONS:MPCRE} BUILD_DEPENDS+= ${LOCALBASE}/include/pcre.h:${PORTSDIR}/devel/pcre RUN_DEPENDS+= ${LOCALBASE}/include/pcre.h:${PORTSDIR}/devel/pcre PLIST_SUB+= PCRE= @@ -101,7 +84,7 @@ PLIST_SUB+= PCRE="@comment " .endif -.if defined(WITH_GTK2) +.if ${PORT_OPTIONS:MGTK2} BUILD_DEPENDS+= ${LOCALBASE}/include/gtk-2.0:${PORTSDIR}/x11-toolkits/gtk20 RUN_DEPENDS+= ${LOCALBASE}/include/gtk-2.0:${PORTSDIR}/x11-toolkits/gtk20 PLIST_SUB+= GTK2= @@ -140,24 +123,19 @@ ${WRKSRC}/src/tools/install.neko .endfor .endif -.if defined(WITH_APACHE13) +.if ${PORT_OPTIONS:MAPACHE} @${REINPLACE_CMD} \ - -e 's,"/usr/include/apache-1.3","${PREFIX}/include/apache",' \ - ${WRKSRC}/src/tools/install.neko -.endif -.if defined(WITH_APACHE22) - @${REINPLACE_CMD} \ -e 's,"/usr/include/apache2","${PREFIX}/include/apache22",' \ ${WRKSRC}/src/tools/install.neko .endif -.if defined(WITH_GTK2) +.if ${PORT_OPTIONS:MGTK2} @${REINPLACE_CMD} \ -e 's,"/usr/include/gtk-2.0","${PREFIX}/include/gtk-2.0",' \ ${WRKSRC}/src/tools/install.neko @${REINPLACE_CMD} \ -e 's,NEKO_LINUX,NEKO_BSD,' ${WRKSRC}/libs/ui/ui.c .endif -.if ${ARCH} == "amd64" && defined(WITH_MYSQL4) +.if ${ARCH} == "amd64" && ${PORT_OPTIONS:MMYSQL4} @${ECHO_CMD} @${ECHO_CMD} "=======================================================" @${ECHO_CMD} @@ -169,7 +147,7 @@ .endif post-install: -.if defined(WITH_APACHE13) || defined(WITH_APACHE22) +.if ${PORT_OPTIONS:MAPACHE} @${ECHO_CMD} @${ECHO_CMD} "=======================================================" @${ECHO_CMD} @@ -181,4 +159,4 @@ @${ECHO_CMD} .endif -.include +.include --- neko.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 18:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10FC51065672 for ; Sat, 18 Aug 2012 18: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 BE6A58FC14 for ; Sat, 18 Aug 2012 18: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 q7IIo8lC086599 for ; Sat, 18 Aug 2012 18: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 q7IIo8JH086598; Sat, 18 Aug 2012 18:50:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 18:50:08 GMT Resent-Message-Id: <201208181850.q7IIo8JH086598@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, Waitman Gobble Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD006106564A for ; Sat, 18 Aug 2012 18:49: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 A88228FC17 for ; Sat, 18 Aug 2012 18:49:45 +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 q7IInjHB078717 for ; Sat, 18 Aug 2012 18:49:45 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7IInjGr078716; Sat, 18 Aug 2012 18:49:45 GMT (envelope-from nobody) Message-Id: <201208181849.q7IInjGr078716@red.freebsd.org> Date: Sat, 18 Aug 2012 18:49:45 GMT From: Waitman Gobble To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170754: lang/python27 with pth, and lang/gobject-introspection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 18:50:09 -0000 >Number: 170754 >Category: ports >Synopsis: lang/python27 with pth, and lang/gobject-introspection >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 Aug 18 18:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: FreeBSD 10.0-CURRENT amd64 >Organization: Waitman Gobble >Environment: FreeBSD hunny.waitman.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 11 13:25:18 PDT 2012 root@hunny.waitman.net:/usr/obj/usr/src/sys/KEYSHIA amd64 >Description: python27-2.7.3_3 from current ports When trying to build gobject-introspection from ports/devel, it fails with "no suitable Python headers found" >How-To-Repeat: cd /usr/ports/lang/python27 make install (with pth option selected) cd /usr/ports/devel/gobject-introspection make install >Fix: the gobject-introspection configure script performs a test similar to the following: test.cpp: #include gcc -I/usr/local/include/python2.7 test.cpp This fails with: # gcc -I/usr/local/include/python2.7 testpy.cppIn file included from testpy.cpp:2: /usr/local/include/python2.7/Python.h:166:17: error: pth.h: No such file or directory Python.h has #include but pth.h is in /usr/local/include/pth/pth.h Not sure if it's python, pth or gobject-introspection causing the problem, but here are some work-arounds to consider 1) Add -I/usr/local/include/pth to CPPFLAGS in gobject-introspection Makefile 2) Patch gobject-instrospection, add -I/usr/local/include/pth to CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES" line in configure 3) Patch Python.h in python27 port, change #include to #include Thank you >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 18:50:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C78C21065673; Sat, 18 Aug 2012 18: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 9A64B8FC1A; Sat, 18 Aug 2012 18: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 q7IIoNjr086757; Sat, 18 Aug 2012 18: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 q7IIoNXs086753; Sat, 18 Aug 2012 18:50:23 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 18:50:23 GMT Message-Id: <201208181850.q7IIoNXs086753@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170754: lang/python27 with pth, and lang/gobject-introspection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 18:50:23 -0000 Synopsis: lang/python27 with pth, and lang/gobject-introspection Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 18 18:50:23 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170754 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 19:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC1EE106566C for ; Sat, 18 Aug 2012 19: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 BABA98FC15 for ; Sat, 18 Aug 2012 19: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 q7IJU85N090029 for ; Sat, 18 Aug 2012 19: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 q7IJU8cl090025; Sat, 18 Aug 2012 19:30:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 19:30:08 GMT Resent-Message-Id: <201208181930.q7IJU8cl090025@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9280B1065673 for ; Sat, 18 Aug 2012 19:24:00 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 02C3D8FC0C for ; Sat, 18 Aug 2012 19:23:59 +0000 (UTC) Received: (qmail invoked by alias); 18 Aug 2012 19:23:57 -0000 Received: from cpe.r57.logikom.net (EHLO something.email.com) [213.244.239.57] by mail.gmx.net (mp016) with SMTP; 18 Aug 2012 21:23:57 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 18 Aug 2012 21:23:57 +0200 Message-Id: <20120818192400.9280B1065673@hub.freebsd.org> Date: Sat, 18 Aug 2012 21:23:57 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jgh@FreeBSD.org Subject: ports/170755: [MAINTAINER] misc/xdg-menu: Makefile changed, OptionsNG, deleted script in Makefile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 19:30:09 -0000 >Number: 170755 >Category: ports >Synopsis: [MAINTAINER] misc/xdg-menu: Makefile changed, OptionsNG, deleted script in Makefile >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 Aug 18 19:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed: Changed all to ${PORTNAME} OptionsNG .if !${PORT_OPTIONS:MROX} Added file(s): - files/xdg-menu.in Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- xdg-menu-1.5_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/misc/xdg-menu/Makefile ./Makefile --- /usr/ports/misc/xdg-menu/Makefile 2012-05-18 06:40:24.000000000 +0200 +++ ./Makefile 2012-08-18 21:16:30.000000000 +0200 @@ -5,12 +5,12 @@ # $FreeBSD: ports/misc/xdg-menu/Makefile,v 1.1 2012/05/18 04:40:24 miwi Exp $ # -PORTNAME= menu +PORTNAME= xdg-menu PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= misc -MASTER_SITES= SF/xdg-menu/xdg-menu/${PORTVERSION} -PKGNAMEPREFIX= xdg- -DISTNAME= XDG-Menu-${PORTVERSION} +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} +DISTNAME= XDG-Menu-${DISTVERSION} EXTRACT_SUFX= .tgz MAINTAINER= nemysis@gmx.ch @@ -30,11 +30,14 @@ ALL_TARGET= NO_BUILD= yes -OPTIONS= ROX "Enable ROX panel applet support" no +OPTIONS_DEFINE= ROX +ROX_DESC= Enable ROX panel applet support + +SUB_FILES= ${PORTNAME} .include -.if defined(WITHOUT_ROX) +.if !${PORT_OPTIONS:MROX} post-patch: @${REINPLACE_CMD} -i '' '/if not rox.confirm/,/sys.exit/s/^/#/' ${WRKSRC}/AppRun @${ECHO_MSG} @@ -45,9 +48,8 @@ do-install: # Scripts - @${PRINTF} "#!/bin/sh\n\ncd ${DATADIR} &&\ - ./AppRun\n" > ${WRKDIR}/xdg-menu.sh - @${INSTALL_SCRIPT} ${WRKDIR}/xdg-menu.sh ${PREFIX}/bin/xdg-menu + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin + # Executable and Data ${MKDIR} ${DATADIR} @cd ${WRKSRC} && ${FIND} . | ${CPIO} -pdmu ${DATADIR} diff -ruN --exclude=CVS /usr/ports/misc/xdg-menu/files/xdg-menu.in ./files/xdg-menu.in --- /usr/ports/misc/xdg-menu/files/xdg-menu.in 1970-01-01 01:00:00.000000000 +0100 +++ ./files/xdg-menu.in 2012-08-18 20:26:48.000000000 +0200 @@ -0,0 +1,7 @@ +#!/bin/sh +# +# $FreeBSD$ + +echo "XDG-Menu: Starting up..." +cd "%%DATADIR%%" +./AppRun --- xdg-menu-1.5_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 20:00:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 532B5106564A for ; Sat, 18 Aug 2012 20:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 143008FC0A for ; Sat, 18 Aug 2012 20: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 q7IK0LGG093503 for ; Sat, 18 Aug 2012 20: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 q7IK0L2Z093502; Sat, 18 Aug 2012 20:00:21 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 20:00:21 GMT Resent-Message-Id: <201208182000.q7IK0L2Z093502@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 Felder Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E50381065722 for ; Sat, 18 Aug 2012 19:57: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 99EA28FC14 for ; Sat, 18 Aug 2012 19:57: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 q7IJvmm0080991 for ; Sat, 18 Aug 2012 19:57:48 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7IJvmXK080990; Sat, 18 Aug 2012 19:57:48 GMT (envelope-from nobody) Message-Id: <201208181957.q7IJvmXK080990@red.freebsd.org> Date: Sat, 18 Aug 2012 19:57:48 GMT From: Mark Felder To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170756: sysutils/xen-tools: New Maintainer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 20:00:22 -0000 >Number: 170756 >Category: ports >Synopsis: sysutils/xen-tools: New Maintainer >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 Aug 18 20:00:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mark Felder >Release: >Organization: >Environment: >Description: This message was created automatically by mail delivery software. A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed: esarmiento@wayfair.com SMTP error from remote mail server after RCPT TO:: host mail.csnstores.com [209.202.142.4]: 550 5.1.1 : Recipient address rejected: User unknown in relay recipient table >How-To-Repeat: email the maintainer >Fix: I'll take maintainership >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 20:00:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 624E5106566B; Sat, 18 Aug 2012 20:00:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 358378FC0C; Sat, 18 Aug 2012 20:00: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 q7IK0WR6093658; Sat, 18 Aug 2012 20:00:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IK0Woc093654; Sat, 18 Aug 2012 20:00:32 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 20:00:32 GMT Message-Id: <201208182000.q7IK0Woc093654@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170756: sysutils/xen-tools: New Maintainer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 20:00:32 -0000 Synopsis: sysutils/xen-tools: New Maintainer Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 18 20:00:31 UTC 2012 Responsible-Changed-Why: swills@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170756 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 20:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4ED2F106564A for ; Sat, 18 Aug 2012 20: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 27B208FC12 for ; Sat, 18 Aug 2012 20: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 q7IKK80Z096606 for ; Sat, 18 Aug 2012 20: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 q7IKK7Yg096605; Sat, 18 Aug 2012 20:20:08 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 20:20:08 GMT Resent-Message-Id: <201208182020.q7IKK7Yg096605@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, Corey Smith Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29AC11065670 for ; Sat, 18 Aug 2012 20:13:28 +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 0A14C8FC0C for ; Sat, 18 Aug 2012 20:13:28 +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 q7IKDRle096252 for ; Sat, 18 Aug 2012 20:13:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7IKDREv096251; Sat, 18 Aug 2012 20:13:27 GMT (envelope-from nobody) Message-Id: <201208182013.q7IKDREv096251@red.freebsd.org> Date: Sat, 18 Aug 2012 20:13:27 GMT From: Corey Smith To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170757: [MAINTAINER UPDATE] net-mgmt/torrus: 2.01 to 2.04 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 20:20:08 -0000 >Number: 170757 >Category: ports >Synopsis: [MAINTAINER UPDATE] net-mgmt/torrus: 2.01 to 2.04 >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 Aug 18 20:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Corey Smith >Release: 8.3-RELEASE >Organization: >Environment: FreeBSD build1 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #0: Tue Jun 12 00:39:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Maintainer update to torrus 2.04 >How-To-Repeat: Patch attached >Fix: Patch attached Patch attached with submission follows: diff -urN net-mgmt/torrus.orig/Makefile net-mgmt/torrus/Makefile --- net-mgmt/torrus.orig/Makefile 2012-06-30 08:42:52.000000000 -0400 +++ net-mgmt/torrus/Makefile 2012-08-18 15:50:48.189326175 -0400 @@ -6,10 +6,9 @@ # PORTNAME= torrus -PORTVERSION= 2.01 -PORTREVISION= 2 +PORTVERSION= 2.04 CATEGORIES= net-mgmt -MASTER_SITES= SF +MASTER_SITES= SF/torrus/torrus/ MAINTAINER= corsmith@gmail.com COMMENT= The Data Series Processing Framework - think mrtg with xml configs diff -urN net-mgmt/torrus.orig/distinfo net-mgmt/torrus/distinfo --- net-mgmt/torrus.orig/distinfo 2011-09-07 05:07:16.000000000 -0400 +++ net-mgmt/torrus/distinfo 2012-08-18 15:51:04.677935165 -0400 @@ -1,2 +1,2 @@ -SHA256 (torrus-2.01.tar.gz) = a8352ff94bce98996df1cf1a8e61185e6dd14e107659767093c96c21075341fb -SIZE (torrus-2.01.tar.gz) = 600664 +SHA256 (torrus-2.04.tar.gz) = 9cd5bf0e88720bd5275c82fcffeabf7cf2033311b8f7f9114cc1f6428843d4ee +SIZE (torrus-2.04.tar.gz) = 628115 diff -urN net-mgmt/torrus.orig/pkg-plist net-mgmt/torrus/pkg-plist --- net-mgmt/torrus.orig/pkg-plist 2011-09-07 05:07:16.000000000 -0400 +++ net-mgmt/torrus/pkg-plist 2012-08-18 15:55:13.987006211 -0400 @@ -128,6 +128,7 @@ %%DATADIR%%/xmlconfig/generic/rfc2670.docsis-if.xml %%DATADIR%%/xmlconfig/generic/rfc2790.host-resources.xml %%DATADIR%%/xmlconfig/generic/rfc2863.if-mib.xml +%%DATADIR%%/xmlconfig/generic/rfc4319_hdsl2_shdsl_line.xml %%DATADIR%%/xmlconfig/old/cisco-mac-accounting-example.xml %%DATADIR%%/xmlconfig/old/cisco.generic.old-0.1.4.xml %%DATADIR%%/xmlconfig/old/cisco.ios.mac-accounting-0.1.8.xml @@ -140,6 +141,7 @@ %%DATADIR%%/xmlconfig/snmp-defs.xml %%DATADIR%%/xmlconfig/vendor/alteon.xml %%DATADIR%%/xmlconfig/vendor/alu-timetra.xml +%%DATADIR%%/xmlconfig/vendor/apc.powernet.xml %%DATADIR%%/xmlconfig/vendor/apc.ups.xml %%DATADIR%%/xmlconfig/vendor/apple.ae.xml %%DATADIR%%/xmlconfig/vendor/arbor_e.xml @@ -156,6 +158,7 @@ %%DATADIR%%/xmlconfig/vendor/cisco.vdsl-line.xml %%DATADIR%%/xmlconfig/vendor/cisco.wlc.xml %%DATADIR%%/xmlconfig/vendor/compaq.cim.xml +%%DATADIR%%/xmlconfig/vendor/comtechefdata.xml %%DATADIR%%/xmlconfig/vendor/empire.systemedge.ntregperf.xml %%DATADIR%%/xmlconfig/vendor/empire.systemedge.xml %%DATADIR%%/xmlconfig/vendor/f5.bigip.xml @@ -164,6 +167,7 @@ %%DATADIR%%/xmlconfig/vendor/jacarta.xml %%DATADIR%%/xmlconfig/vendor/junos.xml %%DATADIR%%/xmlconfig/vendor/hp.hpux.xml +%%DATADIR%%/xmlconfig/vendor/hp.procurve.xml %%DATADIR%%/xmlconfig/vendor/liebert.xml %%DATADIR%%/xmlconfig/vendor/microsoft.windows.xml %%DATADIR%%/xmlconfig/vendor/motorola.bsr.xml @@ -182,6 +186,7 @@ %%SITE_PERL%%/Torrus/ApacheHandler.pm %%SITE_PERL%%/Torrus/CGI.pm %%SITE_PERL%%/Torrus/Collector.pm +%%SITE_PERL%%/Torrus/CollectorScheduler.pm %%SITE_PERL%%/Torrus/Collector/CDef.pm %%SITE_PERL%%/Torrus/Collector/CDef_Params.pm %%SITE_PERL%%/Torrus/Collector/ExtDBI.pm @@ -199,6 +204,7 @@ %%SITE_PERL%%/Torrus/DevDiscover.pm %%SITE_PERL%%/Torrus/DevDiscover/Actelis.pm %%SITE_PERL%%/Torrus/DevDiscover/ALU_Timetra.pm +%%SITE_PERL%%/Torrus/DevDiscover/APC_PowerNet.pm %%SITE_PERL%%/Torrus/DevDiscover/ATMEL.pm %%SITE_PERL%%/Torrus/DevDiscover/AlliedTelesyn_PBC18.pm %%SITE_PERL%%/Torrus/DevDiscover/Alteon.pm @@ -221,6 +227,8 @@ %%SITE_PERL%%/Torrus/DevDiscover/CiscoVDSL.pm %%SITE_PERL%%/Torrus/DevDiscover/CiscoWLC.pm %%SITE_PERL%%/Torrus/DevDiscover/CompaqCIM.pm +%%SITE_PERL%%/Torrus/DevDiscover/ComtechEFData.pm +%%SITE_PERL%%/Torrus/DevDiscover/DevDetails.pm %%SITE_PERL%%/Torrus/DevDiscover/EmpireSystemedge.pm %%SITE_PERL%%/Torrus/DevDiscover/F5BigIp.pm %%SITE_PERL%%/Torrus/DevDiscover/Foundry.pm @@ -246,12 +254,14 @@ %%SITE_PERL%%/Torrus/DevDiscover/RFC2737_ENTITY_MIB.pm %%SITE_PERL%%/Torrus/DevDiscover/RFC2790_HOST_RESOURCES.pm %%SITE_PERL%%/Torrus/DevDiscover/RFC2863_IF_MIB.pm +%%SITE_PERL%%/Torrus/DevDiscover/RFC4319_HDSL2_SHDSL_LINE_MIB.pm %%SITE_PERL%%/Torrus/DevDiscover/Symmetricom.pm %%SITE_PERL%%/Torrus/DevDiscover/Thomson_xDSL.pm %%SITE_PERL%%/Torrus/DevDiscover/UcdSnmp.pm %%SITE_PERL%%/Torrus/DevDiscover/Xylan.pm %%SITE_PERL%%/Torrus/Log.pm %%SITE_PERL%%/Torrus/Monitor.pm +%%SITE_PERL%%/Torrus/MonitorScheduler.pm %%SITE_PERL%%/Torrus/RPN.pm %%SITE_PERL%%/Torrus/Renderer.pm %%SITE_PERL%%/Torrus/Renderer/AdmInfo.pm @@ -266,9 +276,11 @@ %%SITE_PERL%%/Torrus/Search.pm %%SITE_PERL%%/Torrus/ServiceID.pm %%SITE_PERL%%/Torrus/Scheduler.pm +%%SITE_PERL%%/Torrus/Scheduler/PeriodicTask.pm %%SITE_PERL%%/Torrus/SchedulerInfo.pm %%SITE_PERL%%/Torrus/SiteConfig.pm %%SITE_PERL%%/Torrus/SNMP_Failures.pm +%%SITE_PERL%%/Torrus/SQL/ReportFields.pm %%SITE_PERL%%/Torrus/SQL/Reports.pm %%SITE_PERL%%/Torrus/SQL/SrvExport.pm %%SITE_PERL%%/Torrus/SQL.pm @@ -319,6 +331,7 @@ @dirrmtry etc/torrus/conf @dirrmtry etc/torrus @dirrm %%SITE_PERL%%/Torrus/SQL +@dirrm %%SITE_PERL%%/Torrus/Scheduler @dirrm %%SITE_PERL%%/Torrus/ReportOutput @dirrm %%SITE_PERL%%/Torrus/ReportGenerator @dirrm %%SITE_PERL%%/Torrus/Renderer >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 20:24:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA50E106566C; Sat, 18 Aug 2012 20:24: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 7CC0A8FC17; Sat, 18 Aug 2012 20:24: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 q7IKOYJr096879; Sat, 18 Aug 2012 20:24:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IKOYw1096875; Sat, 18 Aug 2012 20:24:34 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 20:24:34 GMT Message-Id: <201208182024.q7IKOYw1096875@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ohauer@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170752: lang/neko: use new option framework, remove apache13 support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2012 20:24:34 -0000 Synopsis: lang/neko: use new option framework, remove apache13 support Responsible-Changed-From-To: freebsd-ports-bugs->ohauer Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 18 20:24:34 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170752 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 20:30:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BDBF51065670 for ; Sat, 18 Aug 2012 20:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 91AF88FC15 for ; Sat, 18 Aug 2012 20:30: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 q7IKU7UY097114 for ; Sat, 18 Aug 2012 20:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IKU7pG097113; Sat, 18 Aug 2012 20:30:07 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 20:30:07 GMT Resent-Message-Id: <201208182030.q7IKU7pG097113@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 06EA3106564A for ; Sat, 18 Aug 2012 20:23: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 E69778FC08 for ; Sat, 18 Aug 2012 20:23: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 q7IKN0Sm011000 for ; Sat, 18 Aug 2012 20:23:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7IKN0lH010999; Sat, 18 Aug 2012 20:23:00 GMT (envelope-from nobody) Message-Id: <201208182023.q7IKN0lH010999@red.freebsd.org> Date: Sat, 18 Aug 2012 20:23:00 GMT From: Heath Nielson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170758: [PATCH] graphics/hugin 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: Sat, 18 Aug 2012 20:30:07 -0000 >Number: 170758 >Category: ports >Synopsis: [PATCH] graphics/hugin doesn't compile with clang >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 Aug 18 20:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Heath Nielson >Release: FreeBSD 9.0-STABLE >Organization: >Environment: FreeBSD twix.bar.net 9.0-STABLE FreeBSD 9.0-STABLE #16: Sat Jun 30 16:10:00 MDT 2012 heath@twix.bar.net:/usr/obj/usr/src/sys/TWIX amd64 >Description: Building the hugin project with clang results in the following error: cd /usr/ports/graphics/hugin/work/hugin-2011.4.0/src/tools && /usr/bin/clang++ -O2 -pipe -fno-strict-aliasing -O2 -pipe -fno-strict-aliasing -I/usr/ports/graphics/hugin/work/hugin-2011.4.0/src -I/usr/ports/graphics/hugin/work/hugin-2011.4.0/src/hugin_base -I/usr/ports/graphics/hugin/work/hugin-2011.4.0/src/foreign -I/usr/ports/graphics/hugin/work/hugin-2011.4.0/src/foreign/vigra -I/usr/ports/graphics/hugin/work/hugin-2011.4.0/src/celeste -I/usr/local/include -I/usr/local/include/OpenEXR -o CMakeFiles/hugin_hdrmerge.dir/hugin_hdrmerge.cpp.o -c /usr/ports/graphics/hugin/work/hugin-2011.4.0/src/tools/hugin_hdrmerge.cpp In file included from /usr/ports/graphics/hugin/work/hugin-2011.4.0/src/tools/hugin_hdrmerge.cpp:56: In file included from /usr/ports/graphics/hugin/work/hugin-2011.4.0/src/tools/../deghosting/khan.h:56: /usr/ports/graphics/hugin/work/hugin-2011.4.0/src/foreign/vigra/vigra/cachedfileimage.hxx:558:22: error: elaborated type refers to a typedef friend class Notify::self_type; ^ >How-To-Repeat: cd /usr/ports/graphics/hugin make install >Fix: Patch is attached Patch attached with submission follows: --- src/foreign/vigra/vigra/cachedfileimage.hxx.orig 2012-08-18 09:22:30.000000000 -0600 +++ src/foreign/vigra/vigra/cachedfileimage.hxx 2012-08-18 09:33:40.000000000 -0600 @@ -555,7 +555,7 @@ class NotifyingDirectionSelector { #ifdef __GNUC__ -friend class Notify::self_type; +friend class Notify::CachedFileImageIteratorBase; #else friend typename Notify::self_type; #endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 20:30:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 548451065704; Sat, 18 Aug 2012 20: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 2822F8FC18; Sat, 18 Aug 2012 20: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 q7IKUPG9098113; Sat, 18 Aug 2012 20: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 q7IKUPhR098107; Sat, 18 Aug 2012 20:30:25 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 20:30:25 GMT Message-Id: <201208182030.q7IKUPhR098107@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vd@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170758: [PATCH] graphics/hugin 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: Sat, 18 Aug 2012 20:30:25 -0000 Synopsis: [PATCH] graphics/hugin doesn't compile with clang Responsible-Changed-From-To: freebsd-ports-bugs->vd Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 18 20:30:24 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170758 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 21:04:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63E011065780; Sat, 18 Aug 2012 21:04:28 +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 3768D8FC0C; Sat, 18 Aug 2012 21:04: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 q7IL4Rug003052; Sat, 18 Aug 2012 21:04:27 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IL4RQh003048; Sat, 18 Aug 2012 21:04:27 GMT (envelope-from culot) Date: Sat, 18 Aug 2012 21:04:27 GMT Message-Id: <201208182104.q7IL4RQh003048@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/170757: [MAINTAINER UPDATE] net-mgmt/torrus: 2.01 to 2.04 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 21:04:28 -0000 Synopsis: [MAINTAINER UPDATE] net-mgmt/torrus: 2.01 to 2.04 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Sat Aug 18 21:04:27 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170757 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 21:07:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAA6C106566B; Sat, 18 Aug 2012 21:07:07 +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 8E6BA8FC18; Sat, 18 Aug 2012 21:07: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 q7IL77gC003331; Sat, 18 Aug 2012 21:07:07 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7IL77Vw003327; Sat, 18 Aug 2012 21:07:07 GMT (envelope-from scheidell) Date: Sat, 18 Aug 2012 21:07:07 GMT Message-Id: <201208182107.q7IL77Vw003327@freefall.freebsd.org> To: scheidell@FreeBSD.org, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/170366: lang/libobjc2: update to 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2012 21:07:07 -0000 Synopsis: lang/libobjc2: update to 1.6.1 Responsible-Changed-From-To: scheidell->freebsd-ports-bugs Responsible-Changed-By: scheidell Responsible-Changed-When: Sat Aug 18 21:07:07 UTC 2012 Responsible-Changed-Why: Back to the pool. Submitter needs to send an attachment, not an inline patch. inline patches 'wash out' tabs. http://www.freebsd.org/cgi/query-pr.cgi?pr=170366 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 21:15:01 2012 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 06A321065670; Sat, 18 Aug 2012 21:15:01 +0000 (UTC) (envelope-from r.neese@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9C1908FC0A; Sat, 18 Aug 2012 21:15:00 +0000 (UTC) Received: by yhfs35 with SMTP id s35so5674248yhf.13 for ; Sat, 18 Aug 2012 14:14:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=DjzbpxOMlxcWWHyVFVbQZ4pZeXOuG1sYJylLCRjOOHg=; b=emUMmiC1pkHJ065otuDD3quy4Y13fATQkiK9NfNHtVB4HAZJbIFLDYp0Amr4ksQ9P2 pvDvpsXmVt++aiiJyPNKa2bSDaXYxY1l90OC0Q6DtPEzenFsBkvD4mGbwYL2dnYym+f5 Q9DUOIxsGWWqmqIHG8jn2FLXAhyMmQnJXGWLcTwjtniMFsb9CHeLE2RUaf7efhetT+QK Ex1nnRImGG1DjIQVISY//+ZwjGCpTlR/mgdyVxOtISz1LKZ4jyX3L2X5D5X2j0M2Y95K 5CCjzITk2DVr2uBFjXmMpO/kjHDOI+NQwFs4mCfDaGJAK27bF6t3k/szH8ovar1arUXL c3jg== Received: by 10.101.63.11 with SMTP id q11mr4528560ank.34.1345324492755; Sat, 18 Aug 2012 14:14:52 -0700 (PDT) Received: from [127.0.0.1] ([97.100.95.108]) by mx.google.com with ESMTPS id r25sm20864545yhi.13.2012.08.18.14.14.51 (version=SSLv3 cipher=OTHER); Sat, 18 Aug 2012 14:14:52 -0700 (PDT) Message-ID: <503005C8.4040402@gmail.com> Date: Sat, 18 Aug 2012 17:14:48 -0400 From: Richard E Neese User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <201208162310.q7GNA8qQ017769@freefall.freebsd.org> In-Reply-To: <201208162310.q7GNA8qQ017769@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: ports/170683: update of misc/freeswitch-scripts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 21:15:01 -0000 On 8/16/2012 7:10 PM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/170683'. > 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=170683 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: update of misc/freeswitch-scripts >> Arrival-Date: Thu Aug 16 23:10:08 UTC 2012 this is for misc/freeswitch-scripts-devel From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 21:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2BA9106566C for ; Sat, 18 Aug 2012 21: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 83C1C8FC08 for ; Sat, 18 Aug 2012 21: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 q7ILeAKJ008745 for ; Sat, 18 Aug 2012 21: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 q7ILeAJN008744; Sat, 18 Aug 2012 21:40:10 GMT (envelope-from gnats) Date: Sat, 18 Aug 2012 21:40:10 GMT Message-Id: <201208182140.q7ILeAJN008744@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/170662 devel/pymunk: A easy-to-use pythonic 2d physics library built on top of Chipmunk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2012 21:40:10 -0000 The following reply was made to PR ports/170662; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/170662 devel/pymunk: A easy-to-use pythonic 2d physics library built on top of Chipmunk Date: Sat, 18 Aug 2012 23:31:43 +0200 --MP_/WcNfEpePWKrxcTtZYDqq05b Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline --MP_/WcNfEpePWKrxcTtZYDqq05b Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=pymunk.diff diff -ruN pymunk.orig/Makefile pymunk/Makefile --- pymunk.orig/Makefile 2012-08-16 13:24:49.000000000 +0200 +++ pymunk/Makefile 2012-08-18 21:50:22.000000000 +0200 @@ -12,7 +12,7 @@ DIST_SUBDIR= python MAINTAINER= nemysis@gmx.ch -COMMENT= A easy-to-use pythonic 2d physics library built on top of Chipmunk +COMMENT= A easy-to-use pythonic 2d physics library built on top of Chipmunk-Physics LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE.txt @@ -20,9 +20,6 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game \ ${PYTHON_SITELIBDIR}/pyglet/__init__.py:${PORTSDIR}/graphics/py-pyglet-devel -OPTIONS_DEFINE= DATA -OPTIONS_DEFAULT= DATA - USE_ZIP= yes USE_GL= yes USE_PYTHON= yes @@ -36,9 +33,9 @@ post-install: #Data -.if ${PORT_OPTIONS:MDATA} +.if !defined(NOPORTDATA) ${MKDIR} ${DATADIR} -. for d in chipmunk_src pymunk tests tools +. for d in pymunk tests tools @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${DATADIR}) . endfor .endif diff -ruN pymunk.orig/pkg-descr pymunk/pkg-descr --- pymunk.orig/pkg-descr 2012-08-13 18:06:15.000000000 +0200 +++ pymunk/pkg-descr 2012-08-16 13:25:35.000000000 +0200 @@ -1,5 +1,5 @@ pymunk vision is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python. -It is built on top of the very nice 2d physics library Chipmunk +It is built on top of the very nice 2d physics library Chipmunk-Physics. WWW: https://code.google.com/p/pymunk/ --MP_/WcNfEpePWKrxcTtZYDqq05b-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 23:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96C45106566C for ; Sat, 18 Aug 2012 23:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6F8FE8FC1C for ; Sat, 18 Aug 2012 23:30: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 q7INU9Mf019703 for ; Sat, 18 Aug 2012 23:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7INU9T7019702; Sat, 18 Aug 2012 23:30:09 GMT (envelope-from gnats) Resent-Date: Sat, 18 Aug 2012 23:30:09 GMT Resent-Message-Id: <201208182330.q7INU9T7019702@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, Kazuo Dohzono Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 901D0106566C for ; Sat, 18 Aug 2012 23:28:19 +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 7A7DC8FC0A for ; Sat, 18 Aug 2012 23:28:19 +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 q7INSJ2w046256 for ; Sat, 18 Aug 2012 23:28:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7INSIdA046255; Sat, 18 Aug 2012 23:28:18 GMT (envelope-from nobody) Message-Id: <201208182328.q7INSIdA046255@red.freebsd.org> Date: Sat, 18 Aug 2012 23:28:18 GMT From: Kazuo Dohzono To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170760: textproc/hunspell: fails to detect /usr/local/include/libintl.h X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 23:30:09 -0000 >Number: 170760 >Category: ports >Synopsis: textproc/hunspell: fails to detect /usr/local/include/libintl.h >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 Aug 18 23:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kazuo Dohzono >Release: 8.3-RELEASE-p4 >Organization: >Environment: FreeBSD dohzono 8.3-RELEASE-p4 FreeBSD 8.3-RELEASE-p4 #0: Wed Aug 8 01:39:30 JST 2012 dohzono@dohzono:/usr/local/tmp/obj/usr/src/sys/GENERIC i386 >Description: This is a log from www/libxul building-chain. > ===> Building for hunspell-1.3.2_1 > /bin/sh ./config.status --recheck > running CONFIG_SHELL=/bin/sh /bin/sh ./configure --enable-optimize=-O3 CXX=c++ CXXFLAGS=-O2 -pipe -fno-strict-aliasing LDFLAGS= -rpath=/usr/lib:/usr/local/lib CPPFLAGS= CC=cc CFLAGS=-O2 -pipe -fno-strict-aliasing CPP=cpp --no-create --no-recursion (snip) > checking libintl.h usability... no > checking libintl.h presence... no > checking for libintl.h... no (snip) > c++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/hunspell -I../../src/parsers -D_THREAD_SAFE -I/usr/local/include -O2 -pipe -fno-strict-aliasing -MT hunspell.o -MD -MP -MF .deps/hunspell.Tpo -c -o hunspell.o hunspell.cxx > hunspell.cxx:104:36: error: ../../intl/libintl.h: No such file or directory > hunspell.cxx: In function 'char* chenc(char*, const char*, const char*)': > hunspell.cxx:200: error: 'gettext' was not declared in this scope (snip) I have libintl.h in /usr/local/include, and configure fails to find it. > $ echo /var/db/pkg/gettext* > /var/db/pkg/gettext-0.18.1.1 > $ ls -l /usr/local/include/libintl.h > -r--r--r-- 1 root wheel 16647 Apr 22 13:05 /usr/local/include/libintl.h > $ > grep libintl config.log (snip) > ac_cv_header_libintl_h=no > gt_cv_func_gnugettext1_libintl=yes (snip) >How-To-Repeat: # cd /usr/ports/www/libxul # make CONFIGURE_ARGS=--enable-optimize=-O3 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 18 23:30:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5B6D106566C; Sat, 18 Aug 2012 23:30: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 B870E8FC0A; Sat, 18 Aug 2012 23: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 q7INULe4020424; Sat, 18 Aug 2012 23:30:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7INULHF020418; Sat, 18 Aug 2012 23:30:21 GMT (envelope-from edwin) Date: Sat, 18 Aug 2012 23:30:21 GMT Message-Id: <201208182330.q7INULHF020418@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, office@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/170760: textproc/hunspell: fails to detect /usr/local/include/libintl.h X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Aug 2012 23:30:22 -0000 Synopsis: textproc/hunspell: fails to detect /usr/local/include/libintl.h Responsible-Changed-From-To: freebsd-ports-bugs->office Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 18 23:30:20 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=170760