commit: c8609f8dadd667252d8311238657004a70a5a90f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 30 03:10:32 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 30 03:10:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8609f8d
sys-libs/pam_wrapper: drop 1.1.3-r3
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/pam_wrapper/Manifest | 1 -
sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild | 73 ------------------------
2 files changed, 74 deletions(-)
diff --git a/sys-libs/pam_wrapper/Manifest b/sys-libs/pam_wrapper/Manifest
index d839c44aeea9..197fc5b91c82 100644
--- a/sys-libs/pam_wrapper/Manifest
+++ b/sys-libs/pam_wrapper/Manifest
@@ -1,2 +1 @@
-DIST pam_wrapper-1.1.3.tar.gz 118034 BLAKE2B
3c05e74959f3c6dfd35575cc5f9187f4a328bfd7ce002e327fc135c82a4ff1513add87678360992d2010c124f7fd95e4bdb3c0a4d63418d9711069cbc200e417
SHA512
3b7cbd25ae7dd73f4a0c64a7762cdeb38cc7ba6e8b4e18e79aceffea09241d520aa884de88e4105b5957b2b18ec682be6568a6bfccf82b9354a3510cd2cd98eb
DIST pam_wrapper-1.1.4.tar.gz 170882 BLAKE2B
fa0a789f6fd6f809c7ef80e354e886b5f1f0b4212060dc0e388a44701e4a1f49635b8f47344156ad65cd273660e3b0a806480c37875a830e2f5d8e56c4ec0818
SHA512
3b68dc6d7815707d74d1340facd9c2de4dff3934402ac2c2632371b39c41a75744434744ed7308e157be03a03a941405638cadb6f34995de56fb1f5f45d37de2
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
deleted file mode 100644
index 85898afabe55..000000000000
--- a/sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit cmake-multilib python-r1
-
-DESCRIPTION="A tool to test PAM applications and PAM modules"
-HOMEPAGE="https://cwrap.org/pam_wrapper.html"
-SRC_URI="
- https://www.samba.org/ftp/pub/cwrap/${P}.tar.gz
- https://ftp.samba.org/pub/cwrap/${P}.tar.gz
-"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
- ${PYTHON_DEPS}
- sys-libs/pam:0=[${MULTILIB_USEDEP}]
-"
-DEPEND="
- ${RDEPEND}
- test? ( dev-util/cmocka[${MULTILIB_USEDEP}] )
-"
-
-multilib_src_configure() {
- configure_for_python() {
- local mycmakeargs=(
- -DUNIT_TESTING=OFF
- )
-
- cmake_src_configure
- }
-
- if multilib_is_native_abi ; then
- # Build the Pythons for each version (but only for the native
ABI)
- # bug #737468
- python_foreach_impl configure_for_python
- fi
-
- # Do the regular build now
- local mycmakeargs=(
- -DUNIT_TESTING=$(usex test)
- -DCMAKE_DISABLE_FIND_PACKAGE_Python{Libs,Interp,SiteLibs}=ON
- )
-
- cmake_src_configure
-}
-
-multilib_src_compile() {
- if multilib_is_native_abi ; then
- python_foreach_impl cmake_src_compile
- fi
-
- # Compile the "proper" version without Python last
- cmake_src_compile
-}
-
-multilib_src_install() {
- if multilib_is_native_abi ; then
- python_foreach_impl cmake_src_install
- fi
-
- # Install the "proper" version without Python last
- cmake_src_install
-}