Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_u2f/
Date: Wed, 28 Oct 2020 22:20:16
Message-Id: 1603923434.77db7ced2582c9879a70419c7ff15a17a2ac853f.gokturk@gentoo
1 commit: 77db7ced2582c9879a70419c7ff15a17a2ac853f
2 Author: Stijn Tintel <stijn <AT> linux-ipv6 <DOT> be>
3 AuthorDate: Wed Oct 21 22:39:44 2020 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 28 22:17:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77db7ced
7
8 sys-auth/pam_u2f: bump to 1.1.0
9
10 Tested FIDO2 on a YubiKey 5 NFC. Tested U2F on a YubiKey U2F.
11
12 Closes: https://bugs.gentoo.org/743385
13 Closes: https://github.com/gentoo/gentoo/pull/17994
14 Package-Manager: Portage-3.0.8, Repoman-3.0.2
15 Signed-off-by: Stijn Tintel <stijn <AT> linux-ipv6.be>
16 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
17
18 sys-auth/pam_u2f/Manifest | 1 +
19 sys-auth/pam_u2f/pam_u2f-1.1.0.ebuild | 35 +++++++++++++++++++++++++++++++++++
20 2 files changed, 36 insertions(+)
21
22 diff --git a/sys-auth/pam_u2f/Manifest b/sys-auth/pam_u2f/Manifest
23 index 25d09bf1c3c..1ec41057380 100644
24 --- a/sys-auth/pam_u2f/Manifest
25 +++ b/sys-auth/pam_u2f/Manifest
26 @@ -1 +1,2 @@
27 DIST pam_u2f-1.0.8.tar.gz 384163 BLAKE2B 99767601027db25e6f8d2e59aad5f72b078cf7344ca10fa310a990d512c5e5a4c9ff7c24acb5b21b88b82aa47b4052b9164a422426d1f0889c8f6776526e5c80 SHA512 0bdbea6307428bbed2af69129af207304f7951418ad7df339563f47d678a2cfe6b80321552382e15771cfc06306fae746521850056376f533c430556d051ad36
28 +DIST pam_u2f-1.1.0.tar.gz 415677 BLAKE2B dba5cd195d390ba4537752549fa5e0f4487930637fedd64b2750424d21d968bf8be54b75dccba92ac13a18b4e2d44825ec18089e9c4f5dc8e11ac12c36b8d28c SHA512 0ffcc32f0bbee279ad02f9c1cd928e2cf1df2fdebe718d869c16b7fece8edafd73cf08c5dfd6a2bc08434ed1970e16e4f89b6dae3b027a961ab43b26818b634f
29
30 diff --git a/sys-auth/pam_u2f/pam_u2f-1.1.0.ebuild b/sys-auth/pam_u2f/pam_u2f-1.1.0.ebuild
31 new file mode 100644
32 index 00000000000..6d719d8985b
33 --- /dev/null
34 +++ b/sys-auth/pam_u2f/pam_u2f-1.1.0.ebuild
35 @@ -0,0 +1,35 @@
36 +# Copyright 1999-2020 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +inherit autotools flag-o-matic pam
42 +
43 +DESCRIPTION="PAM module for FIDO2 and U2F keys"
44 +HOMEPAGE="https://github.com/Yubico/pam-u2f"
45 +SRC_URI="https://developers.yubico.com/${PN/_/-}/Releases/${P}.tar.gz"
46 +
47 +LICENSE="BSD ISC"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE="debug libressl"
51 +
52 +DEPEND="
53 + dev-libs/libfido2:0=
54 + !libressl? ( dev-libs/openssl:0= )
55 + libressl? ( dev-libs/libressl:0= )
56 + sys-libs/pam"
57 +RDEPEND="${DEPEND}"
58 +BDEPEND="virtual/pkgconfig"
59 +
60 +PATCHES=( "${FILESDIR}/${PN}-1.0.2-fix-Makefile.patch" )
61 +
62 +src_prepare() {
63 + default
64 + use debug || append-cppflags -UDEBUG_PAM -UPAM_DEBUG
65 + eautoreconf
66 +}
67 +
68 +src_configure() {
69 + econf --with-pam-dir=$(getpam_mod_dir)
70 +}