From 301e157a5908077ee344cd796b0dde12249c5286 Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Thu, 30 Oct 2025 08:48:11 +0100 Subject: [PATCH] sys-auth/pam_abl: treeclean Closes: https://bugs.gentoo.org/931705 (pkgremoved) Closes: https://bugs.gentoo.org/957233 (pkgremoved) Signed-off-by: Andreas Sturmlechner --- profiles/package.mask | 5 ---- sys-auth/pam_abl/Manifest | 1 - sys-auth/pam_abl/metadata.xml | 19 ------------ sys-auth/pam_abl/pam_abl-0.6.0.ebuild | 42 --------------------------- 4 files changed, 67 deletions(-) delete mode 100644 sys-auth/pam_abl/Manifest delete mode 100644 sys-auth/pam_abl/metadata.xml delete mode 100644 sys-auth/pam_abl/pam_abl-0.6.0.ebuild diff --git a/profiles/package.mask b/profiles/package.mask index 23a5f4e12f3db..d43fd716b922e 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -242,11 +242,6 @@ sys-auth/google-authenticator-wrappers # Bugs #789756, #951884, #956413, #957572. Removal on 2025-10-29. x11-wm/ctwm -# Andreas Sturmlechner (2025-09-30) -# Unmaintained in ::gentoo, EAPI-7 based, almost no one else is left -# packaging this. Removal on 2025-10-29. -sys-auth/pam_abl - # Sam James (2025-09-21) # Breaks (common) mt7921e WiFi driver with a hang in many cases, affecting # not just network. See bug #963106. diff --git a/sys-auth/pam_abl/Manifest b/sys-auth/pam_abl/Manifest deleted file mode 100644 index c9ad307408e3d..0000000000000 --- a/sys-auth/pam_abl/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pam-abl-0.6.0.tar.gz 48882 BLAKE2B 6b84901dab29a59e6a9944d2b0870cba940f2fa8fa4930ecf0821ce63db70bbea77d607efc3fa2cc425f2d992c59734c4710d4e45f632f790de6e14118376a6d SHA512 fd4fca672800683f87eba4c9804925d0f1c0e5991a32af7d045787cf571d5d98996d2303460fada4796432916c713973c82c3a70da06d686194e97bfb0e8198e diff --git a/sys-auth/pam_abl/metadata.xml b/sys-auth/pam_abl/metadata.xml deleted file mode 100644 index 4f9806f7e5c3d..0000000000000 --- a/sys-auth/pam_abl/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - PAM module that provides auto blacklisting of hosts and users responsible for repeated failed authentication attempts. - Once a host is blacklisted it is guaranteed to fail authentication even if the correct credentials are provided. - Hosts which stop attempting to authenticate will, after a period of time, be un-blacklisted. - - - Modulo Pam che permette di mantenere automaticamente una blacklist di host ed utenti responsabili di ripetuti tentativi di autenticazione falliti. - Gli host soggetti a blacklist vedranno fallire i tentativi di login anche qualora le corrette credenziali vengano fornite. - Una volta cessati i tentativi di autenticazione, dopo un certo periodo di tempo, gli host verranno riabilitati. - - - pam-abl - deksai/pam_abl - - diff --git a/sys-auth/pam_abl/pam_abl-0.6.0.ebuild b/sys-auth/pam_abl/pam_abl-0.6.0.ebuild deleted file mode 100644 index 07926d858ec96..0000000000000 --- a/sys-auth/pam_abl/pam_abl-0.6.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="${PN/_/-}" -MY_P="${MY_PN}-${PV}" - -inherit cmake db-use pam - -DESCRIPTION="PAM module for blacklisting hosts and users repeatedly failed authentication" -HOMEPAGE="http://pam-abl.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -DEPEND=">=sys-libs/pam-0.78-r2 - >=sys-libs/db-4.2.52_p2:=" -RDEPEND="${DEPEND}" - -S=${WORKDIR} - -src_configure() { - pammod_hide_symbols - - local mycmakeargs=( - -DDB_INCLUDE_DIR=$(db_includedir) - -DDB_LINK_DIR=/usr/$(get_libdir) - -DDB_LIBRARY=$(db_libname) - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - dodir $(getpam_mod_dir) - mv "${D}"/usr/lib/security/*.so "${D}"/"$(getpam_mod_dir)" || die - - dodoc doc/*.txt README -}