Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/mirrorselect: mirrorselect-2.0.0.ebuild ChangeLog
Date: Mon, 03 Aug 2009 18:14:53
Message-Id: E1MY23d-0007kh-O1@stork.gentoo.org
1 idl0r 09/08/03 18:14:49
2
3 Modified: ChangeLog
4 Added: mirrorselect-2.0.0.ebuild
5 Log:
6 Version bump to 2.0.0, bug 278351. Special thanks to Sebastian Pipping (sping) <webmaster@××××××××.org>.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.73 app-portage/mirrorselect/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/ChangeLog?rev=1.73&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/ChangeLog?rev=1.73&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/ChangeLog?r1=1.72&r2=1.73
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/ChangeLog,v
19 retrieving revision 1.72
20 retrieving revision 1.73
21 diff -u -r1.72 -r1.73
22 --- ChangeLog 21 Jun 2009 21:34:05 -0000 1.72
23 +++ ChangeLog 3 Aug 2009 18:14:49 -0000 1.73
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-portage/mirrorselect
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/ChangeLog,v 1.72 2009/06/21 21:34:05 zmedico Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/ChangeLog,v 1.73 2009/08/03 18:14:49 idl0r Exp $
29 +
30 +*mirrorselect-2.0.0 (03 Aug 2009)
31 +
32 + 03 Aug 2009; Christian Ruppert <idl0r@g.o>
33 + +mirrorselect-2.0.0.ebuild:
34 + Version bump to 2.0.0, bug 278351. Special thanks to Sebastian Pipping
35 + (sping) <webmaster@××××××××.org>.
36
37 *mirrorselect-1.4.2 (21 Jun 2009)
38
39
40
41
42 1.1 app-portage/mirrorselect/mirrorselect-2.0.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/mirrorselect-2.0.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/mirrorselect-2.0.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mirrorselect-2.0.0.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-portage/mirrorselect/mirrorselect-2.0.0.ebuild,v 1.1 2009/08/03 18:14:49 idl0r Exp $
52
53 EAPI="2"
54
55 inherit python
56
57 DESCRIPTION="Tool to help select distfiles mirrors for Gentoo"
58 HOMEPAGE="http://www.gentoo.org/"
59 SRC_URI="mirror://gentoo/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh
64 ~sparc ~x86 ~x86-fbsd"
65 IUSE=""
66
67 RDEPEND="dev-lang/python[xml]
68 dev-util/dialog
69 net-analyzer/netselect"
70
71 src_install() {
72 newsbin main.py ${PN} || die
73
74 insinto $(python_get_sitedir)
75 doins -r ${PN}/ || die
76
77 doman ${PN}.8 || die
78 }
79
80 pkg_postinst() {
81 python_mod_compile $(python_get_sitedir)/${PN}/*.py
82 }
83
84 pkg_postrm() {
85 python_mod_cleanup $(python_get_sitedir)/${PN}
86 }