Dominique Leuenberger 2020-10-18 14:35:16 +00:00 committed by Git OBS Bridge
commit acd4eb705b
6 changed files with 24 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:52a203a6fab6160e06c1369ff104afed62007ca3ffbb40c297352232fa975c99
size 384163

Binary file not shown.

3
pam_u2f-1.1.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0dc3bf96ebb69c6e398b5f8991493b37a8ce1af792948af71e694f695d5edc05
size 415677

BIN
pam_u2f-1.1.0.tar.gz.sig Normal file

Binary file not shown.

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu Oct 15 17:59:59 UTC 2020 - Ismail Dönmez <idonmez@suse.com>
- Update to version 1.1.0
* Add support to FIDO2 (move from libu2f-host+libu2f-server to libfido2)
* Add support to User Verification
* Add support to PIN Verification
* Add support to Resident Credentials
* Add support to SSH credential format
- Drop libu2f-host and libu2f-server BuildRequires
- Add BuildRequires on pkgconfig(libfido2)
- Add explicit BuildRequires on pkgconfig(libcrypto), this was being
pulled down implicitly before.
-------------------------------------------------------------------
Tue Jun 4 13:19:36 UTC 2019 - Karol Babioch <kbabioch@suse.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package pam_u2f
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,7 +17,7 @@
Name: pam_u2f
Version: 1.0.8
Version: 1.1.0
Release: 0
Summary: U2F authentication integration into PAM
License: BSD-2-Clause
@ -28,8 +28,8 @@ Source1: https://developers.yubico.com/pam-u2f/Releases/%{name}-%{version
Source2: baselib.conf
BuildRequires: pam-devel
BuildRequires: pkgconfig
BuildRequires: pkgconfig(u2f-host)
BuildRequires: pkgconfig(u2f-server)
BuildRequires: pkgconfig(libcrypto)
BuildRequires: pkgconfig(libfido2)
%description
The PAM U2F module provides a way to integrate the Yubikey
@ -40,11 +40,13 @@ authentication infrastructure.
%setup -q
%build
%configure --with-pam-dir=/%{_lib}/security --disable-static --disable-silent-rules
%configure --with-pam-dir=/%{_lib}/security \
--disable-static
make %{?_smp_mflags}
%install
%make_install %{?_smp_mflags}
find %{buildroot} -type f -name "*.la" -delete -print
%files