diff --git a/www/py-django-registration-redux/Makefile b/www/py-django-registration-redux/Makefile index d489b3bd3580..7b17900185b4 100644 --- a/www/py-django-registration-redux/Makefile +++ b/www/py-django-registration-redux/Makefile @@ -1,24 +1,25 @@ # Created by: Kevin Golding PORTNAME= django-registration-redux PORTVERSION= 2.10 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@caomhin.org COMMENT= User-registration application for Django LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=1.11:www/py-django22@${PY_FLAVOR} USES= python:3.5+ USE_PYTHON= distutils autoplist NO_ARCH= yes CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django-registration .include diff --git a/www/py-django-registration-redux/files/patch-setup.py b/www/py-django-registration-redux/files/patch-setup.py new file mode 100644 index 000000000000..52d04f23138c --- /dev/null +++ b/www/py-django-registration-redux/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2022-03-25 16:28:33 UTC ++++ setup.py +@@ -30,7 +30,7 @@ setup( + author_email='macropin@gmail.com', + url='https://github.com/macropin/django-registration', + package_dir={'registration': 'registration'}, +- packages=find_packages(exclude='test_app'), ++ packages=find_packages(exclude=['test_app']), + tests_require=['pytest-django'], + cmdclass={'test': PyTest}, + include_package_data=True,