Date: Wed, 27 Nov 2013 22:09:42 +0000 (UTC) From: Marcus von Appen <mva@FreeBSD.org> 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 Message-ID: <201311272209.rARM9gQm061223@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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')
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311272209.rARM9gQm061223>