diff options
author | Arsen Arsenović <arsen@aarsen.me> | 2022-07-12 11:11:11 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-12 11:02:35 +0100 |
commit | a70a5c8d33f4f48ba16bde6f23e05e18b22e4ffa (patch) | |
tree | b217c228742f0ed2394bc74f1d473875f0c1e269 /app-misc | |
parent | dev-lang/python: fix disabling dependencies/modules (diff) | |
download | gentoo-a70a5c8d33f4f48ba16bde6f23e05e18b22e4ffa.tar.gz gentoo-a70a5c8d33f4f48ba16bde6f23e05e18b22e4ffa.tar.bz2 gentoo-a70a5c8d33f4f48ba16bde6f23e05e18b22e4ffa.zip |
app-misc/pax-utils: add 9999
Signed-off-by: Arsen Arsenović <arsen@aarsen.me>
Closes: https://github.com/gentoo/gentoo/pull/26367
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/pax-utils/pax-utils-9999.ebuild | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/app-misc/pax-utils/pax-utils-9999.ebuild b/app-misc/pax-utils/pax-utils-9999.ebuild new file mode 100644 index 000000000000..6d4a01235725 --- /dev/null +++ b/app-misc/pax-utils/pax-utils-9999.ebuild @@ -0,0 +1,79 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Note: if bumping pax-utils because of syscall changes in glibc, please +# revbump glibc and update the dependency in its ebuild for the affected +# versions. +PYTHON_COMPAT=( python3_{8..11} ) + +inherit meson python-single-r1 + +DESCRIPTION="ELF utils that can check files for security relevant properties" +HOMEPAGE="https://wiki.gentoo.org/index.php?title=Project:Hardened/PaX_Utilities" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pax-utils.git" + inherit git-r3 +else + SRC_URI="mirror://gentoo/${P}.tar.xz + https://dev.gentoo.org/~sam/distfiles/${P}.tar.xz + https://dev.gentoo.org/~vapier/dist/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="test man caps python seccomp" + +_PYTHON_DEPS=" + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/pyelftools[${PYTHON_USEDEP}] + ') +" + +RDEPEND="caps? ( >=sys-libs/libcap-2.24 ) + python? ( ${_PYTHON_DEPS} ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + caps? ( virtual/pkgconfig ) + man? ( app-text/xmlto ) + + python? ( ${_PYTHON_DEPS} ) +" +REQUIRED_USE=" + python? ( ${PYTHON_REQUIRED_USE} ) + test? ( python ) +" +RESTRICT=" + !test? ( test ) +" + +pkg_setup() { + if use test || use python; then + python-single-r1_pkg_setup + fi +} + +src_configure() { + local emesonargs=( + "-Dlddtree_implementation=$(usex python python sh)" + $(meson_feature caps use_libcap) + $(meson_feature man build_manpages) + $(meson_use seccomp use_seccomp) + $(meson_use test tests) + + # fuzzing is currently broken + -Duse_fuzzing=false + ) + meson_src_configure +} + +src_install() { + meson_src_install + + use python && python_fix_shebang "${ED}"/usr/bin/lddtree +} |