7615a78b4c
- Update to OpenSC 0.22.0:
* Removed changes in opensc-gcc11.patch already present in upstream.
- See e549e9c62e
* Removed some false positives from the openrc-rpmlintrc file.
* Use standard paths for file cache on Linux (#2148) and OSX (#2214)
* Various issues of memory/buffer handling in legacy drivers mostly reported by oss-fuzz and coverity (tcos, oberthur, isoapplet, iasecc, westcos, gpk, flex, dnie, mcrd, authentic, belpic)
* Add threading test to `pkcs11-tool` (#2067)
* Add support to generate generic secret keys (#2140)
* `opensc-explorer`: Print information about LCS (Life cycle status byte) (#2195)
* Add support for Apple's arm64 (M1) binaries, removed TokenD. A seperate installer with TokenD (and without arm64 binaries) will be available (#2179).
* Support for gcc11 and its new strict aliasing rules (#2241, #2260)
* Initial support for building with OpenSSL 3.0 (#2343)
* pkcs15-tool: Write data objects in binary mode (#2324)
* Avoid limited size of log messages (#2352)
* Support for ECDSA verification (#2211)
* Support for ECDSA with different SHA hashes (#2190)
* Prevent issues in p11-kit by not returning unexpected return codes (#2207)
* Add support for PKCS#11 3.0: The new interfaces, profile objects and functions (#2096, #2293)
* Standardize the version 2 on 2.20 in the code (#2096)
* Fix CKA_MODIFIABLE and CKA_EXTRACTABLE (#2176)
* Copy arguments of C_Initialize (#2350)
* Fix RSA-PSS signing (#2234)
* Fix DO deletion (#2215)
* Add support for (X)EdDSA keys (#1960)
* Add support for applet version 3 and fix RSA-PSS mechanisms (#2205)
* Add support for applet version 4 (#2332)
* New configuration option for opensc.conf to disable pkcs1_padding (#2193)
* Add support for ECDSA with different hashes (#2190)
* Enable more mechanisms (#2178)
* Fixed asking for a user pin when formatting a card (#1737)
* Added support for French CPx Healthcare cards (#2217)
* Added ATR for new CardOS 5.4 version (#2296)
OBS-URL: https://build.opensuse.org/request/show/923351
OBS-URL: https://build.opensuse.org/package/show/security:chipcard/opensc?expand=0&rev=67
107 lines
3.6 KiB
RPMSpec
107 lines
3.6 KiB
RPMSpec
#
|
|
# spec file for package opensc
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define completionsdir %(pkg-config --variable completionsdir bash-completion)
|
|
Name: opensc
|
|
Version: 0.22.0
|
|
Release: 0
|
|
Summary: Smart Card Utilities
|
|
License: LGPL-2.1-or-later
|
|
Group: Productivity/Security
|
|
URL: https://github.com/OpenSC/OpenSC/wiki
|
|
Source: https://github.com/OpenSC/OpenSC/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
Source1: baselibs.conf
|
|
Source2: %{name}-rpmlintrc
|
|
# Register with p11-kit
|
|
# https://web.archive.org/web/20111225073733/http://www.opensc-project.org/opensc/ticket/390
|
|
Source3: opensc.module
|
|
Patch0: opensc-gcc11.patch
|
|
BuildRequires: docbook-xsl-stylesheets
|
|
BuildRequires: libxslt
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: readline-devel
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: pkgconfig(bash-completion)
|
|
BuildRequires: pkgconfig(libpcsclite) >= 1.8.22
|
|
BuildRequires: pkgconfig(openssl) >= 1.0.1
|
|
Requires: pcsc-lite
|
|
# There is no more devel package.
|
|
Obsoletes: opensc-devel < %{version}
|
|
|
|
%description
|
|
OpenSC provides a set of utilities to access smart cards. It mainly
|
|
focuses on cards that support cryptographic operations. It facilitates
|
|
their use in security applications such as mail encryption,
|
|
authentication, and digital signature. OpenSC implements the PKCS#11
|
|
API. Applications supporting this API, such as Mozilla Firefox and
|
|
Thunderbird, can use it. OpenSC implements the PKCS#15 standard and aims
|
|
to be compatible with every software that does so, too.
|
|
|
|
Before purchasing any cards, please read carefully documentation on the
|
|
web pageonly some cards are supported. Not only card type matters, but
|
|
also card version, card OS version and preloaded applet. Only subset of
|
|
possible operations may be supported for your card. Card initialization
|
|
may require third party proprietary software.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
|
|
%build
|
|
%configure \
|
|
--docdir=%{_docdir}/%{name} \
|
|
--disable-static \
|
|
--enable-doc \
|
|
--disable-silent-rules
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
# Private library.
|
|
rm %{buildroot}%{_libdir}/libopensc.so
|
|
install -D -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/pkcs11/modules/opensc.module
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc NEWS README
|
|
%doc %{_docdir}/%{name}/tools.html
|
|
%doc %{_docdir}/%{name}/files.html
|
|
%doc %{_docdir}/%{name}/opensc.conf
|
|
%{_bindir}/*
|
|
%{_datadir}/applications/*.desktop
|
|
%{_sysconfdir}/xdg/autostart/pkcs11-register.desktop
|
|
%{_datadir}/opensc
|
|
# Note: .la and .so must be in the main package, required by ltdl:
|
|
%{_libdir}/*.la
|
|
%{_libdir}/*.so*
|
|
%dir %{_libdir}/pkcs11
|
|
%{_libdir}/pkcs11/*.so
|
|
%{_libdir}/pkgconfig/opensc-pkcs11.pc
|
|
%{_mandir}/man?/*%{ext_man}
|
|
%config %{_sysconfdir}/opensc.conf
|
|
%dir %{_sysconfdir}/pkcs11
|
|
%config %{_sysconfdir}/pkcs11/modules/
|
|
# This is a private library. There is no reason to split it to libopensc* package.
|
|
%{_libdir}/libopensc.so.*
|
|
%{completionsdir}/*
|
|
|
|
%changelog
|