python-sqlalchemy-migrate: update to 0.9.4
This commit is contained in:
parent
0a31f74eaf
commit
c828d59830
|
@ -0,0 +1,17 @@
|
||||||
|
--- migrate/versioning/migrate_repository.py
|
||||||
|
+++ migrate/versioning/migrate_repository.py
|
||||||
|
@@ -13,12 +13,12 @@
|
||||||
|
|
||||||
|
def usage():
|
||||||
|
"""Gives usage information."""
|
||||||
|
- print """Usage: %(prog)s repository-to-migrate
|
||||||
|
+ print("""Usage: %(prog)s repository-to-migrate
|
||||||
|
|
||||||
|
Upgrade your repository to the new flat format.
|
||||||
|
|
||||||
|
NOTE: You should probably make a backup before running this.
|
||||||
|
- """ % {'prog': sys.argv[0]}
|
||||||
|
+ """ % {'prog': sys.argv[0]})
|
||||||
|
|
||||||
|
sys.exit(1)
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
# Template file for 'python-sqlalchemy-migrate'
|
# Template file for 'python-sqlalchemy-migrate'
|
||||||
pkgname=python-sqlalchemy-migrate
|
pkgname=python-sqlalchemy-migrate
|
||||||
version=0.9.2
|
version=0.9.4
|
||||||
revision=1
|
revision=1
|
||||||
noarch=yes
|
noarch=yes
|
||||||
wrksrc="${pkgname#*-}-${version}"
|
wrksrc="${pkgname#*-}-${version}"
|
||||||
python_versions="2.7 3.4"
|
python_versions="2.7 3.4"
|
||||||
hostmakedepends="python-setuptools python3.4-setuptools python-pbr python3.4-pbr"
|
hostmakedepends="python-setuptools python3.4-setuptools python-pbr python3.4-pbr"
|
||||||
makedepends="python-pbr python3.4-pbr"
|
|
||||||
depends="python-pbr python-SQLAlchemy python-decorator python-six python-sqlparse python-tempita"
|
depends="python-pbr python-SQLAlchemy python-decorator python-six python-sqlparse python-tempita"
|
||||||
pycompile_module="migrate"
|
pycompile_module="migrate"
|
||||||
short_desc="Database schema migration for SQLAlchemy (Python2)"
|
short_desc="Database schema migration for SQLAlchemy (Python2)"
|
||||||
|
@ -14,38 +13,33 @@ maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||||
homepage="https://github.com/stackforge/sqlalchemy-migrate"
|
homepage="https://github.com/stackforge/sqlalchemy-migrate"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
|
distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
|
||||||
checksum=578fa857615f05f9c73f024147c75019535d3d276ca46f5ec84cc0d606820893
|
checksum=b3a35ee95196d72483bf821f60a1e784d77da9d6baed5e6ccdaffbfa7e87cd8e
|
||||||
|
|
||||||
post_extract() {
|
|
||||||
cp -a ${wrksrc} /tmp/python2.7-build
|
|
||||||
cp -a ${wrksrc} /tmp/python3.4-build
|
|
||||||
mv /tmp/python{2.7,3.4}-build ${wrksrc}
|
|
||||||
}
|
|
||||||
|
|
||||||
pre_build() {
|
pre_build() {
|
||||||
cd ${wrksrc}/python3.4-build
|
cp -a ${wrksrc} /tmp/migrate-2.7
|
||||||
sed -i 's,migrate =,migrate3 =,;s,migrate-repository =,migrate-repository3 =,' setup.cfg
|
cp -a ${wrksrc} /tmp/migrate-3.4
|
||||||
find . -type f -name '*.py' -exec sed -i -e '/^#!/s,python$,&3.4,' {} +
|
mv /tmp/migrate-{2.7,3.4} ${wrksrc}
|
||||||
|
|
||||||
|
cd ${wrksrc}/migrate-3.4
|
||||||
|
sed -i 's,\(migrate\) =,\13 =,;s,\(migrate-repository\) =,\13 =,' setup.cfg
|
||||||
|
find . -type f -name '*.py' -exec sed -i '/^#!/s,python$,&3.4,' {} +
|
||||||
}
|
}
|
||||||
|
|
||||||
do_build() {
|
do_build() {
|
||||||
cd ${wrksrc}/python2.7-build
|
cd ${wrksrc}/migrate-2.7
|
||||||
python setup.py build
|
python setup.py build
|
||||||
|
|
||||||
cd ${wrksrc}/python3.4-build
|
cd ${wrksrc}/migrate-3.4
|
||||||
python3.4 setup.py build
|
python3.4 setup.py build
|
||||||
}
|
}
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
cd ${wrksrc}/python2.7-build
|
cd ${wrksrc}/migrate-2.7
|
||||||
python setup.py install --root=${DESTDIR}
|
python setup.py install --root=${DESTDIR}
|
||||||
|
|
||||||
cd ${wrksrc}/python3.4-build
|
|
||||||
python3.4 setup.py install --root=${DESTDIR}
|
|
||||||
}
|
|
||||||
|
|
||||||
post_install() {
|
|
||||||
vlicense COPYING LICENSE
|
vlicense COPYING LICENSE
|
||||||
|
|
||||||
|
cd ${wrksrc}/migrate-3.4
|
||||||
|
python3.4 setup.py install --root=${DESTDIR}
|
||||||
}
|
}
|
||||||
|
|
||||||
python3.4-sqlalchemy-migrate_package() {
|
python3.4-sqlalchemy-migrate_package() {
|
||||||
|
|
Loading…
Reference in New Issue