diff options
author | rodent <rodent@pkgsrc.org> | 2015-04-01 02:05:51 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2015-04-01 02:05:51 +0000 |
commit | 8e0c31ea1edb404b9ea8fc507e95c13e734f5588 (patch) | |
tree | 4dc81d2aa5b75d37db8ea9cdbf098122afe7ce04 /databases/py-orderedmultidict/Makefile | |
parent | 0bd44fb3dacdceca6b36591deb4dd1727adc3036 (diff) | |
download | pkgsrc-8e0c31ea1edb404b9ea8fc507e95c13e734f5588.tar.gz |
No ChangeLog, though tests seem to be py3x-compatible now. Depends on py-
six>=1.8.0. Remove executable permission from files in ${EGG_INFODIR} in
post-install.
Diffstat (limited to 'databases/py-orderedmultidict/Makefile')
-rw-r--r-- | databases/py-orderedmultidict/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/databases/py-orderedmultidict/Makefile b/databases/py-orderedmultidict/Makefile index ef335c7bb45..2329d6020b5 100644 --- a/databases/py-orderedmultidict/Makefile +++ b/databases/py-orderedmultidict/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2014/08/13 22:41:21 joerg Exp $ +# $NetBSD: Makefile,v 1.5 2015/04/01 02:05:51 rodent Exp $ -DISTNAME= orderedmultidict-0.7.3 +DISTNAME= orderedmultidict-0.7.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= databases python MASTER_SITES= https://pypi.python.org/packages/source/o/orderedmultidict/ @@ -10,9 +10,14 @@ HOMEPAGE= https://github.com/gruns/orderedmultidict COMMENT= Ordered Multivalue Dictionary - omdict LICENSE= unlicense +DEPENDS+= ${PYPKGPREFIX}-six>=1.8.0:../../lang/py-six + USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 26 +post-install: + chmod -x ${DESTDIR}${PREFIX}/${PYSITELIB}/${EGG_INFODIR}/* + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" |