blob: 14eac598a86606e8e6823607a00dcd24178ad05d (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=py-docutils
_pkgname=docutils
pkgver=0.13.1
pkgrel=0
pkgdesc="Documentation Utilities for Python"
url="http://docutils.sourceforge.net/"
arch="noarch"
license="Public-Domain"
depends="py3-${pkgname#py-}"
makedepends="python2-dev python3-dev py-setuptools"
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3 $pkgname-doc::noarch"
source="http://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
prepare() {
default_prepare || return 1
# Soure files are modified during build with 2to3 tool, so we must build
# it separately for each Python version.
local python; for python in python2 python3; do
cp -r "$builddir" "$builddir-$python" || return 1
done
}
build() {
local python; for python in python2 python3; do
cd "$builddir"-$python
$python setup.py build || return 1
done
}
package() {
mkdir -p "$pkgdir"
# Create unsuffixed symlinks for executables from py3 subpackage.
cd "$builddir"/tools
mkdir -p "$pkgdir"/usr/bin
local name; for name in rst*.py; do
ln -s ${name%.py}-3 "$pkgdir"/usr/bin/${name%.py}
done
}
_py2() {
replaces="$pkgname"
depends="py2-pillow py2-roman"
_py python2
}
_py3() {
depends="py3-pillow py3-roman"
_py python3
}
_py() {
local python="$1"
local pyver="${1:6:1}"
pkgdesc="$pkgdesc (for $python)"
depends="$depends $python"
install_if="$pkgname=$pkgver-r$pkgrel $python"
cd "$builddir"-$python
$python setup.py install --prefix=/usr --root="$subpkgdir"
# Remove .py extension and add version suffix to executable files.
local path; for path in "$subpkgdir"/usr/bin/*.py; do
mv "$path" "${path/.py/-$pyver}" || return 1
done
}
doc() {
pkgdesc="$pkgdesc (documentation)"
local docdir="$subpkgdir/usr/share/doc/$pkgname"
local licdir="$subpkgdir/usr/share/licenses/$pkgname"
cd "$builddir"
mkdir -p "$docdir"
cp -R docs/* "$docdir"/ || return 1
cp *.txt "$docdir"/ || return 1
mkdir -p "$licdir"
rm -f licenses/docutils.conf
cp licenses/* "$licdir"/
}
sha512sums="6a68b27dac3705ff532cb79d6b6808071206544a1c653e6a24d46971a5e10edffc7d275834eec4e80d948eb066bb099cae0195c0ab674e68747820e54f0ea64e docutils-0.13.1.tar.gz"
|