Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pambase/
Date: Tue, 01 Jun 2021 19:09:18
Message-Id: 1622574552.7a49e385bc26b17f51bf85931fa193f5493fb2fc.zlogene@gentoo
1 commit: 7a49e385bc26b17f51bf85931fa193f5493fb2fc
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 1 19:08:59 2021 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 1 19:09:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a49e385
7
8 sys-auth/pambase: Drop old
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 sys-auth/pambase/Manifest | 1 -
14 sys-auth/pambase/pambase-20201103.ebuild | 105 -------------------------------
15 2 files changed, 106 deletions(-)
16
17 diff --git a/sys-auth/pambase/Manifest b/sys-auth/pambase/Manifest
18 index 14c388faad8..dc78641eaa3 100644
19 --- a/sys-auth/pambase/Manifest
20 +++ b/sys-auth/pambase/Manifest
21 @@ -1,2 +1 @@
22 -DIST pambase-20201103.tar.gz 3295 BLAKE2B 7e104b5342842a21e10dce6e5c5a2d330ec06146b4791b888518463d915eebefbd694a809ff676b32c9c43945087935dc5c3496ae93ac17b7e4fd4e2e2974d1a SHA512 b94e47780f45c5e897b5fd073ce2184a901d241d51516ac5007658b1ae423d0f34c37a09a9e1d055962aa7158675ea7740dfe6466fad5e4a1b50b66a0812f51d
23 DIST pambase-20210201.1.tar.gz 3345 BLAKE2B bc12164181de98b3c5b8ed3b72bc6a84b5c6039f389a87da94e5cb9312fa4e221e6317bcd496d5c634c60cd6fbb8c8cd2f4b845687ef942a707fe687f5184afd SHA512 74ab4d7c19a20c088d667ae92e4dcb99b33584ba56df46184173432fd297bd47917494b81cb5ad3f5f49ad5a797c008527399f329e56f2799f5fc376eaa59236
24
25 diff --git a/sys-auth/pambase/pambase-20201103.ebuild b/sys-auth/pambase/pambase-20201103.ebuild
26 deleted file mode 100644
27 index 2f870076f0f..00000000000
28 --- a/sys-auth/pambase/pambase-20201103.ebuild
29 +++ /dev/null
30 @@ -1,105 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{7..9} )
37 -
38 -inherit pam python-any-r1 readme.gentoo-r1
39 -
40 -DESCRIPTION="PAM base configuration files"
41 -HOMEPAGE="https://github.com/gentoo/pambase"
42 -
43 -if [[ ${PV} == *9999 ]]; then
44 - inherit git-r3
45 - EGIT_REPO_URI="https://github.com/gentoo/pambase.git"
46 -else
47 - SRC_URI="https://github.com/gentoo/pambase/archive/${P}.tar.gz"
48 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
49 - S="${WORKDIR}/${PN}-${P}"
50 -fi
51 -
52 -LICENSE="MIT"
53 -SLOT="0"
54 -IUSE="caps debug elogind gnome-keyring minimal mktemp +nullok pam_krb5 pam_ssh +passwdqc pwhistory pwquality securetty selinux +sha512 systemd"
55 -
56 -RESTRICT="binchecks"
57 -
58 -REQUIRED_USE="
59 - ?? ( elogind systemd )
60 - ?? ( passwdqc pwquality )
61 - pwhistory? ( || ( passwdqc pwquality ) )
62 -"
63 -
64 -MIN_PAM_REQ=1.4.0
65 -
66 -RDEPEND="
67 - >=sys-libs/pam-${MIN_PAM_REQ}
68 - elogind? ( sys-auth/elogind[pam] )
69 - gnome-keyring? ( gnome-base/gnome-keyring[pam] )
70 - mktemp? ( sys-auth/pam_mktemp )
71 - pam_krb5? (
72 - >=sys-libs/pam-${MIN_PAM_REQ}
73 - sys-auth/pam_krb5
74 - )
75 - caps? ( sys-libs/libcap[pam] )
76 - pam_ssh? ( sys-auth/pam_ssh )
77 - passwdqc? ( >=sys-auth/passwdqc-1.4.0-r1 )
78 - pwquality? ( dev-libs/libpwquality[pam] )
79 - selinux? ( sys-libs/pam[selinux] )
80 - sha512? ( >=sys-libs/pam-${MIN_PAM_REQ} )
81 - systemd? ( sys-apps/systemd[pam] )
82 -"
83 -
84 -BDEPEND="$(python_gen_any_dep '
85 - dev-python/jinja[${PYTHON_USEDEP}]
86 - ')"
87 -
88 -python_check_deps() {
89 - has_version -b "dev-python/jinja[${PYTHON_USEDEP}]"
90 -}
91 -
92 -src_configure() {
93 - ${EPYTHON} ./${PN}.py \
94 - $(usex caps '--caps' '') \
95 - $(usex debug '--debug' '') \
96 - $(usex elogind '--elogind' '') \
97 - $(usex gnome-keyring '--gnome-keyring' '') \
98 - $(usex minimal '--minimal' '') \
99 - $(usex mktemp '--mktemp' '') \
100 - $(usex nullok '--nullok' '') \
101 - $(usex pam_krb5 '--krb5' '') \
102 - $(usex pam_ssh '--pam-ssh' '') \
103 - $(usex passwdqc '--passwdqc' '') \
104 - $(usex pwhistory '--pwhistory' '') \
105 - $(usex pwquality '--pwquality' '') \
106 - $(usex securetty '--securetty' '') \
107 - $(usex selinux '--selinux' '') \
108 - $(usex sha512 '--sha512' '') \
109 - $(usex systemd '--systemd' '') \
110 - || die
111 -}
112 -
113 -src_test() { :; }
114 -
115 -src_install() {
116 - local DOC_CONTENTS
117 -
118 - if use passwdqc; then
119 - DOC_CONTENTS="To amend the existing password policy please see the man 5 passwdqc.conf
120 - page and then edit the /etc/security/passwdqc.conf file"
121 - fi
122 -
123 - if use pwquality; then
124 - DOC_CONTENTS="To amend the existing password policy please see the man 5 pwquality.conf
125 - page and then edit the /etc/security/pwquality.conf file"
126 - fi
127 -
128 - { use passwdqc || use pwquality; } && readme.gentoo_create_doc
129 -
130 - dopamd -r stack/.
131 -}
132 -
133 -pkg_postinst() {
134 - { use passwdqc || use pwquality; } && readme.gentoo_print_elog
135 -}