diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2012-05-25 10:15:15 +0000 |
---|---|---|
committer | Fabian Affolter <fabian@affolter-engineering.ch> | 2012-05-25 19:36:38 +0000 |
commit | 857940d677081792f707dff9dd815d5163a3f8c9 (patch) | |
tree | f6625b62084cfa9cc0a5bae6739cac01e883a2fc /main/py-boto/APKBUILD | |
parent | a5751d5d55c01fe1c6366c81652f0b05027cf8dc (diff) | |
download | aports-857940d677081792f707dff9dd815d5163a3f8c9.tar.bz2 aports-857940d677081792f707dff9dd815d5163a3f8c9.tar.xz |
main/py-boto: upgrade to 2.4.1
Diffstat (limited to 'main/py-boto/APKBUILD')
-rw-r--r-- | main/py-boto/APKBUILD | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/main/py-boto/APKBUILD b/main/py-boto/APKBUILD index a1c0a4ca19..e5e31b3b25 100644 --- a/main/py-boto/APKBUILD +++ b/main/py-boto/APKBUILD @@ -2,20 +2,19 @@ # Maintainer: Matt Smith <mcs@darkregion.net> pkgname=py-boto _pkgname=boto -pkgver=1.9b -pkgrel=2 -pkgdesc="An integrated interface to current and future infrastructural services offered by Amazon Web Services." -url="http://code.google.com/p/boto/" +pkgver=2.4.1 +pkgrel=0 +pkgdesc="An interface to infrastructural services offered by Amazon Web Services" +url="http://docs.pythonboto.org/en/latest/index.html" arch="noarch" license="MIT" depends="python" makedepends="python-dev py-setuptools" -install= +install="" subpackages="$pkgname-doc" -source="http://$_pkgname.googlecode.com/files/$_pkgname-$pkgver.tar.gz" +source="https://github.com/downloads/$_pkgname/$_pkgname/$_pkgname-$pkgver.tar.gz" _builddir="$srcdir"/$_pkgname-$pkgver - prepare() { cd "$_builddir" # apply patches here @@ -28,14 +27,14 @@ build() { package() { cd "$_builddir" - python setup.py install --root "$pkgdir" + python setup.py install --root "$pkgdir" || return 1 } doc() { cd "$_builddir" mkdir -p "$subpkgdir"/usr/share/doc/$pkgname - install -Dm644 README "$subpkgdir"/usr/share/doc/$pkgname/README + install -Dm644 README.rst "$subpkgdir"/usr/share/doc/$pkgname/README # Note: The documentation in the 'docs' directory can only be generated # (via sphinx-build from the py-sphinx package) once this package has @@ -48,4 +47,4 @@ doc() { find "$subpkgdir"/usr/share/doc/$pkgname/ -type d -exec chmod 755 '{}' \; } -md5sums="4fc2fd7b70a971b1363f8465aafe7091 boto-1.9b.tar.gz" +md5sums="6fb90c1aa8c8ce6d967f2b0e06deda5b boto-2.4.1.tar.gz" |