~dricottone/huttese-apk

6d8771f82503c2ef2a1bb7aa076ddfac545b00af — Drew DeVault 5 years ago a8017ef
py-ansi2html: Fix APKBUILD
1 files changed, 3 insertions(+), 3 deletions(-)

M sr.ht/py-ansi2html/APKBUILD
M sr.ht/py-ansi2html/APKBUILD => sr.ht/py-ansi2html/APKBUILD +3 -3
@@ 10,7 10,7 @@ arch="noarch"
license="LGPL-3.0-or-later"
depends="py-six"
makedepends="py-setuptools"
checkdepends="py-nose py-mock py2-pytest pytest"
checkdepends="py2-pytest pytest py-mock py-nose"
source="$pkgname-$pkgver.tar.gz::https://github.com/ralphbean/$_pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver
options="!check" # upstream tests don't work unless module is installed


@@ 21,9 21,9 @@ prepare() {

build() {
	cd "$builddir"
	PYTHONPATH="$(pwd)" python2 ./tests/test_ansi2html.py
	python2 setup.py build
	cd "$builddir"-py3
	PYTHONPATH="$(pwd)" python3 ./tests/test_ansi2html.py
	python3 setup.py build
}

check() {