blob: a0ea924f8bd8d108bdab652898e7dac4abbb20ba (
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
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=py-sphinx
_pkgname=${pkgname#py-}
pkgver=1.7.2
pkgrel=0
pkgdesc="Python Documentation Generator"
url="http://sphinx.pocoo.org/"
arch="noarch"
license="BSD"
_pydepends="py-docutils py-jinja2 py-pygments py-six py-sphinx_rtd_theme
py-alabaster<0.8 py-babel py-snowballstemmer py-imagesize
py-requests py-sphinxcontrib-websupport"
depends="py3-${pkgname#py-}"
makedepends="python2-dev python3-dev py-setuptools"
#checkdepends="pytest py-funcsigs py-pluggy"
options="!check" # py-pluggy and some other packages needs to be moved to main first
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
source="$_pkgname-$pkgver.tar.gz::https://github.com/sphinx-doc/sphinx/archive/v$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
prepare() {
default_prepare
# Soure files are modified during build with 2to3 tool, so we cannot
# build it for both Python versions in the same location.
local python; for python in python2 python3; do
cp -r "$builddir" "$builddir-$python"
done
}
build() {
local python; for python in python2 python3; do
cd "$builddir"-$python
$python setup.py build
done
}
#check() {
# local python; for python in python2 python3; do
# cd "$builddir"-$python
# make PYTHON=$python test
# done
#}
package() {
mkdir -p "$pkgdir"/usr/bin
local name; for name in apidoc autogen build quickstart; do
ln -s sphinx-$name-3 "$pkgdir"/usr/bin/sphinx-$name
done
}
_py2() {
replaces="$pkgname"
depends="make ${_pydepends//py-/py2-} py2-typing"
_py python2
}
_py3() {
depends="make ${_pydepends//py-/py3-}"
_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"
# Add version suffix to executable files.
local path; for path in "$subpkgdir"/usr/bin/*; do
mv "$path" "$path-$pyver"
done
}
sha512sums="77cacb48dea035567af5feb8356ce35b9476c09232533eae9ea9e74c98bef7a3ce5cb50cbb3ec468841ca6efc5f1533beac23763efec1b9605e7ae0b0f98bd13 sphinx-1.7.2.tar.gz"
|