Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/pam_wrapper/
Date: Fri, 30 Sep 2022 03:11:41
Message-Id: 1664507432.c8609f8dadd667252d8311238657004a70a5a90f.sam@gentoo
1 commit: c8609f8dadd667252d8311238657004a70a5a90f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 03:10:32 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 03:10:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8609f8d
7
8 sys-libs/pam_wrapper: drop 1.1.3-r3
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-libs/pam_wrapper/Manifest | 1 -
13 sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild | 73 ------------------------
14 2 files changed, 74 deletions(-)
15
16 diff --git a/sys-libs/pam_wrapper/Manifest b/sys-libs/pam_wrapper/Manifest
17 index d839c44aeea9..197fc5b91c82 100644
18 --- a/sys-libs/pam_wrapper/Manifest
19 +++ b/sys-libs/pam_wrapper/Manifest
20 @@ -1,2 +1 @@
21 -DIST pam_wrapper-1.1.3.tar.gz 118034 BLAKE2B 3c05e74959f3c6dfd35575cc5f9187f4a328bfd7ce002e327fc135c82a4ff1513add87678360992d2010c124f7fd95e4bdb3c0a4d63418d9711069cbc200e417 SHA512 3b7cbd25ae7dd73f4a0c64a7762cdeb38cc7ba6e8b4e18e79aceffea09241d520aa884de88e4105b5957b2b18ec682be6568a6bfccf82b9354a3510cd2cd98eb
22 DIST pam_wrapper-1.1.4.tar.gz 170882 BLAKE2B fa0a789f6fd6f809c7ef80e354e886b5f1f0b4212060dc0e388a44701e4a1f49635b8f47344156ad65cd273660e3b0a806480c37875a830e2f5d8e56c4ec0818 SHA512 3b68dc6d7815707d74d1340facd9c2de4dff3934402ac2c2632371b39c41a75744434744ed7308e157be03a03a941405638cadb6f34995de56fb1f5f45d37de2
23
24 diff --git a/sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild b/sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild
25 deleted file mode 100644
26 index 85898afabe55..000000000000
27 --- a/sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild
28 +++ /dev/null
29 @@ -1,73 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -
37 -inherit cmake-multilib python-r1
38 -
39 -DESCRIPTION="A tool to test PAM applications and PAM modules"
40 -HOMEPAGE="https://cwrap.org/pam_wrapper.html"
41 -SRC_URI="
42 - https://www.samba.org/ftp/pub/cwrap/${P}.tar.gz
43 - https://ftp.samba.org/pub/cwrap/${P}.tar.gz
44 -"
45 -
46 -LICENSE="GPL-3"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
49 -IUSE="test"
50 -RESTRICT="!test? ( test )"
51 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 -
53 -RDEPEND="
54 - ${PYTHON_DEPS}
55 - sys-libs/pam:0=[${MULTILIB_USEDEP}]
56 -"
57 -DEPEND="
58 - ${RDEPEND}
59 - test? ( dev-util/cmocka[${MULTILIB_USEDEP}] )
60 -"
61 -
62 -multilib_src_configure() {
63 - configure_for_python() {
64 - local mycmakeargs=(
65 - -DUNIT_TESTING=OFF
66 - )
67 -
68 - cmake_src_configure
69 - }
70 -
71 - if multilib_is_native_abi ; then
72 - # Build the Pythons for each version (but only for the native ABI)
73 - # bug #737468
74 - python_foreach_impl configure_for_python
75 - fi
76 -
77 - # Do the regular build now
78 - local mycmakeargs=(
79 - -DUNIT_TESTING=$(usex test)
80 - -DCMAKE_DISABLE_FIND_PACKAGE_Python{Libs,Interp,SiteLibs}=ON
81 - )
82 -
83 - cmake_src_configure
84 -}
85 -
86 -multilib_src_compile() {
87 - if multilib_is_native_abi ; then
88 - python_foreach_impl cmake_src_compile
89 - fi
90 -
91 - # Compile the "proper" version without Python last
92 - cmake_src_compile
93 -}
94 -
95 -multilib_src_install() {
96 - if multilib_is_native_abi ; then
97 - python_foreach_impl cmake_src_install
98 - fi
99 -
100 - # Install the "proper" version without Python last
101 - cmake_src_install
102 -}