diff options
author | wiz <wiz@pkgsrc.org> | 2022-01-05 15:40:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-01-05 15:40:56 +0000 |
commit | d19f073cf98e1f2653a8d55bc4ae03f713437692 (patch) | |
tree | e9aefdaf8aa062e73299809ec4ac25bfcfb8a1a8 /www/py-mezzanine | |
parent | 43a3377b786e75dc9288884a4be636135f02feae (diff) | |
download | pkgsrc-d19f073cf98e1f2653a8d55bc4ae03f713437692.tar.gz |
python: egg.mk: add USE_PKG_RESOURCES flag
This flag should be set for packages that import pkg_resources
and thus need setuptools after the build step.
Set this flag for packages that need it and bump PKGREVISION.
Diffstat (limited to 'www/py-mezzanine')
-rw-r--r-- | www/py-mezzanine/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/py-mezzanine/Makefile b/www/py-mezzanine/Makefile index 6f84b979d29..cb23bb9c357 100644 --- a/www/py-mezzanine/Makefile +++ b/www/py-mezzanine/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.13 2022/01/04 20:55:31 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2022/01/05 15:41:30 wiz Exp $ DISTNAME= Mezzanine-4.3.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=M/Mezzanine/} @@ -30,6 +30,8 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-django-contrib-comments +USE_PKG_RESOURCES= yes + REPLACE_PYTHON= mezzanine/project_template/manage.py post-install: |