Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pax-utils/
Date: Fri, 23 Sep 2022 01:56:18
Message-Id: 1663898151.3c5ed8fb6e6d420e4f80cc45c154c5ad0b265d21.sam@gentoo
1 commit: 3c5ed8fb6e6d420e4f80cc45c154c5ad0b265d21
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 23 01:55:51 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 23 01:55:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c5ed8fb
7
8 app-misc/pax-utils: drop 1.3.3
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-misc/pax-utils/Manifest | 1 -
13 app-misc/pax-utils/pax-utils-1.3.3.ebuild | 74 -------------------------------
14 2 files changed, 75 deletions(-)
15
16 diff --git a/app-misc/pax-utils/Manifest b/app-misc/pax-utils/Manifest
17 index 0674bce37dce..9f254952cea3 100644
18 --- a/app-misc/pax-utils/Manifest
19 +++ b/app-misc/pax-utils/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST pax-utils-1.3.3.tar.xz 725900 BLAKE2B 17004a4fe57f05e80e0c51a156931975cbaf73e20d96fa50dedf6bd1538ff3f8383591f4b5fd0df926a6a6b75cb083724aaf92b1a4d4ebc67290500520919c29 SHA512 bb0d03371cf8f0cc26a83cbee888a6d91e70416dedc740476cd5549ddaef67048c6802e30e469ab1aced0fd7f63f84e9644744602b2d483ef7af37191505f72e
22 DIST pax-utils-1.3.4.tar.xz 753448 BLAKE2B c105ff568a8e4378cfef5f8b9acb415a850b1e209ea8413cdf518de82e5e925fdba60288557f042bf02d2e075ed5e538175b2078e4dafbe5c54117ed580fd87e SHA512 44a475860823e8b70b1d09d69e5fba3ed8298511d07e1e7b09ce62237cb8b1ecee8fc2fc550d6853d0b9f8db3c350bf78ced49d5f210997b294dc10e36627fcd
23 DIST pax-utils-1.3.5.tar.xz 119764 BLAKE2B 13bd4dbdadefb382133bf42a2b1e740e84ac11661595b082346c80ff05fc7423f5d75cc01ff8a651d921310ae66c2b39a862d0b9db5d7f18e11d393360627fcf SHA512 f2b1753e15907461cc395abffe033d7f7ab8eb15e296b874e2c9d00507458672347b32d7f2f05d3a8625fc3afbdbf0721543f84e062afce7181a726d967e4836
24
25 diff --git a/app-misc/pax-utils/pax-utils-1.3.3.ebuild b/app-misc/pax-utils/pax-utils-1.3.3.ebuild
26 deleted file mode 100644
27 index 345f27e9a3a6..000000000000
28 --- a/app-misc/pax-utils/pax-utils-1.3.3.ebuild
29 +++ /dev/null
30 @@ -1,74 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="7"
35 -
36 -# Note: if bumping pax-utils because of syscall changes in glibc, please
37 -# revbump glibc and update the dependency in its ebuild for the affected
38 -# versions.
39 -PYTHON_COMPAT=( python3_{8,9,10} )
40 -
41 -inherit python-single-r1 toolchain-funcs
42 -
43 -DESCRIPTION="ELF utils that can check files for security relevant properties"
44 -HOMEPAGE="https://wiki.gentoo.org/index.php?title=Project:Hardened/PaX_Utilities"
45 -SRC_URI="mirror://gentoo/${P}.tar.xz
46 - https://dev.gentoo.org/~sam/distfiles/${P}.tar.xz
47 - https://dev.gentoo.org/~vapier/dist/${P}.tar.xz"
48 -
49 -LICENSE="GPL-2"
50 -SLOT="0"
51 -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"
52 -IUSE="caps debug python seccomp"
53 -
54 -RDEPEND="caps? ( >=sys-libs/libcap-2.24 )
55 - python? (
56 - ${PYTHON_DEPS}
57 - $(python_gen_cond_dep '
58 - dev-python/pyelftools[${PYTHON_USEDEP}]
59 - ')
60 - )
61 -"
62 -DEPEND="${RDEPEND}"
63 -BDEPEND="
64 - caps? ( virtual/pkgconfig )
65 -"
66 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
67 -
68 -_emake() {
69 - emake \
70 - USE_CAP=$(usex caps) \
71 - USE_DEBUG=$(usex debug) \
72 - USE_PYTHON=$(usex python) \
73 - USE_SECCOMP=$(usex seccomp) \
74 - "$@"
75 -}
76 -
77 -pkg_setup() {
78 - if use python; then
79 - python-single-r1_pkg_setup
80 - fi
81 -}
82 -
83 -src_configure() {
84 - # Avoid slow configure+gnulib+make if on an up-to-date Linux system
85 - if use prefix || ! use kernel_linux; then
86 - econf $(use_with caps) $(use_with debug) $(use_with python) $(use_with seccomp)
87 - else
88 - tc-export CC PKG_CONFIG
89 - fi
90 -}
91 -
92 -src_compile() {
93 - _emake
94 -}
95 -
96 -src_test() {
97 - _emake check
98 -}
99 -
100 -src_install() {
101 - _emake DESTDIR="${D}" PKGDOCDIR='$(DOCDIR)'/${PF} install
102 -
103 - use python && python_fix_shebang "${ED}"/usr/bin/lddtree
104 -}