summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-14 16:56:28 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-14 16:56:28 +0000
commit95158246e6547c8882c1c4b8b5c29aba2e91e14a (patch)
tree57d6fa42f1f57b3d1d5a5f4eefcfa08e31ccfd34 /dev-python
parentia64 stable wrt #287627 (diff)
downloadgentoo-2-95158246e6547c8882c1c4b8b5c29aba2e91e14a.tar.gz
gentoo-2-95158246e6547c8882c1c4b8b5c29aba2e91e14a.tar.bz2
gentoo-2-95158246e6547c8882c1c4b8b5c29aba2e91e14a.zip
Delete older ebuild.
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/sphinx/Manifest2
-rw-r--r--dev-python/sphinx/sphinx-0.6.1-r1.ebuild64
2 files changed, 0 insertions, 66 deletions
diff --git a/dev-python/sphinx/Manifest b/dev-python/sphinx/Manifest
index 5a0ca723592f..9f0ff8fff099 100644
--- a/dev-python/sphinx/Manifest
+++ b/dev-python/sphinx/Manifest
@@ -1,6 +1,4 @@
-DIST Sphinx-0.6.1.tar.gz 962113 RMD160 b385f4772548d241fcfae281d7a3a020d32c2579 SHA1 08d465a42523624e22d59f51f862ba1d497b2850 SHA256 ab8d795d243b8c6899636ba409d2e09d4fecfe73700ed18f22da74b8351104f5
DIST Sphinx-0.6.3.tar.gz 965109 RMD160 5662954aa3f9da6f2da273fb0098697e8ab13184 SHA1 5f3d56f9a50f19d747d04592500956d8ef5a681f SHA256 7da3fb1fec3fc61073e1432a5c2698a02bf8a8370963725816afc429d7d468ba
-EBUILD sphinx-0.6.1-r1.ebuild 1659 RMD160 fea7e7c0551aa79466891b9589707fe11021a037 SHA1 c588be2ac8c289bbfd85de915141c3b94a376335 SHA256 5ddfe5bf1b689cf4efabbb4e931d78122bc24548a56ae6291e4957f9b63f5b93
EBUILD sphinx-0.6.3.ebuild 2061 RMD160 02d421c3be91ea2cfbf7496ceda62fe2c3c2e38c SHA1 7f55b7851c9ea07622127ca671417a2e499ac3a0 SHA256 75c7dbed9143945f1a4525732d532d8ec5426cae9275e364118bcf77c05ffcd8
MISC ChangeLog 4689 RMD160 e3de9a5e6ba37b6f0a3fd5eec9fd849b6ea31205 SHA1 9cddff0123ebcba071a701cefc2f0fe2cddbbfb7 SHA256 9619cc72c00c62b65ae739c4a6e7cf281390d06f89d24534735fa244df9d07c3
MISC metadata.xml 351 RMD160 a039846d5551a68ce6babb384726d5f2aed7ed48 SHA1 4827404c8a432524f89c5c6882c8f723d9ceee23 SHA256 c3304c774eac6a8ed5a1dbfd42c2e52540cfd76aa441ac4be4b94240410bd4dd
diff --git a/dev-python/sphinx/sphinx-0.6.1-r1.ebuild b/dev-python/sphinx/sphinx-0.6.1-r1.ebuild
deleted file mode 100644
index 4763214e5b7e..000000000000
--- a/dev-python/sphinx/sphinx-0.6.1-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-0.6.1-r1.ebuild,v 1.8 2009/09/21 14:19:32 tgall Exp $
-
-inherit distutils multilib
-
-MY_PN="Sphinx"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Tool to create documentation for Python projects"
-HOMEPAGE="http://sphinx.pocoo.org/"
-SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~ppc64 s390 sh sparc x86"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/pygments-0.8
- >=dev-python/jinja2-2.1
- >=dev-python/docutils-0.4"
-
-DEPEND="${RDEPEND}
- dev-python/setuptools
- test? ( dev-python/nose )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_compile() {
- DOCS="CHANGES"
- distutils_src_compile
-
- if use doc ; then
- cd doc
- PYTHONPATH="../" emake \
- SPHINXBUILD="${python} ../sphinx-build.py" \
- html || die "making docs failed"
- fi
-}
-
-src_install() {
- distutils_src_install
-
- if use doc ; then
- dohtml -A txt -r doc/_build/html/* || die
- fi
-}
-
-src_test() {
- PYTHONPATH="./build/lib" "${python}" tests/run.py || die "Tests failed"
-}
-
-pkg_postinst() {
- distutils_pkg_postinst
-
- # Generating the Grammar pickle to avoid on the fly generation causing sandbox violations (bug #266015)
- "${python}" \
- -c "from sphinx.pycode.pgen2.driver import load_grammar ; load_grammar('${ROOT}/usr/$(get_libdir)/python${PYVER}/site-packages/sphinx/pycode/Grammar.txt')" \
- || die "generating grammar pickle failed"
-}
-
-pkg_postrm() {
- rm "${ROOT}/usr/$(get_libdir)/python${PYVER}/site-packages/sphinx/pycode"/Grammar*.pickle
- distutils_pkg_postrm
-}