Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libcap-ng/
Date: Mon, 24 Aug 2020 22:47:49
Message-Id: 1598309259.9d74f34f8e38687f12d7ee05b8b04daaaef1b34f.whissi@gentoo
1 commit: 9d74f34f8e38687f12d7ee05b8b04daaaef1b34f
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 24 22:46:53 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 24 22:47:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d74f34f
7
8 sys-libs/libcap-ng: bump to v0.7.11
9
10 Closes: https://bugs.gentoo.org/731304
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 sys-libs/libcap-ng/Manifest | 1 +
15 sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild | 89 ++++++++++++++++++++++++++++++
16 2 files changed, 90 insertions(+)
17
18 diff --git a/sys-libs/libcap-ng/Manifest b/sys-libs/libcap-ng/Manifest
19 index b33a3ee0224..998a8b48c37 100644
20 --- a/sys-libs/libcap-ng/Manifest
21 +++ b/sys-libs/libcap-ng/Manifest
22 @@ -1 +1,2 @@
23 DIST libcap-ng-0.7.10.tar.gz 450243 BLAKE2B 8eb21b0309e46b05fa42752b9c814d90bc1eda4852ac7a4975868c279764431a8d5eafc53e50998470f622e2a59e2b4c6c2ac1ac20525c6fcd0633b09b113012 SHA512 1b93c7f5c20ae5cc705fe5244af3e299454e988388cda95f006e248d97c0713e77da2a81c67ecf15755f3958df373fc6d1ca14197d6357ab1f2d8c3a0fd12def
24 +DIST libcap-ng-0.7.11.tar.gz 450541 BLAKE2B 66217f7fb9e3b3876ada6f355a2b69f16fda4ab3ab490e524358c4120583280ce6497770ec6452596426594b877d79c0e03db10d6413c1cf20bd01e996f7347b SHA512 150c4f48d7334966aa7af683e46bc3b8b4d4a2e80be826e6f6a61a0ea0666e2f4dafcd012c536fa321c4954c00059c689cc8d6dc089000ca1dca2fd52e3efe9c
25
26 diff --git a/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild b/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild
27 new file mode 100644
28 index 00000000000..846ebcd8aae
29 --- /dev/null
30 +++ b/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild
31 @@ -0,0 +1,89 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{6,7,8} )
38 +
39 +inherit autotools flag-o-matic python-r1
40 +
41 +DESCRIPTION="POSIX 1003.1e capabilities"
42 +HOMEPAGE="https://people.redhat.com/sgrubb/libcap-ng/"
43 +SRC_URI="https://people.redhat.com/sgrubb/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="LGPL-2.1"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x86-linux"
48 +IUSE="python static-libs"
49 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
50 +
51 +RDEPEND="python? ( ${PYTHON_DEPS} )"
52 +DEPEND="${RDEPEND}
53 + sys-kernel/linux-headers"
54 +BDEPEND="python? ( >=dev-lang/swig-2 )"
55 +
56 +src_prepare() {
57 + default
58 + if use prefix ; then
59 + sed -i "s@cat /usr@cat ${EPREFIX}/usr@" bindings/python*/Makefile.am || die
60 + eautomake #668722
61 + fi
62 +}
63 +
64 +src_configure() {
65 + use sparc && replace-flags -O? -O0
66 +
67 + local ECONF_SOURCE="${S}"
68 +
69 + local myconf=(
70 + $(use_enable static-libs static)
71 + )
72 +
73 + local pythonconf=( --without-python --without-python3 )
74 +
75 + # set up python bindings build(s)
76 + if use python ; then
77 + setup_python_flags_configure() {
78 + pythonconf=( --without-python --with-python3 )
79 + run_in_build_dir econf "${pythonconf[@]}" "${myconf[@]}"
80 + }
81 +
82 + python_foreach_impl setup_python_flags_configure
83 + else
84 + local BUILD_DIR=${WORKDIR}/build
85 + run_in_build_dir econf "${pythonconf[@]}" "${myconf[@]}"
86 + fi
87 +}
88 +
89 +src_compile() {
90 + if use python; then
91 + python_foreach_impl run_in_build_dir emake
92 + else
93 + local BUILD_DIR=${WORKDIR}/build
94 + emake -C "${BUILD_DIR}"
95 + fi
96 +}
97 +
98 +src_test() {
99 + if [[ "${EUID}" -eq 0 ]]; then
100 + ewarn "Skipping tests due to root permissions."
101 + return
102 + fi
103 +
104 + if use python; then
105 + python_foreach_impl run_in_build_dir emake check
106 + else
107 + local BUILD_DIR=${WORKDIR}/build
108 + emake -C "${BUILD_DIR}" check
109 + fi
110 +}
111 +
112 +src_install() {
113 + if use python; then
114 + python_foreach_impl run_in_build_dir emake DESTDIR="${D}" install
115 + else
116 + local BUILD_DIR=${WORKDIR}/build
117 + emake -C "${BUILD_DIR}" DESTDIR="${D}" install
118 + fi
119 + find "${ED}" -name '*.la' -delete || die
120 +}