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)
This commit is contained in:
Kai Knoblich 2019-04-29 20:41:48 +00:00
parent 12c556316d
commit 228a9aba54
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=500434
3 changed files with 6 additions and 7 deletions

View file

@ -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

View file

@ -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

View file

@ -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