From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F8A0158083 for ; Wed, 11 Sep 2024 19:54:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F877E29ED; Wed, 11 Sep 2024 19:54:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC892E29ED for ; Wed, 11 Sep 2024 19:54:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 13F03342F92 for ; Wed, 11 Sep 2024 19:54:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69CC61EF4 for ; Wed, 11 Sep 2024 19:54:31 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1726084410.090c859b7f9ab3cc85d126f7017b5ab5e7630854.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/checkpassword-pam/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/checkpassword-pam/checkpassword-pam-0.99-r3.ebuild X-VCS-Directories: net-mail/checkpassword-pam/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 090c859b7f9ab3cc85d126f7017b5ab5e7630854 X-VCS-Branch: master Date: Wed, 11 Sep 2024 19:54:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b33d9767-8778-48cc-82b9-848a067f0b97 X-Archives-Hash: d1c0b19a0eb8b29f71f859800534c424 commit: 090c859b7f9ab3cc85d126f7017b5ab5e7630854 Author: Petr Vaněk gentoo org> AuthorDate: Wed Sep 11 19:37:22 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Wed Sep 11 19:53:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=090c859b net-mail/checkpassword-pam: update EAPI 7 -> 8 Signed-off-by: Petr Vaněk gentoo.org> .../checkpassword-pam-0.99-r3.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/net-mail/checkpassword-pam/checkpassword-pam-0.99-r3.ebuild b/net-mail/checkpassword-pam/checkpassword-pam-0.99-r3.ebuild new file mode 100644 index 000000000000..219b82b21213 --- /dev/null +++ b/net-mail/checkpassword-pam/checkpassword-pam-0.99-r3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="checkpassword-compatible authentication program w/pam support" +HOMEPAGE="http://checkpasswd-pam.sourceforge.net/" +SRC_URI="https://downloads.sourceforge.net/checkpasswd-pam/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~riscv ~x86" + +DEPEND=">=sys-libs/pam-0.75" + +DOCS=( + AUTHORS + NEWS + README +) + +PATCHES=( + "${FILESDIR}"/${PN}-0.99-clang16-build-fix.patch +)