mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
19d60dcfc8
Forward and backwards compatibility layer for different Django versions. Reasons to use django-compat: * Be able to use LTS versions of Django and support newer versions in an app * Use features from newer Django versions in an old one * Manage and master the gap between different framework versions WWW: https://github.com/arteria/django-compat PR: 246716
24 lines
534 B
Makefile
24 lines
534 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= django-compat
|
|
PORTVERSION= 1.0.15
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= ports@caomhin.org
|
|
COMMENT= For- and backwards compatibility layer for different Django versions
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=1.4:www/py-django22@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR}
|
|
|
|
USES= python:3.5+
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|