Gentoo Archives: gentoo-commits

From: "Sven Vermeulen (swift)" <swift@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libselinux: libselinux-2.1.13-r4.ebuild ChangeLog
Date: Sun, 27 Oct 2013 18:19:00
Message-Id: 20131027181851.E97BC20047@flycatcher.gentoo.org
1 swift 13/10/27 18:18:51
2
3 Modified: libselinux-2.1.13-r4.ebuild ChangeLog
4 Log:
5 Fix bug 488102 - Only call ruby-ng pkg_setup if USE=ruby is set
6
7 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47)
8
9 Revision Changes Path
10 1.5 sys-libs/libselinux/libselinux-2.1.13-r4.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild?r1=1.4&r2=1.5
15
16 Index: libselinux-2.1.13-r4.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- libselinux-2.1.13-r4.ebuild 5 Sep 2013 19:44:50 -0000 1.4
23 +++ libselinux-2.1.13-r4.ebuild 27 Oct 2013 18:18:51 -0000 1.5
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.4 2013/09/05 19:44:50 mgorny Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.13-r4.ebuild,v 1.5 2013/10/27 18:18:51 swift Exp $
29
30 EAPI="5"
31 PYTHON_COMPAT=( python2_7 python3_2 )
32 @@ -32,6 +32,13 @@
33
34 S="${WORKDIR}/${P}"
35
36 +pkg_setup() {
37 + # prevent ruby-ng to mess if ruby is not asked for
38 + if use ruby; then
39 + ruby-ng_pkg_setup
40 + fi
41 +}
42 +
43 src_unpack() {
44 default
45 }
46
47
48
49 1.104 sys-libs/libselinux/ChangeLog
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.104&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.104&content-type=text/plain
53 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?r1=1.103&r2=1.104
54
55 Index: ChangeLog
56 ===================================================================
57 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v
58 retrieving revision 1.103
59 retrieving revision 1.104
60 diff -u -r1.103 -r1.104
61 --- ChangeLog 5 Sep 2013 19:44:50 -0000 1.103
62 +++ ChangeLog 27 Oct 2013 18:18:51 -0000 1.104
63 @@ -1,6 +1,9 @@
64 # ChangeLog for sys-libs/libselinux
65 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
66 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.103 2013/09/05 19:44:50 mgorny Exp $
67 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.104 2013/10/27 18:18:51 swift Exp $
68 +
69 + 27 Oct 2013; Sven Vermeulen <swift@g.o> libselinux-2.1.13-r4.ebuild:
70 + Fix bug 488102 - Only call ruby-ng pkg_setup if USE=ruby is set
71
72 05 Sep 2013; Michał Górny <mgorny@g.o> libselinux-2.1.13-r4.ebuild:
73 Clean up PYTHON_COMPAT from old implementations.