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/selinux-python/
Date: Thu, 26 Apr 2018 11:23:01
Message-Id: 1524741741.a0b2ba5500c66c6758b1e548538409922ed7ce8c.perfinion@gentoo
1 commit: a0b2ba5500c66c6758b1e548538409922ed7ce8c
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 26 10:50:33 2018 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 11:22:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0b2ba55
7
8 sys-apps/selinux-python: bump to 2.8_rc1
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 sys-apps/selinux-python/Manifest | 1 +
13 .../selinux-python/selinux-python-2.8_rc1.ebuild | 95 ++++++++++++++++++++++
14 2 files changed, 96 insertions(+)
15
16 diff --git a/sys-apps/selinux-python/Manifest b/sys-apps/selinux-python/Manifest
17 index f952999c223..1c61f1d0c5a 100644
18 --- a/sys-apps/selinux-python/Manifest
19 +++ b/sys-apps/selinux-python/Manifest
20 @@ -1 +1,2 @@
21 DIST selinux-python-2.7.tar.gz 2068004 BLAKE2B 57c7f324a8faddf57a576f9ec5c46c8dbbd085a3aff4355df645b0f391a0c2db718e8adb2719515cc4a9c386e11c3df053b5303d3f91ff4958fb91e80d440b51 SHA512 df8645e7ac9ca568f0c9d81c42b93d0abadc43c22f14d38451ab262b52132cfb7abd7742e3a00ab9c153f95dd5b23b3a496d84875debcd9787f75d940eb45c28
22 +DIST selinux-python-2.8-rc1.tar.gz 2068420 BLAKE2B 7c00bd05cb692ae31e11c5d415641f5ceafd032882a329984a495b353e8e7272a87045c732e10a563cd0d33faca81fb373cee3d0671bc6699b6f007148f13d7d SHA512 bce5823ac4c24f1bceae9219a07fc9e6192d703e044711f9dfc170946dde411b833cb7a6d0c175e569efcd878a75a8df33dda0498e3da888f60b7adf9d5448a1
23
24 diff --git a/sys-apps/selinux-python/selinux-python-2.8_rc1.ebuild b/sys-apps/selinux-python/selinux-python-2.8_rc1.ebuild
25 new file mode 100644
26 index 00000000000..abb33eda4e3
27 --- /dev/null
28 +++ b/sys-apps/selinux-python/selinux-python-2.8_rc1.ebuild
29 @@ -0,0 +1,95 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
35 +PYTHON_REQ_USE="xml"
36 +
37 +inherit python-r1 toolchain-funcs
38 +
39 +MY_P="${P//_/-}"
40 +
41 +MY_RELEASEDATE="20180419"
42 +SEPOL_VER="${PV}"
43 +SELNX_VER="${PV}"
44 +SEMNG_VER="${PV}"
45 +
46 +IUSE=""
47 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 +
49 +DESCRIPTION="SELinux core utilities"
50 +HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki"
51 +
52 +if [[ ${PV} == 9999 ]] ; then
53 + inherit git-r3
54 + EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git"
55 + S="${WORKDIR}/${MY_P}/${PN#selinux-}"
56 +else
57 + SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz"
58 + KEYWORDS="~amd64 ~arm64 ~mips ~x86"
59 + S="${WORKDIR}/${MY_P}"
60 +fi
61 +
62 +LICENSE="GPL-2"
63 +SLOT="0"
64 +
65 +DEPEND=">=sys-libs/libselinux-${SELNX_VER}:=[python]
66 + >=sys-libs/libsemanage-${SEMNG_VER}:=[python]
67 + >=sys-libs/libsepol-${SEPOL_VER}:=
68 + >=app-admin/setools-4.1.1[${PYTHON_USEDEP}]
69 + dev-python/ipy[${PYTHON_USEDEP}]
70 + !dev-python/sepolgen
71 + ${PYTHON_DEPS}"
72 +
73 +RDEPEND="${DEPEND}"
74 +
75 +src_prepare() {
76 + default
77 + sed -i 's/-Werror//g' "${S}"/*/Makefile || die "Failed to remove Werror"
78 +
79 + python_copy_sources
80 +}
81 +
82 +src_compile() {
83 + building() {
84 + emake -C "${BUILD_DIR}" \
85 + CC="$(tc-getCC)" \
86 + LIBDIR="\$(PREFIX)/$(get_libdir)"
87 + }
88 + python_foreach_impl building
89 +}
90 +
91 +src_install() {
92 + installation() {
93 + emake -C "${BUILD_DIR}" \
94 + DESTDIR="${D}" \
95 + LIBDIR="\$(PREFIX)/$(get_libdir)" \
96 + install
97 + python_optimize
98 + }
99 + python_foreach_impl installation
100 +
101 + # Set version-specific scripts
102 + for pyscript in audit2allow sepolgen-ifgen sepolicy chcat; do
103 + python_replicate_script "${ED}/usr/bin/${pyscript}"
104 + done
105 + for pyscript in semanage; do
106 + python_replicate_script "${ED}/usr/sbin/${pyscript}"
107 + done
108 +
109 + # Create sepolgen.conf with different devel location definition
110 + if [[ -f /etc/selinux/config ]];
111 + then
112 + local selinuxtype=$(awk -F'=' '/^SELINUXTYPE/ {print $2}' /etc/selinux/config);
113 + mkdir -p "${D}"/etc/selinux || die "Failed to create selinux directory";
114 + echo "SELINUX_DEVEL_PATH=/usr/share/selinux/${selinuxtype}/include:/usr/share/selinux/${selinuxtype}" > "${D}"/etc/selinux/sepolgen.conf;
115 + else
116 + local selinuxtype="${POLICY_TYPES%% *}";
117 + if [[ -n "${selinuxtype}" ]];
118 + then
119 + echo "SELINUX_DEVEL_PATH=/usr/share/selinux/${selinuxtype}/include:/usr/share/selinux/${selinuxtype}" > "${D}"/etc/selinux/sepolgen.conf;
120 + else
121 + echo "SELINUX_DEVEL_PATH=/usr/share/selinux/strict/include:/usr/share/selinux/strict" > "${D}"/etc/selinux/sepolgen.conf;
122 + fi
123 + fi
124 +}