Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/pam_wrapper/
Date: Fri, 19 Aug 2022 08:14:19
Message-Id: 1660896817.498f06c8df94d4ed257324ce7cd9e33ca67679d5.asturm@gentoo
1 commit: 498f06c8df94d4ed257324ce7cd9e33ca67679d5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 14 21:44:03 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 19 08:13:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498f06c8
7
8 sys-libs/pam_wrapper: drop 1.1.3
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild | 40 ---------------------------
13 1 file changed, 40 deletions(-)
14
15 diff --git a/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild b/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild
16 deleted file mode 100644
17 index 2643b37d037f..000000000000
18 --- a/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild
19 +++ /dev/null
20 @@ -1,40 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..9} )
27 -CMAKE_ECLASS=cmake
28 -inherit cmake-multilib python-single-r1
29 -
30 -DESCRIPTION="A tool to test PAM applications and PAM modules"
31 -HOMEPAGE="https://cwrap.org/pam_wrapper.html"
32 -SRC_URI="https://www.samba.org/ftp/pub/cwrap/${P}.tar.gz
33 - https://ftp.samba.org/pub/cwrap/${P}.tar.gz"
34 -
35 -LICENSE="GPL-3"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
38 -IUSE="test"
39 -RESTRICT="!test? ( test )"
40 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
41 -
42 -RDEPEND="${PYTHON_DEPS}
43 - sys-libs/pam:0=[${MULTILIB_USEDEP}]"
44 -DEPEND="${RDEPEND}
45 - test? ( dev-util/cmocka[${MULTILIB_USEDEP}] )"
46 -
47 -multilib_src_configure() {
48 - local libpam="${EPREFIX}"
49 - multilib_is_native_abi || libpam+="/usr"
50 - libpam+="/$(get_libdir)/libpam.so.0"
51 -
52 - local mycmakeargs=(
53 - -DPAM_LIBRARY="${libpam}"
54 - -DUNIT_TESTING=$(usex test)
55 - -DPYTHON2_LIBRARY="/dev/null" # Disabled
56 - -DPYTHON3_INCLUDE_DIR="$(python_get_includedir)"
57 - -DPYTHON3_SITELIB="$(python_get_sitedir)"
58 - )
59 - cmake_src_configure
60 -}