diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2010-05-25 10:53:47 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2010-05-25 10:53:47 +0000 |
commit | f35df1931c737182c8cb1d263e74f371c1dc408f (patch) | |
tree | 9b77897d855998251b6771deff8a38b0dd95fc4b /dev-python/sphinx | |
parent | [sys-apps/ivman] added myself as maintainer (diff) | |
download | gentoo-2-f35df1931c737182c8cb1d263e74f371c1dc408f.tar.gz gentoo-2-f35df1931c737182c8cb1d263e74f371c1dc408f.tar.bz2 gentoo-2-f35df1931c737182c8cb1d263e74f371c1dc408f.zip |
Add 1.0_beta1 ebuild for testing.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/sphinx')
-rw-r--r-- | dev-python/sphinx/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/sphinx/sphinx-1.0_beta1.ebuild | 76 |
2 files changed, 82 insertions, 1 deletions
diff --git a/dev-python/sphinx/ChangeLog b/dev-python/sphinx/ChangeLog index 2ace0a176747..0857f96ee2ed 100644 --- a/dev-python/sphinx/ChangeLog +++ b/dev-python/sphinx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/sphinx # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.54 2010/05/25 10:38:38 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.55 2010/05/25 10:53:47 djc Exp $ + +*sphinx-1.0_beta1 (25 May 2010) + + 25 May 2010; Dirkjan Ochtman <djc@gentoo.org> +sphinx-1.0_beta1.ebuild: + Add no-keyword 1.0_beta1. *sphinx-0.6.6 (25 May 2010) diff --git a/dev-python/sphinx/sphinx-1.0_beta1.ebuild b/dev-python/sphinx/sphinx-1.0_beta1.ebuild new file mode 100644 index 000000000000..81f44c5bc7ee --- /dev/null +++ b/dev-python/sphinx/sphinx-1.0_beta1.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.0_beta1.ebuild,v 1.1 2010/05/25 10:53:47 djc Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_PN="Sphinx" +MY_P="${MY_PN}-${PV/_beta/b}" + +DESCRIPTION="Tool to create documentation for Python projects" +HOMEPAGE="http://sphinx.pocoo.org/ http://pypi.python.org/pypi/Sphinx" +SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="" +IUSE="doc test latex" + +RDEPEND=">=dev-python/pygments-0.8 + >=dev-python/jinja-2.2 + >=dev-python/docutils-0.5 + latex? ( dev-texlive/texlive-latexextra )" +DEPEND="${RDEPEND} + dev-python/setuptools + test? ( dev-python/nose )" +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}/${MY_P}" + +DOCS="CHANGES" + +src_compile() { + distutils_src_compile + + if use doc; then + cd doc + PYTHONPATH="../" emake SPHINXBUILD="$(PYTHON -f) ../sphinx-build.py" html || die "Generation of documentation failed" + fi +} + +src_test() { + testing() { + PYTHONPATH="build-${PYTHON_ABI}/lib" nosetests-${PYTHON_ABI} + } + python_execute_function testing +} + +src_install() { + distutils_src_install + + if use doc; then + dohtml -A txt -r doc/_build/html/* || die "dohtml failed" + fi +} + +pkg_postinst() { + distutils_pkg_postinst + + # Generating the Grammar pickle to avoid on the fly generation causing sandbox violations (bug #266015) + generation_of_grammar_pickle() { + "$(PYTHON)" -c "from sphinx.pycode.pgen2.driver import load_grammar; load_grammar('${ROOT%/}${EPREFIX}$(python_get_sitedir)/sphinx/pycode/Grammar.txt')" \ + || die "Generation of grammar pickle failed" + } + python_execute_function --action-message 'Generation of Grammar pickle with Python ${PYTHON_ABI}...' generation_of_grammar_pickle +} + +pkg_postrm() { + distutils_pkg_postrm + + deletion_of_grammar_pickle() { + rm "${ROOT%/}${EPREFIX}$(python_get_sitedir)/sphinx/pycode"/Grammar*.pickle + } + python_execute_function --action-message 'Deletion of Grammar pickle with Python ${PYTHON_ABI}...' deletion_of_grammar_pickle +} |