diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2012-05-19 11:24:34 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2012-05-19 11:24:34 +0000 |
commit | 04183e3a25dd23859bb38ce185f325f981470719 (patch) | |
tree | 5535457cd309a3926e66db75294d09e236b1e4ff | |
parent | Add ~x86 keyword (diff) | |
download | gentoo-2-04183e3a25dd23859bb38ce185f325f981470719.tar.gz gentoo-2-04183e3a25dd23859bb38ce185f325f981470719.tar.bz2 gentoo-2-04183e3a25dd23859bb38ce185f325f981470719.zip |
Version bump, fixes #416479 by Ian Delaney <johneed@hotmail.com>. Thanks to Arfrever for fixing test_odfwriter.py
(Portage version: 2.2.0_alpha104/cvs/Linux x86_64)
-rw-r--r-- | dev-python/mwlib/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/mwlib/mwlib-0.13.7.ebuild | 80 |
2 files changed, 87 insertions, 1 deletions
diff --git a/dev-python/mwlib/ChangeLog b/dev-python/mwlib/ChangeLog index 7f7a3af52edc..34fe192424c7 100644 --- a/dev-python/mwlib/ChangeLog +++ b/dev-python/mwlib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/mwlib # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mwlib/ChangeLog,v 1.14 2012/04/19 09:54:31 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mwlib/ChangeLog,v 1.15 2012/05/19 11:24:34 xarthisius Exp $ + +*mwlib-0.13.7 (19 May 2012) + + 19 May 2012; Kacper Kowalik <xarthisius@gentoo.org> +mwlib-0.13.7.ebuild: + Version bump, fixes #416479 by Ian Delaney <johneed@hotmail.com>. Thanks to + Arfrever for fixing test_odfwriter.py *mwlib-0.13.6 (19 Apr 2012) diff --git a/dev-python/mwlib/mwlib-0.13.7.ebuild b/dev-python/mwlib/mwlib-0.13.7.ebuild new file mode 100644 index 000000000000..6f88d907ea64 --- /dev/null +++ b/dev-python/mwlib/mwlib-0.13.7.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mwlib/mwlib-0.13.7.ebuild,v 1.1 2012/05/19 11:24:34 xarthisius Exp $ + +EAPI=4 + +PYTHON_DEPEND="2:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-pypy-* *-jython" +DISTUTILS_SRC_TEST=py.test + +inherit distutils eutils + +DESCRIPTION="Tools for parsing Mediawiki content to other formats" +HOMEPAGE="http://code.pediapress.com/wiki/wiki http://pypi.python.org/pypi/mwlib" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND="dev-python/lxml + =dev-python/odfpy-0.9* + dev-python/pyPdf + dev-python/pyparsing + dev-python/timelib + virtual/latex-base + >=dev-python/simplejson-2.5 + dev-python/gevent + dev-python/bottle + dev-python/apipkg + dev-python/qserve + dev-python/roman + dev-python/py + dev-python/sqlite3dbm" +DEPEND="${RDEPEND} + dev-python/setuptools + app-arch/unzip + doc? ( dev-python/sphinx )" + +PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") + +DOCS="changelog.rst" + +src_prepare() { + # mwlib.apipkg is actually used. + sed -e 's/, "apipkg"//' -i setup.py || die + + # Execute odflint script. + sed \ + -e "/def _get_odflint_module():/,/odflint = _get_odflint_module()/d" \ + -e "s/odflint.lint(path)/os.system('odflint %s' % path)/" \ + -i tests/test_odfwriter.py || die + + distutils_src_prepare + + # Disable test which requires installed mw-zip script. + rm -f tests/test_{nuwiki,redirect,zipwiki}.py + # Disable render test that fails for no apparent reason + rm -f tests/test_render.py +} + +src_compile() { + distutils_src_compile + if use doc; then + emake -C docs html + fi +} + +src_test() { + distutils_src_test tests +} + +src_install() { + distutils_src_install + if use doc; then + dohtml -r docs/_build/html/ + fi +} |