diff options
Diffstat (limited to 'testing/py-apache-libcloud')
-rw-r--r-- | testing/py-apache-libcloud/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/py-apache-libcloud/APKBUILD b/testing/py-apache-libcloud/APKBUILD new file mode 100644 index 0000000000..29b69e2147 --- /dev/null +++ b/testing/py-apache-libcloud/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: +pkgname=py-apache-libcloud +_pkgname=apache-libcloud +pkgver=0.11.4 +pkgrel=0 +pkgdesc="Apache Libcloud is a standard Python library that abstracts away differences among multiple cloud provider APIs" +url="https://libcloud.apache.org" +arch="noarch" +license="APACHE" +depends="" +depends_dev="python-dev" +makedepends="$depends_dev" +install="" +subpackages="" +source="http://www.mirrorservice.org/sites/ftp.apache.org/libcloud/$_pkgname-$pkgver.tar.bz2" +_builddir="$srcdir"/$_pkgname-$pkgver +build() { + cd "$_builddir" + python setup.py build +} + +package() { + cd "$_builddir" + python setup.py install --root="$pkgdir" +} + +md5sums="94b4bebbe500cf4747623e9503213a4a apache-libcloud-0.11.4.tar.bz2" +sha256sums="5987f20c256608ee757b1a097b6392afbd18058cfc21ce761c078b44da95c532 apache-libcloud-0.11.4.tar.bz2" +sha512sums="b761e6b1d29f60c382602b552c48268f1cf0a27e2a51bdf6603179f085a160b10c51eaa2d089bc868ae2147dc246ada43d0142edf03a786de20ef3468e23db1e apache-libcloud-0.11.4.tar.bz2" |