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 ---