databases/py-sqlalchemy-migrate: Add sqlparse and six dependencies
Both sqlparse and six are mentioned as dependencies, but are missing in the ports RUN_DEPENDS. The missing sqlparse dependencies causes (at least) devel/buildbot to generate an error at run-time [1]. This change adds sqlparse and six to RUN_DEPENDS. While I'm here: - Add LICENSE_FILE - Update RUN_DEPENDS version specs to match upstream files (NOOP) - Enable "concurrent" Python version installation - Add NO_ARCH (architecture independent) PR: 215273 [1] Reported by: Nikola Kolev <koue chaosophia net> Approved by: portmgr (blanket) MFH: 2016Q4
This commit is contained in:
parent
d3b2c22484
commit
e796c2e0d2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=428480
1 changed files with 11 additions and 5 deletions
|
@ -3,6 +3,7 @@
|
|||
|
||||
PORTNAME= sqlalchemy-migrate
|
||||
PORTVERSION= 0.10.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
@ -11,13 +12,18 @@ MAINTAINER= lwhsu@FreeBSD.org
|
|||
COMMENT= Database schema migrations for SQLAlchemy
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.8.1:devel/py-pbr
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0.13:databases/py-sqlalchemy10 \
|
||||
${PYTHON_PKGNAMEPREFIX}Tempita>0:textproc/py-Tempita \
|
||||
${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.3:devel/py-pbr
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.7.8:databases/py-sqlalchemy10 \
|
||||
${PYTHON_PKGNAMEPREFIX}Tempita>=0.4:textproc/py-Tempita \
|
||||
${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator \
|
||||
${PYTHON_PKGNAMEPREFIX}sqlparse>0:databases/py-sqlparse \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.7.0:devel/py-six
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= distutils autoplist
|
||||
USE_PYTHON= distutils concurrent autoplist
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
Loading…
Reference in a new issue