# Template file for 'python-docutils' pkgname=python-docutils version=0.11 revision=1 wrksrc="docutils-${version}" build_style=python-module makedepends="python python3" depends="python>=2.7" noarch="yes" python_versions="2.7 3.3" 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" distfiles="${SOURCEFORGE_SITE}/docutils/docutils-${version}.tar.gz" checksum=9af4166adf364447289c5c697bb83c52f1d6f57e77849abcccd6a4a18a5e7ec9 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.3/scripts-3.3/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 vinstall licenses/BSD-2-Clause.txt 644 usr/share/licenses/${pkgname} vinstall licenses/python-2-1-1.txt 644 usr/share/licenses/${pkgname} } python3-docutils_package() { noarch="yes" depends="python3" short_desc="${short_desc//Python2/Python3}" pkg_install() { vmove /usr/bin/*3 vmove /usr/lib/python3.3 # install licenses vinstall ${wrksrc}/licenses/BSD-2-Clause.txt 644 usr/share/licenses/${pkgname} vinstall ${wrksrc}/licenses/python-2-1-1.txt 644 usr/share/licenses/${pkgname} } }