diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-11-07 20:15:27 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-11-07 20:15:27 +0000 |
commit | b072d994d7f52087420ca587f3447dff705ef44b (patch) | |
tree | 59446b92baf51580b256fdaddd4d5f7fd6b937b7 /dev-python/sphinx | |
parent | Masking net-ftp/easyftp for removal, bug #292143 (diff) | |
download | gentoo-2-b072d994d7f52087420ca587f3447dff705ef44b.tar.gz gentoo-2-b072d994d7f52087420ca587f3447dff705ef44b.tar.bz2 gentoo-2-b072d994d7f52087420ca587f3447dff705ef44b.zip |
Delete older ebuild.
(Portage version: 14801-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/sphinx')
-rw-r--r-- | dev-python/sphinx/Manifest | 2 | ||||
-rw-r--r-- | dev-python/sphinx/sphinx-0.5.2.ebuild | 49 |
2 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/sphinx/Manifest b/dev-python/sphinx/Manifest index 98832cb517f2..012bbbf48399 100644 --- a/dev-python/sphinx/Manifest +++ b/dev-python/sphinx/Manifest @@ -1,7 +1,5 @@ -DIST Sphinx-0.5.2.tar.gz 730502 RMD160 549afe6cb791047aa15a898da12642e834a8c444 SHA1 85eb437fc5fff0b0ecf2bc684f431e6d4220188b SHA256 0f5bdfa3dd2cfe90ddb00d22d0afa19eaba6c1d808f3efbe03dea903dcbd8500 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.5.2.ebuild 1117 RMD160 9c4382f06629a961ddd99fcd12ec4f9a7751fb81 SHA1 6fac41f32326c020adf795310b21434ad003a13c SHA256 f8d0355339124fe13b27e60ae460ef14535579bd35b44b755beb3cf9e28b32e5 EBUILD sphinx-0.6.1-r1.ebuild 1659 RMD160 fea7e7c0551aa79466891b9589707fe11021a037 SHA1 c588be2ac8c289bbfd85de915141c3b94a376335 SHA256 5ddfe5bf1b689cf4efabbb4e931d78122bc24548a56ae6291e4957f9b63f5b93 EBUILD sphinx-0.6.3.ebuild 2066 RMD160 913e700b01c4c349e375f6cd4a38bbea6b0c3fe1 SHA1 244792385bd54d09ce796a6ffa415f6a4e4ee556 SHA256 632311dfd2ac4fd49f3b29c71e514ebb813722ce61d7f0c60cbc6d2be3f054b8 MISC ChangeLog 4464 RMD160 cf00a005688ff38754796a82de01b2b468d2322e SHA1 3be563ddda97432667b4ea7b711153406dfcf048 SHA256 8e7bd66ed87f6e778e404777f3e1d36061a82621003d61d6535012ac0ccff33a diff --git a/dev-python/sphinx/sphinx-0.5.2.ebuild b/dev-python/sphinx/sphinx-0.5.2.ebuild deleted file mode 100644 index edd04d874031..000000000000 --- a/dev-python/sphinx/sphinx-0.5.2.ebuild +++ /dev/null @@ -1,49 +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.5.2.ebuild,v 1.4 2009/06/09 15:55:50 armin76 Exp $ - -inherit distutils - -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="amd64 ~ia64 ppc ~ppc64 sparc x86" -IUSE="doc test" - -RDEPEND=">=dev-python/pygments-0.8 - >=dev-python/jinja-1.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=. "${python}" tests/run.py || die "Tests failed" -} |