From owner-freebsd-python@FreeBSD.ORG Sun Aug 16 13:08:33 2009 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3466F106568B; Sun, 16 Aug 2009 13:08:33 +0000 (UTC) (envelope-from fractalizator@gmail.com) Received: from mail-bw0-f219.google.com (mail-bw0-f219.google.com [209.85.218.219]) by mx1.freebsd.org (Postfix) with ESMTP id 850838FC41; Sun, 16 Aug 2009 13:08:32 +0000 (UTC) Received: by bwz19 with SMTP id 19so2561644bwz.37 for ; Sun, 16 Aug 2009 06:08:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:from:date:x-google-sender-auth:message-id:subject:to:cc :content-type:content-transfer-encoding; bh=zwDEvy2/7aQc9OiprZqARlePVouQy80iI8V+Kcp6R4c=; b=pP+iPrpuwoJdC9/uRPe1FpGT6rkAaDtRnnLE8xIMWPT+gn8t05EVoJLWn2R5tnd5JG O+BUaK+0mG9VBDu52k5j93ofqss8/yJe1JltOngRdhtbTYnVqqoIz/GkbpAj719OWAgE sLAwzs3AYTbt2qbh10tDjYRqUSBjo7Mh/EZ6g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :content-transfer-encoding; b=KZdIlCYts2whQhTVcACwIhnEloRdLEAaKg1N0gC26vIzkUpGWeSXhDBbDnhrU2+Pxl 4T8mYQKivAOlhkv2LnW5qJdIf21Yux/9FoswaGz67Fdircv6wTpxjEIO2atKtRreTLFj 3vM5/NTB0Atn0WqOzGHfJRpZuuCJPp9kHVkUk= MIME-Version: 1.0 Sender: fractalizator@gmail.com Received: by 10.204.112.195 with SMTP id x3mr227898bkp.133.1250428111273; Sun, 16 Aug 2009 06:08:31 -0700 (PDT) In-Reply-To: <200908141345.n7EDj3m0050920@freefall.freebsd.org> References: <200908141345.n7EDj3m0050920@freefall.freebsd.org> From: Anatoly Borodin Date: Sun, 16 Aug 2009 16:08:11 +0300 X-Google-Sender-Auth: 9201277e47cb6c6c Message-ID: To: bug-followup@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: python@freebsd.org, miwi@freebsd.org Subject: Re: ports/137764: devel/py-setuptools cannot be installed 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, 16 Aug 2009 13:08:33 -0000 I've found the reason: I use ZFS. The error message is produced by the shutil.copystat function. #cat /usr/local/lib/python2.6/shutil.py ... def copystat(src, dst): """Copy all stat info (mode bits, atime, mtime, flags) from src to dst""" st = os.stat(src) mode = stat.S_IMODE(st.st_mode) if hasattr(os, 'utime'): os.utime(dst, (st.st_atime, st.st_mtime)) if hasattr(os, 'chmod'): os.chmod(dst, mode) if hasattr(os, 'chflags') and hasattr(st, 'st_flags'): os.chflags(dst, st.st_flags) ... FreeBSD has flags, but ZFS where /usr/local resides doesn't support them. It may be related to one of the recent update to the code ZFS - at some point mv started to give messages like # rm -f /var/tmp/t ; touch /tmp/t ; mv /tmp/t /var/tmp mv: /var/tmp/t: set flags (was: 00000000): Invalid argument See also http://www.google.com.ua/search?q=zfs+%22set+flags+(was%3A%22+%22Invalid+argument%22 From owner-freebsd-python@FreeBSD.ORG Sun Aug 16 13:40:09 2009 Return-Path: Delivered-To: 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 36149106568D for ; Sun, 16 Aug 2009 13:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2539B8FC6B for ; Sun, 16 Aug 2009 13:40:09 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7GDe8O5040624 for ; Sun, 16 Aug 2009 13:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7GDe8FK040623; Sun, 16 Aug 2009 13:40:08 GMT (envelope-from gnats) Date: Sun, 16 Aug 2009 13:40:08 GMT Message-Id: <200908161340.n7GDe8FK040623@freefall.freebsd.org> To: python@FreeBSD.org From: Anatoly Borodin Cc: Subject: Re: ports/137764: devel/py-setuptools cannot be installed X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anatoly Borodin List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Aug 2009 13:40:09 -0000 The following reply was made to PR ports/137764; it has been noted by GNATS. From: Anatoly Borodin To: bug-followup@freebsd.org Cc: python@freebsd.org, miwi@freebsd.org Subject: Re: ports/137764: devel/py-setuptools cannot be installed Date: Sun, 16 Aug 2009 16:08:11 +0300 I've found the reason: I use ZFS. The error message is produced by the shutil.copystat function. #cat /usr/local/lib/python2.6/shutil.py ... def copystat(src, dst): """Copy all stat info (mode bits, atime, mtime, flags) from src to dst""" st = os.stat(src) mode = stat.S_IMODE(st.st_mode) if hasattr(os, 'utime'): os.utime(dst, (st.st_atime, st.st_mtime)) if hasattr(os, 'chmod'): os.chmod(dst, mode) if hasattr(os, 'chflags') and hasattr(st, 'st_flags'): os.chflags(dst, st.st_flags) ... FreeBSD has flags, but ZFS where /usr/local resides doesn't support them. It may be related to one of the recent update to the code ZFS - at some point mv started to give messages like # rm -f /var/tmp/t ; touch /tmp/t ; mv /tmp/t /var/tmp mv: /var/tmp/t: set flags (was: 00000000): Invalid argument See also http://www.google.com.ua/search?q=zfs+%22set+flags+(was%3A%22+%22Invalid+argument%22 From owner-freebsd-python@FreeBSD.ORG Sun Aug 16 14:20:16 2009 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 561C71065691; Sun, 16 Aug 2009 14:20: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 2D82A8FC55; Sun, 16 Aug 2009 14:20:16 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7GEKGSe069944; Sun, 16 Aug 2009 14:20:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7GEKG0P069934; Sun, 16 Aug 2009 14:20:16 GMT (envelope-from edwin) Date: Sun, 16 Aug 2009 14:20:16 GMT Message-Id: <200908161420.n7GEKG0P069934@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/137837: Update port: www/py-dtflickr Upgrade to 1.4 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, 16 Aug 2009 14:20:16 -0000 Synopsis: Update port: www/py-dtflickr Upgrade to 1.4 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Aug 16 14:20:15 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137837 From owner-freebsd-python@FreeBSD.ORG Sun Aug 16 22:53:02 2009 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 BEA5D106568B; Sun, 16 Aug 2009 22:53:02 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 95CD28FC15; Sun, 16 Aug 2009 22:53:02 +0000 (UTC) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7GMr2OJ064860; Sun, 16 Aug 2009 22:53:02 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7GMr207064856; Sun, 16 Aug 2009 22:53:02 GMT (envelope-from linimon) Date: Sun, 16 Aug 2009 22:53:02 GMT Message-Id: <200908162253.n7GMr207064856@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/137859: [patch] python bulk update eliminate hard coded "py-" prefix 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, 16 Aug 2009 22:53:02 -0000 Synopsis: [patch] python bulk update eliminate hard coded "py-" prefix Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: linimon Responsible-Changed-When: Sun Aug 16 22:52:21 UTC 2009 Responsible-Changed-Why: Bring this PR for multiple ports to the attention of the Python mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=137859 From owner-freebsd-python@FreeBSD.ORG Sun Aug 16 22:53:20 2009 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 D1AEB106568E; Sun, 16 Aug 2009 22:53:20 +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 A9C068FC51; Sun, 16 Aug 2009 22:53:20 +0000 (UTC) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7GMrKbr064907; Sun, 16 Aug 2009 22:53:20 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7GMrKL0064903; Sun, 16 Aug 2009 22:53:20 GMT (envelope-from linimon) Date: Sun, 16 Aug 2009 22:53:20 GMT Message-Id: <200908162253.n7GMrKL0064903@freefall.freebsd.org> To: linimon@FreeBSD.org, python@FreeBSD.org, freebsd-python@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/137764: devel/py-setuptools cannot be installed 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, 16 Aug 2009 22:53:20 -0000 Synopsis: devel/py-setuptools cannot be installed Responsible-Changed-From-To: python->freebsd-python Responsible-Changed-By: linimon Responsible-Changed-When: Sun Aug 16 22:53:06 UTC 2009 Responsible-Changed-Why: Canonicalize assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=137764 From owner-freebsd-python@FreeBSD.ORG Sun Aug 16 22:53:20 2009 Return-Path: Delivered-To: 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 D1AEB106568E; Sun, 16 Aug 2009 22:53:20 +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 A9C068FC51; Sun, 16 Aug 2009 22:53:20 +0000 (UTC) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7GMrKbr064907; Sun, 16 Aug 2009 22:53:20 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7GMrKL0064903; Sun, 16 Aug 2009 22:53:20 GMT (envelope-from linimon) Date: Sun, 16 Aug 2009 22:53:20 GMT Message-Id: <200908162253.n7GMrKL0064903@freefall.freebsd.org> To: linimon@FreeBSD.org, python@FreeBSD.org, freebsd-python@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/137764: devel/py-setuptools cannot be installed 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, 16 Aug 2009 22:53:21 -0000 Synopsis: devel/py-setuptools cannot be installed Responsible-Changed-From-To: python->freebsd-python Responsible-Changed-By: linimon Responsible-Changed-When: Sun Aug 16 22:53:06 UTC 2009 Responsible-Changed-Why: Canonicalize assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=137764 From owner-freebsd-python@FreeBSD.ORG Mon Aug 17 05:30:11 2009 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 40403106568C for ; Mon, 17 Aug 2009 05:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F8AF8FC69 for ; Mon, 17 Aug 2009 05:30:11 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7H5UAhS065780 for ; Mon, 17 Aug 2009 05:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7H5UAiH065777; Mon, 17 Aug 2009 05:30:10 GMT (envelope-from gnats) Date: Mon, 17 Aug 2009 05:30:10 GMT Message-Id: <200908170530.n7H5UAiH065777@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: olli hauer Cc: Subject: Re: ports/137859: [patch] python bulk update eliminate hard coded "py-" prefix X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: olli hauer List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Aug 2009 05:30:11 -0000 The following reply was made to PR ports/137859; it has been noted by GNATS. From: olli hauer To: bug-followup@FreeBSD.org, ohauer@gmx.de Cc: ohauer@gmx.de Subject: Re: ports/137859: [patch] python bulk update eliminate hard coded "py-" prefix Date: Mon, 17 Aug 2009 07:26:38 +0200 (CEST) I forgot these two ports in last patch net/py-mp-random net-im/py-punjab --- patch_bulk_python_prefix_2 begins here --- Index: net/py-mp-random/Makefile =================================================================== --- net/py-mp-random/Makefile +++ net/py-mp-random/Makefile @@ -10,7 +10,7 @@ PORTREVISION= 4 CATEGORIES= net python MASTER_SITES= http://mirrorproject.com/widget/ -PKGNAMEPREFIX= py- +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= MirrorProjectRandomImageWidget-src-${PORTVERSION} MAINTAINER= randomimage-widget@mirrorproject.com Index: net-im/py-punjab/Makefile =================================================================== --- net-im/py-punjab/Makefile +++ net-im/py-punjab/Makefile @@ -9,7 +9,7 @@ PORTVERSION= 0.12 CATEGORIES= net-im python MASTER_SITES= http://butterfat.net/punjab/ -PKGNAMEPREFIX= py- +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= beech@FreeBSD.org COMMENT= HTTP-polling and HTTP-binding gateway for Jabber --- patch_bulk_python_prefix_2 ends here --- From owner-freebsd-python@FreeBSD.ORG Mon Aug 17 11:07:02 2009 Return-Path: Delivered-To: freebsd-python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B35D106568B for ; Mon, 17 Aug 2009 11:07:02 +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 08F048FC6B for ; Mon, 17 Aug 2009 11:07:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7HB71Ei075917 for ; Mon, 17 Aug 2009 11:07:01 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7HB71Bn075913 for freebsd-python@FreeBSD.org; Mon, 17 Aug 2009 11:07:01 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 17 Aug 2009 11:07:01 GMT Message-Id: <200908171107.n7HB71Bn075913@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, 17 Aug 2009 11:07:02 -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/137859 python [patch] python bulk update eliminate hard coded "py-" o ports/137837 python Update port: www/py-dtflickr Upgrade to 1.4 o ports/137782 python databases/py-postgresql (new port) postgresql driver f f ports/137764 python devel/py-setuptools cannot be installed o ports/137359 python lang/python26 - Python ports depending on python26 do o ports/136917 python [patch] lang/python26: gettext detection f ports/133844 python New port: databases/py-postgresql python3 pgsql drive f ports/133451 python www/plone3 build fails. Plone3 needs python-2.4 but li o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken f ports/123154 python New port: devel/py-yapps2 (an easy-to-use parser gener o ports/122616 python databases/py-pyPgSQL - apply bytea escape bug patch in o ports/118301 python devel/py-setuptools easy-install.pth contents lost on o ports/115940 python Missed one file in lang/python25 if NO_NIS defined 13 problems total. From owner-freebsd-python@FreeBSD.ORG Mon Aug 17 13:37:57 2009 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 CBEF7106568B; Mon, 17 Aug 2009 13:37:57 +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 A41B68FC5B; Mon, 17 Aug 2009 13:37:57 +0000 (UTC) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7HDbv35001708; Mon, 17 Aug 2009 13:37:57 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7HDbv3h001704; Mon, 17 Aug 2009 13:37:57 GMT (envelope-from miwi) Date: Mon, 17 Aug 2009 13:37:57 GMT Message-Id: <200908171337.n7HDbv3h001704@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-python@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/137837: Update port: www/py-dtflickr Upgrade to 1.4 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, 17 Aug 2009 13:37:57 -0000 Synopsis: Update port: www/py-dtflickr Upgrade to 1.4 Responsible-Changed-From-To: freebsd-python->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Aug 17 13:37:57 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=137837 From owner-freebsd-python@FreeBSD.ORG Tue Aug 18 16:31:29 2009 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 75E3F106568D; Tue, 18 Aug 2009 16:31:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 49EF68FC3F; Tue, 18 Aug 2009 16:31:29 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7IGVTvA095642; Tue, 18 Aug 2009 16:31:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7IGVTgc095638; Tue, 18 Aug 2009 16:31:29 GMT (envelope-from edwin) Date: Tue, 18 Aug 2009 16:31:29 GMT Message-Id: <200908181631.n7IGVTgc095638@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/137930: [PATCH] devel/py-decorator: update to 3.1.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: Tue, 18 Aug 2009 16:31:29 -0000 Synopsis: [PATCH] devel/py-decorator: update to 3.1.1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Aug 18 16:31:28 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137930 From owner-freebsd-python@FreeBSD.ORG Tue Aug 18 18:20:31 2009 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 BFA0B106568C; Tue, 18 Aug 2009 18:20:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 963F08FC57; Tue, 18 Aug 2009 18:20:31 +0000 (UTC) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7IIKVTO076821; Tue, 18 Aug 2009 18:20:31 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7IIKVn5076811; Tue, 18 Aug 2009 18:20:31 GMT (envelope-from miwi) Date: Tue, 18 Aug 2009 18:20:31 GMT Message-Id: <200908181820.n7IIKVn5076811@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-python@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/137930: [PATCH] devel/py-decorator: update to 3.1.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: Tue, 18 Aug 2009 18:20:31 -0000 Synopsis: [PATCH] devel/py-decorator: update to 3.1.1 Responsible-Changed-From-To: freebsd-python->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Aug 18 18:20:30 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=137930 From owner-freebsd-python@FreeBSD.ORG Tue Aug 18 20:16:41 2009 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 E2B6810656FD; Tue, 18 Aug 2009 20:16:41 +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 B7A888FC59; Tue, 18 Aug 2009 20:16:41 +0000 (UTC) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7IKGfFP064631; Tue, 18 Aug 2009 20:16:41 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7IKGf4A064627; Tue, 18 Aug 2009 20:16:41 GMT (envelope-from miwi) Date: Tue, 18 Aug 2009 20:16:41 GMT Message-Id: <200908182016.n7IKGf4A064627@freefall.freebsd.org> To: ohauer@gmx.de, miwi@FreeBSD.org, freebsd-python@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/137859: [patch] python bulk update eliminate hard coded "py-" prefix 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, 18 Aug 2009 20:16:42 -0000 Synopsis: [patch] python bulk update eliminate hard coded "py-" prefix State-Changed-From-To: open->closed State-Changed-By: miwi State-Changed-When: Tue Aug 18 20:16:41 UTC 2009 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=137859 From owner-freebsd-python@FreeBSD.ORG Tue Aug 18 20:20:03 2009 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 65837106568C for ; Tue, 18 Aug 2009 20:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3A3378FC6D for ; Tue, 18 Aug 2009 20:20:03 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7IKK3AX064832 for ; Tue, 18 Aug 2009 20:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7IKK3jN064829; Tue, 18 Aug 2009 20:20:03 GMT (envelope-from gnats) Date: Tue, 18 Aug 2009 20:20:03 GMT Message-Id: <200908182020.n7IKK3jN064829@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/137859: 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: Tue, 18 Aug 2009 20:20:03 -0000 The following reply was made to PR ports/137859; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/137859: commit references a PR Date: Tue, 18 Aug 2009 20:16:03 +0000 (UTC) miwi 2009-08-18 20:15:55 UTC FreeBSD ports repository Modified files: devel/py-kqueue Makefile devel/py-subversion Makefile devel/py-ice Makefile devel/py-thrift Makefile devel/py-tconfpy Makefile x11-toolkits/py-gnome Makefile x11-toolkits/py-gtk Makefile x11-toolkits/py-gtkscintilla Makefile audio/py-libmpdclient Makefile databases/py-SQLDict Makefile databases/py-MySQL Makefile textproc/py-HyperText Makefile math/py-gnuplot Makefile net/py-mp-random Makefile net-im/py-punjab Makefile Log: Eliminate hard coded "PKGNAMEPREFIX= py-" PR: 137859 Submitted by: olli hauer Revision Changes Path 1.3 +2 -1 ports/audio/py-libmpdclient/Makefile 1.23 +2 -1 ports/databases/py-MySQL/Makefile 1.6 +8 -8 ports/databases/py-SQLDict/Makefile 1.11 +1 -1 ports/devel/py-ice/Makefile 1.22 +1 -1 ports/devel/py-kqueue/Makefile 1.10 +1 -1 ports/devel/py-subversion/Makefile 1.5 +2 -1 ports/devel/py-tconfpy/Makefile 1.5 +1 -1 ports/devel/py-thrift/Makefile 1.15 +2 -1 ports/math/py-gnuplot/Makefile 1.2 +1 -1 ports/net-im/py-punjab/Makefile 1.9 +1 -1 ports/net/py-mp-random/Makefile 1.6 +8 -8 ports/textproc/py-HyperText/Makefile 1.80 +2 -1 ports/x11-toolkits/py-gnome/Makefile 1.77 +2 -1 ports/x11-toolkits/py-gtk/Makefile 1.20 +2 -1 ports/x11-toolkits/py-gtkscintilla/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-python@FreeBSD.ORG Wed Aug 19 16:50:13 2009 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 3F6B1106568B; Wed, 19 Aug 2009 16:50:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 135A78FC45; Wed, 19 Aug 2009 16:50:13 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7JGoC1R060060; Wed, 19 Aug 2009 16:50:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7JGoC9S060056; Wed, 19 Aug 2009 16:50:12 GMT (envelope-from edwin) Date: Wed, 19 Aug 2009 16:50:12 GMT Message-Id: <200908191650.n7JGoC9S060056@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/137968: New Port: textproc/py-xlrd 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, 19 Aug 2009 16:50:13 -0000 Synopsis: New Port: textproc/py-xlrd Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 19 16:50:12 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137968 From owner-freebsd-python@FreeBSD.ORG Wed Aug 19 17:00:27 2009 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 832AA1065690; Wed, 19 Aug 2009 17:00:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 574088FC61; Wed, 19 Aug 2009 17:00:27 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7JH0RhV068520; Wed, 19 Aug 2009 17:00:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7JH0RgW068513; Wed, 19 Aug 2009 17:00:27 GMT (envelope-from edwin) Date: Wed, 19 Aug 2009 17:00:27 GMT Message-Id: <200908191700.n7JH0RgW068513@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/137969: New Port: textproc/py-xlwt 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, 19 Aug 2009 17:00:27 -0000 Synopsis: New Port: textproc/py-xlwt Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 19 17:00:26 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137969 From owner-freebsd-python@FreeBSD.ORG Wed Aug 19 17:09:29 2009 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 A9B4E106568D; Wed, 19 Aug 2009 17:09:29 +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 7DFBF8FC57; Wed, 19 Aug 2009 17:09:29 +0000 (UTC) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7JH9Tgr073358; Wed, 19 Aug 2009 17:09:29 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7JH9TVX073354; Wed, 19 Aug 2009 17:09:29 GMT (envelope-from miwi) Date: Wed, 19 Aug 2009 17:09:29 GMT Message-Id: <200908191709.n7JH9TVX073354@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-python@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/137969: New Port: textproc/py-xlwt 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, 19 Aug 2009 17:09:29 -0000 Synopsis: New Port: textproc/py-xlwt Responsible-Changed-From-To: freebsd-python->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Aug 19 17:09:29 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=137969 From owner-freebsd-python@FreeBSD.ORG Wed Aug 19 17:09:32 2009 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 01EDB10656AC; Wed, 19 Aug 2009 17:09:32 +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 CAB7D8FC45; Wed, 19 Aug 2009 17:09:31 +0000 (UTC) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7JH9VG7073424; Wed, 19 Aug 2009 17:09:31 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7JH9V6D073420; Wed, 19 Aug 2009 17:09:31 GMT (envelope-from miwi) Date: Wed, 19 Aug 2009 17:09:31 GMT Message-Id: <200908191709.n7JH9V6D073420@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-python@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/137968: New Port: textproc/py-xlrd 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, 19 Aug 2009 17:09:32 -0000 Synopsis: New Port: textproc/py-xlrd Responsible-Changed-From-To: freebsd-python->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Aug 19 17:09:31 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=137968 From owner-freebsd-python@FreeBSD.ORG Wed Aug 19 17:20:12 2009 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 304C010656B8; Wed, 19 Aug 2009 17:20:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 036128FC61; Wed, 19 Aug 2009 17:20:12 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7JHKB5W082815; Wed, 19 Aug 2009 17:20:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7JHKBSO082805; Wed, 19 Aug 2009 17:20:11 GMT (envelope-from edwin) Date: Wed, 19 Aug 2009 17:20:11 GMT Message-Id: <200908191720.n7JHKBSO082805@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/137970: New Port: devel/py-errorhandler 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, 19 Aug 2009 17:20:12 -0000 Synopsis: New Port: devel/py-errorhandler Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 19 17:20:11 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137970 From owner-freebsd-python@FreeBSD.ORG Wed Aug 19 17:25:59 2009 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 02DAD106568B; Wed, 19 Aug 2009 17:25:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CAA828FC57; Wed, 19 Aug 2009 17:25:58 +0000 (UTC) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7JHPwe3089155; Wed, 19 Aug 2009 17:25:58 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7JHPw1u089151; Wed, 19 Aug 2009 17:25:58 GMT (envelope-from miwi) Date: Wed, 19 Aug 2009 17:25:58 GMT Message-Id: <200908191725.n7JHPw1u089151@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-python@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/137970: New Port: devel/py-errorhandler 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, 19 Aug 2009 17:25:59 -0000 Synopsis: New Port: devel/py-errorhandler Responsible-Changed-From-To: freebsd-python->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Aug 19 17:25:58 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=137970 From owner-freebsd-python@FreeBSD.ORG Thu Aug 20 17:00:19 2009 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 3BC81106568B; Thu, 20 Aug 2009 17:00:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0EB0D8FC64; Thu, 20 Aug 2009 17:00:19 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7KH0Iwk074630; Thu, 20 Aug 2009 17:00:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7KH0IeR074620; Thu, 20 Aug 2009 17:00:18 GMT (envelope-from edwin) Date: Thu, 20 Aug 2009 17:00:18 GMT Message-Id: <200908201700.n7KH0IeR074620@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/137995: [maintainer] textproc/py-hyperestraier-python update to 0.10.10 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, 20 Aug 2009 17:00:19 -0000 Synopsis: [maintainer] textproc/py-hyperestraier-python update to 0.10.10 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 20 17:00:18 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137995 From owner-freebsd-python@FreeBSD.ORG Thu Aug 20 17:50:08 2009 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 EA9CC106564A; Thu, 20 Aug 2009 17:50:08 +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 C1BA28FC16; Thu, 20 Aug 2009 17:50:08 +0000 (UTC) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7KHo8JF026601; Thu, 20 Aug 2009 17:50:08 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7KHo89C026591; Thu, 20 Aug 2009 17:50:08 GMT (envelope-from miwi) Date: Thu, 20 Aug 2009 17:50:08 GMT Message-Id: <200908201750.n7KHo89C026591@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-python@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/137995: [maintainer] textproc/py-hyperestraier-python update to 0.10.10 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, 20 Aug 2009 17:50:09 -0000 Synopsis: [maintainer] textproc/py-hyperestraier-python update to 0.10.10 Responsible-Changed-From-To: freebsd-python->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Aug 20 17:50:08 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=137995 From owner-freebsd-python@FreeBSD.ORG Fri Aug 21 16:00:18 2009 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 65E311065690; Fri, 21 Aug 2009 16:00:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3D2CE8FC22; Fri, 21 Aug 2009 16:00:18 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7LG0IAT083176; Fri, 21 Aug 2009 16:00:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7LG0IaT083166; Fri, 21 Aug 2009 16:00:18 GMT (envelope-from edwin) Date: Fri, 21 Aug 2009 16:00:18 GMT Message-Id: <200908211600.n7LG0IaT083166@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/138040: Update devel/py-traits from 3.10 to 3.20 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: Fri, 21 Aug 2009 16:00:18 -0000 Synopsis: Update devel/py-traits from 3.10 to 3.20 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 21 16:00:17 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=138040 From owner-freebsd-python@FreeBSD.ORG Fri Aug 21 16:00:22 2009 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 9AD651065695; Fri, 21 Aug 2009 16:00:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 725708FC17; Fri, 21 Aug 2009 16:00:22 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7LG0MiQ083800; Fri, 21 Aug 2009 16:00:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7LG0MVn083789; Fri, 21 Aug 2009 16:00:22 GMT (envelope-from edwin) Date: Fri, 21 Aug 2009 16:00:22 GMT Message-Id: <200908211600.n7LG0MVn083789@freefall.freebsd.org> To: jacob.frelinger@duke.edu, edwin@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/138040: Update devel/py-traits from 3.10 to 3.20 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: Fri, 21 Aug 2009 16:00:22 -0000 Synopsis: Update devel/py-traits from 3.10 to 3.20 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Aug 21 16:00:21 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=138040 From owner-freebsd-python@FreeBSD.ORG Fri Aug 21 16:10:03 2009 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 A2889106568B for ; Fri, 21 Aug 2009 16:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 918AF8FC1A for ; Fri, 21 Aug 2009 16:10:03 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7LGA3Cs091896 for ; Fri, 21 Aug 2009 16:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7LGA3wO091894; Fri, 21 Aug 2009 16:10:03 GMT (envelope-from gnats) Date: Fri, 21 Aug 2009 16:10:03 GMT Message-Id: <200908211610.n7LGA3wO091894@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/138040: Update devel/py-traits from 3.10 to 3.20 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: Fri, 21 Aug 2009 16:10:03 -0000 The following reply was made to PR ports/138040; it has been noted by GNATS. From: Edwin Groothuis To: wenheping@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/138040: Update devel/py-traits from 3.10 to 3.20 Date: Fri, 21 Aug 2009 16:00:20 UT Maintainer of devel/py-traits, Please note that PR ports/138040 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/138040 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-python@FreeBSD.ORG Fri Aug 21 23:20:03 2009 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 CD054106568D for ; Fri, 21 Aug 2009 23:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A305F8FC1B for ; Fri, 21 Aug 2009 23:20:03 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7LNK30h022196 for ; Fri, 21 Aug 2009 23:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7LNK3H1022195; Fri, 21 Aug 2009 23:20:03 GMT (envelope-from gnats) Date: Fri, 21 Aug 2009 23:20:03 GMT Message-Id: <200908212320.n7LNK3H1022195@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: wen heping Cc: Subject: Re: ports/138040: Update devel/py-traits from 3.10 to 3.20 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: wen heping List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Aug 2009 23:20:03 -0000 The following reply was made to PR ports/138040; it has been noted by GNATS. From: wen heping To: bug-followup@FreeBSD.org, jacob.frelinger@duke.edu Cc: Subject: Re: ports/138040: Update devel/py-traits from 3.10 to 3.20 Date: Sat, 22 Aug 2009 07:12:36 +0800 --00163646bd24fda6890471af0040 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I approve it. Thank you. wen --00163646bd24fda6890471af0040 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I approve it.

Thank you.

wen
--00163646bd24fda6890471af0040-- From owner-freebsd-python@FreeBSD.ORG Fri Aug 21 23:23:06 2009 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 63A77106568E; Fri, 21 Aug 2009 23:23:06 +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 3AB438FC28; Fri, 21 Aug 2009 23:23:06 +0000 (UTC) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7LNN6jV031433; Fri, 21 Aug 2009 23:23:06 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7LNN6SB031429; Fri, 21 Aug 2009 23:23:06 GMT (envelope-from miwi) Date: Fri, 21 Aug 2009 23:23:06 GMT Message-Id: <200908212323.n7LNN6SB031429@freefall.freebsd.org> To: wenheping@gmail.com, miwi@FreeBSD.org, freebsd-python@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/138040: Update devel/py-traits from 3.10 to 3.20 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: Fri, 21 Aug 2009 23:23:06 -0000 Synopsis: Update devel/py-traits from 3.10 to 3.20 Responsible-Changed-From-To: freebsd-python->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri Aug 21 23:23:05 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=138040