diff options
author | wiz <wiz@pkgsrc.org> | 2015-01-18 17:29:01 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-01-18 17:29:01 +0000 |
commit | 2c057aab18515de33d7e83060e3e2458c5fe14a7 (patch) | |
tree | eaa121704c02c02573ae9e3d2b79c0cb5999d197 /devel/py-setuptools | |
parent | 3c769f5abd87c5b5ef3ff66472404b6f8468435b (diff) | |
download | pkgsrc-2c057aab18515de33d7e83060e3e2458c5fe14a7.tar.gz |
Update to 12.0.1:
------
12.0.1
------
* Restore ``setuptools.command.easy_install.sys_executable`` for pbr
compatibility. For the future, tools should construct a CommandSpec
explicitly.
----
12.0
----
* Issue #188: Setuptools now support multiple entities in the value for
``build.executable``, such that an executable of "/usr/bin/env my-python" may
be specified. This means that systems with a specified executable whose name
has spaces in the path must be updated to escape or quote that value.
* Deprecated ``easy_install.ScriptWriter.get_writer``, replaced by ``.best()``
with slightly different semantics (no force_windows flag).
Diffstat (limited to 'devel/py-setuptools')
-rw-r--r-- | devel/py-setuptools/Makefile | 6 | ||||
-rw-r--r-- | devel/py-setuptools/distinfo | 9 | ||||
-rw-r--r-- | devel/py-setuptools/patches/patch-setuptools_tests_test__easy__install.py | 12 |
3 files changed, 20 insertions, 7 deletions
diff --git a/devel/py-setuptools/Makefile b/devel/py-setuptools/Makefile index c9647f4b4bc..fc17bd3f73b 100644 --- a/devel/py-setuptools/Makefile +++ b/devel/py-setuptools/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.59 2015/01/08 16:36:58 wiz Exp $ +# $NetBSD: Makefile,v 1.60 2015/01/18 17:29:01 wiz Exp $ -EGG_VERSION= 11.3.1 +EGG_VERSION= 12.0.1 DISTNAME= setuptools-${EGG_VERSION} PKGNAME= ${PYPKGPREFIX}-setuptools-${EGG_VERSION} CATEGORIES= devel python @@ -16,7 +16,7 @@ DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX} PLIST_SUBST+= EGG_INFODIR=${EGG_NAME}-py${PYVERSSUFFIX}.egg-info -REPLACE_PYTHON= setuptools/command/easy_install.py +REPLACE_PYTHON+= setuptools/command/easy_install.py REPLACE_PYTHON+= setuptools/tests/test_resources.py # upstream often forgets deleting files, and packages on Windows, diff --git a/devel/py-setuptools/distinfo b/devel/py-setuptools/distinfo index 404206f1016..68b9a1836ae 100644 --- a/devel/py-setuptools/distinfo +++ b/devel/py-setuptools/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.38 2015/01/08 16:36:58 wiz Exp $ +$NetBSD: distinfo,v 1.39 2015/01/18 17:29:01 wiz Exp $ -SHA1 (setuptools-11.3.1.tar.gz) = 88e43ad9c2c759a33c8c44d742b6d18125ccca16 -RMD160 (setuptools-11.3.1.tar.gz) = 2dde26abe7b9cd66b9859d5f03016eda3c625d93 -Size (setuptools-11.3.1.tar.gz) = 624820 bytes +SHA1 (setuptools-12.0.1.tar.gz) = c1780e082c8d12561407af1e250b44ff548d89d3 +RMD160 (setuptools-12.0.1.tar.gz) = fbbc78fcd4281cbd2f59799dc6994fb86cede906 +Size (setuptools-12.0.1.tar.gz) = 626735 bytes SHA1 (patch-setup.py) = be1078e5e2b6e9ec8c859c2c6e2a4a44fe3c2840 +SHA1 (patch-setuptools_tests_test__easy__install.py) = dec7a4a14a014c8ab3ac6a93b1931431df577d31 diff --git a/devel/py-setuptools/patches/patch-setuptools_tests_test__easy__install.py b/devel/py-setuptools/patches/patch-setuptools_tests_test__easy__install.py new file mode 100644 index 00000000000..5eb1b6303c7 --- /dev/null +++ b/devel/py-setuptools/patches/patch-setuptools_tests_test__easy__install.py @@ -0,0 +1,12 @@ +$NetBSD: patch-setuptools_tests_test__easy__install.py,v 1.1 2015/01/18 17:29:01 wiz Exp $ + +Fix comment -- this is not an interpreter. + +--- setuptools/tests/test_easy_install.py.orig 2015-01-16 22:16:09.000000000 +0000 ++++ setuptools/tests/test_easy_install.py +@@ -1,4 +1,4 @@ +-#! -*- coding: utf-8 -*- ++# -*- coding: utf-8 -*- + + """Easy install Tests + """ |