pkgsrc/www/py-django-sql-explorer/Makefile
adam 456dd2ddfb py-django-sql-explorer: updated to 1.1.3
1.1.3:
- URL-friendly parameter encoding
- Updating dependency reference for Python 3 compatibility
- Include database views in list of tables
- Fix unicode issue when generating migration with py2 or py3
- Do not use "message" attribute on exception
- Update EXPLORER_SCHEMA_EXCLUDE_TABLE_PREFIXES

- Minor Changes
  - release checklist included in repo
  - readme updated with new screenshots
  - python dependencies/optional-dependencies updated to latest
    - six, xlsxwriter, factory-boy, sqlparse
2019-12-15 21:47:20 +00:00

25 lines
862 B
Makefile

# $NetBSD: Makefile,v 1.3 2019/12/15 21:47:20 adam Exp $
DISTNAME= django-sql-explorer-1.1.3
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-sql-explorer/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/epantry/django-sql-explorer
COMMENT= Pluggable app that allows to execute SQL, view, and export the results
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-django>=1.7.0:../../www/py-django
DEPENDS+= ${PYPKGPREFIX}-sqlparse>=0.1.18:../../databases/py-sqlparse
DEPENDS+= ${PYPKGPREFIX}-six>=1.10.0:../../lang/py-six
DEPENDS+= ${PYPKGPREFIX}-unicodecsv>=0.14.1:../../databases/py-unicodecsv
USE_LANGUAGES= # none
# remove cache files from the distribution
post-extract:
${FIND} ${WRKSRC} -type f -name '*.pyc' -print -delete
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"