pkgsrc/devel/py-wheel/Makefile
adam c93264ddcf py-wheel: updated to 0.35.1
0.35.1
Replaced install dependency on packaging with a vendored copy of its tags module
Fixed bdist_wheel not working on FreeBSD due to mismatching platform tag name (it was not being converted to lowercase)

0.35.0
Switched to the packaging library for computing wheel tags
Fixed a resource leak in WheelFile.open()
2020-08-21 07:54:23 +00:00

25 lines
678 B
Makefile

# $NetBSD: Makefile,v 1.20 2020/08/21 07:54:23 adam Exp $
DISTNAME= wheel-0.35.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=w/wheel/}
MAINTAINER= kamelderouiche@yahoo.com
HOMEPAGE= https://github.com/pypa/wheel
COMMENT= Built-package format for Python
LICENSE= mit
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
USE_LANGUAGES= # none
PYSETUPTESTTARGET= pytest
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} wheel wheel-${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"