sys-auth/pam_abl: treeclean

Closes: https://bugs.gentoo.org/931705 (pkgremoved)
Closes: https://bugs.gentoo.org/957233 (pkgremoved)
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-10-30 08:48:11 +01:00
parent 2866b1e886
commit 301e157a59
4 changed files with 0 additions and 67 deletions

View File

@@ -242,11 +242,6 @@ sys-auth/google-authenticator-wrappers
# Bugs #789756, #951884, #956413, #957572. Removal on 2025-10-29.
x11-wm/ctwm
# Andreas Sturmlechner <asturm@gentoo.org> (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 <sam@gentoo.org> (2025-09-21)
# Breaks (common) mt7921e WiFi driver with a hang in many cases, affecting
# not just network. See bug #963106.

View File

@@ -1 +0,0 @@
DIST pam-abl-0.6.0.tar.gz 48882 BLAKE2B 6b84901dab29a59e6a9944d2b0870cba940f2fa8fa4930ecf0821ce63db70bbea77d607efc3fa2cc425f2d992c59734c4710d4e45f632f790de6e14118376a6d SHA512 fd4fca672800683f87eba4c9804925d0f1c0e5991a32af7d045787cf571d5d98996d2303460fada4796432916c713973c82c3a70da06d686194e97bfb0e8198e

View File

@@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<longdescription lang="en">
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.
</longdescription>
<longdescription lang="it">
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.
</longdescription>
<upstream>
<remote-id type="sourceforge">pam-abl</remote-id>
<remote-id type="github">deksai/pam_abl</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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
}