From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E423D138331 for ; Thu, 26 Apr 2018 11:22:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 114BEE0848; Thu, 26 Apr 2018 11:22:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CF399E083B for ; Thu, 26 Apr 2018 11:22:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F0F37335C72 for ; Thu, 26 Apr 2018 11:22:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8092629D for ; Thu, 26 Apr 2018 11:22:48 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1524741712.0ba333cf4279ddb85e45e03d172e00f0b0e0c00d.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/policycoreutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/policycoreutils/policycoreutils-9999.ebuild X-VCS-Directories: sys-apps/policycoreutils/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 0ba333cf4279ddb85e45e03d172e00f0b0e0c00d X-VCS-Branch: master Date: Thu, 26 Apr 2018 11:22:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c9ae97b5-642a-4273-9b0d-5d08b9518455 X-Archives-Hash: 67272cdd52016edf70a6ba63464a5987 commit: 0ba333cf4279ddb85e45e03d172e00f0b0e0c00d Author: Jason Zaman gentoo org> AuthorDate: Wed Apr 25 12:19:45 2018 +0000 Commit: Jason Zaman gentoo org> CommitDate: Thu Apr 26 11:21:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba333cf sys-apps/policycoreutils: update live ebuild Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-apps/policycoreutils/policycoreutils-9999.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/sys-apps/policycoreutils/policycoreutils-9999.ebuild b/sys-apps/policycoreutils/policycoreutils-9999.ebuild index bd07eea3a4b..aebedfb6cd4 100644 --- a/sys-apps/policycoreutils/policycoreutils-9999.ebuild +++ b/sys-apps/policycoreutils/policycoreutils-9999.ebuild @@ -9,7 +9,7 @@ inherit multilib python-r1 toolchain-funcs bash-completion-r1 MY_P="${P//_/-}" -MY_RELEASEDATE="20170804" +MY_RELEASEDATE="20180419" EXTRAS_VER="1.36" SEMNG_VER="${PV}" SELNX_VER="${PV}" @@ -21,7 +21,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" DESCRIPTION="SELinux core utilities" HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki" -if [[ ${PV} == 9999 ]] ; then +if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git" SRC_URI="https://dev.gentoo.org/~perfinion/distfiles/policycoreutils-extra-${EXTRAS_VER}.tar.bz2" @@ -31,7 +31,7 @@ if [[ ${PV} == 9999 ]] ; then else SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz https://dev.gentoo.org/~perfinion/distfiles/policycoreutils-extra-${EXTRAS_VER}.tar.bz2" - KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86" + KEYWORDS="~amd64 ~arm64 ~mips ~x86" S1="${WORKDIR}/${MY_P}" S2="${WORKDIR}/policycoreutils-extra" S="${S1}" @@ -114,7 +114,6 @@ src_compile() { INOTIFYH="$(usex dbus y n)" \ SESANDBOX="n" \ CC="$(tc-getCC)" \ - PYLIBVER="${EPYTHON}" \ LIBDIR="\$(PREFIX)/$(get_libdir)" } S="${S1}" # Regular policycoreutils @@ -128,11 +127,12 @@ src_install() { installation-policycoreutils() { einfo "Installing policycoreutils" emake -C "${BUILD_DIR}" DESTDIR="${D}" \ + AUDIT_LOG_PRIVS="y" \ AUDITH="$(usex audit y n)" \ PAMH="$(usex pam y n)" \ INOTIFYH="$(usex dbus y n)" \ SESANDBOX="n" \ - AUDIT_LOG_PRIV="y" \ + CC="$(tc-getCC)" \ LIBDIR="\$(PREFIX)/$(get_libdir)" \ install python_optimize @@ -142,8 +142,6 @@ src_install() { einfo "Installing policycoreutils-extra" emake -C "${BUILD_DIR}" \ DESTDIR="${D}" \ - INOTIFYH="$(usex dbus)" \ - SHLIBDIR="${D}$(get_libdir)/rc" \ install python_optimize }