43 lines
1.4 KiB
Bash
43 lines
1.4 KiB
Bash
# Template file for 'python-sqlalchemy-migrate'
|
|
pkgname=python-sqlalchemy-migrate
|
|
version=0.10.0
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="${pkgname#*-}-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools python-pbr python3.4-pbr"
|
|
depends="python-pbr python-SQLAlchemy python-decorator python-six python-sqlparse python-tempita"
|
|
pycompile_module="migrate"
|
|
short_desc="Database schema migration for SQLAlchemy (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/stackforge/sqlalchemy-migrate"
|
|
license="MIT"
|
|
distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
|
|
checksum=f83c5cce9c09e5c05527279b7fe1565b32e5353342ff30b24f594fa2e5a7e003
|
|
|
|
alternatives="
|
|
migrate:migrate-repository:/usr/bin/migrate-repository2.7
|
|
migrate:migrate:/usr/bin/migrate2.7"
|
|
|
|
post_install() {
|
|
vlicense COPYING LICENSE
|
|
}
|
|
|
|
python3.4-sqlalchemy-migrate_package() {
|
|
alternatives="
|
|
migrate:migrate-repository:/usr/bin/migrate-repository3.4
|
|
migrate:migrate:/usr/bin/migrate3.4"
|
|
noarch=yes
|
|
depends="python3.4-pbr python3.4-SQLAlchemy python3.4-decorator python3.4-six
|
|
python3.4-sqlparse python3.4-tempita"
|
|
pycompile_version="3.4"
|
|
pycompile_module="migrate"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/bin/*3.4
|
|
vmove usr/lib/python3.4
|
|
vlicense COPYING LICENSE
|
|
}
|
|
}
|