mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sys-apps/apparmor-utils: version bump 2.12.0
Package-Manager: Portage-2.3.14, Repoman-2.3.6
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST apparmor-2.11.1.tar.gz 5017646 BLAKE2B ee0176c87b2800eb562c136ff324f08e444c412117c4593ff97c4b0e4c63db2aea0721c6ed38f3c733e3c95024165f329e520acf838c4798a8285b8dedf0d51e SHA512 f088157cc116987e56c0e02127497b1ec6241f3d761ec3b53211fa188f5f02c9408d6b903f2d275328ede88ebfd1393e00aad9f68cbe78fa9ab3711ba0f9c00c
|
||||
DIST apparmor-2.12.tar.gz 7258450 BLAKE2B c1d4e01d836c5f567ddb7c5ecf36dde6efccf1e59ae219824129fd5c92162a3fed7ebdc492f181ae132b07db068660078a9631543d40fd20ab0b44cd4c646d4c SHA512 d85fd47c66333fe5658ee5e977b32142697f6e36c575550712ee2ace2ad0fbf2aa59c8fd3b82ad8821c0190adf8cc150cf623ea09a84d5b32bde050a03dd6e9a
|
||||
|
||||
77
sys-apps/apparmor-utils/apparmor-utils-2.12.0.ebuild
Normal file
77
sys-apps/apparmor-utils/apparmor-utils-2.12.0.ebuild
Normal file
@@ -0,0 +1,77 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python3_{4,5,6} )
|
||||
inherit perl-module python-r1 toolchain-funcs versionator
|
||||
|
||||
MY_PV="$(get_version_component_range 1-2)"
|
||||
|
||||
DESCRIPTION="Additional userspace utils to assist with AppArmor profile management"
|
||||
HOMEPAGE="http://apparmor.net/"
|
||||
SRC_URI="https://launchpad.net/apparmor/${MY_PV}/${PV}/+download/apparmor-${MY_PV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND="dev-lang/perl
|
||||
${PYTHON_DEPS}"
|
||||
RDEPEND="${DEPEND}
|
||||
~sys-libs/libapparmor-${PV}[perl,python]
|
||||
~sys-apps/apparmor-${PV}
|
||||
dev-perl/Locale-gettext
|
||||
dev-perl/RPC-XML
|
||||
dev-perl/TermReadKey
|
||||
virtual/perl-Data-Dumper
|
||||
virtual/perl-Getopt-Long"
|
||||
|
||||
S=${WORKDIR}/apparmor-${MY_PV}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i binutils/Makefile \
|
||||
-e 's/Bstatic/Bdynamic/g' || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
python_setup
|
||||
|
||||
pushd utils > /dev/null || die
|
||||
# launches non-make subprocesses causing "make jobserver unavailable"
|
||||
# error messages to appear in generated code
|
||||
emake -j1
|
||||
popd > /dev/null || die
|
||||
|
||||
pushd binutils > /dev/null || die
|
||||
export EXTRA_CFLAGS="${CFLAGS}"
|
||||
emake CC="$(tc-getCC)" USE_SYSTEM=1
|
||||
popd > /dev/null || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
pushd utils > /dev/null || die
|
||||
perl_set_version
|
||||
emake DESTDIR="${D}" PERLDIR="${D}/${VENDOR_LIB}/Immunix" \
|
||||
VIM_INSTALL_PATH="${D}/usr/share/vim/vimfiles/syntax" install
|
||||
|
||||
install_python() {
|
||||
"${PYTHON}" "${S}"/utils/python-tools-setup.py install --prefix=/usr \
|
||||
--root="${D}" --version="${PV}"
|
||||
}
|
||||
|
||||
python_foreach_impl install_python
|
||||
python_replicate_script "${D}"/usr/bin/aa-easyprof "${D}"/usr/sbin/apparmor_status \
|
||||
"${D}"/usr/sbin/aa-{audit,autodep,cleanprof,complain,disable,enforce,genprof,logprof,mergeprof,status,unconfined}
|
||||
popd > /dev/null || die
|
||||
|
||||
pushd binutils > /dev/null || die
|
||||
emake install DESTDIR="${D}" USE_SYSTEM=1
|
||||
popd > /dev/null || die
|
||||
}
|
||||
Reference in New Issue
Block a user