# Template file for 'python-docutils' pkgname=python-docutils version=0.12 revision=1 noarch=yes wrksrc="docutils-${version}" build_style=python-module python_versions="2.7 3.4" hostmakedepends="python-setuptools python3.4-setuptools" depends="python" pycompile_module="docutils" short_desc="Text processing system to convert to various formats (Python2)" maintainer="Alessio Sergi " homepage="http://docutils.sourceforge.net" license="BSD-2-Clause, GPL-3, PSF, Public Domain" update_pkgname="docutils" distfiles="${SOURCEFORGE_SITE}/docutils/docutils-${version}.tar.gz" checksum=c7db717810ab6965f66c8cf0398a98c9d8df982da39b4cd7f162911eb89596fa pre_install() { # fix name conflict and remove .py suffix for file in 2html 2latex 2man 2odt 2odt_prepstyles 2pseudoxml 2s5 2xetex 2xml pep2html; do mv build-2.7/scripts-2.7/rst${file}{.py,} mv build-3.4/scripts-3.4/rst${file}{.py,3} done } post_install() { # remove old files for file in 2html 2latex 2man 2odt 2odt_prepstyles 2pseudoxml 2s5 2xetex 2xml pep2html; do rm -f ${DESTDIR}/usr/bin/rst${file}.py done # install licenses vlicense licenses/BSD-2-Clause.txt vlicense licenses/python-2-1-1.txt } python3.4-docutils_package() { noarch=yes depends="python3.4" pycompile_version="3.4" pycompile_module="docutils" short_desc="${short_desc/Python2/Python3.4}" pkg_install() { vmove usr/bin/*3 vmove usr/lib/python3.4 vlicense ${wrksrc}/licenses/BSD-2-Clause.txt vlicense ${wrksrc}/licenses/python-2-1-1.txt } }