From owner-svn-ports-head@FreeBSD.ORG Wed Nov 27 22:09:42 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CAA21F2B; Wed, 27 Nov 2013 22:09:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B9DE22EAE; Wed, 27 Nov 2013 22:09:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rARM9gEt061225; Wed, 27 Nov 2013 22:09:42 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rARM9gQm061223; Wed, 27 Nov 2013 22:09:42 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201311272209.rARM9gQm061223@svn.freebsd.org> From: Marcus von Appen Date: Wed, 27 Nov 2013 22:09:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335068 - in head/devel/py-setuptools: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Nov 2013 22:09:42 -0000 Author: mva Date: Wed Nov 27 22:09:41 2013 New Revision: 335068 URL: http://svnweb.freebsd.org/changeset/ports/335068 Log: - Fix a bug in the egg-info installation code, that prevents PYDISTUTILS_AUTOPLIST to create the correct entries for the plists Reported by: many Reviewed by: wg@ Added: head/devel/py-setuptools/files/patch-setuptools_command_install_egg_info.py (contents, props changed) Modified: head/devel/py-setuptools/Makefile Modified: head/devel/py-setuptools/Makefile ============================================================================== --- head/devel/py-setuptools/Makefile Wed Nov 27 22:05:31 2013 (r335067) +++ head/devel/py-setuptools/Makefile Wed Nov 27 22:09:41 2013 (r335068) @@ -2,6 +2,7 @@ PORTNAME= setuptools PORTVERSION= 1.1.7 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Added: head/devel/py-setuptools/files/patch-setuptools_command_install_egg_info.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-setuptools/files/patch-setuptools_command_install_egg_info.py Wed Nov 27 22:09:41 2013 (r335068) @@ -0,0 +1,11 @@ +--- setuptools/command/install_egg_info.py.orig 2013-11-27 22:45:15.000000000 +0100 ++++ setuptools/command/install_egg_info.py 2013-11-27 22:45:23.000000000 +0100 +@@ -23,7 +23,7 @@ + ).egg_name()+'.egg-info' + self.source = ei_cmd.egg_info + self.target = os.path.join(self.install_dir, basename) +- self.outputs = [self.target] ++ self.outputs = [] + + def run(self): + self.run_command('egg_info')