Received: from mx.galenabell.com (mx.galenabell.com [116.203.221.235]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 365EB781A82 for ; Thu, 21 Nov 2019 08:24:30 +0000 (UTC) From: Galen Abell DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=galenabell.com; s=mail; t=1574324670; bh=gPaUVLaXR5XXqS45ZyEn/npPv3//pgP3+KNlanNiyDQ=; h=From:To:Cc:Subject:Date; b=vVXfFA3nvaK8TpG/tkiM+o2hdnPur4yr0H7bnohKsG4pvhQ0DvePZ41tTU5JsPftI t5NB66AKp43M7FgE247mM0gUp33pflb+loyJYNs+aZG1y7WTwcpQwMaXB4O4Eqm7M9 uiWbPzx5GHJVWIV668NVbBi1Xq8GtTku9mvcw0Dk= To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH] testing/py3-pass-git-helper: new aport Date: Thu, 21 Nov 2019 09:23:28 +0100 Message-Id: <20191121082327.20406-1-galen@galenabell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://github.com/languitar/pass-git-helper A git credential helper interfacing with pass, the standard unix password manager. testing/ --- testing/py3-pass-git-helper/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/py3-pass-git-helper/APKBUILD diff --git a/testing/py3-pass-git-helper/APKBUILD b/testing/py3-pass-git-helper/APKBUILD new file mode 100644 index 0000000000..a6b4c89e16 --- /dev/null +++ b/testing/py3-pass-git-helper/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Galen Abell +# Maintainer: Galen Abell +pkgname="py3-pass-git-helper" +_pyname="pass-git-helper" +pkgver="1.1.0" +pkgrel=0 +pkgdesc="A 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="$_pyname-$pkgver.tar.gz::https://github.com/languitar/$_pyname/archive/v$pkgver.tar.gz" +builddir="$srcdir/$_pyname-$pkgver" + +build() { + python3 setup.py build +} + +check() { + python3 setup.py test +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} +sha512sums="d636f27d09619d077f64d62200353143499209c6c405848396d2e39f54f16fdf3e0fb9471d231fd8bd52eb8b30df42e2c448a9677028badf812de986b4cda86b pass-git-helper-1.1.0.tar.gz" -- 2.24.0