2021-11-09 10:08:54 +00:00
|
|
|
%global with_fips 1
|
2022-11-08 06:55:16 +00:00
|
|
|
# workaround to keep ABI/soname stable at major version 3
|
|
|
|
%global fakeversion 3:99:1
|
2021-11-09 10:08:54 +00:00
|
|
|
|
2019-11-05 20:21:47 +00:00
|
|
|
Summary: Library for accessing ICA hardware crypto on IBM z Systems
|
|
|
|
Name: libica
|
2023-05-16 06:23:34 +00:00
|
|
|
Version: 4.1.1
|
|
|
|
Release: 2%{?dist}
|
2019-11-05 20:21:47 +00:00
|
|
|
License: CPL
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
URL: https://github.com/opencryptoki/
|
|
|
|
Source0: https://github.com/opencryptoki/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
|
|
# annotate assembler source
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1630582
|
2022-11-08 06:55:16 +00:00
|
|
|
Patch0: %{name}-4.0.1-annotate.patch
|
|
|
|
# revert ABI to 3.x
|
2023-05-16 06:23:34 +00:00
|
|
|
# - reverted commit 4a3a77232ee85cf9f4eb7ac2d366b613013b9048
|
|
|
|
# - partial revert of commit 56b9ac0669e4d204ecb3f23e5404c2351cca96a2
|
|
|
|
Patch1: %{name}-4.1.1-revert-abi.patch
|
|
|
|
# fix permissions for shared memory segments
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=2167363
|
|
|
|
Patch2: %{name}-4.1.1-shmem.patch
|
2019-11-05 20:21:47 +00:00
|
|
|
BuildRequires: gcc
|
2021-11-09 10:08:54 +00:00
|
|
|
BuildRequires: openssl
|
2019-11-05 20:21:47 +00:00
|
|
|
BuildRequires: openssl-devel
|
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: libtool
|
|
|
|
ExclusiveArch: s390 s390x
|
|
|
|
|
|
|
|
%description
|
|
|
|
A library of functions and utilities for accessing ICA hardware crypto on
|
|
|
|
IBM z Systems.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development tools for programs to access ICA hardware crypto on IBM z Systems
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: openssl-devel
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The libica-devel package contains the header files and static
|
|
|
|
libraries necessary for developing programs accessing ICA hardware crypto on
|
|
|
|
IBM z Systems.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -p1
|
|
|
|
|
|
|
|
sh ./bootstrap.sh
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2021-11-09 10:08:54 +00:00
|
|
|
%configure --disable-static \
|
|
|
|
%if %{with_fips}
|
|
|
|
--enable-fips
|
|
|
|
%else
|
|
|
|
--disable-fips
|
|
|
|
%endif
|
2022-11-08 06:55:16 +00:00
|
|
|
make %{?_smp_mflags} VERSION=%{fakeversion}
|
2019-11-05 20:21:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2022-11-08 06:55:16 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT VERSION=%{fakeversion}
|
2021-11-09 10:08:54 +00:00
|
|
|
rm %{buildroot}%{_libdir}/libica*.la
|
|
|
|
rm %{buildroot}%{_pkgdocdir}/{INSTALL,README.md}
|
2019-11-05 20:21:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
# mock doesn't provide the device, so check here
|
|
|
|
# https://github.com/rpm-software-management/mock/issues/33
|
|
|
|
if [ -c /dev/hwrng -o -c /dev/prandom ]; then
|
|
|
|
make check
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
2021-11-09 10:08:54 +00:00
|
|
|
%if %{with_fips}
|
|
|
|
%define __spec_install_post \
|
|
|
|
%{?__debug_package:%{__debug_install_post}} \
|
|
|
|
%{__arch_install_post} \
|
|
|
|
%{__os_install_post} \
|
2022-11-08 06:55:16 +00:00
|
|
|
make fipsinstall DESTDIR=%{buildroot} VERSION=%{fakeversion}
|
2021-11-09 10:08:54 +00:00
|
|
|
%{nil}
|
|
|
|
%endif
|
2019-11-05 20:21:47 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%doc AUTHORS LICENSE ChangeLog
|
|
|
|
%{_bindir}/icainfo
|
2021-11-09 10:08:54 +00:00
|
|
|
%{_bindir}/icainfo-cex
|
2019-11-05 20:21:47 +00:00
|
|
|
%{_bindir}/icastats
|
2021-11-09 10:08:54 +00:00
|
|
|
%if %{with_fips}
|
|
|
|
%{_libdir}/.libica.*.hmac
|
|
|
|
%{_libdir}/.libica-cex.*.hmac
|
|
|
|
%endif
|
2019-11-05 20:21:47 +00:00
|
|
|
%{_libdir}/libica.so.*
|
2021-11-09 10:08:54 +00:00
|
|
|
%{_libdir}/libica-cex.so.*
|
2019-11-05 20:21:47 +00:00
|
|
|
%{_mandir}/man1/icainfo.1*
|
2021-11-09 10:08:54 +00:00
|
|
|
%{_mandir}/man1/icainfo-cex.1*
|
2019-11-05 20:21:47 +00:00
|
|
|
%{_mandir}/man1/icastats.1*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/libica.so
|
2021-11-09 10:08:54 +00:00
|
|
|
%{_libdir}/libica-cex.so
|
2019-11-05 20:21:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2023-05-16 06:23:34 +00:00
|
|
|
* Tue Feb 07 2023 Dan Horák <dhorak@redhat.com> - 4.1.1-2
|
|
|
|
- fix permissions for shared memory segments (#2167363)
|
|
|
|
- Resolves: #2167363
|
|
|
|
|
|
|
|
* Tue Oct 25 2022 Dan Horák <dhorak@redhat.com> - 4.1.1-1
|
|
|
|
- updated to 4.1.1 (#2110375)
|
|
|
|
- Resolves: #2110375
|
|
|
|
|
2022-11-08 06:55:16 +00:00
|
|
|
* Thu Jun 30 2022 Dan Horák <dhorak@redhat.com> - 4.0.2-1
|
|
|
|
- updated to 4.0.2 (#2101766)
|
|
|
|
- Resolves: #2101766
|
|
|
|
|
|
|
|
* Tue Mar 22 2022 Dan Horák <dhorak@redhat.com> - 4.0.1-1
|
|
|
|
- updated to 4.0.1 (#2043843)
|
|
|
|
- Resolves: #2043843 #2043904
|
|
|
|
|
2022-05-10 07:20:34 +00:00
|
|
|
* Tue Feb 08 2022 Dan Horák <dhorak@redhat.com> - 3.9.0-1
|
|
|
|
- updated to 3.9.0 (#1984972)
|
|
|
|
- Resolves: #1984972
|
|
|
|
|
2021-11-09 10:08:54 +00:00
|
|
|
* Thu Jul 08 2021 Dan Horák <dhorak@redhat.com> - 3.8.0-1
|
|
|
|
- updated to 3.8.0 (#1919224)
|
|
|
|
- make software fallback call to openSSL/libcrypto (#1922205)
|
|
|
|
- Resolves: #1919224 #1922205
|
|
|
|
|
2020-11-03 11:49:15 +00:00
|
|
|
* Mon Jul 20 2020 Dan Horák <dhorak@redhat.com> - 3.7.0-2
|
|
|
|
- fix FIPS integrity validation (#1857130)
|
|
|
|
- Resolves: #1857130
|
|
|
|
|
|
|
|
* Thu May 21 2020 Dan Horák <dhorak@redhat.com> - 3.7.0-1
|
|
|
|
- updated to 3.7.0 (#1780299)
|
|
|
|
- Resolves: #1780299
|
2020-08-20 12:48:31 +00:00
|
|
|
|
2020-04-28 09:41:10 +00:00
|
|
|
* Thu Jan 09 2020 Dan Horák <dhorak@redhat.com> - 3.6.1-2
|
|
|
|
- fix overflow in icastats counters (#1789052)
|
|
|
|
- Resolves: #1789052
|
|
|
|
|
|
|
|
* Tue Nov 26 2019 Dan Horák <dhorak@redhat.com> - 3.6.1-1
|
|
|
|
- updated to 3.6.1 (#1772402)
|
|
|
|
- Resolves: #1772402
|
|
|
|
|
|
|
|
* Tue Nov 05 2019 Dan Horák <dhorak@redhat.com> - 3.6.0-1
|
|
|
|
- updated to 3.6.0 (#1726244)
|
|
|
|
- Resolves: #1726244, #1723862
|
|
|
|
|
2019-11-05 20:21:47 +00:00
|
|
|
* Wed Apr 24 2019 Dan Horák <dhorak@redhat.com> - 3.5.0-1
|
|
|
|
- updated to 3.5.0 (#1666621)
|
|
|
|
- Resolves: #1666621, #1659428, #1673054
|
|
|
|
|
|
|
|
* Fri Sep 21 2018 Dan Horák <dan[at]danny.cz> - 3.3.3-4
|
|
|
|
- annotate assembler file (#1630582)
|
|
|
|
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jun 13 2018 Dan Horák <dan[at]danny.cz> - 3.3.3-2
|
|
|
|
- fix executable stack in assembler code
|
|
|
|
|
|
|
|
* Tue Jun 12 2018 Dan Horák <dan[at]danny.cz> - 3.3.3-1
|
|
|
|
- updated to 3.3.3
|
|
|
|
|
|
|
|
* Tue Apr 17 2018 Dan Horák <dan[at]danny.cz> - 3.3.2-1
|
|
|
|
- updated to 3.3.2
|
|
|
|
|
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
|
|
* Mon Sep 25 2017 Dan Horák <dan[at]danny.cz> - 3.2.0-1
|
|
|
|
- updated to 3.2.0
|
|
|
|
|
|
|
|
* Mon Sep 11 2017 Dan Horák <dan[at]danny.cz> - 3.1.1-1
|
|
|
|
- updated to 3.1.1
|
|
|
|
|
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Apr 18 2017 Dan Horák <dan[at]danny.cz> - 3.0.2-3
|
|
|
|
- update BR
|
|
|
|
|
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jan 18 2017 Dan Horák <dan[at]danny.cz> - 3.0.2-1
|
|
|
|
- updated to 3.0.2
|
|
|
|
|
|
|
|
* Fri Jan 13 2017 Dan Horák <dan[at]danny.cz> - 3.0.1-2
|
|
|
|
- check for /dev/prandom before running the test-suite
|
|
|
|
|
|
|
|
* Fri Jan 13 2017 Dan Horák <dan[at]danny.cz> - 3.0.1-1
|
|
|
|
- updated to 3.0.1
|
|
|
|
|
|
|
|
* Tue Apr 12 2016 Dan Horák <dan[at]danny.cz> - 2.6.2-1
|
|
|
|
- updated to 2.6.2
|
|
|
|
|
|
|
|
* Thu Mar 17 2016 Dan Horák <dan[at]danny.cz> - 2.6.1-1
|
|
|
|
- updated to 2.6.1
|
|
|
|
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
|
|
|
* Mon Sep 01 2014 Dan Horák <dan[at]danny.cz> - 2.4.2-1
|
|
|
|
- updated to 2.4.2
|
|
|
|
|
|
|
|
* Wed Jun 11 2014 Dan Horák <dan[at]danny.cz> - 2.3.0-5
|
|
|
|
- fix build with recent kernels
|
|
|
|
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Mar 14 2014 Dan Horák <dan[at]danny.cz> - 2.3.0-3
|
|
|
|
- add post release fix (#1066014)
|
|
|
|
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri May 03 2013 Dan Horák <dan[at]danny.cz> - 2.3.0-1
|
|
|
|
- updated to 2.3.0
|
|
|
|
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Aug 17 2012 Dan Horák <dan[at]danny.cz> - 2.2.0-1
|
|
|
|
- updated to 2.2.0
|
|
|
|
|
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
|
|
|
* Mon Jan 16 2012 Dan Horák <dan[at]danny.cz> - 2.1.1-1
|
|
|
|
- updated to 2.1.1
|
|
|
|
|
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Jul 07 2011 Dan Horák <dan[at]danny.cz> - 2.1.0-1
|
|
|
|
- updated to 2.1.0 with soname set back to 2.0
|
|
|
|
|
|
|
|
* Mon Apr 11 2011 Dan Horák <dan[at]danny.cz> - 2.0.6-1
|
|
|
|
- updated to 2.0.6
|
|
|
|
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jan 12 2011 Dan Horák <dan[at]danny.cz> - 2.0.4-1
|
|
|
|
- Do not use sigill to wrap all HW instructions (#665401)
|
|
|
|
- updated to 2.0.4
|
|
|
|
|
|
|
|
* Tue Nov 9 2010 Dan Horák <dhorak@redhat.com> - 2.0.3-3
|
|
|
|
- Fix the return value of old_api_sha_test() in libica_sha1_test (#624005)
|
|
|
|
- Use the right buffer length when operating in 32-bit mode (#640035)
|
|
|
|
- Resolves: #624005, #640035
|
|
|
|
|
|
|
|
* Fri May 21 2010 Dan Horák <dan[at]danny.cz> - 2.0.3-2
|
|
|
|
- rebuilt with -fno-strict-aliasing (#593779)
|
|
|
|
- Resolves: #593779
|
|
|
|
|
|
|
|
* Thu Apr 22 2010 Dan Horák <dan[at]danny.cz> - 2.0.3-1
|
|
|
|
- updated to 2.0.3 (#582607)
|
|
|
|
- Resolves: #582607
|
|
|
|
|
|
|
|
* Mon Apr 12 2010 Dan Horák <dan[at]danny.cz> - 2.0.2-3
|
|
|
|
- add SIGILL handler for add_entropy (#581520)
|
|
|
|
- Resolves: #581520
|
|
|
|
|
|
|
|
* Tue Feb 16 2010 Dan Horák <dan[at]danny.cz> - 2.0.2-2
|
|
|
|
- dropped the utils sub-package
|
|
|
|
- Related: #543948
|
|
|
|
|
|
|
|
* Tue Dec 08 2009 Dennis Gregorovic <dgregor@redhat.com> - 2.0.2-1.1
|
|
|
|
- Rebuilt for RHEL 6
|
|
|
|
|
|
|
|
* Mon Aug 17 2009 Dan Horák <dan[at]danny.cz> - 2.0.2-1
|
|
|
|
- update to 2.0.2
|
|
|
|
|
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Apr 1 2009 Dan Horák <dan[at]danny.cz> - 2.0.1-1
|
|
|
|
- update to 2.0.1
|
|
|
|
|
|
|
|
* Mon Mar 23 2009 Dan Horák <dan[at]danny.cz> - 2.0-1
|
|
|
|
- update to 2.0
|
|
|
|
- spec file cleanup before submitting to Fedora
|
|
|
|
|
|
|
|
* Sun Sep 14 2008 Phil Knirsch <pknirsch@redhat.com> - 1.3.7-8.el5
|
|
|
|
- Added the icainfo tool to libica (#439484)
|
|
|
|
|
|
|
|
* Tue Apr 01 2008 Phil Knirsch <pknirsch@redhat.com> - 1.3.7-7.el5
|
|
|
|
- Fixed build of libica with latest AES & SHA feature (#439390)
|
|
|
|
|
|
|
|
* Tue Jan 15 2008 Phil Knirsch <pknirsch@redhat.com> - 1.3.7-6.el5
|
|
|
|
- Added Software Support for CP Assist Instructions AES & SHA (#318971)
|
|
|
|
|
|
|
|
* Thu Nov 23 2006 Phil Knirsch <pknirsch@redhat.com> - 1.3.7-5.el5
|
|
|
|
- Fixed requires bug where devel packages would get wrong arch lib (#215908)
|
|
|
|
|
|
|
|
* Fri Oct 13 2006 Phil Knirsch <pknirsch@redhat.com> - 1.3.7-4
|
|
|
|
- Fixed bug where libica fails to initialize when no crypto hardware is
|
|
|
|
available (#210504)
|
|
|
|
- Only build libica for s390(x), really only needed there.
|
|
|
|
|
|
|
|
* Fri Sep 08 2006 Phil Knirsch <pknirsch@redhat.com> - 1.3.7-3
|
|
|
|
- Build for other archs as well due to openCryptoki requirement (#184631)
|
|
|
|
|
|
|
|
* Fri Jul 14 2006 Tim Powers <timp@redhat.com> - 1.3.7-2
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue Jun 13 2006 Phil Knirsch <pknirsch@redhat.com> - 1.3.7-1
|
|
|
|
- Update to libica-1.3.7 final
|
|
|
|
- Fixed build on latest devel tree
|
|
|
|
|
|
|
|
* Tue Apr 04 2006 Phil Knirsch <pknirsch@redhat.com> - 1.3.6-rc3-1
|
|
|
|
- Initial package.
|