Wed Jun 3 15:27:45 2020 UTC ()
py-django-reversion: updated to 3.0.7

3.0.7:
- Removing deprecated usages of `ugettest_lazy`
- Slovenian translation

3.0.6:
- Packaging improvements
- Removing deprecated usages of `force_text`
- Documentation fixes

3.0.5:
- Improved performance of `get_deleted` for large datasets
- Django 3.0 compatibility
- Drops Django < 1.11 compatibility
- Fixed errors in manageement commands when `django.contrib.admin` is not in `INSTALLED_APPS`

3.0.4:
- Remove `django.contrib.admin` dependency from django-reversion.
- README refactor
- Testing against Django 2.2

3.0.3:
- Improved performance of many reversion database queries using `EXISTS` subquery
- Added support for Django 2.1 `view` permission

3.0.2:
- Removed squashed migrations, as they subtly messed up the Django migrations framework

3.0.1:
- Added squashed migrations back in to allow older installations to upgrade.
- Fixed TypeError exception when accessing m2m_data attribute from a field that points to Django窶冱 User model

3.0.0:
- **Breaking:** ``Revision.commment`` now contains the raw JSON change message generated by django admin, rather than
  a string. Accesing ``Revision.comment`` directly is no longer recommended. Instead, use ``Revision.get_comment()``.

- **BREAKING:** django-reversion now uses ``_base_manager`` to calculate deleted models, not ``_default_manager``. This
  change will only affect models that perform default filtering in their ``_default_manager``
- Added ``request_creates_revision`` hook to ``RevisionMiddleware`` and ``views.create_revision``.
- Added ``revision_request_creates_revision`` hook to ``views.RevisionMixinView``.
- Added ``--meta`` flag to ``./manage.py createrevisions``
- Fixed bug when reverting deleted nested inlines
- Added tests for django 2.1


(adam)
diff -r1.23 -r1.24 pkgsrc/www/py-django-reversion/Makefile
diff -r1.12 -r1.13 pkgsrc/www/py-django-reversion/PLIST
diff -r1.20 -r1.21 pkgsrc/www/py-django-reversion/distinfo

cvs diff -r1.23 -r1.24 pkgsrc/www/py-django-reversion/Makefile (expand / switch to unified diff)

--- pkgsrc/www/py-django-reversion/Makefile 2020/05/31 20:45:17 1.23
+++ pkgsrc/www/py-django-reversion/Makefile 2020/06/03 15:27:44 1.24
@@ -1,19 +1,20 @@ @@ -1,19 +1,20 @@
1# $NetBSD: Makefile,v 1.23 2020/05/31 20:45:17 joerg Exp $ 1# $NetBSD: Makefile,v 1.24 2020/06/03 15:27:44 adam Exp $
2 2
3DISTNAME= django-reversion-2.0.13 3DISTNAME= django-reversion-3.0.7
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= www python 5CATEGORIES= www python
6MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-reversion/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-reversion/}
7 7
8MAINTAINER= adam@NetBSD.org 8MAINTAINER= adam@NetBSD.org
9HOMEPAGE= https://github.com/etianen/django-reversion/ 9HOMEPAGE= https://github.com/etianen/django-reversion/
10COMMENT= Version control facilities for Django 10COMMENT= Version control facilities for Django
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13# django-3 removed django.utils.six 13DEPENDS+= ${PYPKGPREFIX}-django>=1.11:../../www/py-django
14DEPENDS+= ${PYPKGPREFIX}-django>=1.8<3:../../www/py-django 
15 14
16USE_LANGUAGES= # none 15USE_LANGUAGES= # none
17 16
 17PYTHON_VERSIONS_INCOMPATIBLE= 27
 18
18.include "../../lang/python/egg.mk" 19.include "../../lang/python/egg.mk"
19.include "../../mk/bsd.pkg.mk" 20.include "../../mk/bsd.pkg.mk"

cvs diff -r1.12 -r1.13 pkgsrc/www/py-django-reversion/PLIST (expand / switch to unified diff)

