diff options
| author | Leo <thinkabit.ukim@gmail.com> | 2019-10-09 08:21:50 -0300 |
|---|---|---|
| committer | Leo <thinkabit.ukim@gmail.com> | 2019-10-09 08:22:09 -0300 |
| commit | 73267fa84b89948e437735bd555c2f87018ff599 (patch) | |
| tree | ce082fe4ec61c11a91b0d12a20af1aa1ec3f594f /testing | |
| parent | 613d34486db610f94f3495de4f97266a35822a9a (diff) | |
| download | aports-73267fa84b89948e437735bd555c2f87018ff599.tar.bz2 aports-73267fa84b89948e437735bd555c2f87018ff599.tar.xz | |
testing/fabric: new aport
https://www.fabfile.org/
A simple pythonic remote deployment tool
Diffstat (limited to 'testing')
| -rw-r--r-- | testing/fabric/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/fabric/APKBUILD b/testing/fabric/APKBUILD new file mode 100644 index 0000000000..eb0724721c --- /dev/null +++ b/testing/fabric/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: Danilo Falcão <danilo@falcao.org> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=fabric +_pkgname=fabric +pkgver=2.5.0 +pkgrel=0 +pkgdesc="A simple pythonic remote deployment tool" +options="!check" # Fails to find 'fabfile' module +url="https://www.fabfile.org/" +arch="noarch" +license="BSD-2-Clause" +depends="py3-paramiko py3-invoke py3-setuptools" +checkdepends="py3-pytest py3-mock" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="2dd3b0a6b7c21cce07439bf9ea1b869bac282cfd0abf502d297163ff56b46975b12ab4dbe262c6df89e0e7f980847b88286d0eccbdab7003b643443eb9046ba7 fabric-2.5.0.tar.gz" |
