pkgsrc/devel/py-setuptools/Makefile
adam 54c19ff060 py-setuptools: updated to 41.6.0
v41.6.0
* Replace usage of deprecated imp module with local re-implementation in setuptools._imp.

v41.5.1
* Fix code for detecting Visual Studio's version on Windows under Python 2.

v41.5.0
* Improve Visual C++ 14.X support, mainly for Visual Studio 2017 and 2019.
* Fix pkg_resources.Requirement hash/equality implementation: take PEP 508 direct URL into account.
* Fix tests when running under python3.10.
* Formally deprecated the test command, with the recommendation that users migrate to tox.
* Update documentation to mention the egg format is not supported by pip and dependency links support was dropped starting with pip 19.0.
* Drop ez_setup documentation: deprecated for some time (last updated in 2016), and still relying on easy_install (deprecated too).
* Drop most documentation references to (deprecated) EasyInstall.
* Added a trove classifier to document support for Python 3.8.
* Added Python 3.8 release to the Travis test matrix.
2019-10-29 15:15:40 +00:00

33 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.172 2019/10/29 15:15:40 adam Exp $
DISTNAME= setuptools-41.6.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/setuptools/}
EXTRACT_SUFX= .zip
MAINTAINER= joerg@NetBSD.org
HOMEPAGE= https://github.com/pypa/setuptools
COMMENT= New Python packaging system
LICENSE= python-software-foundation OR zpl-2.0
DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
TEST_DEPENDS+= ${PYPKGPREFIX}-test-fixture-config-[0-9]*:../../devel/py-test-fixture-config
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
TEST_DEPENDS+= ${PYPKGPREFIX}-test-virtualenv-[0-9]*:../../devel/py-test-virtualenv
TEST_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
.include "../../lang/python/distutils.mk"
.if ${_PYTHON_VERSION:M3[6-9]}
TEST_DEPENDS+= ${PYPKGPREFIX}-paver-[0-9]*:../../lang/py-paver
.else
TEST_DEPENDS+= ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2
.endif
REPLACE_PYTHON+= setuptools/command/easy_install.py
PYSETUPTESTTARGET= pytest
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"