pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/py-djangocms-icon py-djangocms-icon: updated to 1.5.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/347b32180ef8
branches:  trunk
changeset: 411728:347b32180ef8
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Feb 19 11:25:05 2020 +0000

description:
py-djangocms-icon: updated to 1.5.0

1.5.0:
Added support for Django 3.0

1.4.2:
Added further tests to raise coverage
Fixed smaller issues found during testing
Fixes an issue with older installations
Fixes double save issue, where icon is lost

1.4.1:
Fixes an issue where the icon widget throws a Javascript error

1.4.0:
Added support for Django 2.2 and django CMS 3.7
Removed support for Django 2.0
Extended test matrix
Fixes an issue when using multiple icons on different models #20

1.3.0:
Added support for Font Awesome 5
Added support for custom data iconset
Added isort and adapted imports
Fixed an issue where Font Awesome is not rendered on a clean install
Extended test matrix
Adapted code base to align with other supported addons

diffstat:

 www/py-djangocms-icon/Makefile |   4 ++--
 www/py-djangocms-icon/PLIST    |  17 ++++++++---------
 www/py-djangocms-icon/distinfo |  10 +++++-----
 3 files changed, 15 insertions(+), 16 deletions(-)

diffs (69 lines):

diff -r 6e8877aeea69 -r 347b32180ef8 www/py-djangocms-icon/Makefile
--- a/www/py-djangocms-icon/Makefile    Wed Feb 19 11:23:08 2020 +0000
+++ b/www/py-djangocms-icon/Makefile    Wed Feb 19 11:25:05 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2020/02/03 08:26:17 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2020/02/19 11:25:05 adam Exp $
 
-DISTNAME=      djangocms-icon-1.2.0
+DISTNAME=      djangocms-icon-1.5.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/djangocms-icon/}
diff -r 6e8877aeea69 -r 347b32180ef8 www/py-djangocms-icon/PLIST
--- a/www/py-djangocms-icon/PLIST       Wed Feb 19 11:23:08 2020 +0000
+++ b/www/py-djangocms-icon/PLIST       Wed Feb 19 11:25:05 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2018/12/16 14:05:36 adam Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/02/19 11:25:05 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -30,6 +30,9 @@
 ${PYSITELIB}/djangocms_icon/migrations/0001_initial.py
 ${PYSITELIB}/djangocms_icon/migrations/0001_initial.pyc
 ${PYSITELIB}/djangocms_icon/migrations/0001_initial.pyo
+${PYSITELIB}/djangocms_icon/migrations/0002_auto_20190218_2017.py
+${PYSITELIB}/djangocms_icon/migrations/0002_auto_20190218_2017.pyc
+${PYSITELIB}/djangocms_icon/migrations/0002_auto_20190218_2017.pyo
 ${PYSITELIB}/djangocms_icon/migrations/__init__.py
 ${PYSITELIB}/djangocms_icon/migrations/__init__.pyc
 ${PYSITELIB}/djangocms_icon/migrations/__init__.pyo
@@ -45,8 +48,10 @@
 ${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-elusiveicon-all.js
 ${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-flagicon-all.js
 ${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-4-all.js
-${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-all.js
-${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-all.js
+${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-brands.js
+${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-light.js
+${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-regular.js
+${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-fontawesome-5-solid.js
 ${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-glyphicon-all.js
 ${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-ionicon-all.js
 ${PYSITELIB}/djangocms_icon/static/djangocms_icon/js/libs/iconset/iconset-mapicon-all.js
@@ -61,9 +66,3 @@
 ${PYSITELIB}/djangocms_icon/templates/admin/djangocms_icon/widgets/icon.html
 ${PYSITELIB}/djangocms_icon/templates/djangocms_icon/default/icon.html
 ${PYSITELIB}/djangocms_icon/templates/djangocms_icon/includes/icon.html
-${PYSITELIB}/djangocms_icon/templatetags/__init__.py
-${PYSITELIB}/djangocms_icon/templatetags/__init__.pyc
-${PYSITELIB}/djangocms_icon/templatetags/__init__.pyo
-${PYSITELIB}/djangocms_icon/templatetags/djangocms_icon_tags.py
-${PYSITELIB}/djangocms_icon/templatetags/djangocms_icon_tags.pyc
-${PYSITELIB}/djangocms_icon/templatetags/djangocms_icon_tags.pyo
diff -r 6e8877aeea69 -r 347b32180ef8 www/py-djangocms-icon/distinfo
--- a/www/py-djangocms-icon/distinfo    Wed Feb 19 11:23:08 2020 +0000
+++ b/www/py-djangocms-icon/distinfo    Wed Feb 19 11:25:05 2020 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2018/12/16 14:05:36 adam Exp $
+$NetBSD: distinfo,v 1.2 2020/02/19 11:25:05 adam Exp $
 
-SHA1 (djangocms-icon-1.2.0.tar.gz) = 43dfac616b60563fcdb2168478f495e700b54ec0
-RMD160 (djangocms-icon-1.2.0.tar.gz) = c74d3c29b3f83be1bc4e4b7adcdf538ad82581f4
-SHA512 (djangocms-icon-1.2.0.tar.gz) = c3d00ad6d68cddbd45b8fd462960baa492a2bd74df57df61e92a6676092546b1443b28df0e507865208158c0a466f66027f2c579d26a530c50c2ac27236f96e0
-Size (djangocms-icon-1.2.0.tar.gz) = 167051 bytes
+SHA1 (djangocms-icon-1.5.0.tar.gz) = cc7b7442050e50395dd29c66fa5380edb96bb0bc
+RMD160 (djangocms-icon-1.5.0.tar.gz) = f43dd49f434b7301c93134234c039c2422ef0bde
+SHA512 (djangocms-icon-1.5.0.tar.gz) = 46f22fdaa999ec5ac03c9f16facfcb0864e318e104c964f56dae3db466b4cc46f25e169b6fc81b119aa3eaa4d6457234bcf0d983e08db75c5fd3e0e5327f5891
+Size (djangocms-icon-1.5.0.tar.gz) = 141292 bytes



Home | Main Index | Thread Index | Old Index