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-auth/pam-script/
Date: Fri, 02 Sep 2022 18:10:27
Message-Id: 1662142197.2053467e31cccb2986e84c7b7317129a2ed10d89.asturm@gentoo
1 commit: 2053467e31cccb2986e84c7b7317129a2ed10d89
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 20:11:40 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 2 18:09:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2053467e
7
8 sys-auth/pam-script: drop 1.1.8, EAPI-6--
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 sys-auth/pam-script/Manifest | 1 -
13 sys-auth/pam-script/pam-script-1.1.8.ebuild | 46 -----------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/sys-auth/pam-script/Manifest b/sys-auth/pam-script/Manifest
17 index 56ab8b2cc102..814d6a65625b 100644
18 --- a/sys-auth/pam-script/Manifest
19 +++ b/sys-auth/pam-script/Manifest
20 @@ -1,2 +1 @@
21 -DIST pam-script-1.1.8.tar.gz 36442 BLAKE2B 29ea87d694deb5483d34dd60fd4192d8d2050f6c5291fe5d2e7fa90408e7d8ce07b5b987a58142e43893d352d13d002604958b70565827d720e0ee89c6d8eb48 SHA512 c4b99c69a759b6422189707c52439a6afe59e32fca6238acf00116ed104b625920fb36b3e1f0aaf5edc77325b1f7b10d52ac2530d85cec53d941ae906e077543
22 DIST pam-script-1.1.9.tar.gz 34890 BLAKE2B 0cb1c978cf335039185d34ea9d9a6a5363d73c86e05b24735d3a13d88c2eb03734831ee1fe80a87ca9d89c5b793cdc498b7fb2890a2e09209adfdd43784c2fd8 SHA512 319dff52923f7f895ff123bd6258bc83668b41da1172961e1747cb12fbdd260c6907b73f9881f5c3a50d4e2c4074b66747d7d6bbe1e0d7ab0411251705b59537
23
24 diff --git a/sys-auth/pam-script/pam-script-1.1.8.ebuild b/sys-auth/pam-script/pam-script-1.1.8.ebuild
25 deleted file mode 100644
26 index 18558310dab8..000000000000
27 --- a/sys-auth/pam-script/pam-script-1.1.8.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools
36 -
37 -MY_PN=${PN/-/_}
38 -MY_P=${MY_PN}-${PV}
39 -
40 -DESCRIPTION="PAM module for running scripts during authorization, password change and session"
41 -HOMEPAGE="https://github.com/jeroennijhof/pam_script/"
42 -SRC_URI="https://github.com/jeroennijhof/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="examples"
48 -
49 -RDEPEND="sys-libs/pam"
50 -DEPEND="${RDEPEND}"
51 -
52 -S=${WORKDIR}/${MY_P}
53 -
54 -src_prepare() {
55 - default
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - econf \
61 - --libdir=/$(get_libdir)/security \
62 - --sysconfdir=/etc/security/${PN}
63 -}
64 -
65 -src_install() {
66 - default
67 -
68 - if use examples ; then
69 - docinto examples
70 - dodoc etc/README.examples
71 - exeinto /usr/share/doc/${PF}/examples
72 - doexe etc/{logscript,tally}
73 - docompress -x /usr/share/doc/${PF}/examples/{logscript,tally}
74 - fi
75 -}