summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-11-28 19:16:18 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-11-28 19:16:18 +0000
commitbb3e376c2b410c766f95a700fac5acc9af77c506 (patch)
treeca1c95ebab489549615c275bd6dbcb96d0f6a439 /dev-python/python-docs
parentAdd ~alpha/~ia64/~sparc wrt #345605 (diff)
downloadgentoo-2-bb3e376c2b410c766f95a700fac5acc9af77c506.tar.gz
gentoo-2-bb3e376c2b410c766f95a700fac5acc9af77c506.tar.bz2
gentoo-2-bb3e376c2b410c766f95a700fac5acc9af77c506.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/python-docs')
-rw-r--r--dev-python/python-docs/python-docs-2.7.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-python/python-docs/python-docs-2.7.ebuild b/dev-python/python-docs/python-docs-2.7.ebuild
deleted file mode 100644
index 62c8c08415a8..000000000000
--- a/dev-python/python-docs/python-docs-2.7.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-2.7.ebuild,v 1.1 2010/07/04 20:12:44 arfrever Exp $
-
-EAPI="3"
-
-DESCRIPTION="HTML documentation for Python"
-HOMEPAGE="http://www.python.org/doc/"
-SRC_URI="http://www.python.org/ftp/python/doc/${PV}/python-${PV}-docs-html.tar.bz2"
-
-LICENSE="PSF-2.2"
-SLOT="2.7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-
-DEPEND=">=app-admin/eselect-python-20091230"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/python-${PV}-docs-html"
-
-pkg_setup() {
- if has_version "=dev-lang/python-2.7_pre*[doc]"; then
- rm -f "${EROOT}etc/env.d/60python-docs-2.7"
- fi
-}
-
-src_install() {
- docinto html
- cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html"
-
- echo "PYTHONDOCS_${SLOT//./_}=\"${EPREFIX}/usr/share/doc/${PF}/html/library\"" > "60python-docs-${SLOT}"
- doenvd "60python-docs-${SLOT}"
-}
-
-eselect_python_update() {
- local eselect_python_options
- [[ "$(eselect python show)" == "python2."* ]] && eselect_python_options="--python2"
-
- # Create python2 symlink.
- eselect python update --python2 > /dev/null
-
- eselect python update ${eselect_python_options}
-}
-
-pkg_postinst() {
- eselect_python_update
-}
-
-pkg_postrm() {
- eselect_python_update
-
- if ! has_version "<dev-python/python-docs-${SLOT}_alpha" && ! has_version ">=dev-python/python-docs-${SLOT%.*}.$((${SLOT#*.}+1))_alpha"; then
- rm -f "${EROOT}etc/env.d/65python-docs"
- fi
-}