a0f4c73ff7
* Django 2.2 is currently the "default" version in the ports tree due its
long term support until April 2022. Thus ports that are assigned to that
version will exist until then.
The following ports are required to make the upgrade of net-mgmt/netbox to
the 2.9 release possible because it requires Django 3.1 and provides no
backwards compatibility for previous versions of Django.
- www/py-dj31-django-rq
(copied from r539662 to use the 2.3.2 release for now)
- www/py-dj31-django-auth-ldap
- www/py-dj31-django-cacheops
- www/py-dj31-django-cors-headers
- www/py-dj31-django-debug-toolbar
- www/py-dj21-django-filter
- www/py-dj31-django-js-asset
- www/py-dj31-django-mptt
- www/py-dj31-django-prometheus
- www/py-dj31-django-redis
- www/py-dj31-django-tables2
- www/py-dj31-django-taggit
- www/py-dj31-django-timezone-field
- www/py-dj31-djangorestframework
- www/py-dj31-drf-yasg
* Also limit the new ports to Python 3.6+ due the requirements of Django 3.1
and add/update the related CONFLICTS_INSTALL entries.
Reviewed by: sunpoet
Differential Revision: https://reviews.freebsd.org/D27083
28 lines
741 B
Makefile
28 lines
741 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= django-cacheops
|
|
PORTVERSION= 5.1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kai@FreeBSD.org
|
|
COMMENT= Slick ORM cache with automatic granular event-driven invalidation
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=2.1:www/py-django22@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}redis>=3.0.0:databases/py-redis@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}funcy>=1.8<2.0:devel/py-funcy@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}six>=1.4.0:devel/py-six@${PY_FLAVOR}
|
|
|
|
USES= python:3.5+
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}dj31-django-cacheops
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|