From owner-svn-ports-head@FreeBSD.ORG Mon Aug 11 08:10:15 2014 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 91175C98 for ; Mon, 11 Aug 2014 08:10:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 705E02E8C for ; Mon, 11 Aug 2014 08:10:15 +0000 (UTC) Received: from koobs (uid 1310) (envelope-from koobs@FreeBSD.org) id 23ae by svn.freebsd.org (DragonFly Mail Agent v0.9+); Mon, 11 Aug 2014 08:10:14 +0000 From: Kubilay Kocak Date: Mon, 11 Aug 2014 08:10:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364591 - 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 Message-Id: <53e87a67.23ae.4729594a@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 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: Mon, 11 Aug 2014 08:10:15 -0000 Author: koobs Date: Mon Aug 11 08:10:14 2014 New Revision: 364591 URL: http://svnweb.freebsd.org/changeset/ports/364591 QAT: https://qat.redports.org/buildarchive/r364591/ Log: devel/py-setuptools: Update to 5.5.1 - Update to 5.5.1 - Add TEST_DEPENDS - Rename patch (convention: double underscore) - Fix grammo in pkg-message Changes: https://bitbucket.org/pypa/setuptools/src/5.5.1/CHANGES.txt QA: unittests: Ran 136 tests in 2.068s - OK (skipped=2) [1] [1] https://bitbucket.org/pypa/setuptools/issue/231 Added: head/devel/py-setuptools/files/patch-setuptools__command__install_egg_info.py - copied unchanged from r364590, head/devel/py-setuptools/files/patch-setuptools_command_install_egg_info.py Deleted: head/devel/py-setuptools/files/patch-setuptools_command_install_egg_info.py Modified: head/devel/py-setuptools/Makefile head/devel/py-setuptools/distinfo head/devel/py-setuptools/files/pkg-message.in Modified: head/devel/py-setuptools/Makefile ============================================================================== --- head/devel/py-setuptools/Makefile Mon Aug 11 07:19:33 2014 (r364590) +++ head/devel/py-setuptools/Makefile Mon Aug 11 08:10:14 2014 (r364591) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= setuptools -PORTVERSION= 5.4.1 +PORTVERSION= 5.5.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,6 +12,8 @@ COMMENT= Python packages installer LICENSE= PSFL +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest + CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}distribute-[0-9]* PLIST_SUB= PYVER=${PYTHON_VER} VERSION=${PORTVERSION} \ Modified: head/devel/py-setuptools/distinfo ============================================================================== --- head/devel/py-setuptools/distinfo Mon Aug 11 07:19:33 2014 (r364590) +++ head/devel/py-setuptools/distinfo Mon Aug 11 08:10:14 2014 (r364591) @@ -1,2 +1,2 @@ -SHA256 (python/setuptools-5.4.1.tar.gz) = 41194dc283bd186d5a7825c16b89d88bee369a6c4c4c7494e84909933b6f63be -SIZE (python/setuptools-5.4.1.tar.gz) = 782761 +SHA256 (python/setuptools-5.5.1.tar.gz) = 0a930d7b76d3791f7d1e7cf62e9ca74d3a89b653a86577b0a73969a6ad9e427c +SIZE (python/setuptools-5.5.1.tar.gz) = 1017931 Copied: head/devel/py-setuptools/files/patch-setuptools__command__install_egg_info.py (from r364590, 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 Mon Aug 11 08:10:14 2014 (r364591, copy of r364590, head/devel/py-setuptools/files/patch-setuptools_command_install_egg_info.py) @@ -0,0 +1,15 @@ +# install_egg_info command includes directory entries in --record output +# Issue: https://bitbucket.org/pypa/setuptools/issue/118 +# TODO: Merge upstream + +--- 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') Modified: head/devel/py-setuptools/files/pkg-message.in ============================================================================== --- head/devel/py-setuptools/files/pkg-message.in Mon Aug 11 07:19:33 2014 (r364590) +++ head/devel/py-setuptools/files/pkg-message.in Mon Aug 11 08:10:14 2014 (r364591) @@ -1,7 +1,7 @@ ********************************************************************* The script %%PREFIX%%/bin/easy_install was already installed - on your system, so the only script %%PREFIX%%/bin/easy_install-%%PYVER%% + on your system, so only the script %%PREFIX%%/bin/easy_install-%%PYVER%% has been added. *********************************************************************