mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
32 lines
1,014 B
Text
32 lines
1,014 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-update-checker
|
|
_pkgname=update_checker
|
|
pkgver=0.16
|
|
pkgrel=2
|
|
pkgdesc="A python module that will check for package updates"
|
|
options="!check" # 4 tests fail
|
|
url="https://github.com/bboe/update_checker"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="python3 py3-requests"
|
|
makedepends="py3-setuptools"
|
|
source="$_pkgname-$pkgver.tar.gz::https://github.com/bboe/update_checker/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-update-checker" # Backwards compatibility
|
|
provides="py-update-checker=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="31533162b27e2c920c5565007feb6c765d7026a76b3ff95df374317f7beae79ed705771c91d5099fd6104f6c155f957d5e624583a4a5c7c0abccf6a7bacd9aee update_checker-0.16.tar.gz"
|