Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/semodule-utils/
Date: Sat, 22 Jul 2017 11:09:07
Message-Id: 1500720372.86ff7992f1ad0a6d1ed3ba5dcf487424e1c3738a.perfinion@gentoo
1 commit: 86ff7992f1ad0a6d1ed3ba5dcf487424e1c3738a
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 22 10:20:21 2017 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 22 10:46:12 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86ff7992
7
8 sys-apps/semodule-utils: bump to 2.7_rc5
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 sys-apps/semodule-utils/Manifest | 1 +
13 .../semodule-utils/semodule-utils-2.7_rc5.ebuild | 53 ++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/sys-apps/semodule-utils/Manifest b/sys-apps/semodule-utils/Manifest
17 index a53a22a10e5..52f272fecca 100644
18 --- a/sys-apps/semodule-utils/Manifest
19 +++ b/sys-apps/semodule-utils/Manifest
20 @@ -1,2 +1,3 @@
21 DIST semodule-utils-2.7-rc1.tar.gz 15446 SHA256 929b469e5c8ab806f0acd233352a52b257c5b59b3a75ae950d290138f2d2eef9 SHA512 4bc0c05e36dc01d53c178c507461e64d8842aa808758370d3920d18bd26410cfceed75ec70c6441f1d40e5ca594e13c12c99bb592b5a018bae9fff47e1177e57 WHIRLPOOL c1101fe791d48a8caea9be20ee15801696dba942084a1f9678e1a86e2f1079e69d19598121d63ebcc4b631ae92635da83499e9a571c99754db4ed432a155d0a6
22 DIST semodule-utils-2.7-rc4.tar.gz 15445 SHA256 91a76625538d0e5faea3828b5401c1fbce634cfb8101262006063a91c0fbf26c SHA512 a4bd50d69cfb7484057169c1e0292edaa455436d2e8853f4e5a10e241b8508d2ff162a2f2f8857545a70b459f40b4d400b7ef8b4edcd6eb34e1096fd7e18c7c1 WHIRLPOOL cacb8dea0881d9ab3d49df0cd704e5d17f20976c009189243b6a8998a6a89240d47c06d7bc80e12dcd71c862141819532ac5ac089d58cf31925d5cbd0faaca53
23 +DIST semodule-utils-2.7-rc5.tar.gz 15448 SHA256 2f056cf4075805f63c89c82a455455dc3540ebe5779234e37e9b9e7bc9a1f22c SHA512 025e2a3d55271273de98c53bd5682cb96868d5e73c3879765bccb7f489614b00335d9c1b11c90760cd5a116da01d5c9eddbab61cf07c30e08f7fb16de8a4bb69 WHIRLPOOL a4a45311ad5c91ca382d8655caa23dd625753a55c3ca7385380acdf2bd19d84149da39088ec490e755064e6976165f0d2591a19d7f1fa000aa03ba3501c6fac7
24
25 diff --git a/sys-apps/semodule-utils/semodule-utils-2.7_rc5.ebuild b/sys-apps/semodule-utils/semodule-utils-2.7_rc5.ebuild
26 new file mode 100644
27 index 00000000000..7e76534ec49
28 --- /dev/null
29 +++ b/sys-apps/semodule-utils/semodule-utils-2.7_rc5.ebuild
30 @@ -0,0 +1,53 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="6"
35 +
36 +inherit toolchain-funcs
37 +
38 +MY_RELEASEDATE="20170718"
39 +SEPOL_VER="${PV}"
40 +SELNX_VER="${PV}"
41 +
42 +MY_P="${P//_/-}"
43 +IUSE=""
44 +
45 +if [[ ${PV} == *9999 ]] ; then
46 + inherit git-r3
47 + EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git"
48 + S="${WORKDIR}/${MY_P}/${PN}"
49 +else
50 + SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz"
51 + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
52 + S="${WORKDIR}/${MY_P}"
53 +fi
54 +
55 +DESCRIPTION="SELinux policy module utilities"
56 +HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki"
57 +
58 +LICENSE="GPL-2"
59 +SLOT="0"
60 +
61 +DEPEND=">=sys-libs/libsepol-${SEPOL_VER}:="
62 +
63 +RDEPEND="${DEPEND}
64 + !<sys-apps/policycoreutils-2.7_pre"
65 +
66 +src_prepare() {
67 + default
68 +
69 + sed -i 's/-Werror//g' "${S}"/*/Makefile || die "Failed to remove Werror"
70 +}
71 +
72 +src_compile() {
73 + emake \
74 + CC="$(tc-getCC)" \
75 + LIBDIR="\$(PREFIX)/$(get_libdir)"
76 +}
77 +
78 +src_install() {
79 + emake DESTDIR="${D}" \
80 + LIBDIR="\$(PREFIX)/$(get_libdir)" \
81 + LIBSEPOLA="/usr/$(get_libdir)/libsepol.a" \
82 + install
83 +}