diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-01-11 17:13:57 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2014-01-11 17:13:57 +0000 |
commit | d13a74b8c861c4a8d527af6a1b880d8b2c47ee18 (patch) | |
tree | 43675d5be0a31abd0a662614aa422703da4c6ce9 /dev-python/python-docs | |
parent | arm stable, bug #496882 (diff) | |
download | gentoo-2-d13a74b8c861c4a8d527af6a1b880d8b2c47ee18.tar.gz gentoo-2-d13a74b8c861c4a8d527af6a1b880d8b2c47ee18.tar.bz2 gentoo-2-d13a74b8c861c4a8d527af6a1b880d8b2c47ee18.zip |
Bump.
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-python/python-docs')
-rw-r--r-- | dev-python/python-docs/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/python-docs/python-docs-3.3.3.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/dev-python/python-docs/ChangeLog b/dev-python/python-docs/ChangeLog index ebbff14b39c9..f7d0e9f24111 100644 --- a/dev-python/python-docs/ChangeLog +++ b/dev-python/python-docs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/python-docs # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.186 2014/01/05 17:49:02 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.187 2014/01/11 17:13:57 floppym Exp $ + +*python-docs-3.3.3 (11 Jan 2014) + + 11 Jan 2014; Mike Gilbert <floppym@gentoo.org> +python-docs-3.3.3.ebuild: + Bump. 05 Jan 2014; Agostino Sarubbo <ago@gentoo.org> python-docs-3.3.2.ebuild: Stable for ppc64, wrt bug #474128 diff --git a/dev-python/python-docs/python-docs-3.3.3.ebuild b/dev-python/python-docs/python-docs-3.3.3.ebuild new file mode 100644 index 000000000000..c0d96c778b1f --- /dev/null +++ b/dev-python/python-docs/python-docs-3.3.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-3.3.3.ebuild,v 1.1 2014/01/11 17:13:57 floppym 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" +SLOT="3.3" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/python-${PV}-docs-html" + +src_install() { + dohtml -A xml -r ./ + echo "PYTHONDOCS_${SLOT//./_}=\"${EPREFIX}/usr/share/doc/${PF}/html/library\"" > "60python-docs-${SLOT}" + doenvd "60python-docs-${SLOT}" +} + +pkg_postrm() { + 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 +} |