2014-09-05 18:29:49 +00:00
|
|
|
# Template file for 'python-Sphinx'
|
|
|
|
pkgname=python-Sphinx
|
|
|
|
version=1.2.3
|
2014-09-24 07:00:00 +00:00
|
|
|
revision=2
|
2014-09-05 18:29:49 +00:00
|
|
|
noarch=yes
|
|
|
|
wrksrc="Sphinx-${version}"
|
|
|
|
python_versions="2.7 3.4"
|
2014-09-24 07:21:26 +00:00
|
|
|
hostmakedepends="
|
|
|
|
python-setuptools python3.4-setuptools python-docutils python3.4-docutils
|
|
|
|
python-Jinja2 python3.4-Jinja2 python-Pygments python3.4-Pygments"
|
|
|
|
makedepends="${hostmakedepends}"
|
2014-09-24 07:00:00 +00:00
|
|
|
depends="python-setuptools python-docutils python-Jinja2 python-Pygments"
|
2014-09-05 18:29:49 +00:00
|
|
|
pycompile_module="sphinx"
|
|
|
|
short_desc="Python2 documentation generator"
|
|
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
|
|
homepage="http://sphinx-doc.org/"
|
|
|
|
license="BSD"
|
|
|
|
distfiles="https://pypi.python.org/packages/source/S/Sphinx/Sphinx-${version}.tar.gz"
|
|
|
|
checksum=94933b64e2fe0807da0612c574a021c0dac28c7bd3c4a23723ae5a39ea8f3d04
|
|
|
|
|
|
|
|
post_extract() {
|
|
|
|
cp -a ${wrksrc} /tmp/python2.7-build
|
|
|
|
cp -a ${wrksrc} /tmp/python3.4-build
|
|
|
|
mv /tmp/python{2.7,3.4}-build ${wrksrc}
|
|
|
|
}
|
|
|
|
|
|
|
|
pre_build() {
|
|
|
|
cd ${wrksrc}/python3.4-build
|
|
|
|
sed -i 's|\(sphinx-.*\) =|\13 =|' setup.py
|
|
|
|
sed -ri "s,'(sphinx-(:?|all|apidoc|build|quickstart))','\13'," doc/conf.py
|
|
|
|
sed -i 's,#! /usr/bin/env python,&3.4,' sphinx/pycode/pgen2/token.py
|
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
cd ${wrksrc}/python2.7-build
|
|
|
|
python setup.py build
|
|
|
|
python sphinx-build.py -b man doc build/man
|
|
|
|
|
|
|
|
cd ${wrksrc}/python3.4-build
|
|
|
|
python3.4 setup.py build
|
|
|
|
python sphinx-build.py -b man doc build/man
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
cd ${wrksrc}/python2.7-build
|
|
|
|
python setup.py install --root=${DESTDIR}
|
|
|
|
|
|
|
|
cd ${wrksrc}/python3.4-build
|
|
|
|
python3.4 setup.py install --root=${DESTDIR}
|
|
|
|
}
|
|
|
|
|
|
|
|
post_install() {
|
|
|
|
vmkdir usr/share/man/man1
|
|
|
|
vcopy ${wrksrc}/python2.7-build/build/man/*.1 usr/share/man/man1
|
|
|
|
vcopy ${wrksrc}/python3.4-build/build/man/*.1 usr/share/man/man1
|
|
|
|
}
|
|
|
|
|
|
|
|
python3.4-Sphinx_package() {
|
|
|
|
noarch=yes
|
2014-09-24 07:00:00 +00:00
|
|
|
depends="python3.4-setuptools python3.4-docutils python3.4-Jinja2 python3.4-Pygments"
|
2014-09-05 18:29:49 +00:00
|
|
|
pycompile_version="3.4"
|
|
|
|
pycompile_module="sphinx"
|
|
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/bin/sphinx-*3
|
|
|
|
vmove usr/lib/python3.4
|
|
|
|
vmove usr/share/man/man1/sphinx-*3.1
|
|
|
|
}
|
|
|
|
}
|