mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
29 lines
942 B
Text
29 lines
942 B
Text
# Contributor: Galen Abell <galen@galenabell.com>
|
|
# Maintainer: Galen Abell <galen@galenabell.com>
|
|
pkgname=pass-git-helper
|
|
pkgver=1.1.1
|
|
pkgrel=2
|
|
pkgdesc="git credential helper interfacing with pass, the standard unix password manager."
|
|
url="https://github.com/languitar/pass-git-helper"
|
|
arch="noarch"
|
|
license="LGPL-3.0-only"
|
|
depends="python3 pass py3-xdg"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest py3-pytest-cov py3-pytest-mock"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/languitar/pass-git-helper/archive/v$pkgver.tar.gz"
|
|
|
|
provides="py3-pass-git-helper=$pkgver-r$pkgrel"
|
|
replaces="py3-pass-git-helper"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
sha512sums="94e2fbc279682c4487ead20f3b2d91b49b3f69c73de63b71b42800d304e9cec7be5016b207587fb2ecd07f3f2adbfc63d29d7ad28c79ba90a3ebc35523cc7939 pass-git-helper-1.1.1.tar.gz"
|