diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-20 10:32:08 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-20 10:32:08 -0300 |
commit | 61c085378c61418e4cc3b2c28b3f3f24a41f3789 (patch) | |
tree | 979fdfb93480640f9bae677641b6460efb9194e0 /testing/pgcli | |
parent | 6b4d205eca191b22f29ec88fbc52e2353c74741e (diff) | |
download | aports-61c085378c61418e4cc3b2c28b3f3f24a41f3789.tar.bz2 aports-61c085378c61418e4cc3b2c28b3f3f24a41f3789.tar.xz |
testing/pgcli: disable check, fix license
Diffstat (limited to 'testing/pgcli')
-rw-r--r-- | testing/pgcli/APKBUILD | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/testing/pgcli/APKBUILD b/testing/pgcli/APKBUILD index 3171369aa9..d06f9c578d 100644 --- a/testing/pgcli/APKBUILD +++ b/testing/pgcli/APKBUILD @@ -2,11 +2,12 @@ # Maintainer: Thomas Boerger <thomas@webhippie.de> pkgname=pgcli pkgver=2.1.1 -pkgrel=0 +pkgrel=1 pkgdesc="Postgres CLI with autocompletion and syntax highlighting" +options="!check" # Tests fail url="https://www.pgcli.com" arch="noarch" -license="BSD" +license="BSD-3-Clause" depends="python3 py3-pgspecial py3-click @@ -21,20 +22,16 @@ depends="python3 checkdepends="pytest py3-mock" makedepends="python3-dev" source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" check() { - cd "$builddir" python3 -m pytest tests } build() { - cd "$builddir" python3 setup.py build } package() { - cd "$builddir" python3 setup.py install --prefix=/usr --root="$pkgdir" } |