blob: 261b8c88bf6852c262ace214d360846c4f803a29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=py-boto
_pkgname=boto
pkgver=2.8.0
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=""
subpackages="$pkgname-doc"
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$_pkgname-$pkgver
prepare() {
cd "$_builddir"
# apply patches here
}
build() {
cd "$_builddir"
python setup.py build || return 1
}
package() {
cd "$_builddir"
python setup.py install --root "$pkgdir" || return 1
}
doc() {
cd "$_builddir"
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname
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
# been installed. Copying it off for the user.
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname/docs
cp -R ./docs/* "$subpkgdir"/usr/share/doc/$pkgname/docs/
chmod -R 644 "$subpkgdir"/usr/share/doc/$pkgname/docs/
# Fix subdir perms
find "$subpkgdir"/usr/share/doc/$pkgname/ -type d -exec chmod 755 '{}' \;
}
md5sums="d86d23a357f4c527c51b1ea02bbae8e3 boto-2.8.0.tar.gz"
sha256sums="f520cec579a11c99b510e06d16f484ce877f5b75eeae850c7e165753092939db boto-2.8.0.tar.gz"
sha512sums="12853813ae78243ea025fb2e7d0d1dca71b655d977da5d9d28071f52a78708eebf16a42d8763b315246e7ebb681f5ec111e779d710286293175d38ac165a69f1 boto-2.8.0.tar.gz"
|