From owner-freebsd-python@FreeBSD.ORG Sun Oct 7 00:18:19 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 83AFE106564A; Sun, 7 Oct 2012 00:18:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 19EB28FC0C; Sun, 7 Oct 2012 00:18: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 q970IIFI030005; Sun, 7 Oct 2012 00:18:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q970IIZc029997; Sun, 7 Oct 2012 00:18:18 GMT (envelope-from linimon) Date: Sun, 7 Oct 2012 00:18:18 GMT Message-Id: <201210070018.q970IIZc029997@freefall.freebsd.org> To: akosiaris+ports@gmail.com, rm@FreeBSD.org, linimon@FreeBSD.org, freebsd-python@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/172409: devel/py-importlib: cleanup X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 00:18:19 -0000 Synopsis: devel/py-importlib: cleanup State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sun Oct 7 00:18:10 UTC 2012 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=172409 From owner-freebsd-python@FreeBSD.ORG Sun Oct 7 05:30:15 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A989106566B for ; Sun, 7 Oct 2012 05:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DFF8F8FC08 for ; Sun, 7 Oct 2012 05:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q975UEDI072309 for ; Sun, 7 Oct 2012 05:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q975UEGS072304; Sun, 7 Oct 2012 05:30:14 GMT (envelope-from gnats) Date: Sun, 7 Oct 2012 05:30:14 GMT Message-Id: <201210070530.q975UEGS072304@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/172409: commit references a PR X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 05:30:15 -0000 The following reply was made to PR ports/172409; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/172409: commit references a PR Date: Sun, 7 Oct 2012 05:22:14 +0000 (UTC) Author: rm Date: Sun Oct 7 05:21:59 2012 New Revision: 305431 URL: http://svn.freebsd.org/changeset/ports/305431 Log: importlib module is available in Python standard library since 2.7 (in 2.x branch) and 3.1 (in 3.x branch). Since we don't have 3.0 in ports, nor anything less 2.6, set USE_PYTHON to exactly 2.6 while here: - trim Makefile header - move pkg-plist contents to Makefile:PLIST_FILES - correct WWW in pkg-descr PR: 172409 Submitted by: rm (myself) Approved by: Alexandros Kosiaris (maintainer) Deleted: head/devel/py-importlib/pkg-plist Modified: head/devel/py-importlib/Makefile head/devel/py-importlib/pkg-descr Modified: head/devel/py-importlib/Makefile ============================================================================== --- head/devel/py-importlib/Makefile Sun Oct 7 04:49:08 2012 (r305430) +++ head/devel/py-importlib/Makefile Sun Oct 7 05:21:59 2012 (r305431) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-importlib -# Date created: 14 February 2012 -# Whom: Alexandros Kosiaris -# +# Created by: Alexandros Kosiaris # $FreeBSD$ -# PORTNAME= importlib PORTVERSION= 1.0.2 @@ -14,7 +10,12 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= akosiaris+ports@gmail.com COMMENT= Backport of importlib.import_module() from Python 2.7 -USE_PYTHON= 2.3-2.6 +USE_PYTHON= 2.6 USE_PYDISTUTILS= yes +PLIST_FILES= %%PYTHON_SITELIBDIR%%/importlib/__init__.py \ + %%PYTHON_SITELIBDIR%%/importlib/__init__.pyc \ + %%PYTHON_SITELIBDIR%%/importlib/__init__.pyo +PLIST_DIRS= %%PYTHON_SITELIBDIR%%/importlib + .include Modified: head/devel/py-importlib/pkg-descr ============================================================================== --- head/devel/py-importlib/pkg-descr Sun Oct 7 04:49:08 2012 (r305430) +++ head/devel/py-importlib/pkg-descr Sun Oct 7 05:21:59 2012 (r305431) @@ -7,4 +7,4 @@ trunk. For documentation, see the importlib docs for Python 2.7. -WWW: http://pypi.python.org/pypi/importlib/1.0.1 +WWW: http://pypi.python.org/pypi/importlib _______________________________________________ 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-python@FreeBSD.ORG Sun Oct 7 05:37:17 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A790106564A; Sun, 7 Oct 2012 05:37:17 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3D6008FC08; Sun, 7 Oct 2012 05:37:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q975bHjl074859; Sun, 7 Oct 2012 05:37:17 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q975bHeY074855; Sun, 7 Oct 2012 05:37:17 GMT (envelope-from rm) Date: Sun, 7 Oct 2012 05:37:17 GMT Message-Id: <201210070537.q975bHeY074855@freefall.freebsd.org> To: akosiaris+ports@gmail.com, rm@FreeBSD.org, rm@FreeBSD.org, freebsd-python@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/172409: devel/py-importlib: cleanup X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 05:37:17 -0000 Synopsis: devel/py-importlib: cleanup State-Changed-From-To: open->closed State-Changed-By: rm State-Changed-When: Sun Oct 7 05:37:16 UTC 2012 State-Changed-Why: Committed, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=172409 From owner-freebsd-python@FreeBSD.ORG Sun Oct 7 06:49:14 2012 Return-Path: Delivered-To: freebsd-python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E351A106564A; Sun, 7 Oct 2012 06:49:14 +0000 (UTC) (envelope-from gslin@colo-p.gslin.org) Received: from colo-p.gslin.org (gslin-1-pt.tunnel.tserv3.fmt2.ipv6.he.net [IPv6:2001:470:1f04:18a1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 747608FC08; Sun, 7 Oct 2012 06:49:14 +0000 (UTC) Received: by colo-p.gslin.org (Postfix, from userid 1000) id DA4377E82A; Sun, 7 Oct 2012 14:49:06 +0800 (CST) Date: Sun, 7 Oct 2012 14:49:06 +0800 From: Gea-Suan Lin To: rm@FreeBSD.org Message-ID: <20121007064906.GA69109@gslin.org> References: <201210061853.q96Irm6N092256@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201210061853.q96Irm6N092256@freefall.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-python@FreeBSD.org Subject: Re: ports/172410: databases/py-swift: missing net/py-netifaces run dependency X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 06:49:15 -0000 Thanks, please commit it. On Sat, Oct 06, 2012 at 06:53:48PM +0000, rm@FreeBSD.org wrote: > Synopsis: databases/py-swift: missing net/py-netifaces run dependency > > Responsible-Changed-From-To: freebsd-python->rm > Responsible-Changed-By: rm > Responsible-Changed-When: Sat Oct 6 18:53:44 UTC 2012 > Responsible-Changed-Why: > I will take it. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=172410 -- * Gea-Suan Lin (public key: Using https://keyserver.pgp.com/ to search) * If you cannot convince them, confuse them. -- Harry S Truman From owner-freebsd-python@FreeBSD.ORG Sun Oct 7 09:10:22 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C74581065698; Sun, 7 Oct 2012 09:10:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9AAB78FC0A; Sun, 7 Oct 2012 09:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q979AMSF010447; Sun, 7 Oct 2012 09:10:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q979AMDX010443; Sun, 7 Oct 2012 09:10:22 GMT (envelope-from edwin) Date: Sun, 7 Oct 2012 09:10:22 GMT Message-Id: <201210070910.q979AMDX010443@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172446: dns/py-easyzone: add missing dependency X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 09:10:22 -0000 Synopsis: dns/py-easyzone: add missing dependency Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 7 09:10:22 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172446 From owner-freebsd-python@FreeBSD.ORG Sun Oct 7 09:10:26 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D1FD106566B; Sun, 7 Oct 2012 09:10:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 40A8E8FC1B; Sun, 7 Oct 2012 09:10:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q979AQOd010522; Sun, 7 Oct 2012 09:10:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q979AQnY010518; Sun, 7 Oct 2012 09:10:26 GMT (envelope-from edwin) Date: Sun, 7 Oct 2012 09:10:26 GMT Message-Id: <201210070910.q979AQnY010518@freefall.freebsd.org> To: rm@FreeBSD.org, edwin@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172446: dns/py-easyzone: add missing dependency X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 09:10:26 -0000 Synopsis: dns/py-easyzone: add missing dependency State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Oct 7 09:10:25 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172446 From owner-freebsd-python@FreeBSD.ORG Sun Oct 7 09:20:10 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9437A106566C for ; Sun, 7 Oct 2012 09:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E4068FC17 for ; Sun, 7 Oct 2012 09:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q979KAjk012528 for ; Sun, 7 Oct 2012 09:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q979KAPw012527; Sun, 7 Oct 2012 09:20:10 GMT (envelope-from gnats) Date: Sun, 7 Oct 2012 09:20:10 GMT Message-Id: <201210070920.q979KAPw012527@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172446: dns/py-easyzone: add missing dependency X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 09:20:10 -0000 The following reply was made to PR ports/172446; it has been noted by GNATS. From: Edwin Groothuis To: Cc: bug-followup@FreeBSD.org Subject: Re: ports/172446: dns/py-easyzone: add missing dependency Date: Sun, 7 Oct 2012 09:10:24 UT Maintainer of dns/py-easyzone, Please note that PR ports/172446 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/172446 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 03:21:08 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88049106566B; Mon, 8 Oct 2012 03:21:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5C63E8FC1F; Mon, 8 Oct 2012 03:21: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 q983L8CN055269; Mon, 8 Oct 2012 03:21:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q983L8Ym055265; Mon, 8 Oct 2012 03:21:08 GMT (envelope-from linimon) Date: Mon, 8 Oct 2012 03:21:08 GMT Message-Id: <201210080321.q983L8Ym055265@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-python@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/172190: lang/python: python pth still errors X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 03:21:08 -0000 Old Synopsis: python pth still errors New Synopsis: lang/python: python pth still errors Responsible-Changed-From-To: freebsd-i386->freebsd-python Responsible-Changed-By: linimon Responsible-Changed-When: Mon Oct 8 03:20:32 UTC 2012 Responsible-Changed-Why: reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=172190 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 06:18:11 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 969B0106566B; Mon, 8 Oct 2012 06:18:11 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6999D8FC08; Mon, 8 Oct 2012 06:18:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q986IBoj079560; Mon, 8 Oct 2012 06:18:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q986IBRC079556; Mon, 8 Oct 2012 06:18:11 GMT (envelope-from linimon) Date: Mon, 8 Oct 2012 06:18:11 GMT Message-Id: <201210080618.q986IBRC079556@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/172372: ports/python27 -- Build failure X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 06:18:11 -0000 Synopsis: ports/python27 -- Build failure Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: linimon Responsible-Changed-When: Mon Oct 8 06:18:02 UTC 2012 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=172372 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 08:40:40 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E71A1065674; Mon, 8 Oct 2012 08:40:40 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 027F88FC17; Mon, 8 Oct 2012 08:40: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 q988ed1p010069; Mon, 8 Oct 2012 08:40:39 GMT (envelope-from sbz@freefall.freebsd.org) Received: (from sbz@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q988edUx010065; Mon, 8 Oct 2012 08:40:39 GMT (envelope-from sbz) Date: Mon, 8 Oct 2012 08:40:39 GMT Message-Id: <201210080840.q988edUx010065@freefall.freebsd.org> To: sbz@FreeBSD.org, freebsd-python@FreeBSD.org, sbz@FreeBSD.org From: sbz@FreeBSD.org Cc: Subject: Re: ports/172383: [MAINTAINER] devel/py-pygithub: update to 1.8.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 08:40:40 -0000 Synopsis: [MAINTAINER] devel/py-pygithub: update to 1.8.0 Responsible-Changed-From-To: freebsd-python->sbz Responsible-Changed-By: sbz Responsible-Changed-When: Mon Oct 8 08:40:39 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172383 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 11:00:38 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84724106566B; Mon, 8 Oct 2012 11:00:38 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 56C5A8FC08; Mon, 8 Oct 2012 11:00:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q98B0cVk027801; Mon, 8 Oct 2012 11:00:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98B0cCs027797; Mon, 8 Oct 2012 11:00:38 GMT (envelope-from edwin) Date: Mon, 8 Oct 2012 11:00:38 GMT Message-Id: <201210081100.q98B0cCs027797@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172483: [MAINTAINER] databases/py-htsql: update to 2.3.2 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 11:00:38 -0000 Synopsis: [MAINTAINER] databases/py-htsql: update to 2.3.2 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Oct 8 11:00:37 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172483 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 11:07:27 2012 Return-Path: Delivered-To: freebsd-python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7891106566C for ; Mon, 8 Oct 2012 11:07:26 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D06028FC1E for ; Mon, 8 Oct 2012 11:07:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q98B7QFN029433 for ; Mon, 8 Oct 2012 11:07:26 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98B7Q0n029431 for freebsd-python@FreeBSD.org; Mon, 8 Oct 2012 11:07:26 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 8 Oct 2012 11:07:26 GMT Message-Id: <201210081107.q98B7Q0n029431@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-python@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-python@FreeBSD.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 11:07:27 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/172483 python [MAINTAINER] databases/py-htsql: update to 2.3.2 f ports/172446 python dns/py-easyzone: add missing dependency o ports/172385 python [MAINTAINER] www/py-rackspace-monitoring: update to 0. o ports/172384 python [MAINTAINER] databases/py-umemcache: update to 1.5 o ports/172372 python ports/python27 -- Build failure o ports/172280 python [UPDATE] devel/mercurial to 2.3.2 o ports/172190 python lang/python: python pth still errors f ports/172179 python [Update]science/py-scipy:Update to 0.11.0 f ports/172161 python [PATCH] devel/py-nose: update to 1.2.1 f ports/171787 python [PATCH] www/py-httplib2: update to 0.7.6, add license f ports/171778 python [PATCH] devel/py-mongokit: update to 0.8.1 f ports/171774 python [PATCH] www/py-rhodecode: update to 1.4.1 f ports/171758 python [PATCH] textproc/py-whoosh: update to 2.4.1 o ports/171645 python [PATCH] devel/py-ice: Allow building using Clang, gene o ports/171584 python lang/python32 built in a clean enviroment produces a p f ports/171579 python make cjson an option for devel/py-jsonrpclib o ports/171507 python [NEW PORT] devel/py-posix_ipc: POSIX IPC for Python - o ports/171506 python [NEW PORT] net/py-amqp: Low-level AMQP client for Pyth o ports/171489 python [NEW PORT] sysutils/py-ezjailremote: Remote control an o ports/171287 python [UPDATE] devel/mercurial to 2.3.1 o ports/171246 python [patch] lang/python27: make python curses module work o ports/170788 python lang/python27: PyQT applications crash Python 2.7 (cor f ports/170786 python [maintainer update] delete port textproc/py-pyx12 o ports/170754 python lang/python27 with pth, and lang/gobject-introspection o ports/170566 python update graphics/py-opengl depends on old version of gc f ports/169248 python www/py-django-cms doesn't check for (required) databas o ports/168980 python devel/py-distribute fails to install some files f ports/167530 python [patch] security/py-fail2ban will never ever start wit o ports/167368 python [bsd.python.mk] [patch] Python version propagation bre f ports/165545 python [patch]: net-mgmt/collectd5 doesn't compile against la o ports/165359 python lang/python27 fails to create package on world WITHOUT o ports/163467 python Ports using python 2.7 and "waf" intermittently hang o o ports/160717 python port: lang/python27 causing other ports to hang during o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 f ports/154209 python [PATCH] lang/python: Install symlink for ptags o ports/153952 python lang/python26 + pth fails to reconfigure cflags to inc o ports/153167 python Problem with signals, threads, and subprocesses in lan o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o ports/146823 python [patch] lang/python26: knob to build _ctypes module ag o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken s ports/118301 python [patch] devel/py-setuptools easy-install.pth contents 42 problems total. From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 14:16:56 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FABF106566C; Mon, 8 Oct 2012 14:16:56 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2357B8FC08; Mon, 8 Oct 2012 14:16:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q98EGuSI057826; Mon, 8 Oct 2012 14:16:56 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98EGumd057822; Mon, 8 Oct 2012 14:16:56 GMT (envelope-from culot) Date: Mon, 8 Oct 2012 14:16:56 GMT Message-Id: <201210081416.q98EGumd057822@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-python@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/172483: [MAINTAINER] databases/py-htsql: update to 2.3.2 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 14:16:56 -0000 Synopsis: [MAINTAINER] databases/py-htsql: update to 2.3.2 Responsible-Changed-From-To: freebsd-python->culot Responsible-Changed-By: culot Responsible-Changed-When: Mon Oct 8 14:16:55 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172483 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 14:26:19 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CCA8A106566B; Mon, 8 Oct 2012 14:26:19 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9EF658FC16; Mon, 8 Oct 2012 14:26: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 q98EQJmQ058842; Mon, 8 Oct 2012 14:26:19 GMT (envelope-from sbz@freefall.freebsd.org) Received: (from sbz@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98EQJBc058837; Mon, 8 Oct 2012 14:26:19 GMT (envelope-from sbz) Date: Mon, 8 Oct 2012 14:26:19 GMT Message-Id: <201210081426.q98EQJBc058837@freefall.freebsd.org> To: sbz@FreeBSD.org, freebsd-python@FreeBSD.org, sbz@FreeBSD.org From: sbz@FreeBSD.org Cc: Subject: Re: ports/171489: [NEW PORT] sysutils/py-ezjailremote: Remote control and convenience wrapper for ezjail X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 14:26:19 -0000 Synopsis: [NEW PORT] sysutils/py-ezjailremote: Remote control and convenience wrapper for ezjail Responsible-Changed-From-To: freebsd-python->sbz Responsible-Changed-By: sbz Responsible-Changed-When: Mon Oct 8 14:26:19 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171489 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 14:27:05 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D581A1065674; Mon, 8 Oct 2012 14:27:05 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A866D8FC0C; Mon, 8 Oct 2012 14:27: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 q98ER5Qm058940; Mon, 8 Oct 2012 14:27:05 GMT (envelope-from sbz@freefall.freebsd.org) Received: (from sbz@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98ER5PX058936; Mon, 8 Oct 2012 14:27:05 GMT (envelope-from sbz) Date: Mon, 8 Oct 2012 14:27:05 GMT Message-Id: <201210081427.q98ER5PX058936@freefall.freebsd.org> To: sbz@FreeBSD.org, freebsd-python@FreeBSD.org, sbz@FreeBSD.org From: sbz@FreeBSD.org Cc: Subject: Re: ports/171506: [NEW PORT] net/py-amqp: Low-level AMQP client for Python (fork of amqplib) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 14:27:05 -0000 Synopsis: [NEW PORT] net/py-amqp: Low-level AMQP client for Python (fork of amqplib) Responsible-Changed-From-To: freebsd-python->sbz Responsible-Changed-By: sbz Responsible-Changed-When: Mon Oct 8 14:27:05 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171506 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 14:28:04 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A0FBF106564A; Mon, 8 Oct 2012 14:28:04 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 739E28FC17; Mon, 8 Oct 2012 14:28:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q98ES4qJ059071; Mon, 8 Oct 2012 14:28:04 GMT (envelope-from sbz@freefall.freebsd.org) Received: (from sbz@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98ES4oZ059067; Mon, 8 Oct 2012 14:28:04 GMT (envelope-from sbz) Date: Mon, 8 Oct 2012 14:28:04 GMT Message-Id: <201210081428.q98ES4oZ059067@freefall.freebsd.org> To: sbz@FreeBSD.org, freebsd-python@FreeBSD.org, sbz@FreeBSD.org From: sbz@FreeBSD.org Cc: Subject: Re: ports/172385: [MAINTAINER] www/py-rackspace-monitoring: update to 0.3.2 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 14:28:04 -0000 Synopsis: [MAINTAINER] www/py-rackspace-monitoring: update to 0.3.2 Responsible-Changed-From-To: freebsd-python->sbz Responsible-Changed-By: sbz Responsible-Changed-When: Mon Oct 8 14:28:04 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172385 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 14:29:44 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C55B1065670; Mon, 8 Oct 2012 14:29:44 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3F9308FC08; Mon, 8 Oct 2012 14:29:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q98ETi1J059258; Mon, 8 Oct 2012 14:29:44 GMT (envelope-from sbz@freefall.freebsd.org) Received: (from sbz@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98ETiM7059254; Mon, 8 Oct 2012 14:29:44 GMT (envelope-from sbz) Date: Mon, 8 Oct 2012 14:29:44 GMT Message-Id: <201210081429.q98ETiM7059254@freefall.freebsd.org> To: sbz@FreeBSD.org, freebsd-python@FreeBSD.org, sbz@FreeBSD.org From: sbz@FreeBSD.org Cc: Subject: Re: ports/171507: [NEW PORT] devel/py-posix_ipc: POSIX IPC for Python - Semaphores, Shared Memory and Message Queues X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 14:29:44 -0000 Synopsis: [NEW PORT] devel/py-posix_ipc: POSIX IPC for Python - Semaphores, Shared Memory and Message Queues Responsible-Changed-From-To: freebsd-python->sbz Responsible-Changed-By: sbz Responsible-Changed-When: Mon Oct 8 14:29:43 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171507 From owner-freebsd-python@FreeBSD.ORG Mon Oct 8 11:07:27 2012 Return-Path: Delivered-To: freebsd-python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7891106566C for ; Mon, 8 Oct 2012 11:07:26 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D06028FC1E for ; Mon, 8 Oct 2012 11:07:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q98B7QFN029433 for ; Mon, 8 Oct 2012 11:07:26 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98B7Q0n029431 for freebsd-python@FreeBSD.org; Mon, 8 Oct 2012 11:07:26 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 8 Oct 2012 11:07:26 GMT Message-Id: <201210081107.q98B7Q0n029431@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-python@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-python@FreeBSD.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 11:07:27 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/172483 python [MAINTAINER] databases/py-htsql: update to 2.3.2 f ports/172446 python dns/py-easyzone: add missing dependency o ports/172385 python [MAINTAINER] www/py-rackspace-monitoring: update to 0. o ports/172384 python [MAINTAINER] databases/py-umemcache: update to 1.5 o ports/172372 python ports/python27 -- Build failure o ports/172280 python [UPDATE] devel/mercurial to 2.3.2 o ports/172190 python lang/python: python pth still errors f ports/172179 python [Update]science/py-scipy:Update to 0.11.0 f ports/172161 python [PATCH] devel/py-nose: update to 1.2.1 f ports/171787 python [PATCH] www/py-httplib2: update to 0.7.6, add license f ports/171778 python [PATCH] devel/py-mongokit: update to 0.8.1 f ports/171774 python [PATCH] www/py-rhodecode: update to 1.4.1 f ports/171758 python [PATCH] textproc/py-whoosh: update to 2.4.1 o ports/171645 python [PATCH] devel/py-ice: Allow building using Clang, gene o ports/171584 python lang/python32 built in a clean enviroment produces a p f ports/171579 python make cjson an option for devel/py-jsonrpclib o ports/171507 python [NEW PORT] devel/py-posix_ipc: POSIX IPC for Python - o ports/171506 python [NEW PORT] net/py-amqp: Low-level AMQP client for Pyth o ports/171489 python [NEW PORT] sysutils/py-ezjailremote: Remote control an o ports/171287 python [UPDATE] devel/mercurial to 2.3.1 o ports/171246 python [patch] lang/python27: make python curses module work o ports/170788 python lang/python27: PyQT applications crash Python 2.7 (cor f ports/170786 python [maintainer update] delete port textproc/py-pyx12 o ports/170754 python lang/python27 with pth, and lang/gobject-introspection o ports/170566 python update graphics/py-opengl depends on old version of gc f ports/169248 python www/py-django-cms doesn't check for (required) databas o ports/168980 python devel/py-distribute fails to install some files f ports/167530 python [patch] security/py-fail2ban will never ever start wit o ports/167368 python [bsd.python.mk] [patch] Python version propagation bre f ports/165545 python [patch]: net-mgmt/collectd5 doesn't compile against la o ports/165359 python lang/python27 fails to create package on world WITHOUT o ports/163467 python Ports using python 2.7 and "waf" intermittently hang o o ports/160717 python port: lang/python27 causing other ports to hang during o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 f ports/154209 python [PATCH] lang/python: Install symlink for ptags o ports/153952 python lang/python26 + pth fails to reconfigure cflags to inc o ports/153167 python Problem with signals, threads, and subprocesses in lan o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o ports/146823 python [patch] lang/python26: knob to build _ctypes module ag o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken s ports/118301 python [patch] devel/py-setuptools easy-install.pth contents 42 problems total. From owner-freebsd-python@FreeBSD.ORG Tue Oct 9 20:08:10 2012 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 302D2D7A; Tue, 9 Oct 2012 20:08:10 +0000 (UTC) (envelope-from mitya@yandex-team.ru) Received: from archeopterix.yandex.ru (archeopterix.yandex.ru [93.158.136.52]) by mx1.freebsd.org (Postfix) with ESMTP id C9C6D8FC20; Tue, 9 Oct 2012 20:08:09 +0000 (UTC) Received: from Dmitrys-MacBook-Pro.local (v10-167-177.yandex.net [84.201.167.177]) by archeopterix.yandex.ru (Postfix) with ESMTP id 3Xbq6r579XzrMqc; Wed, 10 Oct 2012 00:00:20 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex-team.ru; s=default; t=1349812820; bh=9ytu2Nyv5V13mlmOIUeEgJOj8ouA3rP/EqWfnO8mErQ=; h=Date:From:To:CC:Subject:References:In-Reply-To; b=PAi1AtlSRoq1Mk4AZhEc9eGljlezWRobye9zJHZnXO471G3NQN5BhS6L73hbMX68x pv4uCKEykDCC+rE4KGS7RURybu5Zp1MpZHDuL796w2lU/sjiiPuK+khdDcIsaQMNoo 4aXP81Nw38EDDLQ1Nvtt+Lg9YSBhwzUn8hiP4qxk= Message-ID: <50748254.5030409@yandex-team.ru> Date: Wed, 10 Oct 2012 00:00:20 +0400 From: =?KOI8-R?Q?=E4=CD=C9=D4=D2=C9=CA_=F3=C9=D7=C1=DE=C5=CE=CB=CF?= User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Li-Wen Hsu Subject: Re: bin/python3 symlink for python3X ports References: <5062AAEA.4000401@FreeBSD.org> <5062C5CB.4060109@yandex.ru> <5062C769.6090305@FreeBSD.org> <5062C8CE.701@yandex.ru> <5062E478.8020000@FreeBSD.org> <506436DB.90408@FreeBSD.org> <20121001173946.GB4939@FreeBSD.cs.nctu.edu.tw> <506E6EEC.5030209@yandex-team.ru> In-Reply-To: <506E6EEC.5030209@yandex-team.ru> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit Cc: Chris Rees , python@freebsd.org, Ruslan Mahmatkhanov X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 20:08:10 -0000 On 10/5/12 9:23 AM, äÍÉÔÒÉÊ óÉ×ÁÞÅÎËÏ wrote: > On 01.10.2012 21:39, Li-Wen Hsu wrote: >> >> Thanks for working on this, I am looking forward to your patch. >> > > Hello, > > Please consider the attached patch for python2/python3 symlinks. > As I proposed earlier in this thread, I think it is sane to make these > symlinks > for latest python2.X/python3.X versions only (this is what people should > use by > default in most cases). > > And let people explicitly run older versions if they really need them. Should I treat your silence as 'no objection'? From owner-freebsd-python@FreeBSD.ORG Tue Oct 9 22:30:52 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AE0D3EC; Tue, 9 Oct 2012 22:30:52 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 2B3FA8FC08; Tue, 9 Oct 2012 22:30:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99MUqpd044089; Tue, 9 Oct 2012 22:30:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99MUqoR044085; Tue, 9 Oct 2012 22:30:52 GMT (envelope-from edwin) Date: Tue, 9 Oct 2012 22:30:52 GMT Message-Id: <201210092230.q99MUqoR044085@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172518: [MAINTAINER] databases/py-htsql-pgsql: update to 2.3.2 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:30:52 -0000 Synopsis: [MAINTAINER] databases/py-htsql-pgsql: update to 2.3.2 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 9 22:30:51 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172518 From owner-freebsd-python@FreeBSD.ORG Tue Oct 9 22:34:46 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F31778C; Tue, 9 Oct 2012 22:34:46 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 404928FC08; Tue, 9 Oct 2012 22:34:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99MYkdC045703; Tue, 9 Oct 2012 22:34:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99MYkxU045699; Tue, 9 Oct 2012 22:34:46 GMT (envelope-from edwin) Date: Tue, 9 Oct 2012 22:34:46 GMT Message-Id: <201210092234.q99MYkxU045699@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172528: [maintainer update] [patch] Update math/py-pandas to 0.9.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:34:46 -0000 Synopsis: [maintainer update] [patch] Update math/py-pandas to 0.9.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 9 22:34:46 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172528 From owner-freebsd-python@FreeBSD.ORG Tue Oct 9 22:41:52 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE12ADD6; Tue, 9 Oct 2012 22:41:52 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id BFE5D8FC19; Tue, 9 Oct 2012 22:41:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99Mfqgi047579; Tue, 9 Oct 2012 22:41:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99Mfqbj047575; Tue, 9 Oct 2012 22:41:52 GMT (envelope-from edwin) Date: Tue, 9 Oct 2012 22:41:52 GMT Message-Id: <201210092241.q99Mfqbj047575@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172544: databases/py-postgresql: update to 1.1.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:41:53 -0000 Synopsis: databases/py-postgresql: update to 1.1.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 9 22:41:52 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172544 From owner-freebsd-python@FreeBSD.ORG Tue Oct 9 22:41:54 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A0D1DDA; Tue, 9 Oct 2012 22:41:54 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 3B9EF8FC08; Tue, 9 Oct 2012 22:41:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99Mfsds047657; Tue, 9 Oct 2012 22:41:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99MfsC8047653; Tue, 9 Oct 2012 22:41:54 GMT (envelope-from edwin) Date: Tue, 9 Oct 2012 22:41:54 GMT Message-Id: <201210092241.q99MfsC8047653@freefall.freebsd.org> To: rm@FreeBSD.org, edwin@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172544: databases/py-postgresql: update to 1.1.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:41:54 -0000 Synopsis: databases/py-postgresql: update to 1.1.0 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Oct 9 22:41:54 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172544 From owner-freebsd-python@FreeBSD.ORG Tue Oct 9 22:50:01 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F27BF583 for ; Tue, 9 Oct 2012 22:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id DBFF28FC18 for ; Tue, 9 Oct 2012 22: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 q99Mo170049516 for ; Tue, 9 Oct 2012 22: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 q99Mo1gR049515; Tue, 9 Oct 2012 22:50:01 GMT (envelope-from gnats) Date: Tue, 9 Oct 2012 22:50:01 GMT Message-Id: <201210092250.q99Mo1gR049515@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/172544: databases/py-postgresql: update to 1.1.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:50:02 -0000 The following reply was made to PR ports/172544; it has been noted by GNATS. From: Edwin Groothuis To: c.kworr@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172544: databases/py-postgresql: update to 1.1.0 Date: Tue, 9 Oct 2012 22:41:53 UT Maintainer of databases/py-postgresql, Please note that PR ports/172544 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/172544 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-python@FreeBSD.ORG Tue Oct 9 22:50:38 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9626D640; Tue, 9 Oct 2012 22:50:38 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 6723F8FC20; Tue, 9 Oct 2012 22:50: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 q99Mocur049714; Tue, 9 Oct 2012 22:50:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99Moc3b049710; Tue, 9 Oct 2012 22:50:38 GMT (envelope-from edwin) Date: Tue, 9 Oct 2012 22:50:38 GMT Message-Id: <201210092250.q99Moc3b049710@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172543: [MAINTAINER] databases/py-htsql-mysql: update to 2.3.2 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:50:38 -0000 Synopsis: [MAINTAINER] databases/py-htsql-mysql: update to 2.3.2 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Oct 9 22:50:38 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172543 From owner-freebsd-python@FreeBSD.ORG Wed Oct 10 14:13:12 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EA3BD82; Wed, 10 Oct 2012 14:13:12 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id D32748FC0C; Wed, 10 Oct 2012 14:13:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9AEDBwh071726; Wed, 10 Oct 2012 14:13:11 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9AEDBoZ071721; Wed, 10 Oct 2012 14:13:11 GMT (envelope-from rm) Date: Wed, 10 Oct 2012 14:13:11 GMT Message-Id: <201210101413.q9AEDBoZ071721@freefall.freebsd.org> To: c.kworr@gmail.com, rm@FreeBSD.org, rm@FreeBSD.org, freebsd-python@FreeBSD.org From: rm@FreeBSD.org Subject: Re: ports/172544: databases/py-postgresql: update to 1.1.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 14:13:12 -0000 Synopsis: databases/py-postgresql: update to 1.1.0 State-Changed-From-To: feedback->closed State-Changed-By: rm State-Changed-When: Wed Oct 10 14:13:11 UTC 2012 State-Changed-Why: Committed, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=172544 From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 08:36:32 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9B28CE0; Thu, 11 Oct 2012 08:36:32 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 9AD2F8FC14; Thu, 11 Oct 2012 08:36: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 q9B8aWGU045940; Thu, 11 Oct 2012 08:36:32 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9B8aWnc045936; Thu, 11 Oct 2012 08:36:32 GMT (envelope-from culot) Date: Thu, 11 Oct 2012 08:36:32 GMT Message-Id: <201210110836.q9B8aWnc045936@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-python@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/172543: [MAINTAINER] databases/py-htsql-mysql: update to 2.3.2 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 08:36:32 -0000 Synopsis: [MAINTAINER] databases/py-htsql-mysql: update to 2.3.2 Responsible-Changed-From-To: freebsd-python->culot Responsible-Changed-By: culot Responsible-Changed-When: Thu Oct 11 08:36:32 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172543 From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 08:36:43 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FC38CE7; Thu, 11 Oct 2012 08:36:43 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 4EBE08FC19; Thu, 11 Oct 2012 08:36: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 q9B8ahsc046031; Thu, 11 Oct 2012 08:36:43 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9B8ahYs046027; Thu, 11 Oct 2012 08:36:43 GMT (envelope-from culot) Date: Thu, 11 Oct 2012 08:36:43 GMT Message-Id: <201210110836.q9B8ahYs046027@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-python@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/172518: [MAINTAINER] databases/py-htsql-pgsql: update to 2.3.2 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 08:36:43 -0000 Synopsis: [MAINTAINER] databases/py-htsql-pgsql: update to 2.3.2 Responsible-Changed-From-To: freebsd-python->culot Responsible-Changed-By: culot Responsible-Changed-When: Thu Oct 11 08:36:43 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172518 From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 11:49:05 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B4371543 for ; Thu, 11 Oct 2012 11:49:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 82B898FC08 for ; Thu, 11 Oct 2012 11:49: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 q9BBn5Pc062437 for ; Thu, 11 Oct 2012 11:49:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BBn5c9062436; Thu, 11 Oct 2012 11:49:05 GMT (envelope-from gnats) Date: Thu, 11 Oct 2012 11:49:05 GMT Message-Id: <201210111149.q9BBn5c9062436@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: "John W. O'Brien" Subject: Re: ports/172528: [maintainer update] [patch] Update math/py-pandas to 0.9.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: "John W. O'Brien" List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 11:49:05 -0000 The following reply was made to PR ports/172528; it has been noted by GNATS. From: "John W. O'Brien" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/172528: [maintainer update] [patch] Update math/py-pandas to 0.9.0 Date: Wed, 10 Oct 2012 19:38:00 -0400 Per "[HEADS UP] Ports Feature Freeze for 9.1" (portmgr-secretary@ on ports@), this PR constitutes a "normal upgrade" of a port that does not have an "unusually high number of dependencies", and will therefore be admissible without portmgr@ approval. In other words, it would be swell if a committer would pick this up prior to the ports build pass for 9.1. Cheers, John From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 11:51:34 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF9057CF; Thu, 11 Oct 2012 11:51:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 7FA0A8FC16; Thu, 11 Oct 2012 11:51: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 q9BBpYVk063280; Thu, 11 Oct 2012 11:51:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BBpYkq063276; Thu, 11 Oct 2012 11:51:34 GMT (envelope-from edwin) Date: Thu, 11 Oct 2012 11:51:34 GMT Message-Id: <201210111151.q9BBpYkq063276@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172592: [PATCH] devel/py-mock: update to 1.0.0, Add TESTS option, Restore creator to Makefile X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 11:51:34 -0000 Synopsis: [PATCH] devel/py-mock: update to 1.0.0, Add TESTS option, Restore creator to Makefile Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 11 11:51:34 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172592 From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 11:51:36 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38BB87D5; Thu, 11 Oct 2012 11:51:36 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 08B458FC19; Thu, 11 Oct 2012 11:51:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9BBpZjM063356; Thu, 11 Oct 2012 11:51:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BBpZR8063352; Thu, 11 Oct 2012 11:51:35 GMT (envelope-from edwin) Date: Thu, 11 Oct 2012 11:51:35 GMT Message-Id: <201210111151.q9BBpZR8063352@freefall.freebsd.org> To: koobs.freebsd@gmail.com, edwin@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172592: [PATCH] devel/py-mock: update to 1.0.0, Add TESTS option, Restore creator to Makefile X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 11:51:36 -0000 Synopsis: [PATCH] devel/py-mock: update to 1.0.0, Add TESTS option, Restore creator to Makefile State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Oct 11 11:51:35 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172592 From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 11:56:00 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A8B52E6; Thu, 11 Oct 2012 11:56:00 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 3B1E08FC19; Thu, 11 Oct 2012 11:56:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9BBu0fP064080; Thu, 11 Oct 2012 11:56:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BBu0ST064076; Thu, 11 Oct 2012 11:56:00 GMT (envelope-from edwin) Date: Thu, 11 Oct 2012 11:56:00 GMT Message-Id: <201210111156.q9BBu0ST064076@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172606: [NEW PORT] security/py-pysha3: SHA-3 (Keccak) for Python X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 11:56:00 -0000 Synopsis: [NEW PORT] security/py-pysha3: SHA-3 (Keccak) for Python Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 11 11:56:00 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172606 From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 12:07:56 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7326EC6 for ; Thu, 11 Oct 2012 12:07:56 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id BE9FE8FC0A for ; Thu, 11 Oct 2012 12:07:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9BC7uqm064944 for ; Thu, 11 Oct 2012 12:07:56 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BC7uxs064943; Thu, 11 Oct 2012 12:07:56 GMT (envelope-from gnats) Date: Thu, 11 Oct 2012 12:07:56 GMT Message-Id: <201210111207.q9BC7uxs064943@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/172592: [PATCH] devel/py-mock: update to 1.0.0, Add TESTS option, Restore creator to Makefile X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 12:07:56 -0000 The following reply was made to PR ports/172592; it has been noted by GNATS. From: Edwin Groothuis To: jessekempf@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172592: [PATCH] devel/py-mock: update to 1.0.0, Add TESTS option, Restore creator to Makefile Date: Thu, 11 Oct 2012 11:51:35 UT Maintainer of devel/py-mock, Please note that PR ports/172592 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/172592 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 12:24:43 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E090A4E7; Thu, 11 Oct 2012 12:24:43 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id B14958FC0C; Thu, 11 Oct 2012 12:24: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 q9BCOhQQ066794; Thu, 11 Oct 2012 12:24:43 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BCOhRo066790; Thu, 11 Oct 2012 12:24:43 GMT (envelope-from rm) Date: Thu, 11 Oct 2012 12:24:43 GMT Message-Id: <201210111224.q9BCOhRo066790@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-python@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Subject: Re: ports/172528: [maintainer update] [patch] Update math/py-pandas to 0.9.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 12:24:43 -0000 Synopsis: [maintainer update] [patch] Update math/py-pandas to 0.9.0 Responsible-Changed-From-To: freebsd-python->rm Responsible-Changed-By: rm Responsible-Changed-When: Thu Oct 11 12:24:43 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172528 From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 12:45:47 2012 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E4EA09F0; Thu, 11 Oct 2012 12:45:46 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-da0-f54.google.com (mail-da0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id ADB2A8FC18; Thu, 11 Oct 2012 12:45:46 +0000 (UTC) Received: by mail-da0-f54.google.com with SMTP id z9so814737dad.13 for ; Thu, 11 Oct 2012 05:45:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=to:subject:from:cc:x-send-pr-version:x-gnats-notify:message-id:date; bh=hoh65sL7rtr982SX2o3b0gnz5nFpi/EoVJOITTDn0RE=; b=o5wWGzyVgTbEZKig5ZdnQXOTXiE6lU/+kwTmFsMYT3vhDizvF63jkhDD3y/YmLS+Nv PjBbbldgWgD6oIKeEqLb24CF3QYYL4vgPDTFmsukjCTrCoxua/kCMlX+0ku9hrOXTgJX Pkd6up5d7mLpntL8Zn758/iCO7sFqLXglVuLOqlqAgzbWYwvnajwjhd9XXx3Sfoj6Zad VUf1tBx509I1Unj/rmf4dyDQthvvIja2TR8CuWoOh+rZ3DTnCzFSr5d07v176BP73OF4 77GC5m9sBmj/DrOj9NNtXxbTCDccDSMHjIAOsC83MJ4GW8zBiwjFJhwKi+yhzOJDCXAt D5qA== Received: by 10.68.203.164 with SMTP id kr4mr3384074pbc.46.1349959540055; Thu, 11 Oct 2012 05:45:40 -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 j9sm2568061pav.15.2012.10.11.05.45.38 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 11 Oct 2012 05:45:39 -0700 (PDT) Received: by freebsd-9-amd64.localdomain (Postfix, from userid 1001) id 71E2B3A071; Thu, 11 Oct 2012 23:45:35 +1100 (EST) To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] textproc/py-rdflib: update to 3.2.3 From: Kubilay Kocak X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20121011124535.71E2B3A071@freebsd-9-amd64.localdomain> Date: Thu, 11 Oct 2012 23:45:35 +1100 (EST) Cc: python@FreeBSD.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 12:45:47 -0000 >Submitter-Id: current-users >Originator: Kubilay Kocak >Organization: >Confidential: no >Synopsis: [PATCH] textproc/py-rdflib: update to 3.2.3 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 9.0-RELEASE-p3 amd64 >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 3.2.3 - Update pkg-plist - New Makefile header - Whitespace alignment Changes: https://github.com/RDFLib/rdflib/blob/master/CHANGELOG ====[QA]==== portlint: looks fine. porttest: OK redports: https://redports.org/buildarchive/20121011083226-15164/ unittest: Ran 709 tests in 8.818s - OK (SKIP=36) ============ Port maintainer (python@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- py27-rdflib-3.2.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/py-rdflib/Makefile ./Makefile --- /usr/ports/textproc/py-rdflib/Makefile 2012-05-01 12:19:38.000000000 +1000 +++ ./Makefile 2012-10-11 23:44:22.000000000 +1100 @@ -1,13 +1,8 @@ -# ex:ts=8 -# Ports collection makefile for: py-rdflib -# Date created: Aug 14, 2002 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD: ports/textproc/py-rdflib/Makefile,v 1.23 2012/05/01 02:19:38 sunpoet Exp $ -# PORTNAME= rdflib -PORTVERSION= 3.2.1 +PORTVERSION= 3.2.3 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,7 +14,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}isodate>=0:${PORTSDIR}/devel/py-isodate -USE_PYTHON= -2.7 +USE_PYTHON= -2.7 USE_PYDISTUTILS= yes post-patch: diff -ruN --exclude=CVS /usr/ports/textproc/py-rdflib/distinfo ./distinfo --- /usr/ports/textproc/py-rdflib/distinfo 2012-05-01 12:19:38.000000000 +1000 +++ ./distinfo 2012-10-11 19:29:35.000000000 +1100 @@ -1,2 +1,2 @@ -SHA256 (rdflib-3.2.1.tar.gz) = b1193b3614bf8f57793adcff0d0bbff9ed67a667849302c4f46192eb34822b21 -SIZE (rdflib-3.2.1.tar.gz) = 439814 +SHA256 (rdflib-3.2.3.tar.gz) = a3cab51c14fa6fe379261e0157c110d94e2f75ef62073ddc76fe56f5be624b75 +SIZE (rdflib-3.2.3.tar.gz) = 449077 diff -ruN --exclude=CVS /usr/ports/textproc/py-rdflib/pkg-plist ./pkg-plist --- /usr/ports/textproc/py-rdflib/pkg-plist 2012-01-23 01:44:46.000000000 +1100 +++ ./pkg-plist 2012-10-11 19:31:03.000000000 +1100 @@ -7,6 +7,9 @@ %%PYTHON_SITELIBDIR%%/rdflib/compare.py %%PYTHON_SITELIBDIR%%/rdflib/compare.pyc %%PYTHON_SITELIBDIR%%/rdflib/compare.pyo +%%PYTHON_SITELIBDIR%%/rdflib/compat.py +%%PYTHON_SITELIBDIR%%/rdflib/compat.pyc +%%PYTHON_SITELIBDIR%%/rdflib/compat.pyo %%PYTHON_SITELIBDIR%%/rdflib/events.py %%PYTHON_SITELIBDIR%%/rdflib/events.pyc %%PYTHON_SITELIBDIR%%/rdflib/events.pyo @@ -91,6 +94,9 @@ %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/rdfxml.py %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/rdfxml.pyc %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/rdfxml.pyo +%%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trig.py +%%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trig.pyc +%%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trig.pyo %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trix.py %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trix.pyc %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trix.pyo --- py27-rdflib-3.2.3.patch ends here --- From owner-freebsd-python@FreeBSD.ORG Thu Oct 11 13:05:58 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C205390; Thu, 11 Oct 2012 13:05:58 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id E20C28FC17; Thu, 11 Oct 2012 13:05: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 q9BD5vjH070114; Thu, 11 Oct 2012 13:05:57 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BD5v0r070110; Thu, 11 Oct 2012 13:05:57 GMT (envelope-from rm) Date: Thu, 11 Oct 2012 13:05:57 GMT Message-Id: <201210111305.q9BD5v0r070110@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-python@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Subject: Re: ports/172446: dns/py-easyzone: add missing dependency X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:05:58 -0000 Synopsis: dns/py-easyzone: add missing dependency Responsible-Changed-From-To: freebsd-python->rm Responsible-Changed-By: rm Responsible-Changed-When: Thu Oct 11 13:05:57 UTC 2012 Responsible-Changed-Why: My PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=172446 From owner-freebsd-python@FreeBSD.ORG Fri Oct 12 00:54:08 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 149868CD; Fri, 12 Oct 2012 00:54:08 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id DA4ED8FC17; Fri, 12 Oct 2012 00:54: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 q9C0s7N0021964; Fri, 12 Oct 2012 00:54:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9C0s7dc021960; Fri, 12 Oct 2012 00:54:07 GMT (envelope-from edwin) Date: Fri, 12 Oct 2012 00:54:07 GMT Message-Id: <201210120054.q9C0s7dc021960@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172612: [PATCH] textproc/py-rdflib: update to 3.2.3 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 00:54:08 -0000 Synopsis: [PATCH] textproc/py-rdflib: update to 3.2.3 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Oct 12 00:54:07 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172612 From owner-freebsd-python@FreeBSD.ORG Fri Oct 12 07:00:04 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28F045B1 for ; Fri, 12 Oct 2012 07:00:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id BF1DA8FC17 for ; Fri, 12 Oct 2012 07:00:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9C7030P067612 for ; Fri, 12 Oct 2012 07:00:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9C703Ce067611; Fri, 12 Oct 2012 07:00:03 GMT (envelope-from gnats) Date: Fri, 12 Oct 2012 07:00:03 GMT Message-Id: <201210120700.q9C703Ce067611@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Attila Nagy Subject: Re: ports/171579: make cjson an option for devel/py-jsonrpclib X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Attila Nagy List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:00:04 -0000 The following reply was made to PR ports/171579; it has been noted by GNATS. From: Attila Nagy To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/171579: make cjson an option for devel/py-jsonrpclib Date: Fri, 12 Oct 2012 08:52:08 +0200 Fine with me, thanks. On 09/12/12 21:39, Edwin Groothuis wrote: > Maintainer of devel/py-jsonrpclib, > > Please note that PR ports/171579 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/171579 > From owner-freebsd-python@FreeBSD.ORG Fri Oct 12 09:54:31 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35EFF6A6; Fri, 12 Oct 2012 09:54:31 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 08EC78FC08; Fri, 12 Oct 2012 09:54:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9C9sUCa086973; Fri, 12 Oct 2012 09:54:30 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9C9sUaA086969; Fri, 12 Oct 2012 09:54:30 GMT (envelope-from culot) Date: Fri, 12 Oct 2012 09:54:30 GMT Message-Id: <201210120954.q9C9sUaA086969@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-python@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/172384: [MAINTAINER] databases/py-umemcache: update to 1.5 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 09:54:31 -0000 Synopsis: [MAINTAINER] databases/py-umemcache: update to 1.5 Responsible-Changed-From-To: freebsd-python->culot Responsible-Changed-By: culot Responsible-Changed-When: Fri Oct 12 09:54:30 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172384 From owner-freebsd-python@FreeBSD.ORG Sat Oct 13 07:20:31 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0E9B774; Sat, 13 Oct 2012 07:20:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id C1F2D8FC12; Sat, 13 Oct 2012 07:20:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9D7KVnY012095; Sat, 13 Oct 2012 07:20:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9D7KVsX012091; Sat, 13 Oct 2012 07:20:31 GMT (envelope-from edwin) Date: Sat, 13 Oct 2012 07:20:31 GMT Message-Id: <201210130720.q9D7KVsX012091@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172657: [patch] Clean up dependency on twisted in databases/py-carbon X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 07:20:32 -0000 Synopsis: [patch] Clean up dependency on twisted in databases/py-carbon Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 13 07:20:31 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172657 From owner-freebsd-python@FreeBSD.ORG Sat Oct 13 07:20:33 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F08A779; Sat, 13 Oct 2012 07:20:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 4FE9E8FC14; Sat, 13 Oct 2012 07:20:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9D7KXhY012171; Sat, 13 Oct 2012 07:20:33 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9D7KXQc012167; Sat, 13 Oct 2012 07:20:33 GMT (envelope-from edwin) Date: Sat, 13 Oct 2012 07:20:33 GMT Message-Id: <201210130720.q9D7KXQc012167@freefall.freebsd.org> To: brd@FreeBSD.org, edwin@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/172657: [patch] Clean up dependency on twisted in databases/py-carbon X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 07:20:33 -0000 Synopsis: [patch] Clean up dependency on twisted in databases/py-carbon State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Oct 13 07:20:33 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172657 From owner-freebsd-python@FreeBSD.ORG Sat Oct 13 07:30:01 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 14543A44 for ; Sat, 13 Oct 2012 07:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id F0C638FC08 for ; Sat, 13 Oct 2012 07:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9D7U0R5013584 for ; Sat, 13 Oct 2012 07:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9D7U071013581; Sat, 13 Oct 2012 07:30:00 GMT (envelope-from gnats) Date: Sat, 13 Oct 2012 07:30:00 GMT Message-Id: <201210130730.q9D7U071013581@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/172657: [patch] Clean up dependency on twisted in databases/py-carbon X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 07:30:01 -0000 The following reply was made to PR ports/172657; it has been noted by GNATS. From: Edwin Groothuis To: bsdports@wayfair.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172657: [patch] Clean up dependency on twisted in databases/py-carbon Date: Sat, 13 Oct 2012 07:20:32 UT Maintainer of databases/py-carbon, Please note that PR ports/172657 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/172657 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-python@FreeBSD.ORG Sat Oct 13 13:25:04 2012 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE0A3EEC for ; Sat, 13 Oct 2012 13:25:04 +0000 (UTC) (envelope-from lwhsu@FreeBSD.cs.nctu.edu.tw) Received: from FreeBSD.cs.nctu.edu.tw (FreeBSD.cs.nctu.edu.tw [140.113.17.209]) by mx1.freebsd.org (Postfix) with ESMTP id A0F0E8FC19 for ; Sat, 13 Oct 2012 13:25:04 +0000 (UTC) Received: by FreeBSD.cs.nctu.edu.tw (Postfix, from userid 1058) id B2A2361CBA; Sat, 13 Oct 2012 21:25:03 +0800 (CST) Date: Sat, 13 Oct 2012 21:25:03 +0800 From: Li-Wen Hsu To: =?big5?B?x/fIYsheyGjIZsheyF8gyEbIXshXyFXIbchayGPIYMhk?= Subject: Re: bin/python3 symlink for python3X ports Message-ID: <20121013132503.GA49101@FreeBSD.cs.nctu.edu.tw> References: <5062C5CB.4060109@yandex.ru> <5062C769.6090305@FreeBSD.org> <5062C8CE.701@yandex.ru> <5062E478.8020000@FreeBSD.org> <506436DB.90408@FreeBSD.org> <20121001173946.GB4939@FreeBSD.cs.nctu.edu.tw> <506E6EEC.5030209@yandex-team.ru> <50748254.5030409@yandex-team.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <50748254.5030409@yandex-team.ru> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Chris Rees , python@freebsd.org, Ruslan Mahmatkhanov X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 13:25:04 -0000 On Wed, Oct 10, 2012 at 00:00:20 +0400, Ç÷ÈbÈ^ÈhÈfÈ^È_ ÈFÈ^ÈWÈUÈmÈZÈcÈ`Èd wrote: > On 10/5/12 9:23 AM, Ç÷ÈbÈ^ÈhÈfÈ^È_ ÈFÈ^ÈWÈUÈmÈZÈcÈ`Èd wrote: > > On 01.10.2012 21:39, Li-Wen Hsu wrote: > >> > >> Thanks for working on this, I am looking forward to your patch. > >> > > > > Hello, > > > > Please consider the attached patch for python2/python3 symlinks. > > As I proposed earlier in this thread, I think it is sane to make these > > symlinks > > for latest python2.X/python3.X versions only (this is what people should > > use by > > default in most cases). > > > > And let people explicitly run older versions if they really need them. > > Should I treat your silence as 'no objection'? I have no objection, we're toward the same direction, and here is my patch: http://people.freebsd.org/~lwhsu/patch/python-major-version-link.diff Which does following things: - Remove "first-win" logic in Makefile, this generates conflicting packages. If we really need this, it should be implemented in another way. - Create symbolic links as PEP 394 [1] suggests. ${DEFAULT_PYTHON_VERSION} will create python and python${MAJOR_VERSION} links, for current default, python2.7 will create: python -> python2 -> python2.7 - Introduce PYTHON3_DEFAULT_VERSION, which will handle bin/python3 link. It is a bit hacky, but I don't have better idea at this point. And we might still need to change this to PYTHON2_DEFAULT_VERSION when we change default version to 3.x. I think it has better to be committed after freeze. Meanwhile, if you really want to have bin/python{2,3} in the tree, I would not object you commit your patch, since they are not conflicting. How does everyone think? [1] http://www.python.org/dev/peps/pep-0394/ -- Li-Wen Hsu http://lwhsu.org From owner-freebsd-python@FreeBSD.ORG Sat Oct 13 13:26:52 2012 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6FC6F43; Sat, 13 Oct 2012 13:26:52 +0000 (UTC) (envelope-from lwhsu@FreeBSD.cs.nctu.edu.tw) Received: from FreeBSD.cs.nctu.edu.tw (FreeBSD.cs.nctu.edu.tw [140.113.17.209]) by mx1.freebsd.org (Postfix) with ESMTP id ACE668FC0C; Sat, 13 Oct 2012 13:26:52 +0000 (UTC) Received: by FreeBSD.cs.nctu.edu.tw (Postfix, from userid 1058) id 0801561CBA; Sat, 13 Oct 2012 21:26:52 +0800 (CST) Date: Sat, 13 Oct 2012 21:26:52 +0800 From: Li-Wen Hsu To: Eitan Adler Subject: Re: bin/python3 symlink for python3X ports Message-ID: <20121013132651.GB49101@FreeBSD.cs.nctu.edu.tw> References: <5062AAEA.4000401@FreeBSD.org> <5062C5CB.4060109@yandex.ru> <5062C769.6090305@FreeBSD.org> <506AD869.6090605@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Dmitry Sivachenko , Chris Rees , python@freebsd.org, Ruslan Mahmatkhanov X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 13:26:53 -0000 On Fri, Oct 05, 2012 at 17:51:12 -0400, Eitan Adler wrote: > > Random thought: can we make 'python', 'python2', and 'python3' a > simple C wrapper (you can't use a shell script because an interpreter > can't be interpreted) that selects the correct version instead of a > symlink? I'm not sure we'll have much advantage from this, what's the magic you proposed to do behind the "selects the correct version" ? -- Li-Wen Hsu http://lwhsu.org From owner-freebsd-python@FreeBSD.ORG Sat Oct 13 22:20:51 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D167CB57; Sat, 13 Oct 2012 22:20:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id A22BC8FC12; Sat, 13 Oct 2012 22:20:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9DMKptr090524; Sat, 13 Oct 2012 22:20:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9DMKo8C090520; Sat, 13 Oct 2012 22:20:50 GMT (envelope-from linimon) Date: Sat, 13 Oct 2012 22:20:50 GMT Message-Id: <201210132220.q9DMKo8C090520@freefall.freebsd.org> To: bra@fsn.hu, bcoca+fbsd@tablethotels.com, linimon@FreeBSD.org, freebsd-python@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/171579: make cjson an option for devel/py-jsonrpclib X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 22:20:51 -0000 Synopsis: make cjson an option for devel/py-jsonrpclib State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sat Oct 13 22:20:43 UTC 2012 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=171579