pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/py-django-taggit



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Sep 16 19:33:02 UTC 2024

Modified Files:
        pkgsrc/www/py-django-taggit: Makefile distinfo
Added Files:
        pkgsrc/www/py-django-taggit/patches: patch-setup.cfg

Log Message:
py-django-taggit: updated to 6.0.0

6.0.0 (2024-07-27)

* By default, order tag items on instances by the primary key. This generally means that they will be ordered by "creation date" for the tag item.
  The previous behavior for this was that by default tag items were not ordered. In practice tag items often end up ordered by creation date anyways, just due to how databases work, but this was not 
a guarantee.
  If you wish to have the old behavior, set ``ordering=[]`` to your ``TaggableManager`` instance.
  We believe that this should not cause a noticable performance change, and the number of queries involved should not change.
* Added the ability to merge tags via the admin
* Add Django 5.0 support (no code changes were needed, but now we test this release).
* Add Python 3.12 support
* Add support for dumpdata/loaddata using natural keys


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-django-taggit/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-django-taggit/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/www/py-django-taggit/patches/patch-setup.cfg

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/py-django-taggit/Makefile
diff -u pkgsrc/www/py-django-taggit/Makefile:1.8 pkgsrc/www/py-django-taggit/Makefile:1.9
--- pkgsrc/www/py-django-taggit/Makefile:1.8    Fri Feb  9 12:40:04 2024
+++ pkgsrc/www/py-django-taggit/Makefile        Mon Sep 16 19:33:01 2024
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2024/02/09 12:40:04 adam Exp $
+# $NetBSD: Makefile,v 1.9 2024/09/16 19:33:01 adam Exp $
 
-DISTNAME=      django-taggit-5.0.1
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+DISTNAME=      django_taggit-6.0.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-taggit/}
 
@@ -18,8 +18,6 @@ TEST_DEPENDS+=        ${PYPKGPREFIX}-djangorest
 
 USE_LANGUAGES= # none
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27
-
 do-test:
        cd ${WRKSRC} && ${PREFIX}/bin/coverage-${PYVERSSUFFIX} run -m django test --settings=tests.settings
 

Index: pkgsrc/www/py-django-taggit/distinfo
diff -u pkgsrc/www/py-django-taggit/distinfo:1.7 pkgsrc/www/py-django-taggit/distinfo:1.8
--- pkgsrc/www/py-django-taggit/distinfo:1.7    Fri Feb  9 12:40:04 2024
+++ pkgsrc/www/py-django-taggit/distinfo        Mon Sep 16 19:33:01 2024
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.7 2024/02/09 12:40:04 adam Exp $
+$NetBSD: distinfo,v 1.8 2024/09/16 19:33:01 adam Exp $
 
-BLAKE2s (django-taggit-5.0.1.tar.gz) = 40eda5581172c2bf5ba4a0ee70fc1bb42737f73e612d18841c9c3e6587471bc1
-SHA512 (django-taggit-5.0.1.tar.gz) = af7b04da8359ebf68ea1b5c1fba3ed509b5357d65cccd95d835e0db68431fcbf0057e613cd05c54ac76524c8fc1c23d0dbacae8b80a23bb7867a0fa4a62f445b
-Size (django-taggit-5.0.1.tar.gz) = 60372 bytes
+BLAKE2s (django_taggit-6.0.0.tar.gz) = 34c46c18784c43c8a4dffdad99c324d691b7f4202133ed55d86a910337e3398f
+SHA512 (django_taggit-6.0.0.tar.gz) = 329ee2666e58e48288cf20d2043608ea378bf7e004ec468119c5e34e06b933726c9c8a4d6daaf8e9251e4692d0d2b688ddd8693b31975744f7e17bf94d6dc642
+Size (django_taggit-6.0.0.tar.gz) = 67403 bytes
+SHA1 (patch-setup.cfg) = 965ff2b06c0804327c4a2a8a3f5873398c0b3361

Added files:

Index: pkgsrc/www/py-django-taggit/patches/patch-setup.cfg
diff -u /dev/null pkgsrc/www/py-django-taggit/patches/patch-setup.cfg:1.1
--- /dev/null   Mon Sep 16 19:33:02 2024
+++ pkgsrc/www/py-django-taggit/patches/patch-setup.cfg Mon Sep 16 19:33:02 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-setup.cfg,v 1.1 2024/09/16 19:33:02 adam Exp $
+
+Do not install sample_taggit.
+
+--- setup.cfg.orig     2024-09-16 19:28:59.969807174 +0000
++++ setup.cfg
+@@ -38,7 +38,7 @@ include_package_data = true
+ zip_safe = false
+ 
+ [options.packages.find]
+-exclude = tests*
++exclude = tests*, sample_taggit*
+ 
+ [flake8]
+ ignore = E501



Home | Main Index | Thread Index | Old Index