pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/py-django-sekizai py-django-sekizai: updated to 1.1.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a22ff8dcefe3
branches:  trunk
changeset: 410971:a22ff8dcefe3
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Feb 02 06:47:17 2020 +0000

description:
py-django-sekizai: updated to 1.1.0

1.1.0:
Added support for Django 3.0
Added support for Python 3.8
Extended test matrix
Added isort and adapted imports
Adapted code base to align with other supported addons
Adapted README.rst instructions

1.0.0:
Added support for Django 1.11, 2.0, 2.1, and 2.2
Removed support for Django < 1.11

diffstat:

 www/py-django-sekizai/Makefile |   9 +++++----
 www/py-django-sekizai/PLIST    |  36 +-----------------------------------
 www/py-django-sekizai/distinfo |  10 +++++-----
 3 files changed, 11 insertions(+), 44 deletions(-)

diffs (87 lines):

diff -r ec6a61d34d58 -r a22ff8dcefe3 www/py-django-sekizai/Makefile
--- a/www/py-django-sekizai/Makefile    Sun Feb 02 06:37:33 2020 +0000
+++ b/www/py-django-sekizai/Makefile    Sun Feb 02 06:47:17 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2016/09/07 13:56:24 adam Exp $
+# $NetBSD: Makefile,v 1.13 2020/02/02 06:47:17 adam Exp $
 
-DISTNAME=      django-sekizai-0.10.0
+DISTNAME=      django-sekizai-1.1.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-sekizai/}
@@ -10,9 +10,10 @@
 COMMENT=       Django Template Blocks with extra functionality
 LICENSE=       modified-bsd
 
-USE_LANGUAGES=         # empty
+DEPENDS+=      ${PYPKGPREFIX}-django>=1.11:../../www/py-django
+DEPENDS+=      ${PYPKGPREFIX}-django-classy-tags>=0.9.0:../../www/py-django-classy-tags
 
-DEPENDS+=      ${PYPKGPREFIX}-django-[0-9]*:../../www/py-django
+USE_LANGUAGES= # none
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r ec6a61d34d58 -r a22ff8dcefe3 www/py-django-sekizai/PLIST
--- a/www/py-django-sekizai/PLIST       Sun Feb 02 06:37:33 2020 +0000
+++ b/www/py-django-sekizai/PLIST       Sun Feb 02 06:47:17 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2015/01/11 14:08:34 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2020/02/02 06:47:17 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -29,37 +29,3 @@
 ${PYSITELIB}/sekizai/templatetags/sekizai_tags.py
 ${PYSITELIB}/sekizai/templatetags/sekizai_tags.pyc
 ${PYSITELIB}/sekizai/templatetags/sekizai_tags.pyo
-${PYSITELIB}/sekizai/test_templates/basic.html
-${PYSITELIB}/sekizai/test_templates/css.html
-${PYSITELIB}/sekizai/test_templates/css2.html
-${PYSITELIB}/sekizai/test_templates/easy_base.html
-${PYSITELIB}/sekizai/test_templates/easy_inherit.html
-${PYSITELIB}/sekizai/test_templates/eat.html
-${PYSITELIB}/sekizai/test_templates/errors/failadd.html
-${PYSITELIB}/sekizai/test_templates/errors/failbase.html
-${PYSITELIB}/sekizai/test_templates/errors/failbase2.html
-${PYSITELIB}/sekizai/test_templates/errors/failinc.html
-${PYSITELIB}/sekizai/test_templates/errors/failrender.html
-${PYSITELIB}/sekizai/test_templates/inherit/base.html
-${PYSITELIB}/sekizai/test_templates/inherit/baseinc.html
-${PYSITELIB}/sekizai/test_templates/inherit/chain.html
-${PYSITELIB}/sekizai/test_templates/inherit/extend.html
-${PYSITELIB}/sekizai/test_templates/inherit/extinc.html
-${PYSITELIB}/sekizai/test_templates/inherit/nullbase.html
-${PYSITELIB}/sekizai/test_templates/inherit/nullext.html
-${PYSITELIB}/sekizai/test_templates/inherit/spacechain.html
-${PYSITELIB}/sekizai/test_templates/inherit/subvarchain.html
-${PYSITELIB}/sekizai/test_templates/inherit/super_blocks.html
-${PYSITELIB}/sekizai/test_templates/inherit/varchain.html
-${PYSITELIB}/sekizai/test_templates/named_end.html
-${PYSITELIB}/sekizai/test_templates/namespaces.html
-${PYSITELIB}/sekizai/test_templates/processors/addtoblock_namespace.html
-${PYSITELIB}/sekizai/test_templates/processors/addtoblock_null.html
-${PYSITELIB}/sekizai/test_templates/processors/namespace.html
-${PYSITELIB}/sekizai/test_templates/processors/null.html
-${PYSITELIB}/sekizai/test_templates/unique.html
-${PYSITELIB}/sekizai/test_templates/variables.html
-${PYSITELIB}/sekizai/test_templates/with_data.html
-${PYSITELIB}/sekizai/tests.py
-${PYSITELIB}/sekizai/tests.pyc
-${PYSITELIB}/sekizai/tests.pyo
diff -r ec6a61d34d58 -r a22ff8dcefe3 www/py-django-sekizai/distinfo
--- a/www/py-django-sekizai/distinfo    Sun Feb 02 06:37:33 2020 +0000
+++ b/www/py-django-sekizai/distinfo    Sun Feb 02 06:47:17 2020 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2016/09/07 13:56:24 adam Exp $
+$NetBSD: distinfo,v 1.9 2020/02/02 06:47:17 adam Exp $
 
-SHA1 (django-sekizai-0.10.0.tar.gz) = d3d741d6208246d9fe30d4067acef31834ab6b67
-RMD160 (django-sekizai-0.10.0.tar.gz) = 1cff7a00ad3529a7ade33d6aa38405b0d761205a
-SHA512 (django-sekizai-0.10.0.tar.gz) = f7e336fce652094394aa3d3f94f53dae0eb80bb3cc7715013f1c8d227b9f36b97746f572a8c5bfe278e41d73783b7a978f86967ec23a7a423f1c014d658347c2
-Size (django-sekizai-0.10.0.tar.gz) = 18731 bytes
+SHA1 (django-sekizai-1.1.0.tar.gz) = c477754dd4967d2cade2b35cb3f503f2355aa32b
+RMD160 (django-sekizai-1.1.0.tar.gz) = ab52e910eeadc667c0d728b654f21afc167a4c16
+SHA512 (django-sekizai-1.1.0.tar.gz) = 37358b259e3db1d197affa7f672832fa574bc7b88d06f0e60f492225299da93762931e39c1406bee6d04a7b11cbf2af0b2c36c9c9e3d8129da515278a648521b
+Size (django-sekizai-1.1.0.tar.gz) = 7007 bytes



Home | Main Index | Thread Index | Old Index