diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2014-10-18 19:04:10 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2014-10-18 19:04:10 +0000 |
commit | f1661b09734e59b4699396179193e19d85d509d1 (patch) | |
tree | 2b7259c3894c028d590c6791c90d0c81a2b7f34e /www | |
parent | Convert to USES=python (diff) |
www/py-django-app-plugins: convert to USES=python
- convert to USES=python
- limit python version to 2.x:
"""
File "/usr/local/lib/python3.4/site-packages/app_plugins/models.py", line 24
if not is_valid_label(name): raise RuntimeError, u"invalid label: " + name
^
SyntaxError: invalid syntax
"""
Approved by: portmgr (blanket)
Notes
Notes:
svn path=/head/; revision=371155
Diffstat (limited to 'www')
-rw-r--r-- | www/py-django-app-plugins/Makefile | 5 | ||||
-rw-r--r-- | www/py-django-app-plugins/pkg-descr | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/www/py-django-app-plugins/Makefile b/www/py-django-app-plugins/Makefile index e71c0f6ac375..4ccdec4f5694 100644 --- a/www/py-django-app-plugins/Makefile +++ b/www/py-django-app-plugins/Makefile @@ -13,8 +13,7 @@ COMMENT= Reusable django application for writing pluggable reusable django appli RUN_DEPENDS= ${PYTHON_SITELIBDIR}/django/bin/django-admin.py:${PORTSDIR}/www/py-django -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 +USE_PYTHON= autoplist distutils .include <bsd.port.mk> diff --git a/www/py-django-app-plugins/pkg-descr b/www/py-django-app-plugins/pkg-descr index 76cafa4eb865..5295a09e28d8 100644 --- a/www/py-django-app-plugins/pkg-descr +++ b/www/py-django-app-plugins/pkg-descr @@ -2,4 +2,4 @@ Reusable django application for writting pluggable reusable django applications. Allows 3rd party apps to dynamically insert template inclusions into your apps at pre-defined plugin points. -WWW: http://code.google.com/p/django-app-plugins/ +WWW: http://code.google.com/p/django-app-plugins/ |