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.1.0-r1.ebuild ChangeLog mirrorselect-2.1.0.ebuild
Date: Fri, 02 Apr 2010 14:57:50
Message-Id: E1NxiJb-0004ga-Lh@stork.gentoo.org
1 idl0r 10/04/02 14:57:43
2
3 Modified: ChangeLog
4 Added: mirrorselect-2.1.0-r1.ebuild
5 Removed: mirrorselect-2.1.0.ebuild
6 Log:
7 Fix rsync mirror selection, bug 312753, thanks to Donald Wallace Rouse II <gentoo-user-0d329vjsd8@××××.org>
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.89 app-portage/mirrorselect/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/ChangeLog?rev=1.89&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/ChangeLog?rev=1.89&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/ChangeLog?r1=1.88&r2=1.89
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/ChangeLog,v
20 retrieving revision 1.88
21 retrieving revision 1.89
22 diff -u -r1.88 -r1.89
23 --- ChangeLog 8 Dec 2009 04:53:44 -0000 1.88
24 +++ ChangeLog 2 Apr 2010 14:57:43 -0000 1.89
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-portage/mirrorselect
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/ChangeLog,v 1.88 2009/12/08 04:53:44 idl0r Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/ChangeLog,v 1.89 2010/04/02 14:57:43 idl0r Exp $
31 +
32 +*mirrorselect-2.1.0-r1 (02 Apr 2010)
33 +
34 + 02 Apr 2010; Christian Ruppert <idl0r@g.o>
35 + +files/0001-Fix-rsync-mirror-selectection.patch,
36 + -mirrorselect-2.1.0.ebuild, +mirrorselect-2.1.0-r1.ebuild:
37 + Fix rsync mirror selection, bug 312753, thanks to Donald Wallace Rouse II
38 + <gentoo-user-0d329vjsd8@××××.org>
39
40 *mirrorselect-2.1.0 (08 Dec 2009)
41
42
43
44
45 1.1 app-portage/mirrorselect/mirrorselect-2.1.0-r1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/mirrorselect-2.1.0-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/mirrorselect/mirrorselect-2.1.0-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: mirrorselect-2.1.0-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/mirrorselect-2.1.0-r1.ebuild,v 1.1 2010/04/02 14:57:43 idl0r Exp $
55
56 EAPI="2"
57 SUPPORT_PYTHON_ABIS="1"
58
59 inherit eutils python
60
61 DESCRIPTION="Tool to help select distfiles mirrors for Gentoo"
62 HOMEPAGE="http://www.gentoo.org/"
63 SRC_URI="mirror://gentoo/${P}.tar.bz2"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
68 IUSE=""
69
70 RDEPEND="dev-lang/python[xml]
71 dev-util/dialog
72 net-analyzer/netselect"
73
74 RESTRICT_PYTHON_ABIS="3*"
75
76 src_prepare() {
77 # bug 312753
78 epatch "${FILESDIR}/0001-Fix-rsync-mirror-selectection.patch"
79 }
80
81 src_install() {
82 newsbin main.py ${PN} || die
83
84 installation() {
85 insinto $(python_get_sitedir)
86 doins -r ${PN}/
87 }
88 python_execute_function installation
89
90 doman ${PN}.8 || die
91 }
92
93 pkg_postinst() {
94 python_mod_optimize ${PN}
95 }
96
97 pkg_postrm() {
98 python_mod_cleanup ${PN}
99 }