aboutsummaryrefslogtreecommitdiffstats
path: root/testing/mycli/APKBUILD
blob: 425b547142c50f9770b3e504f0f7649b6e7a6426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Contributor: Thomas Boerger <thomas@webhippie.de>
# Maintainer: Thomas Boerger <thomas@webhippie.de>
pkgname=mycli
pkgver=1.20.0
pkgrel=0
pkgdesc="MySQL CLI with autocompletion and syntax highlighting"
url="https://www.mycli.net"
arch="noarch"
license="BSD"
options="!check" # builders /dev/tty not accessible
depends="python3
	py3-click
	py3-pygments
	py3-prompt_toolkit>2.0.5
	py3-pymysql
	py3-sqlparse<0.4.0
	py3-configobj
	py3-cryptography
	py3-cli_helpers"
makedepends="python3-dev py3-setuptools"
checkdepends="pytest py3-mock"
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 test
}

build() {
	cd "$builddir"
	python3 setup.py build
}

package() {
	cd "$builddir"
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="fbed2eed34fd8df0105c4c9975545f613d1318195f810e723d4f8cf0144d3c52c55b7acb512d76d41ba908a7b17d638451eb71d06c94065a58f0e95bf7caf905  mycli-1.20.0.tar.gz"