From owner-freebsd-python@FreeBSD.ORG Sun May 20 08:41:39 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 A15681065674; Sun, 20 May 2012 08:41:39 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from smtprelay04.ispgateway.de (smtprelay04.ispgateway.de [80.67.31.38]) by mx1.freebsd.org (Postfix) with ESMTP id 328B78FC0C; Sun, 20 May 2012 08:41:39 +0000 (UTC) Received: from [89.182.42.104] (helo=medusa.sysfault.org) by smtprelay04.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1SW1hj-0004hE-RA; Sun, 20 May 2012 10:41:32 +0200 Received: from [127.0.0.1] (helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.77 (FreeBSD)) (envelope-from ) id 1SW1jJ-0009Uf-VK; Sun, 20 May 2012 10:43:10 +0200 Received: (from marcus@localhost) by medusa.sysfault.org (8.14.5/8.14.5/Submit) id q4K8h9Xb036496; Sun, 20 May 2012 10:43:09 +0200 (CEST) (envelope-from marcus) Date: Sun, 20 May 2012 10:43:09 +0200 (CEST) Message-Id: <201205200843.q4K8h9Xb036496@medusa.sysfault.org> To: FreeBSD-gnats-submit@freebsd.org From: Marcus von Appen X-send-pr-version: 3.113 X-GNATS-Notify: X-Df-Sender: OTM2OTM0 Cc: kde@freebsd.org, python@freebsd.org Subject: cmake python detection gets confused if multiple python versions are installed X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus von Appen List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 08:41:39 -0000 >Submitter-Id: current-users >Originator: Marcus von Appen >Organization: >Confidential: no >Synopsis: cmake python detection gets confused if multiple python versions are installed >Severity: non-critical >Priority: medium >Category: ports >Class: sw-bug >Release: FreeBSD 9.0-STABLE amd64 >Environment: System: FreeBSD medusa.sysfault.org 9.0-STABLE FreeBSD 9.0-STABLE #0: Mon May 14 15:08:44 CEST 2012 root@medusa.sysfault.org:/usr/obj/usr/src/sys/MEDUSA amd64 >Description: If multiple Python versions are installed, cmake's find_host_package(PythonInterp) and find_host_package(PythonLibs) statements may return different Python versions, causing cmake to try to detect and link against the wrong Python default version >How-To-Repeat: Install lang/python27, lang/python31, lang/python Try to configure and build graphics/py-opencv: [...] root@medusa:/usr/ports/graphics/py-opencv # make configure ===> License BSD accepted by the user ===> Extracting for py27-opencv-2.3.1_3 => SHA256 Checksum OK for OpenCV-2.3.1a.tar.bz2. ===> Patching for py27-opencv-2.3.1_3 ===> Applying extra patch /usr/ports/graphics/py-opencv/../opencv/files/extra-patch-opencv-python ===> Applying FreeBSD patches for py27-opencv-2.3.1_3 ===> py27-opencv-2.3.1_3 depends on file: /usr/local/lib/python2.7/site-packages/numpy/core/numeric.py - found ===> py27-opencv-2.3.1_3 depends on file: /usr/local/bin/python2.7 - found ===> py27-opencv-2.3.1_3 depends on executable: pkg-config - found ===> py27-opencv-2.3.1_3 depends on file: /usr/local/bin/cmake - found ===> py27-opencv-2.3.1_3 depends on shared library: opencv_legacy.2 - found ===> Configuring for py27-opencv-2.3.1_3 [...] -- Looking for pthread.h - found -- Found PythonInterp: /usr/local/bin/python (found version "2.7.3") -- Found PythonLibs: /usr/local/lib/libpython3.1.so (found version "3.1.5") -- Use NumPy headers from: /usr/local/lib/python2.7/site-packages/numpy/core/include -- Found Sphinx 1.1.2: /usr/local/bin/sphinx-build -- Parsing 'cvconfig.h.cmake' >Fix: I'm not entirely sure, if that should be fixed in the related cmake files /usr/local/share/cmake/Modules/FindPythonInterp.cmake /usr/local/share/cmake/Modules/FindPythonLibs.cmake by adjusting the search/find order or go into the relevant Mk files. Below is a patch for bsd.python.mk, which explicitly sets the Python version to be used in bsd.python.mk, based on the detected PYTHON_VER. Index: Mk/bsd.python.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.python.mk,v retrieving revision 1.143 diff -u -r1.143 bsd.python.mk --- Mk/bsd.python.mk 11 Apr 2012 12:52:16 -0000 1.143 +++ Mk/bsd.python.mk 20 May 2012 08:31:02 -0000 @@ -674,6 +674,11 @@ .endif # defined(USE_TWISTED) +.if defined(USE_CMAKE) +CMAKE_ARGS+= -DPythonLibs_FIND_VERSION:STRING="${PYTHON_VER}" \ + -DPythonInterp_FIND_VERSIN:STRING="${PYTHON_VER}" +.endif + # XXX Hm, should I export some of the variables above to *_ENV? .endif # !defined(_POSTMKINCLUDED) && !defined(Python_Pre_Include) From owner-freebsd-python@FreeBSD.ORG Mon May 21 11:07:21 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 A211D106564A for ; Mon, 21 May 2012 11:07:21 +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 82BEE8FC08 for ; Mon, 21 May 2012 11:07:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4LB7LgV049209 for ; Mon, 21 May 2012 11:07:21 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4LB7KsY049206 for freebsd-python@FreeBSD.org; Mon, 21 May 2012 11:07:20 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 21 May 2012 11:07:20 GMT Message-Id: <201205211107.q4LB7KsY049206@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, 21 May 2012 11:07:21 -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/168108 python [NEW PORT] devel/py-flake8 o ports/168100 python Update port: www/py-selenium Upgrade to version 2.21.3 f ports/167712 python [PATCH] databases/py-south: bump to 0.7.5 o ports/167569 python [PATCH] database/py-postgresql: new port version f ports/167530 python [patch] security/py-fail2ban will never ever start wit o ports/167484 python [maintainer update] update devel/py-pefile to version o ports/167352 python New port: devel/py-repoze.lru f ports/167223 python [Update]science/py-scipy:update to 0.10.1 o ports/167126 python New port: www/py-fedex a SOAP wrapper for Fedex o ports/166329 python [MAINTAINER UPDATE] update math/py-matplotlib to 1.1.0 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/163112 python Updates bsd.python.mk to support Zope 2.11, 2.13 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/156425 python lang/python26: Needs to include -L/usr/local/lib/pth i o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155936 python lang/python27 Pthread: previous declaration of ... 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/152224 python [patch] fix installed permissions for lang/python27 o ports/151534 python lang/python26 + WITH_PTH doesn't install correctly o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o ports/146957 python Mk/bsd.python.mk: PYTHONOPTIMIZE=1 in environ(7) break o ports/146823 python [patch] lang/python26: knob to build _ctypes module ag o ports/146644 python lang/python26: WITH_PTH option breaks most ports depen o ports/140968 python x11-toolkits/py-tkinter(devel/pth): py26-tkinter-2.6.4 o ports/136917 python [patch] lang/python26: gettext detection o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken s ports/118301 python [patch] devel/py-setuptools easy-install.pth contents 34 problems total. From owner-freebsd-python@FreeBSD.ORG Mon May 21 16:38:49 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 38B641065670; Mon, 21 May 2012 16:38:49 +0000 (UTC) (envelope-from jhein@symmetricom.com) Received: from duck.symmetricom.us (duck.symmetricom.us [206.168.13.214]) by mx1.freebsd.org (Postfix) with ESMTP id 000C18FC15; Mon, 21 May 2012 16:38:48 +0000 (UTC) Received: from gromit.timing.com (gromit.timing.com [206.168.13.209]) by duck.symmetricom.us (8.14.5/8.14.5) with ESMTP id q4LGclB1068535; Mon, 21 May 2012 10:38:47 -0600 (MDT) (envelope-from jhein@symmetricom.com) Received: from gromit.timing.com (localhost [127.0.0.1]) by gromit.timing.com (8.14.5/8.14.5) with ESMTP id q4LGcTWb089693; Mon, 21 May 2012 10:38:29 -0600 (MDT) (envelope-from jhein@gromit.timing.com) Received: (from jhein@localhost) by gromit.timing.com (8.14.5/8.14.5/Submit) id q4LGcTdP089692; Mon, 21 May 2012 10:38:29 -0600 (MDT) (envelope-from jhein) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Message-ID: <20410.28549.240670.261196@gromit.timing.com> Date: Mon, 21 May 2012 10:38:29 -0600 From: John Hein To: Dmitry Sivachenko In-Reply-To: <4FA3EBD5.8010704@FreeBSD.org> References: <4FA3EACA.5050209@FreeBSD.org> <4FA3EBD5.8010704@FreeBSD.org> X-Mailer: VM 8.2.0b-trunk-1396 under 23.4.1 (i386-portbld-freebsd7.4) Cc: python@FreeBSD.org Subject: Re: /usr/local/share/python2.7/Tools permissions 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, 21 May 2012 16:38:49 -0000 Dmitry Sivachenko wrote at 18:46 +0400 on May 4, 2012: > PS: the same permission problem with /usr/local/share/examples/pytho= n2.7/ > content. > > On 04.05.2012 18:42, Dmitry Sivachenko wrote: > > Hello! > > > > /usr/local/share/python2.7/Tools directory and all its content has= no 'other' > > permissions: > > > > # cd /usr/local/share/python2.7/Tools/ > > # ls -la > > total 46/ > > drwxr-x--- 22 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 . > > drwxr-xr-x 3 root wheel 512 3 =D0=BC=D0=B0=D0=B9 08:42 .. > > -rw-r--r-- 1 root wheel 1756 10 =D0=B0=D0=BF=D1=80 03:07 README > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 audiopy > > drwxr-x--- 3 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 bgen > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 buildbot > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 ccbench > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 compiler > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 faqwiz > > drwxr-x--- 3 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 framer > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 freeze > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 gdb > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 i18n > > drwxr-x--- 2 root wheel 512 10 =D0=B0=D0=BF=D1=80 03:07 iobench > > <...> > > > > I have umask=3D022. > > > > With python32 port I have no such a problem: > > > > # pwd > > /usr/local/share/python3.2/Tools > > # ls -la > > total 36 > > drwxr-xr-x 17 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 . > > drwxr-xr-x 3 root wheel 512 27 =D0=B0=D0=B2=D0=B3 2011 .. > > -rw-r--r-- 1 root wheel 1639 9 =D0=B8=D1=8E=D0=BB 2011 README > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 buildbot > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 ccbench > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 demo > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 freeze > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 gdb > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 i18n > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 iobench > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 msi > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 parser > > drwxr-xr-x 3 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 pybench > > drwxr-xr-x 3 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 pynche > > drwxr-xr-x 2 root wheel 1536 9 =D0=B8=D1=8E=D0=BB 2011 scripts > > drwxr-xr-x 4 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 test2to3 > > drwxr-xr-x 3 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 unicode > > drwxr-xr-x 2 root wheel 512 9 =D0=B8=D1=8E=D0=BB 2011 unittestgui > > > > > > Is there any reason for such permissions=3F > > > > Thanks! http://www.freebsd.org/cgi/query-pr.cgi=3Fpr=3D152224 From owner-freebsd-python@FreeBSD.ORG Mon May 21 17:03:02 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 28B9D1065678 for ; Mon, 21 May 2012 17:03:02 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from archeopterix.yandex.ru (archeopterix.yandex.ru [93.158.136.52]) by mx1.freebsd.org (Postfix) with ESMTP id CEB788FC08 for ; Mon, 21 May 2012 17:03:01 +0000 (UTC) Received: from Dmitrys-MacBook-Pro.local (v10-166-203.yandex.net [84.201.166.203]) by archeopterix.yandex.ru (Postfix) with ESMTP id 3Vx5kY5bzlzrMxL; Mon, 21 May 2012 20:57:09 +0400 (MSK) Message-ID: <4FBA73E6.1030803@FreeBSD.org> Date: Mon, 21 May 2012 20:57:10 +0400 From: Dmitry Sivachenko User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: John Hein References: <4FA3EACA.5050209@FreeBSD.org> <4FA3EBD5.8010704@FreeBSD.org> <20410.28549.240670.261196@gromit.timing.com> In-Reply-To: <20410.28549.240670.261196@gromit.timing.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: python@FreeBSD.org Subject: Re: /usr/local/share/python2.7/Tools permissions 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, 21 May 2012 17:03:02 -0000 On 5/21/12 8:38 PM, John Hein wrote: > Dmitry Sivachenko wrote at 18:46 +0400 on May 4, 2012: > > PS: the same permission problem with /usr/local/share/examples/python2.7/ > > content. > > > > On 04.05.2012 18:42, Dmitry Sivachenko wrote: > > > Hello! > > > > > > /usr/local/share/python2.7/Tools directory and all its content has no 'other' > > > permissions: > > > > > > # cd /usr/local/share/python2.7/Tools/ > > > # ls -la > > > total 46/ > > > drwxr-x--- 22 root wheel 512 10 апр 03:07 . > > > drwxr-xr-x 3 root wheel 512 3 май 08:42 .. > > > -rw-r--r-- 1 root wheel 1756 10 апр 03:07 README > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 audiopy > > > drwxr-x--- 3 root wheel 512 10 апр 03:07 bgen > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 buildbot > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 ccbench > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 compiler > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 faqwiz > > > drwxr-x--- 3 root wheel 512 10 апр 03:07 framer > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 freeze > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 gdb > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 i18n > > > drwxr-x--- 2 root wheel 512 10 апр 03:07 iobench > > > <...> > > > > > > I have umask=022. > > > > > > With python32 port I have no such a problem: > > > > > > # pwd > > > /usr/local/share/python3.2/Tools > > > # ls -la > > > total 36 > > > drwxr-xr-x 17 root wheel 512 9 июл 2011 . > > > drwxr-xr-x 3 root wheel 512 27 авг 2011 .. > > > -rw-r--r-- 1 root wheel 1639 9 июл 2011 README > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 buildbot > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 ccbench > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 demo > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 freeze > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 gdb > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 i18n > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 iobench > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 msi > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 parser > > > drwxr-xr-x 3 root wheel 512 9 июл 2011 pybench > > > drwxr-xr-x 3 root wheel 512 9 июл 2011 pynche > > > drwxr-xr-x 2 root wheel 1536 9 июл 2011 scripts > > > drwxr-xr-x 4 root wheel 512 9 июл 2011 test2to3 > > > drwxr-xr-x 3 root wheel 512 9 июл 2011 unicode > > > drwxr-xr-x 2 root wheel 512 9 июл 2011 unittestgui > > > > > > > > > Is there any reason for such permissions? > > > > > > Thanks! > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=152224 1.5 years passed since this patch was submitted. I will commit it shortly if none from python@ object (and do something about it). From owner-freebsd-python@FreeBSD.ORG Mon May 21 20:56:01 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 366B01065676; Mon, 21 May 2012 20:56:01 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 098008FC15; Mon, 21 May 2012 20:56: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 q4LKu0Yf014282; Mon, 21 May 2012 20:56:00 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4LKu0Jb014278; Mon, 21 May 2012 20:56:00 GMT (envelope-from delphij) Date: Mon, 21 May 2012 20:56:00 GMT Message-Id: <201205212056.q4LKu0Jb014278@freefall.freebsd.org> To: count@211.ru, william88@gmail.com, delphij@FreeBSD.org, freebsd-python@FreeBSD.org, delphij@FreeBSD.org From: delphij@FreeBSD.org Cc: Subject: Re: ports/167712: [PATCH] databases/py-south: bump to 0.7.5 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, 21 May 2012 20:56:01 -0000 Synopsis: [PATCH] databases/py-south: bump to 0.7.5 State-Changed-From-To: feedback->open State-Changed-By: delphij State-Changed-When: Mon May 21 20:55:37 UTC 2012 State-Changed-Why: Maintainer timeout. Responsible-Changed-From-To: freebsd-python->delphij Responsible-Changed-By: delphij Responsible-Changed-When: Mon May 21 20:55:37 UTC 2012 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=167712 From owner-freebsd-python@FreeBSD.ORG Tue May 22 11:50:16 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 2F04E106566B; Tue, 22 May 2012 11:50:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 00A588FC08; Tue, 22 May 2012 11:50:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4MBoFEj077480; Tue, 22 May 2012 11:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4MBoF9b077471; Tue, 22 May 2012 11:50:15 GMT (envelope-from edwin) Date: Tue, 22 May 2012 11:50:15 GMT Message-Id: <201205221150.q4MBoF9b077471@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/168231: [new port]games/py-fife: Flexible Isometric Free Engine 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: Tue, 22 May 2012 11:50:16 -0000 Synopsis: [new port]games/py-fife: Flexible Isometric Free Engine Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 22 11:50:15 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=168231 From owner-freebsd-python@FreeBSD.ORG Wed May 23 07:50:07 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 73BAD1065670 for ; Wed, 23 May 2012 07:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6051C8FC15 for ; Wed, 23 May 2012 07:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4N7o7Pw021745 for ; Wed, 23 May 2012 07:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4N7o7dZ021744; Wed, 23 May 2012 07:50:07 GMT (envelope-from gnats) Date: Wed, 23 May 2012 07:50:07 GMT Message-Id: <201205230750.q4N7o7dZ021744@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/167223: 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: Wed, 23 May 2012 07:50:07 -0000 The following reply was made to PR ports/167223; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/167223: commit references a PR Date: Wed, 23 May 2012 07:49:01 +0000 (UTC) wen 2012-05-23 07:48:47 UTC FreeBSD ports repository Modified files: science/py-scipy Makefile distinfo Log: - Update to 0.10.1 PR: 167223 Submitted by: wen@ (myself) Approved by: maintainer(timeout, >=30 days) Revision Changes Path 1.33 +1 -1 ports/science/py-scipy/Makefile 1.13 +2 -2 ports/science/py-scipy/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-python@FreeBSD.ORG Wed May 23 07:52:09 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 576471065674; Wed, 23 May 2012 07:52:09 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2BC298FC1A; Wed, 23 May 2012 07:52:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4N7q9JG029850; Wed, 23 May 2012 07:52:09 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4N7q8Aq029846; Wed, 23 May 2012 07:52:08 GMT (envelope-from wen) Date: Wed, 23 May 2012 07:52:08 GMT Message-Id: <201205230752.q4N7q8Aq029846@freefall.freebsd.org> To: llwang@infor.org, wen@FreeBSD.org, wen@FreeBSD.org, freebsd-python@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/167223: [Update]science/py-scipy:update to 0.10.1 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: Wed, 23 May 2012 07:52:09 -0000 Synopsis: [Update]science/py-scipy:update to 0.10.1 State-Changed-From-To: feedback->closed State-Changed-By: wen State-Changed-When: Wed May 23 07:52:07 UTC 2012 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=167223 From owner-freebsd-python@FreeBSD.ORG Thu May 24 06:23:15 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F19F11065678; Thu, 24 May 2012 06:23:15 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C265B8FC25; Thu, 24 May 2012 06:23:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4O6NFJ5014861; Thu, 24 May 2012 06:23:15 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4O6NF8t014855; Thu, 24 May 2012 06:23:15 GMT (envelope-from wen) Date: Thu, 24 May 2012 06:23:15 GMT Message-Id: <201205240623.q4O6NF8t014855@freefall.freebsd.org> To: douglas@douglasthrift.net, douglas@douglasthrift.net, wen@FreeBSD.org, freebsd-python@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/168100: Update port: www/py-selenium Upgrade to version 2.21.3 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: Thu, 24 May 2012 06:23:16 -0000 Synopsis: Update port: www/py-selenium Upgrade to version 2.21.3 State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Thu May 24 06:23:14 UTC 2012 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=168100 From owner-freebsd-python@FreeBSD.ORG Thu May 24 06:30:10 2012 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50D2C1065670 for ; Thu, 24 May 2012 06:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3ACFA8FC12 for ; Thu, 24 May 2012 06:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4O6UAlk016114 for ; Thu, 24 May 2012 06:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4O6UAPw016111; Thu, 24 May 2012 06:30:10 GMT (envelope-from gnats) Date: Thu, 24 May 2012 06:30:10 GMT Message-Id: <201205240630.q4O6UAPw016111@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/168100: 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: Thu, 24 May 2012 06:30:10 -0000 The following reply was made to PR ports/168100; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/168100: commit references a PR Date: Thu, 24 May 2012 06:22:03 +0000 (UTC) wen 2012-05-24 06:21:50 UTC FreeBSD ports repository Modified files: www/py-selenium Makefile distinfo Log: - Update to 2.21.3 PR: 168100 Submitted by: Douglas Thrift (maintainer) Revision Changes Path 1.9 +2 -2 ports/www/py-selenium/Makefile 1.8 +2 -2 ports/www/py-selenium/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-python@FreeBSD.ORG Thu May 24 13:46: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 E2B0E106566B; Thu, 24 May 2012 13:46:38 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B58EF8FC0A; Thu, 24 May 2012 13:46: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 q4ODkc9N082920; Thu, 24 May 2012 13:46:38 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4ODkc9f082916; Thu, 24 May 2012 13:46:38 GMT (envelope-from miwi) Date: Thu, 24 May 2012 13:46:38 GMT Message-Id: <201205241346.q4ODkc9f082916@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-python@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/168231: [new port]games/py-fife: Flexible Isometric Free Engine 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: Thu, 24 May 2012 13:46:39 -0000 Synopsis: [new port]games/py-fife: Flexible Isometric Free Engine Responsible-Changed-From-To: freebsd-python->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu May 24 13:46:38 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=168231