blob: 3a4706fe2bf3dc645675a8457925136659a0661b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.4 2022/01/04 20:55:21 wiz Exp $
DISTNAME= django-sql-explorer-1.1.3
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
PKGREVISION= 1
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"
|