svn commit: r500434 - head/www/py-django-taggit

Kai Knoblich kai at FreeBSD.org
Mon Apr 29 20:41:50 UTC 2019


Author: kai
Date: Mon Apr 29 20:41:48 2019
New Revision: 500434
URL: https://svnweb.freebsd.org/changeset/ports/500434

Log:
  www/py-django-taggit: Update to 1.1.0
  
  Changes since 0.23.0:
  
  * Added Finnish translation.
  * Updated Chinese translation.
  * Updated Esperanto translation.
  * Fix form.changed_data to allow early access for a tags defined with
    blank=True.
  * Backwards incompatible: Remove support for Python 2.
  * Added has_changed() method to taggit.forms.TagField.
  * Added multi-column unique constraint to model TaggedItem on fields
    content_type, object_id, and tag. Databases that contain duplicates will
    need to add a data migration to resolve these duplicates.
  * Fixed TaggableManager.most_common() to always evaluate lazily. Allows
    placing a .most_common() query at the top level of a module.
  * Fixed setting the related_name on a tags manager that exists on a model
    named Name.
  * The project has moved to Jazzband. This is the first release under the new
    organization.
  * Added support for Django 2.2.
  * Fixed a race condition in TaggableManager.
  * Removed method ItemBase.bulk_lookup_kwargs().
  * Fixed view tagged_object_list to set queryset.model as ListView.model (was
    previously set as a ContentType instance).
  * _TaggableManager and TaggableManager now always call the parent class
    __init__.
  * Removed TaggableRel and replaced uses with ManyToManyRel.
  
  https://github.com/jazzband/django-taggit/blob/1.1.0/CHANGELOG.rst
  
  Approved by:	mentors (implicit)

Modified:
  head/www/py-django-taggit/Makefile
  head/www/py-django-taggit/distinfo
  head/www/py-django-taggit/pkg-descr

Modified: head/www/py-django-taggit/Makefile
==============================================================================
--- head/www/py-django-taggit/Makefile	Mon Apr 29 20:37:16 2019	(r500433)
+++ head/www/py-django-taggit/Makefile	Mon Apr 29 20:41:48 2019	(r500434)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	django-taggit
-PORTVERSION=	0.23.0
+PORTVERSION=	1.1.0
 CATEGORIES=	www python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,10 +12,9 @@ COMMENT=	Reusable Django application for simple taggin
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}isort>0:devel/py-isort@${PY_FLAVOR}
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django111>=1.11:www/py-django111@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.5+
 USE_PYTHON=	autoplist distutils
 
 NO_ARCH=		yes

Modified: head/www/py-django-taggit/distinfo
==============================================================================
--- head/www/py-django-taggit/distinfo	Mon Apr 29 20:37:16 2019	(r500433)
+++ head/www/py-django-taggit/distinfo	Mon Apr 29 20:41:48 2019	(r500434)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1542119703
-SHA256 (django-taggit-0.23.0.tar.gz) = a21cbe7e0879f1364eef1c88a2eda89d593bf000ebf51c3f00423c6927075dce
-SIZE (django-taggit-0.23.0.tar.gz) = 44585
+TIMESTAMP = 1556458397
+SHA256 (django-taggit-1.1.0.tar.gz) = 01bf163f66f385de3777378f43338aba93aae8673891d8ba9a20695b2ffb8e10
+SIZE (django-taggit-1.1.0.tar.gz) = 41780

Modified: head/www/py-django-taggit/pkg-descr
==============================================================================
--- head/www/py-django-taggit/pkg-descr	Mon Apr 29 20:37:16 2019	(r500433)
+++ head/www/py-django-taggit/pkg-descr	Mon Apr 29 20:41:48 2019	(r500434)
@@ -1,3 +1,3 @@
 django-taggit a simpler approach to tagging with Django.
 
-WWW: https://github.com/alex/django-taggit
+WWW: https://github.com/jazzband/django-taggit


More information about the svn-ports-all mailing list