summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2006-09-19 19:22:09 +0000
committerAlastair Tse <liquidx@gentoo.org>2006-09-19 19:22:09 +0000
commit4908aaf6a1dc84058fce7c0916344a1c674bd6e4 (patch)
treea71ecaa7d849002b7780d538635b07d6539f9117 /dev-python
parentpython 2.5 released. (diff)
downloadhistorical-4908aaf6a1dc84058fce7c0916344a1c674bd6e4.tar.gz
historical-4908aaf6a1dc84058fce7c0916344a1c674bd6e4.tar.bz2
historical-4908aaf6a1dc84058fce7c0916344a1c674bd6e4.zip
python 2.5 released, add accompanying docs
Package-Manager: portage-2.1.1
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/python-docs/ChangeLog11
-rw-r--r--dev-python/python-docs/files/digest-python-docs-2.53
-rw-r--r--dev-python/python-docs/python-docs-2.5.ebuild30
3 files changed, 43 insertions, 1 deletions
diff --git a/dev-python/python-docs/ChangeLog b/dev-python/python-docs/ChangeLog
index 851cea75f246..8d64ec4c5ece 100644
--- a/dev-python/python-docs/ChangeLog
+++ b/dev-python/python-docs/ChangeLog
@@ -1,6 +1,15 @@
# ChangeLog for dev-python/python-docs
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.83 2006/07/20 17:25:19 blubb Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.84 2006/09/19 19:22:09 liquidx Exp $
+
+*python-docs-2.5 (19 Sep 2006)
+
+ 19 Sep 2006; Alastair Tse <liquidx@gentoo.org> -python-docs-2.2.2.ebuild,
+ -python-docs-2.3.3.ebuild, -python-docs-2.3.3-r1.ebuild,
+ -python-docs-2.3.4_rc1.ebuild, -python-docs-2.3.4.ebuild,
+ -python-docs-2.4.ebuild, -python-docs-2.4.1.ebuild,
+ -python-docs-2.4.2.ebuild, +python-docs-2.5.ebuild:
+ python 2.5 released, add accompanying docs
20 Jul 2006; Simon Stelling <blubb@gentoo.org> python-docs-2.4.3.ebuild:
stable on amd64
diff --git a/dev-python/python-docs/files/digest-python-docs-2.5 b/dev-python/python-docs/files/digest-python-docs-2.5
new file mode 100644
index 000000000000..d9205eb9c7cf
--- /dev/null
+++ b/dev-python/python-docs/files/digest-python-docs-2.5
@@ -0,0 +1,3 @@
+MD5 3badfa2d460f52b7f9face12abdb2e91 html-2.5.tar.bz2 1562256
+RMD160 58fb71090a6c5b7ea54b1b73f3dc1f65b5f942e9 html-2.5.tar.bz2 1562256
+SHA256 52a473258528bec3617da8cfd9188e8b7b2833ade61d705058ee5b0adef64a5b html-2.5.tar.bz2 1562256
diff --git a/dev-python/python-docs/python-docs-2.5.ebuild b/dev-python/python-docs/python-docs-2.5.ebuild
new file mode 100644
index 000000000000..a5cb17e50f5e
--- /dev/null
+++ b/dev-python/python-docs/python-docs-2.5.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2006 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.5.ebuild,v 1.1 2006/09/19 19:22:09 liquidx Exp $
+
+DESCRIPTION="HTML documentation for Python"
+HOMEPAGE="http://www.python.org/doc/${PV}/"
+SRC_URI="http://www.python.org/ftp/python/doc/${PV}/html-${PV}.tar.bz2"
+
+LICENSE="PSF-2.2"
+SLOT="2.5"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+S=${WORKDIR}
+
+src_unpack() {
+ unpack html-${PV}.tar.bz2
+ rm -f README python.dir
+}
+
+src_install() {
+ docinto html
+ cp -R ${S}/Python-Docs-${MY_PV}/* ${D}/usr/share/doc/${PF}/html
+
+ dodir /etc/env.d
+ echo "PYTHONDOCS=/usr/share/doc/${PF}/html" > ${D}/etc/env.d/50python-docs
+}