Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-docs: python-docs-3.4.2.ebuild ChangeLog
Date: Sat, 01 Nov 2014 10:20:53
Message-Id: 20141101102049.A4BC71641@oystercatcher.gentoo.org
1 idella4 14/11/01 10:20:49
2
3 Modified: ChangeLog
4 Added: python-docs-3.4.2.ebuild
5 Log:
6 bump
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.198 dev-python/python-docs/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-docs/ChangeLog?rev=1.198&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-docs/ChangeLog?rev=1.198&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-docs/ChangeLog?r1=1.197&r2=1.198
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v
20 retrieving revision 1.197
21 retrieving revision 1.198
22 diff -u -r1.197 -r1.198
23 --- ChangeLog 11 Sep 2014 02:48:08 -0000 1.197
24 +++ ChangeLog 1 Nov 2014 10:20:49 -0000 1.198
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/python-docs
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.197 2014/09/11 02:48:08 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.198 2014/11/01 10:20:49 idella4 Exp $
30 +
31 +*python-docs-3.4.2 (01 Nov 2014)
32 +
33 + 01 Nov 2014; Ian Delaney <idella4@g.o> +python-docs-3.4.2.ebuild:
34 + bump
35
36 11 Sep 2014; Patrick Lauer <patrick@g.o> python-docs-3.2.5.ebuild:
37 Mark python-docs:3.2 stable to silence repoman
38
39
40
41 1.1 dev-python/python-docs/python-docs-3.4.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-docs/python-docs-3.4.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-docs/python-docs-3.4.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: python-docs-3.4.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-3.4.2.ebuild,v 1.1 2014/11/01 10:20:49 idella4 Exp $
51
52 EAPI="5"
53
54 DESCRIPTION="HTML documentation for Python"
55 HOMEPAGE="http://www.python.org/doc/"
56 SRC_URI="http://www.python.org/ftp/python/doc/${PV}/python-${PV}-docs-html.tar.bz2"
57
58 LICENSE="PSF-2"
59 SLOT="3.4"
60 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~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"
61 IUSE=""
62
63 DEPEND=""
64 RDEPEND=""
65
66 S="${WORKDIR}/python-${PV}-docs-html"
67
68 pkg_setup() {
69 # Compatibility with Arfrever's pre-release ebuilds.
70 # Remove this in python-docs-3.4.1.
71 if has_version "=dev-lang/python-3.4_pre*[doc]"; then
72 rm -f "${EROOT}etc/env.d/60python-docs-3.4"
73 fi
74 }
75
76 src_install() {
77 dohtml -A xml -A inv -r ./
78 echo "PYTHONDOCS_${SLOT//./_}=\"${EPREFIX}/usr/share/doc/${PF}/html/library\"" > "60python-docs-${SLOT}"
79 doenvd "60python-docs-${SLOT}"
80 }
81
82 pkg_postrm() {
83 if ! has_version "<dev-python/python-docs-${SLOT}_alpha" && ! has_version ">=dev-python/python-docs-${SLOT%.*}.$((${SLOT#*.}+1))_alpha"; then
84 rm -f "${EROOT}etc/env.d/65python-docs"
85 fi
86 }