Gentoo Archives: gentoo-commits

From: "Tobias Klausmann (klausman)" <klausman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/lib_users: lib_users-0.6.ebuild ChangeLog
Date: Thu, 01 Aug 2013 08:20:38
Message-Id: 20130801082028.152442171C@flycatcher.gentoo.org
1 klausman 13/08/01 08:20:27
2
3 Modified: lib_users-0.6.ebuild ChangeLog
4 Log:
5 Revert to python.eclass and stabilize on Alpha.
6
7 Since python-r1.eclass provides no python_execute_nosetests() function and
8 coding it myself seems a waste of time, revert to using python.eclass.
9
10 Also stabilize on Alpha for bug 479342.
11
12 (Portage version: 2.1.13.1/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)
13
14 Revision Changes Path
15 1.2 app-admin/lib_users/lib_users-0.6.ebuild
16
17 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/lib_users/lib_users-0.6.ebuild?rev=1.2&view=markup
18 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/lib_users/lib_users-0.6.ebuild?rev=1.2&content-type=text/plain
19 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/lib_users/lib_users-0.6.ebuild?r1=1.1&r2=1.2
20
21 Index: lib_users-0.6.ebuild
22 ===================================================================
23 RCS file: /var/cvsroot/gentoo-x86/app-admin/lib_users/lib_users-0.6.ebuild,v
24 retrieving revision 1.1
25 retrieving revision 1.2
26 diff -u -r1.1 -r1.2
27 --- lib_users-0.6.ebuild 31 May 2013 12:01:44 -0000 1.1
28 +++ lib_users-0.6.ebuild 1 Aug 2013 08:20:27 -0000 1.2
29 @@ -1,10 +1,10 @@
30 # Copyright 1999-2013 Gentoo Foundation
31 # Distributed under the terms of the GNU General Public License v2
32 -# $Header: /var/cvsroot/gentoo-x86/app-admin/lib_users/lib_users-0.6.ebuild,v 1.1 2013/05/31 12:01:44 klausman Exp $
33 +# $Header: /var/cvsroot/gentoo-x86/app-admin/lib_users/lib_users-0.6.ebuild,v 1.2 2013/08/01 08:20:27 klausman Exp $
34 EAPI=5
35 PYTHON_COMPAT=( python2_7 python3_2 )
36
37 -inherit python-r1
38 +inherit python
39
40 DESCRIPTION="Goes through /proc and finds all cases of libraries being mapped
41 but marked as deleted"
42 @@ -13,12 +13,25 @@
43
44 LICENSE="GPL-2"
45 SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux"
47 +KEYWORDS="alpha ~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux"
48 IUSE="test"
49
50 DEPEND="test? ( dev-python/nose )"
51 RDEPEND=""
52
53 +pkg_setup() {
54 + python_set_active_version 2
55 + python_pkg_setup
56 +}
57 +
58 +src_prepare() {
59 + python_convert_shebangs -r 2 .
60 +}
61 +
62 +src_test() {
63 + python_execute_nosetests -P .
64 +}
65 +
66 src_install() {
67 newbin lib_users.py lib_users
68 dodoc README TODO
69
70
71
72 1.28 app-admin/lib_users/ChangeLog
73
74 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/lib_users/ChangeLog?rev=1.28&view=markup
75 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/lib_users/ChangeLog?rev=1.28&content-type=text/plain
76 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/lib_users/ChangeLog?r1=1.27&r2=1.28
77
78 Index: ChangeLog
79 ===================================================================
80 RCS file: /var/cvsroot/gentoo-x86/app-admin/lib_users/ChangeLog,v
81 retrieving revision 1.27
82 retrieving revision 1.28
83 diff -u -r1.27 -r1.28
84 --- ChangeLog 31 May 2013 12:01:45 -0000 1.27
85 +++ ChangeLog 1 Aug 2013 08:20:27 -0000 1.28
86 @@ -1,6 +1,12 @@
87 # ChangeLog for app-admin/lib_users
88 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
89 -# $Header: /var/cvsroot/gentoo-x86/app-admin/lib_users/ChangeLog,v 1.27 2013/05/31 12:01:45 klausman Exp $
90 +# $Header: /var/cvsroot/gentoo-x86/app-admin/lib_users/ChangeLog,v 1.28 2013/08/01 08:20:27 klausman Exp $
91 +
92 + 01 Aug 2013; Tobias Klausmann <klausman@g.o> lib_users-0.6.ebuild:
93 + Revert to python.eclass and stabilize on Alpha. Since python-r1.eclass
94 + provides no python_execute_nosetests() function and coding it myself seems a
95 + waste of time, revert to using python.eclass. Also stabilize on Alpha for bug
96 + 479342.
97
98 *lib_users-0.6 (31 May 2013)