Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_ssh/
Date: Sat, 19 Jan 2019 21:19:08
Message-Id: 1547932725.9a761e22a1a360e1578d0a6f70115e823fcd93c5.soap@gentoo
1 commit: 9a761e22a1a360e1578d0a6f70115e823fcd93c5
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 19 21:16:13 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 19 21:18:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a761e22
7
8 sys-auth/pam_ssh: Version bump to 2.3
9
10 Bug: https://bugs.gentoo.org/674194
11 Package-Manager: Portage-2.3.56, Repoman-2.3.12
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 sys-auth/pam_ssh/Manifest | 1 +
15 sys-auth/pam_ssh/pam_ssh-2.3.ebuild | 71 +++++++++++++++++++++++++++++++++++++
16 2 files changed, 72 insertions(+)
17
18 diff --git a/sys-auth/pam_ssh/Manifest b/sys-auth/pam_ssh/Manifest
19 index 84a053bb6ba..36a20f3eb30 100644
20 --- a/sys-auth/pam_ssh/Manifest
21 +++ b/sys-auth/pam_ssh/Manifest
22 @@ -1,3 +1,4 @@
23 DIST pam_ssh-1.98.tar.bz2 292989 BLAKE2B 08744c6649aa58c7221e5ec07e0c6aefa8d045cf30df01b941962d29f3abdae902b0fbad37923e3ff05536e422a1062732a6998e4b58d978d369df3d866ec1aa SHA512 bf6da4ced0619549d56516c6b24e899664e0948da7a0cc04ff1b536d06cc8c26242c83eb36ed835668c824b777e270aa293162ac77e3c479311386e6e5da39ff
24 DIST pam_ssh-2.1.tar.xz 361000 BLAKE2B f22836af20b41ae7254f816c33793bb3a128b604ec36a20b207610deebf61f4d5dd070fd6f5093c6f7b6eb9e14f85cd81ddbbed7e97ee581124e5335722d036b SHA512 8252b15efffa5687f740963f7a3c3479b73f99eca26a17155f915a10b9a71362a2778449adf10f01c174cc8545961ce3ea64459338a7c995c242b209529fd640
25 DIST pam_ssh-2.2.tar.xz 382244 BLAKE2B b3e6122530244add64400a6c4ea9811eb6feb0309b11d9ad17d800c3ced555f5459a8dc55ec58b0649017bcce9fb12417d4ba52ab2acd3acdf5e4a0cfe956e57 SHA512 b3caeb6065b2ac925cfd1a12107902f8474badfa1770d6499508d00bf41b54497fa17080f84af9dde0b6b7692d4bd58d33d94257c3106dac7eee79ebcf3b4692
26 +DIST pam_ssh-2.3.tar.xz 380396 BLAKE2B e228e30c6f353f631c0a1c41e82e31e7a8c573b04ab1cad4038a245b500666b42c0efa9f686d28f2386688596de761085afb1318b94fef5541f8c0ffc1e18b25 SHA512 e3ddcf851ffd8f6fb831e2dee7269c1b89283ae2f8f6aa3487bf7b1bc71d26ac9bcbd2a01c5a67a983b980bbb5151e991402940f4752741286d057843c817895
27
28 diff --git a/sys-auth/pam_ssh/pam_ssh-2.3.ebuild b/sys-auth/pam_ssh/pam_ssh-2.3.ebuild
29 new file mode 100644
30 index 00000000000..43bb29b987a
31 --- /dev/null
32 +++ b/sys-auth/pam_ssh/pam_ssh-2.3.ebuild
33 @@ -0,0 +1,71 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit pam flag-o-matic readme.gentoo-r1
40 +
41 +DESCRIPTION="Uses ssh-agent to provide single sign-on"
42 +HOMEPAGE="http://pam-ssh.sourceforge.net/"
43 +SRC_URI="mirror://sourceforge/pam-ssh/${P}.tar.xz"
44 +
45 +LICENSE="BSD-2 BSD ISC"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
48 +IUSE=""
49 +
50 +# Only supports OpenSSH via `ssh-agent` #282993
51 +DEPEND="virtual/pam
52 + dev-libs/openssl:0="
53 +RDEPEND="${DEPEND}
54 + net-misc/openssh"
55 +
56 +PATCHES=(
57 + # 503424#c5
58 + "${FILESDIR}"/${PN}-2.1-dot-ssh-check.patch
59 +)
60 +
61 +src_configure() {
62 + # hide all the otherwise-exported symbols that may clash with
63 + # other software loading the PAM modules (see bug #274924 as an
64 + # example).
65 + append-ldflags -Wl,--version-script="${FILESDIR}"/pam_symbols.ver
66 +
67 + # Set the cache var so the configure script doesn't go probing hardcoded
68 + # file system paths and picking up the wrong thing.
69 + export ac_cv_openssldir=''
70 +
71 + # Avoid cross-compiling funkiness and requiring openssh at build time.
72 + export PATH_SSH_AGENT="${EPREFIX}/usr/bin/ssh-agent"
73 +
74 + econf \
75 + "--with-pam-dir=$(getpam_mod_dir)"
76 +}
77 +
78 +src_install() {
79 + default
80 +
81 + # pam_ssh only builds plugins
82 + find "${D}" -name '*.la' -delete || die
83 +
84 + local DOC_CONTENTS="
85 + You can enable pam_ssh for system authentication by enabling
86 + the pam_ssh USE flag on sys-auth/pambase.
87 + "
88 + readme.gentoo_create_doc
89 +}
90 +
91 +pkg_preinst() {
92 + local i
93 + for i in "${REPLACING_VERSIONS}"; do
94 + if [[ ${i} == 1.* ]]; then #554150
95 + ewarn "Upstream pam_ssh has changed where ssh keys live. Only keys in your"
96 + ewarn "~/.ssh/login-keys.d/ will be accepted for authentication."
97 + return
98 + fi
99 + done
100 +}
101 +
102 +pkg_postinst() {
103 + readme.gentoo_print_elog
104 +}