pkgsrc changes -------------- Fix Python interpreter in installed file. Rename bin and man files using PYVERSSUFFIX in post-install. Add ALTERNATIVES file. Fix PKGMANDIR in setup.py. ChangeLog =========== * Make ``qr`` script work in Windows. * Fixed print_ascii function in Python 3. * Out-of-bounds code version numbers are handled more consistently with a ValueError. * Much better test coverage (now only officially supporting Python 2.6+)
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2014/11/09 16:52:14 rodent Exp $
|
|
|
|
DISTNAME= qrcode-5.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= https://pypi.python.org/packages/source/q/qrcode/
|
|
|
|
MAINTAINER= rodent@NetBSD.org
|
|
HOMEPAGE= https://github.com/lincolnloop/python-qrcode
|
|
COMMENT= Python QR Code image generator
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml # XXX for py26
|
|
DEPENDS+= ${PYPKGPREFIX}-Pillow-[0-9]*:../../graphics/py-Pillow
|
|
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PY_PATCHPLIST= yes
|
|
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
|
|
|
|
REPLACE_PYTHON+= qrcode/console_scripts.py
|
|
SUBST_CLASSES+= pkgmandir
|
|
SUBST_FILES.pkgmandir= setup.py
|
|
SUBST_MESSAGE.pkgmandir= Fixing PKGMANDIR path.
|
|
SUBST_SED.pkgmandir= -e "s|share/man|${PKGMANDIR}|1"
|
|
SUBST_STAGE.pkgmandir= post-patch
|
|
|
|
post-install:
|
|
${MV} ${DESTDIR}${PREFIX}/bin/qr \
|
|
${DESTDIR}${PREFIX}/bin/qr${PYVERSSUFFIX}
|
|
${MV} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/qr.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/qr${PYVERSSUFFIX}.1
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|