diff options
author | alpine-mips-patches <info@mobile-stream.com> | 2019-05-15 15:27:09 +0000 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-09 07:55:32 -0300 |
commit | fa5fd15c73a1c71ef94df5609df85235adcd61dc (patch) | |
tree | 32160aa03bca5a9c3429d6a8efa4d01ec4fea114 | |
parent | 84b4df19b29626e645165b21eab32504f9a07db5 (diff) | |
download | aports-fa5fd15c73a1c71ef94df5609df85235adcd61dc.tar.bz2 aports-fa5fd15c73a1c71ef94df5609df85235adcd61dc.tar.xz |
community/py-sqlalchemy-migrate: fix dependencies
- re-add py-pbr explicitly otherwise it gets pulled automatically
by setuptools from the non-Alpine location during the build;
- re-add py-six as the installed code clearly references it;
- sort depends according to /requirements.txt for consistency.
-rw-r--r-- | community/py-sqlalchemy-migrate/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/py-sqlalchemy-migrate/APKBUILD b/community/py-sqlalchemy-migrate/APKBUILD index 5e39cf29e4..beec2e46f9 100644 --- a/community/py-sqlalchemy-migrate/APKBUILD +++ b/community/py-sqlalchemy-migrate/APKBUILD @@ -3,12 +3,12 @@ pkgname=py-sqlalchemy-migrate _pkgname=sqlalchemy-migrate pkgver=0.12.0 -pkgrel=1 +pkgrel=2 pkgdesc="SQLAlchemy Schema Migration Tools" url="https://github.com/openstack/sqlalchemy-migrate" arch="noarch" license="MIT" -depends="py3-${pkgname#py-} py-sqlalchemy py-tempita py-decorator py-sqlparse" +depends="py3-${pkgname#py-} py-pbr py-sqlalchemy py-decorator py-six py-sqlparse py-tempita" makedepends="python2-dev py-setuptools python3-dev" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="$pkgname-$pkgver.tar.gz::https://github.com/openstack/$_pkgname/archive/$pkgver.tar.gz" |