diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-07 13:15:23 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-07 13:19:06 -0300 |
commit | 7a06f739287b21b9734d30cb1571cf9438ea121d (patch) | |
tree | fd0de75dd11732dbca42c022e778226686b5fe34 /testing/py3-bottle-pgsql/APKBUILD | |
parent | b905b2d68dcf2cb70328e0a5780b905a8ea66d2d (diff) | |
download | aports-7a06f739287b21b9734d30cb1571cf9438ea121d.tar.bz2 aports-7a06f739287b21b9734d30cb1571cf9438ea121d.tar.xz |
testing/py3-bottle-pgsql: rename from py-bottle-pgsql
Diffstat (limited to 'testing/py3-bottle-pgsql/APKBUILD')
-rw-r--r-- | testing/py3-bottle-pgsql/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py3-bottle-pgsql/APKBUILD b/testing/py3-bottle-pgsql/APKBUILD new file mode 100644 index 0000000000..2356f10dc2 --- /dev/null +++ b/testing/py3-bottle-pgsql/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-bottle-pgsql +_pkgname=bottle-pgsql +pkgver=0.1 +pkgrel=0 +pkgdesc="Bottle PgSQL integration plugin" +url="https://github.com/raisoblast/bottle-pgsql" +arch="noarch" +license="MIT" +depends="python2 py-bottle" +depends_dev="" +makedepends="python2-dev py-setuptools" +install="" +subpackages="" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$_pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python2 setup.py build || return 1 +} + +package() { + cd "$_builddir" + python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="1062bbcc2410d6d7947a1435116a0aa9 bottle-pgsql-0.1.tar.gz" +sha256sums="2b5bb588620e2d277965f7451347df6ec65e913b6fb45e28a528b93d0d9a0091 bottle-pgsql-0.1.tar.gz" +sha512sums="a14d7cae86d7efa4cb7734886d34b8922fb06cbb47e46ecabf6cc993f9e266e2e072b1c0e6849689e6c11c3f20ce638753f2b6fcb4c2f68a3d5f90f1533292cb bottle-pgsql-0.1.tar.gz" |