mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
3f2293ea82
* Also assign it to Django 2.2 (current LTS release) as Django 1.11 is End-of-Life since April 2020. * Set the repo-copied port www/py-dj22-django-timezone-field as DEPRECATED because it's obsolete now. Don't set an expiration date yet as it's still used by net-mgmt/netbox and a few more Django 1.11 ports need to be assigned to Django 2.2 first. * Also update the CONFLICTS_INSTALL entries as the repo-copied port py-dj21-django-timezone-field no longer exists in the Ports tree. Changelog: * Add support for Django 3.0 and Python 3.8 * Drop support for Django 1.11, 2.0, 2.1 and Python 2.7, 3.4 PR: 245309
25 lines
617 B
Makefile
25 lines
617 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= django-timezone-field
|
|
DISTVERSION= 4.0
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kai@FreeBSD.org
|
|
COMMENT= Provides database and form fields for pytz timezone objects for Django
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=1.11:www/py-django22@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR}
|
|
|
|
USES= python:3.5+
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
NO_ARCH= yes
|
|
CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}dj22-django-timezone-field
|
|
|
|
.include <bsd.port.mk>
|