Gentoo Archives: gentoo-commits

From: "Jason Zaman (perfinion)" <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libsepol: libsepol-2.4.ebuild ChangeLog
Date: Wed, 04 Feb 2015 17:46:49
Message-Id: 20150204174644.1B0B9110D2@oystercatcher.gentoo.org
1 perfinion 15/02/04 17:46:44
2
3 Modified: ChangeLog
4 Added: libsepol-2.4.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x7EF137EC935B0EAF)
9
10 Revision Changes Path
11 1.73 sys-libs/libsepol/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.73&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.73&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?r1=1.72&r2=1.73
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v
20 retrieving revision 1.72
21 retrieving revision 1.73
22 diff -u -r1.72 -r1.73
23 --- ChangeLog 6 Dec 2014 23:19:21 -0000 1.72
24 +++ ChangeLog 4 Feb 2015 17:46:44 -0000 1.73
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-libs/libsepol
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.72 2014/12/06 23:19:21 perfinion Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.73 2015/02/04 17:46:44 perfinion Exp $
31 +
32 +*libsepol-2.4 (04 Feb 2015)
33 +
34 + 04 Feb 2015; Jason Zaman <perfinion@g.o> +libsepol-2.4.ebuild:
35 + Version bump
36
37 *libsepol-2.4_rc7 (06 Dec 2014)
38
39
40
41
42 1.1 sys-libs/libsepol/libsepol-2.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libsepol-2.4.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.4.ebuild,v 1.1 2015/02/04 17:46:44 perfinion Exp $
52
53 EAPI="5"
54
55 inherit multilib toolchain-funcs eutils multilib-minimal
56
57 MY_P="${P//_/-}"
58
59 DESCRIPTION="SELinux binary policy representation library"
60 HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki"
61 SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20150202/${MY_P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 DEPEND=""
69 RDEPEND=""
70
71 S="${WORKDIR}/${MY_P}"
72
73 # tests are not meant to be run outside of the
74 # full SELinux userland repo
75 RESTRICT="test"
76
77 src_prepare() {
78 epatch_user
79 multilib_copy_sources
80 }
81
82 multilib_src_compile() {
83 tc-export RANLIB;
84 LIBDIR="\$(PREFIX)/$(get_libdir)" SHLIBDIR="\$(DESTDIR)/$(get_libdir)" \
85 emake AR="$(tc-getAR)" CC="$(tc-getCC)"
86 }
87
88 multilib_src_install() {
89 LIBDIR="\$(PREFIX)/$(get_libdir)" SHLIBDIR="\$(DESTDIR)/$(get_libdir)" \
90 emake DESTDIR="${D}" install
91 }