Files
haikuports/dev-python/alembic/alembic_py-1.7.5.recipe
Jerome Duval 5c4a41972a alembic_py: bump version
remove 2.7, 3.6, add 3.8, 3.9
2021-11-23 20:02:17 +01:00

72 lines
2.0 KiB
Bash

SUMMARY="Database migration tool for SQLAlchemy"
DESCRIPTION="A database migrations tool written by the author of SQLAlchemy. \
It offers the following functionality:
* Can emit ALTER statements to a database in order to change the structure of \
tables and other constructs
* Provides a system whereby “migration scripts” may be constructed; each \
script indicates a particular series of steps that can “upgrade” a target \
database to a new version, and optionally a series of steps that can \
“downgrade” similarly, doing the same steps in reverse.
* Allows the scripts to execute in some sequential manner."
HOMEPAGE="https://pypi.org/project/alembic/"
COPYRIGHT="2011-2019 Mike Bayer"
LICENSE="MIT"
REVISION="2"
SOURCE_URI="https://pypi.python.org/packages/source/a/alembic/alembic-$portVersion.tar.gz"
SOURCE_DIR="alembic-$portVersion"
CHECKSUM_SHA256="7c328694a2e68f03ee971e63c3bd885846470373a5b532cf2c9f1601c413b153"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python3 python38 python39)
PYTHON_VERSIONS=(3.7 3.8 3.9)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\n\
cmd:alembic$pythonVersion\n\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py build install \
--root=/ --prefix=$prefix
mv $binDir/alembic $binDir/alembic$pythonVersion
packageEntries $pythonPackage \
$prefix/lib/python* \
$binDir
done
}