Skip to content

Commit

Permalink
Update py-setuptools to 19.6.1. All self-tests pass.
Browse files Browse the repository at this point in the history
19.6.1
------

* Restore compatibility for PyPy 3 compatibility lost in
  19.4.1 addressing Issue #487.
* ``setuptools.launch`` shim now loads scripts in a new
  namespace, avoiding getting relative imports from
  the setuptools package on Python 2.

19.6
----

* Added a new entry script ``setuptools.launch``,
  implementing the shim found in
  ``pip.util.setuptools_build``. Use this command to launch
  distutils-only packages under setuptools in the same way that
  pip does, causing the setuptools monkeypatching of distutils
  to be invoked prior to invoking a script. Useful for debugging
  or otherwise installing a distutils-only package under
  setuptools when pip isn't available or otherwise does not
  expose the desired functionality. For example::

    $ python -m setuptools.launch setup.py develop

* Issue #488: Fix dual manifestation of Extension class in
  extension packages installed as dependencies when Cython
  is present.

19.5
----

* Issue #486: Correct TypeError when getfilesystemencoding
  returns None.
* Issue #139: Clarified the license as MIT.
* Pull Request #169: Removed special handling of command
  spec in scripts for Jython.

19.4.1
------

* Issue #487: Use direct invocation of ``importlib.machinery``
  in ``pkg_resources`` to avoid missing detection on relevant
  platforms.
  • Loading branch information
wiz committed Feb 1, 2016
1 parent 98f3e46 commit f22c395
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions devel/py-setuptools/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.87 2016/01/18 23:04:14 wiz Exp $
# $NetBSD: Makefile,v 1.88 2016/02/01 13:08:13 wiz Exp $

DISTNAME= setuptools-19.4
DISTNAME= setuptools-19.6.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/setuptools/}
Expand Down
5 changes: 4 additions & 1 deletion devel/py-setuptools/PLIST
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.26 2016/01/18 23:04:14 wiz Exp $
@comment $NetBSD: PLIST,v 1.27 2016/02/01 13:08:13 wiz Exp $
bin/easy_install-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_FILE}/PKG-INFO
${PYSITELIB}/${EGG_FILE}/SOURCES.txt
Expand Down Expand Up @@ -127,6 +127,9 @@ ${PYSITELIB}/setuptools/extension.pyo
${PYSITELIB}/setuptools/extern/__init__.py
${PYSITELIB}/setuptools/extern/__init__.pyc
${PYSITELIB}/setuptools/extern/__init__.pyo
${PYSITELIB}/setuptools/launch.py
${PYSITELIB}/setuptools/launch.pyc
${PYSITELIB}/setuptools/launch.pyo
${PYSITELIB}/setuptools/lib2to3_ex.py
${PYSITELIB}/setuptools/lib2to3_ex.pyc
${PYSITELIB}/setuptools/lib2to3_ex.pyo
Expand Down
10 changes: 5 additions & 5 deletions devel/py-setuptools/distinfo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$NetBSD: distinfo,v 1.68 2016/01/18 23:04:14 wiz Exp $
$NetBSD: distinfo,v 1.69 2016/02/01 13:08:13 wiz Exp $

SHA1 (setuptools-19.4.tar.gz) = 5eae2728b7ed5bafb3fe9e97f69371310efceaa9
RMD160 (setuptools-19.4.tar.gz) = 6c92b4a891b2f9e9cd679e0e9c9ed4a50b4a27e6
SHA512 (setuptools-19.4.tar.gz) = 463a2b00193b972e684569dce1527b34d7be9a9d0f866fd8a0c2c1a475558c539148841ca117b0a9c5507d8344dfd5ca515bc6beee59b44c6e8bf05771bc448a
Size (setuptools-19.4.tar.gz) = 641797 bytes
SHA1 (setuptools-19.6.1.tar.gz) = ce72e7effddd31cd657dbbdc9308fee236e4fa37
RMD160 (setuptools-19.6.1.tar.gz) = 012289497e88506942984db7235094e760f16c81
SHA512 (setuptools-19.6.1.tar.gz) = 542c41aafdeca3e7658650dfb1c2f5209eb89ae17586cddf1a57316b987507c1263648c93d4177d8d1f775c0ce60c0849b9f4639e395b364ddfe4d92f019be0c
Size (setuptools-19.6.1.tar.gz) = 637780 bytes
SHA1 (patch-setup.py) = be1078e5e2b6e9ec8c859c2c6e2a4a44fe3c2840

0 comments on commit f22c395

Please sign in to comment.