blob: b4db7039f6f4756dfe34fffe8e74764a09c3390d (
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
|
# $Id$
# Maintainer: Sébastien Luttringer
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Fabio Volpe <volpefabio@gmail.com>
pkgbase=python-sphinx
pkgname=('python2-sphinx')
pkgver=1.2.2
pkgrel=4
arch=('any')
url='http://sphinx.pocoo.org/'
license=('GPL')
makedepends=(
'python2-setuptools'
'python2-docutils'
'python2-jinja'
'python2-pygments'
)
checkdepends=(
'python2-nose'
'texlive-latexextra'
)
source=("http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz")
md5sums=('3dc73ccaa8d0bfb2d62fb671b1f7e8a4')
prepare() {
# souce duplication is required because makefile modify source code
# setyp.py --build tricks don't works well
cp -a Sphinx-$pkgver Sphinx-${pkgver}2
# change python2 interpreter
find Sphinx-${pkgver}2 -type f -exec \
sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
# change sphinx-binaries name in source code
# find Sphinx-${pkgver}2 -type f -name '*.py' -exec \
# sed -ri 's,(sphinx-(:?build|apidoc|autogen|quickstart)),\12,' {} \;
}
build() {
# msg2 'Python 3 version'
# cd "$srcdir"/Sphinx-$pkgver
# make PYTHON=python3 build
msg2 'Python 2 version'
cd "$srcdir"/Sphinx-${pkgver}2
make PYTHON=python2 build
}
check() {
# msg2 'Python 3 version'
# cd "$srcdir"/Sphinx-$pkgver
# make PYTHON=python3 test
# rm -r build/lib/tests
msg2 'Python 2 version'
cd "$srcdir"/Sphinx-${pkgver}2
make PYTHON=python2 test
rm -r build/lib/tests
}
#package_python-sphinx() {
# pkgdesc='Python3 documentation generator'
# depends=('python-jinja' 'python-pygments' 'python-docutils')
# optdepends=('texlive-latexextra: for generation of PDF documentation')
# cd Sphinx-$pkgver
# python setup.py install --root="$pkgdir" --optimize=1
#}
package_python2-sphinx() {
pkgdesc='Python2 documentation generator'
depends=('python2-jinja' 'python2-pygments' 'python2-docutils')
optdepends=('texlive-latexextra: for generation of PDF documentation')
cd Sphinx-${pkgver}2
python2 setup.py install --root="$pkgdir" --optimize=1
}
# vim:set ts=2 sw=2 et:
|