Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/eselect-python: eselect-python-20090801.ebuild ChangeLog
Date: Sat, 01 Aug 2009 02:20:29
Message-Id: E1MX4Cx-0005nt-Gv@stork.gentoo.org
1 arfrever 09/08/01 02:20:27
2
3 Modified: ChangeLog
4 Added: eselect-python-20090801.ebuild
5 Log:
6 Version bump. Make 'python' and 'python-config' scripts instead of symlinks. Support .xz-compressed man pages (bug #276106).
7 (Portage version: 13870-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.31 app-admin/eselect-python/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-python/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-python/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-python/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-python/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 11 Jul 2009 20:40:16 -0000 1.30
23 +++ ChangeLog 1 Aug 2009 02:20:27 -0000 1.31
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-admin/eselect-python
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-python/ChangeLog,v 1.30 2009/07/11 20:40:16 josejx Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-python/ChangeLog,v 1.31 2009/08/01 02:20:27 arfrever Exp $
29 +
30 +*eselect-python-20090801 (01 Aug 2009)
31 +
32 + 01 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +eselect-python-20090801.ebuild:
34 + Version bump. Make 'python' and 'python-config' scripts instead of
35 + symlinks. Support .xz-compressed man pages (bug #276106).
36
37 11 Jul 2009; Joseph Jezak <josejx@g.o>
38 eselect-python-20090606.ebuild:
39
40
41
42 1.1 app-admin/eselect-python/eselect-python-20090801.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-python/eselect-python-20090801.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-python/eselect-python-20090801.ebuild?rev=1.1&content-type=text/plain
46
47 Index: eselect-python-20090801.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-python/eselect-python-20090801.ebuild,v 1.1 2009/08/01 02:20:27 arfrever Exp $
52
53 DESCRIPTION="Manages multiple Python versions"
54 HOMEPAGE="http://www.gentoo.org"
55 SRC_URI="mirror://gentoo/python.eselect-${PVR}.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
60 IUSE=""
61
62 DEPEND=">=app-admin/eselect-1.0.2"
63 RDEPEND="${DEPEND}"
64
65 src_install() {
66 insinto /usr/share/eselect/modules
67 newins "${WORKDIR}/python.eselect-${PVR}" python.eselect || die "newins python.eselect failed"
68 }
69
70 pkg_preinst() {
71 if has_version "<${CATEGORY}/${PN}-20090801"; then
72 run_eselect_python_update="1"
73 fi
74 }
75
76 pkg_postinst() {
77 if [[ "${run_eselect_python_update}" == "1" ]]; then
78 ebegin "Running \`eselect python update\`"
79 eselect python update --ignore 3.0 --ignore 3.1 --ignore 3.2 > /dev/null
80 eend "$?"
81 fi
82 }