1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 03:35:38 +03:00
aports/testing/py3-codecov/APKBUILD
2021-04-05 18:19:15 +00:00

37 lines
1.1 KiB
Text

# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Justin Berthault <justin.berthault@zaclys.net>
pkgname=py3-codecov
pkgver=2.1.11
pkgrel=2
pkgdesc="Report uploader for Codecov"
options="!check" # Requires unpackaged 'ddt'
url="https://github.com/codecov/codecov-python"
arch="noarch"
license="Apache-2.0"
depends="python3 py3-coverage py3-requests"
makedepends="py3-setuptools"
checkdepends="py3-pytest"
source="$pkgname-$pkgver.tar.gz::https://github.com/codecov/codecov-python/archive/v$pkgver.tar.gz"
builddir="$srcdir"/codecov-python-$pkgver
replaces="py-codecov" # Backwards compatibility
provides="py-codecov=$pkgver-r$pkgrel" # Backwards compatibility
build() {
python3 setup.py build
}
check() {
py.test-3 tests/test.py
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
local file; for file in "$pkgdir"/usr/bin/*; do
mv $file $file-3
ln -s "${file##*/}"-3 $file
done
}
sha512sums="f7fdc4085b8f8ac3e5a2821906f46e08b21fd0b5315f0fd1f3f0ad77418c043de54bf7c7f4e77a09398db454ca8341fef482e319313fb7bd202cb0dba22a452d py3-codecov-2.1.11.tar.gz"