diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2003-01-22 21:23:50 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2003-01-22 21:23:50 +0000 |
commit | 2c94c297017f2dbfa6a35134af61edd9553599b5 (patch) | |
tree | 68be5500cd4390dab98e28041d939212a9e6ed19 /dev-python | |
parent | cleanup (diff) | |
download | gentoo-2-2c94c297017f2dbfa6a35134af61edd9553599b5.tar.gz gentoo-2-2c94c297017f2dbfa6a35134af61edd9553599b5.tar.bz2 gentoo-2-2c94c297017f2dbfa6a35134af61edd9553599b5.zip |
Docs for 2.2.2
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/python-docs/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/python-docs/files/digest-python-docs-2.2.2 | 1 | ||||
-rw-r--r-- | dev-python/python-docs/python-docs-2.2.2.ebuild | 30 |
3 files changed, 37 insertions, 1 deletions
diff --git a/dev-python/python-docs/ChangeLog b/dev-python/python-docs/ChangeLog index 3df289c5846c..8d4e7d183753 100644 --- a/dev-python/python-docs/ChangeLog +++ b/dev-python/python-docs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/python-docs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.7 2002/12/20 10:13:33 jrray Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.8 2003/01/22 21:23:50 agenkin Exp $ + +*python-docs-2.2.2 (22 Jan 2003) + + 22 Jan 2003; Arcady Genkin <agenkin@gentoo.org> : + Updated to version 2.2.2. *python-docs-2.2.1-r1 (20 Dec 2002) diff --git a/dev-python/python-docs/files/digest-python-docs-2.2.2 b/dev-python/python-docs/files/digest-python-docs-2.2.2 new file mode 100644 index 000000000000..325f1c5f9ee0 --- /dev/null +++ b/dev-python/python-docs/files/digest-python-docs-2.2.2 @@ -0,0 +1 @@ +MD5 758314b1650eec929d2bae20f03e6d7b html-2.2.2.tar.bz2 963704 diff --git a/dev-python/python-docs/python-docs-2.2.2.ebuild b/dev-python/python-docs/python-docs-2.2.2.ebuild new file mode 100644 index 000000000000..7615e25cee33 --- /dev/null +++ b/dev-python/python-docs/python-docs-2.2.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-2.2.2.ebuild,v 1.1 2003/01/22 21:23:50 agenkin Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="HTML documentation for Python" +SRC_URI="http://www.python.org/ftp/python/doc/${PV}/html-${PV}.tar.bz2" +HOMEPAGE="http://www.python.org/doc/2.2/" +DEPEND="" +RDEPEND="" +SLOT="2.2" +LICENSE="PSF-2.2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha" + +src_unpack() { + mkdir ${S} + cd ${S} + unpack ${A} +} + + +src_install() { + docinto html + cp -R ${S}/* ${D}/usr/share/doc/${PF}/html + chown -R root.root ${D}/usr/share/doc/${PF}/html + find ${D}/usr/share/doc/${PF}/html -type d -exec chmod 0755 \{\} \; + find ${D}/usr/share/doc/${PF}/html -type f -exec chmod 0644 \{\} \; + dodir /etc/env.d + echo "PYTHONDOCS=/usr/share/doc/${PF}/html" > ${D}/etc/env.d/50python-docs +} |