--- pkgsrc/www/py-django-reversion/PLIST 2017/12/10 08:56:29 1.12
+++ pkgsrc/www/py-django-reversion/PLIST 2020/06/03 15:27:44 1.13
@@ -1,29 +1,26 @@ @@ -1,29 +1,26 @@
1@comment $NetBSD: PLIST,v 1.12 2017/12/10 08:56:29 adam Exp $ 1@comment $NetBSD: PLIST,v 1.13 2020/06/03 15:27:44 adam Exp $
2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
5${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 5${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
6${PYSITELIB}/${EGG_INFODIR}/requires.txt 6${PYSITELIB}/${EGG_INFODIR}/requires.txt
7${PYSITELIB}/${EGG_INFODIR}/top_level.txt 7${PYSITELIB}/${EGG_INFODIR}/top_level.txt
8${PYSITELIB}/reversion/__init__.py 8${PYSITELIB}/reversion/__init__.py
9${PYSITELIB}/reversion/__init__.pyc 9${PYSITELIB}/reversion/__init__.pyc
10${PYSITELIB}/reversion/__init__.pyo 10${PYSITELIB}/reversion/__init__.pyo
11${PYSITELIB}/reversion/admin.py 11${PYSITELIB}/reversion/admin.py
12${PYSITELIB}/reversion/admin.pyc 12${PYSITELIB}/reversion/admin.pyc
13${PYSITELIB}/reversion/admin.pyo 13${PYSITELIB}/reversion/admin.pyo
14${PYSITELIB}/reversion/compat.py 
15${PYSITELIB}/reversion/compat.pyc 
16${PYSITELIB}/reversion/compat.pyo 
17${PYSITELIB}/reversion/errors.py 14${PYSITELIB}/reversion/errors.py
18${PYSITELIB}/reversion/errors.pyc 15${PYSITELIB}/reversion/errors.pyc
19${PYSITELIB}/reversion/errors.pyo 16${PYSITELIB}/reversion/errors.pyo
20${PYSITELIB}/reversion/locale/ar/LC_MESSAGES/django.mo 17${PYSITELIB}/reversion/locale/ar/LC_MESSAGES/django.mo
21${PYSITELIB}/reversion/locale/ar/LC_MESSAGES/django.po 18${PYSITELIB}/reversion/locale/ar/LC_MESSAGES/django.po
22${PYSITELIB}/reversion/locale/cs/LC_MESSAGES/django.mo 19${PYSITELIB}/reversion/locale/cs/LC_MESSAGES/django.mo
23${PYSITELIB}/reversion/locale/cs/LC_MESSAGES/django.po 20${PYSITELIB}/reversion/locale/cs/LC_MESSAGES/django.po
24${PYSITELIB}/reversion/locale/da/LC_MESSAGES/django.mo 21${PYSITELIB}/reversion/locale/da/LC_MESSAGES/django.mo
25${PYSITELIB}/reversion/locale/da/LC_MESSAGES/django.po 22${PYSITELIB}/reversion/locale/da/LC_MESSAGES/django.po
26${PYSITELIB}/reversion/locale/de/LC_MESSAGES/django.mo 23${PYSITELIB}/reversion/locale/de/LC_MESSAGES/django.mo
27${PYSITELIB}/reversion/locale/de/LC_MESSAGES/django.po 24${PYSITELIB}/reversion/locale/de/LC_MESSAGES/django.po
28${PYSITELIB}/reversion/locale/es/LC_MESSAGES/django.mo 25${PYSITELIB}/reversion/locale/es/LC_MESSAGES/django.mo
29${PYSITELIB}/reversion/locale/es/LC_MESSAGES/django.po 26${PYSITELIB}/reversion/locale/es/LC_MESSAGES/django.po
@@ -37,64 +34,54 @@ ${PYSITELIB}/reversion/locale/it/LC_MESS @@ -37,64 +34,54 @@ ${PYSITELIB}/reversion/locale/it/LC_MESS
37${PYSITELIB}/reversion/locale/it/LC_MESSAGES/django.po 34${PYSITELIB}/reversion/locale/it/LC_MESSAGES/django.po
38${PYSITELIB}/reversion/locale/nb/LC_MESSAGES/django.mo 35${PYSITELIB}/reversion/locale/nb/LC_MESSAGES/django.mo
39${PYSITELIB}/reversion/locale/nb/LC_MESSAGES/django.po 36${PYSITELIB}/reversion/locale/nb/LC_MESSAGES/django.po
40${PYSITELIB}/reversion/locale/nl/LC_MESSAGES/django.mo 37${PYSITELIB}/reversion/locale/nl/LC_MESSAGES/django.mo
41${PYSITELIB}/reversion/locale/nl/LC_MESSAGES/django.po 38${PYSITELIB}/reversion/locale/nl/LC_MESSAGES/django.po
42${PYSITELIB}/reversion/locale/pl/LC_MESSAGES/django.mo 39${PYSITELIB}/reversion/locale/pl/LC_MESSAGES/django.mo
43${PYSITELIB}/reversion/locale/pl/LC_MESSAGES/django.po 40${PYSITELIB}/reversion/locale/pl/LC_MESSAGES/django.po
44${PYSITELIB}/reversion/locale/pt_BR/LC_MESSAGES/django.mo 41${PYSITELIB}/reversion/locale/pt_BR/LC_MESSAGES/django.mo
45${PYSITELIB}/reversion/locale/pt_BR/LC_MESSAGES/django.po 42${PYSITELIB}/reversion/locale/pt_BR/LC_MESSAGES/django.po
46${PYSITELIB}/reversion/locale/ru/LC_MESSAGES/django.mo 43${PYSITELIB}/reversion/locale/ru/LC_MESSAGES/django.mo
47${PYSITELIB}/reversion/locale/ru/LC_MESSAGES/django.po 44${PYSITELIB}/reversion/locale/ru/LC_MESSAGES/django.po
48${PYSITELIB}/reversion/locale/sk/LC_MESSAGES/django.mo 45${PYSITELIB}/reversion/locale/sk/LC_MESSAGES/django.mo
49${PYSITELIB}/reversion/locale/sk/LC_MESSAGES/django.po 46${PYSITELIB}/reversion/locale/sk/LC_MESSAGES/django.po
 47${PYSITELIB}/reversion/locale/sl_SI/LC_MESSAGES/django.mo
 48${PYSITELIB}/reversion/locale/sl_SI/LC_MESSAGES/django.po
50${PYSITELIB}/reversion/locale/sv/LC_MESSAGES/django.mo 49${PYSITELIB}/reversion/locale/sv/LC_MESSAGES/django.mo
51${PYSITELIB}/reversion/locale/sv/LC_MESSAGES/django.po 50${PYSITELIB}/reversion/locale/sv/LC_MESSAGES/django.po
52${PYSITELIB}/reversion/locale/uk/LC_MESSAGES/django.mo 51${PYSITELIB}/reversion/locale/uk/LC_MESSAGES/django.mo
53${PYSITELIB}/reversion/locale/uk/LC_MESSAGES/django.po 52${PYSITELIB}/reversion/locale/uk/LC_MESSAGES/django.po
54${PYSITELIB}/reversion/locale/zh_CN/LC_MESSAGES/django.mo 53${PYSITELIB}/reversion/locale/zh_CN/LC_MESSAGES/django.mo
55${PYSITELIB}/reversion/locale/zh_CN/LC_MESSAGES/django.po 54${PYSITELIB}/reversion/locale/zh_CN/LC_MESSAGES/django.po
56${PYSITELIB}/reversion/locale/zh_Hans/LC_MESSAGES/django.mo 55${PYSITELIB}/reversion/locale/zh_Hans/LC_MESSAGES/django.mo
57${PYSITELIB}/reversion/locale/zh_Hans/LC_MESSAGES/django.po 56${PYSITELIB}/reversion/locale/zh_Hans/LC_MESSAGES/django.po
58${PYSITELIB}/reversion/management/__init__.py 57${PYSITELIB}/reversion/management/__init__.py
59${PYSITELIB}/reversion/management/__init__.pyc 58${PYSITELIB}/reversion/management/__init__.pyc
60${PYSITELIB}/reversion/management/__init__.pyo 59${PYSITELIB}/reversion/management/__init__.pyo
61${PYSITELIB}/reversion/management/commands/__init__.py 60${PYSITELIB}/reversion/management/commands/__init__.py
62${PYSITELIB}/reversion/management/commands/__init__.pyc 61${PYSITELIB}/reversion/management/commands/__init__.pyc
63${PYSITELIB}/reversion/management/commands/__init__.pyo 62${PYSITELIB}/reversion/management/commands/__init__.pyo
64${PYSITELIB}/reversion/management/commands/createinitialrevisions.py 63${PYSITELIB}/reversion/management/commands/createinitialrevisions.py
65${PYSITELIB}/reversion/management/commands/createinitialrevisions.pyc 64${PYSITELIB}/reversion/management/commands/createinitialrevisions.pyc
66${PYSITELIB}/reversion/management/commands/createinitialrevisions.pyo 65${PYSITELIB}/reversion/management/commands/createinitialrevisions.pyo
67${PYSITELIB}/reversion/management/commands/deleterevisions.py 66${PYSITELIB}/reversion/management/commands/deleterevisions.py
68${PYSITELIB}/reversion/management/commands/deleterevisions.pyc 67${PYSITELIB}/reversion/management/commands/deleterevisions.pyc
69${PYSITELIB}/reversion/management/commands/deleterevisions.pyo 68${PYSITELIB}/reversion/management/commands/deleterevisions.pyo
70${PYSITELIB}/reversion/middleware.py 69${PYSITELIB}/reversion/middleware.py
71${PYSITELIB}/reversion/middleware.pyc 70${PYSITELIB}/reversion/middleware.pyc
72${PYSITELIB}/reversion/middleware.pyo 71${PYSITELIB}/reversion/middleware.pyo
73${PYSITELIB}/reversion/migrations/0001_initial.py 
74${PYSITELIB}/reversion/migrations/0001_initial.pyc 
75${PYSITELIB}/reversion/migrations/0001_initial.pyo 
76${PYSITELIB}/reversion/migrations/0001_squashed_0004_auto_20160611_1202.py 72${PYSITELIB}/reversion/migrations/0001_squashed_0004_auto_20160611_1202.py
77${PYSITELIB}/reversion/migrations/0001_squashed_0004_auto_20160611_1202.pyc 73${PYSITELIB}/reversion/migrations/0001_squashed_0004_auto_20160611_1202.pyc
78${PYSITELIB}/reversion/migrations/0001_squashed_0004_auto_20160611_1202.pyo 74${PYSITELIB}/reversion/migrations/0001_squashed_0004_auto_20160611_1202.pyo
79${PYSITELIB}/reversion/migrations/0002_auto_20141216_1509.py 
80${PYSITELIB}/reversion/migrations/0002_auto_20141216_1509.pyc 
81${PYSITELIB}/reversion/migrations/0002_auto_20141216_1509.pyo 
82${PYSITELIB}/reversion/migrations/0003_auto_20160601_1600.py 
83${PYSITELIB}/reversion/migrations/0003_auto_20160601_1600.pyc 
84${PYSITELIB}/reversion/migrations/0003_auto_20160601_1600.pyo 
85${PYSITELIB}/reversion/migrations/0004_auto_20160611_1202.py 
86${PYSITELIB}/reversion/migrations/0004_auto_20160611_1202.pyc 
87${PYSITELIB}/reversion/migrations/0004_auto_20160611_1202.pyo 
88${PYSITELIB}/reversion/migrations/__init__.py 75${PYSITELIB}/reversion/migrations/__init__.py
89${PYSITELIB}/reversion/migrations/__init__.pyc 76${PYSITELIB}/reversion/migrations/__init__.pyc
90${PYSITELIB}/reversion/migrations/__init__.pyo 77${PYSITELIB}/reversion/migrations/__init__.pyo
91${PYSITELIB}/reversion/models.py 78${PYSITELIB}/reversion/models.py
92${PYSITELIB}/reversion/models.pyc 79${PYSITELIB}/reversion/models.pyc
93${PYSITELIB}/reversion/models.pyo 80${PYSITELIB}/reversion/models.pyo
94${PYSITELIB}/reversion/revisions.py 81${PYSITELIB}/reversion/revisions.py
95${PYSITELIB}/reversion/revisions.pyc 82${PYSITELIB}/reversion/revisions.pyc
96${PYSITELIB}/reversion/revisions.pyo 83${PYSITELIB}/reversion/revisions.pyo
97${PYSITELIB}/reversion/signals.py 84${PYSITELIB}/reversion/signals.py
98${PYSITELIB}/reversion/signals.pyc 85${PYSITELIB}/reversion/signals.pyc
99${PYSITELIB}/reversion/signals.pyo 86${PYSITELIB}/reversion/signals.pyo
100${PYSITELIB}/reversion/templates/reversion/change_list.html 87${PYSITELIB}/reversion/templates/reversion/change_list.html

cvs diff -r1.20 -r1.21 pkgsrc/www/py-django-reversion/distinfo (expand / switch to unified diff)

--- pkgsrc/www/py-django-reversion/distinfo 2018/02/02 08:08:10 1.20
+++ pkgsrc/www/py-django-reversion/distinfo 2020/06/03 15:27:44 1.21
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.20 2018/02/02 08:08:10 adam Exp $ 1$NetBSD: distinfo,v 1.21 2020/06/03 15:27:44 adam Exp $
2 2
3SHA1 (django-reversion-2.0.13.tar.gz) = 6aeff1f2da50d8208739286567e5b9424a65302f 3SHA1 (django-reversion-3.0.7.tar.gz) = b5f4d0fbad61099494be568bb387fbf4f8c72f33
4RMD160 (django-reversion-2.0.13.tar.gz) = 393b732ef2fb6a33b1aee6c6faf864f0b091ab37 4RMD160 (django-reversion-3.0.7.tar.gz) = 4376c81d1ef903aa07f550883a3721f43b896bc4
5SHA512 (django-reversion-2.0.13.tar.gz) = 77316c54404c2f4712f967ac8a0d6cc55c365dc435fbc1bd0ce39fad92dee8386c7cb93411e050ae06fdfbde56aae9752e0c5e76bd680042d61e696b9fa2ff2c 5SHA512 (django-reversion-3.0.7.tar.gz) = 8efe785bd71965248749cfcbd608e82a753533ec3826e230f7e2265f855c3bd297cc644076abbb401e28533799a357ce322b3f97e54c0633e62333757d4a188f
6Size (django-reversion-2.0.13.tar.gz) = 65238 bytes 6Size (django-reversion-3.0.7.tar.gz) = 67504 bytes