From 228a9aba541b87d79c96db350aa68c4b68938d1a Mon Sep 17 00:00:00 2001 From: Kai Knoblich Date: Mon, 29 Apr 2019 20:41:48 +0000 Subject: [PATCH] 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) --- www/py-django-taggit/Makefile | 5 ++--- www/py-django-taggit/distinfo | 6 +++--- www/py-django-taggit/pkg-descr | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/www/py-django-taggit/Makefile b/www/py-django-taggit/Makefile index 07ff5c9487c8..550c7dab7be1 100644 --- a/www/py-django-taggit/Makefile +++ b/www/py-django-taggit/Makefile @@ -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 tagging 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 diff --git a/www/py-django-taggit/distinfo b/www/py-django-taggit/distinfo index c58a93f6ed3a..9f4d6f25e388 100644 --- a/www/py-django-taggit/distinfo +++ b/www/py-django-taggit/distinfo @@ -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 diff --git a/www/py-django-taggit/pkg-descr b/www/py-django-taggit/pkg-descr index 9ef5d4e343d2..1c0759657dfc 100644 --- a/www/py-django-taggit/pkg-descr +++ b/www/py-django-taggit/pkg-descr @@ -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