pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/py-django-sql-explorer py-django-sql-explorer: upd...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c7858fda9054
branches:  trunk
changeset: 313575:c7858fda9054
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Oct 03 10:47:20 2018 +0000

description:
py-django-sql-explorer: updated to 1.1.2

1.1.2:
Invalid characters present in Excel worksheet name
- Major Changes
  - Django 2.0 compatibility
  - Improved interface to database connection management

- Minor Changes
  - Documentation updates
  - Load images over same protocol as originating page

diffstat:

 www/py-django-sql-explorer/Makefile |   6 +++---
 www/py-django-sql-explorer/PLIST    |  20 ++++++++++++++++++--
 www/py-django-sql-explorer/distinfo |  10 +++++-----
 3 files changed, 26 insertions(+), 10 deletions(-)

diffs (98 lines):

diff -r 01b45662d1a6 -r c7858fda9054 www/py-django-sql-explorer/Makefile
--- a/www/py-django-sql-explorer/Makefile       Wed Oct 03 10:42:56 2018 +0000
+++ b/www/py-django-sql-explorer/Makefile       Wed Oct 03 10:47:20 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2017/08/21 15:49:09 adam Exp $
+# $NetBSD: Makefile,v 1.2 2018/10/03 10:47:20 adam Exp $
 
-DISTNAME=      django-sql-explorer-1.1.1
+DISTNAME=      django-sql-explorer-1.1.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-sql-explorer/}
@@ -19,7 +19,7 @@
 
 # remove cache files from the distribution
 post-extract:
-       find ${WRKSRC} -type f -name '*.pyc' -delete
+       find ${WRKSRC} -type f \( -name '*.pyc' -or -name .DS_Store \) -print -delete
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 01b45662d1a6 -r c7858fda9054 www/py-django-sql-explorer/PLIST
--- a/www/py-django-sql-explorer/PLIST  Wed Oct 03 10:42:56 2018 +0000
+++ b/www/py-django-sql-explorer/PLIST  Wed Oct 03 10:47:20 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/21 15:49:09 adam Exp $
+@comment $NetBSD: PLIST,v 1.2 2018/10/03 10:47:20 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -17,6 +17,12 @@
 ${PYSITELIB}/explorer/app_settings.py
 ${PYSITELIB}/explorer/app_settings.pyc
 ${PYSITELIB}/explorer/app_settings.pyo
+${PYSITELIB}/explorer/apps.py
+${PYSITELIB}/explorer/apps.pyc
+${PYSITELIB}/explorer/apps.pyo
+${PYSITELIB}/explorer/connections.py
+${PYSITELIB}/explorer/connections.pyc
+${PYSITELIB}/explorer/connections.pyo
 ${PYSITELIB}/explorer/exporters.py
 ${PYSITELIB}/explorer/exporters.pyc
 ${PYSITELIB}/explorer/exporters.pyo
@@ -38,6 +44,12 @@
 ${PYSITELIB}/explorer/migrations/0005_auto_20160105_2052.py
 ${PYSITELIB}/explorer/migrations/0005_auto_20160105_2052.pyc
 ${PYSITELIB}/explorer/migrations/0005_auto_20160105_2052.pyo
+${PYSITELIB}/explorer/migrations/0006_query_connection.py
+${PYSITELIB}/explorer/migrations/0006_query_connection.pyc
+${PYSITELIB}/explorer/migrations/0006_query_connection.pyo
+${PYSITELIB}/explorer/migrations/0007_querylog_connection.py
+${PYSITELIB}/explorer/migrations/0007_querylog_connection.pyc
+${PYSITELIB}/explorer/migrations/0007_querylog_connection.pyo
 ${PYSITELIB}/explorer/migrations/__init__.py
 ${PYSITELIB}/explorer/migrations/__init__.pyc
 ${PYSITELIB}/explorer/migrations/__init__.pyo
@@ -53,7 +65,7 @@
 ${PYSITELIB}/explorer/static/explorer/bootstrap.min.css
 ${PYSITELIB}/explorer/static/explorer/explorer.css
 ${PYSITELIB}/explorer/static/explorer/explorer.js
-${PYSITELIB}/explorer/static/explorer/jquery-ui.11.4.min.js
+${PYSITELIB}/explorer/static/explorer/jquery-ui.min.js
 ${PYSITELIB}/explorer/static/explorer/query-list.js
 ${PYSITELIB}/explorer/tasks.py
 ${PYSITELIB}/explorer/tasks.pyc
@@ -70,6 +82,7 @@
 ${PYSITELIB}/explorer/templates/explorer/query_list.html
 ${PYSITELIB}/explorer/templates/explorer/querylog_list.html
 ${PYSITELIB}/explorer/templates/explorer/schema.html
+${PYSITELIB}/explorer/templates/explorer/schema_building.html
 ${PYSITELIB}/explorer/templatetags/__init__.py
 ${PYSITELIB}/explorer/templatetags/__init__.pyc
 ${PYSITELIB}/explorer/templatetags/__init__.pyo
@@ -85,6 +98,9 @@
 ${PYSITELIB}/explorer/tests/test_actions.py
 ${PYSITELIB}/explorer/tests/test_actions.pyc
 ${PYSITELIB}/explorer/tests/test_actions.pyo
+${PYSITELIB}/explorer/tests/test_apps.py
+${PYSITELIB}/explorer/tests/test_apps.pyc
+${PYSITELIB}/explorer/tests/test_apps.pyo
 ${PYSITELIB}/explorer/tests/test_exporters.py
 ${PYSITELIB}/explorer/tests/test_exporters.pyc
 ${PYSITELIB}/explorer/tests/test_exporters.pyo
diff -r 01b45662d1a6 -r c7858fda9054 www/py-django-sql-explorer/distinfo
--- a/www/py-django-sql-explorer/distinfo       Wed Oct 03 10:42:56 2018 +0000
+++ b/www/py-django-sql-explorer/distinfo       Wed Oct 03 10:47:20 2018 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2017/08/21 15:49:09 adam Exp $
+$NetBSD: distinfo,v 1.2 2018/10/03 10:47:20 adam Exp $
 
-SHA1 (django-sql-explorer-1.1.1.tar.gz) = 753506e82a68d2d81725b972312c9cbbcc596df4
-RMD160 (django-sql-explorer-1.1.1.tar.gz) = 661b673992cb952eb351540e8b4396eea844310e
-SHA512 (django-sql-explorer-1.1.1.tar.gz) = 288528bf40bcaba5027c77362d479154d68b888699386949fbd2ece59ab44a8c4bd6f50db222bade5c9fa5b305a6081324f57ef21a59c6fbd6f2d7db043c165a
-Size (django-sql-explorer-1.1.1.tar.gz) = 118966 bytes
+SHA1 (django-sql-explorer-1.1.2.tar.gz) = 049d2a0444a389cbf9b04063b89ef73c5018ed31
+RMD160 (django-sql-explorer-1.1.2.tar.gz) = 23e3cafcd51e5934cfabe129b4e21697183b0188
+SHA512 (django-sql-explorer-1.1.2.tar.gz) = 597ffbe4b21a4d1cfdee90a3b3efc3a17f5e2ba60bb4d7ff88b7d100ac7971bb174442d2472c64437cd48d0889e1228390e81513d99de2b23b76b182fe9e8fcb
+Size (django-sql-explorer-1.1.2.tar.gz) = 154526 bytes



Home | Main Index | Thread Index | Old Index