svn commit: r500064 - head/www/py-django-filter

Kai Knoblich kai at FreeBSD.org
Thu Apr 25 19:13:04 UTC 2019


Author: kai
Date: Thu Apr 25 19:13:02 2019
New Revision: 500064
URL: https://svnweb.freebsd.org/changeset/ports/500064

Log:
  www/py-django-filter: Update to 2.1.0
  
  * Remove optional dependencies that are not required for runtime.
  * Limit the port to Python 3.4 or later because the support for Python 2 was
    dropped with the 2.0.0 release.
  
  Notable changes since 1.1.0:
  
  * Fixed a regression in FilterView introduced in 2.0. An empty QuerySet was
    incorrectly used whenever the FilterSet was unbound (i.e. when there were
    no GET parameters). The correct, pre-2.0 behaviour is now restored.
  * Drop Python 2, Django < 1.11 support
  * Added Django 2.0 support
  * Many other bugfixes, for a full changelog see:
  
  https://github.com/carltongibson/django-filter/blob/2.1.0/CHANGES.rst
  
  Approved by:	mentors (implicit)

Modified:
  head/www/py-django-filter/Makefile
  head/www/py-django-filter/distinfo

Modified: head/www/py-django-filter/Makefile
==============================================================================
--- head/www/py-django-filter/Makefile	Thu Apr 25 18:56:35 2019	(r500063)
+++ head/www/py-django-filter/Makefile	Thu Apr 25 19:13:02 2019	(r500064)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	django-filter
-DISTVERSION=	1.1.0
-PORTREVISION=	1
+DISTVERSION=	2.1.0
 CATEGORIES=	www python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -13,12 +12,9 @@ COMMENT=	Dynamic filtering for querysets with Django
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django111>=1.11:www/py-django111@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}djangorestframework>0:www/py-djangorestframework@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}coreapi>0:devel/py-coreapi@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}coreschema>0:devel/py-coreschema@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django111>=1.11:www/py-django111@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.4+
 USE_PYTHON=	distutils autoplist
 
 NO_ARCH=		yes

Modified: head/www/py-django-filter/distinfo
==============================================================================
--- head/www/py-django-filter/distinfo	Thu Apr 25 18:56:35 2019	(r500063)
+++ head/www/py-django-filter/distinfo	Thu Apr 25 19:13:02 2019	(r500064)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1522148113
-SHA256 (django-filter-1.1.0.tar.gz) = ec0ef1ba23ef95b1620f5d481334413700fb33f45cd76d56a63f4b0b1d76976a
-SIZE (django-filter-1.1.0.tar.gz) = 127831
+TIMESTAMP = 1556216704
+SHA256 (django-filter-2.1.0.tar.gz) = 3dafb7d2810790498895c22a1f31b2375795910680ac9c1432821cbedb1e176d
+SIZE (django-filter-2.1.0.tar.gz) = 142256


More information about the svn-ports-all mailing list