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