mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
28 lines
896 B
Text
28 lines
896 B
Text
# Contributor: André Klitzing <aklitzing@gmail.com>
|
|
# Maintainer: André Klitzing <aklitzing@gmail.com>
|
|
pkgname=py3-pyutilib
|
|
_pkgname=PyUtilib
|
|
pkgver=5.7.1
|
|
pkgrel=1
|
|
pkgdesc="A collection of Python utilities"
|
|
url="https://pypi.org/project/PyUtilib/"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="py3-nose py3-six"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/p/pyutilib/$_pkgname-$pkgver.tar.gz"
|
|
options="!check" # no upstream tests
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
replaces=py-pyutilib # Backwards compatibility
|
|
provides=py-pyutilib=$pkgver-r$pkgrel # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="5b14a914f82e0f6efb0bc403472cbca6b3d2d9dae9d82e5669f7538a7862856358c2f150e904c0a0917851bcd8c31f85b7d7123a17114f8cb2947943f6feb2f7 PyUtilib-5.7.1.tar.gz"
|