2015-01-09 11:49:44 -08:00
|
|
|
Summary: Embedded SSL Library
|
2012-10-20 04:42:34 -04:00
|
|
|
Name: @PACKAGE@
|
|
|
|
|
Version: @VERSION@
|
|
|
|
|
Release: 1
|
2025-07-10 16:01:52 -06:00
|
|
|
License: GPLv3
|
2012-10-20 04:42:34 -04:00
|
|
|
Group: System Environment/Libraries
|
2014-02-12 13:47:39 -08:00
|
|
|
BuildRequires: gcc
|
|
|
|
|
BuildRequires: glibc
|
|
|
|
|
BuildRequires: glibc-common
|
|
|
|
|
BuildRequires: glibc-devel
|
|
|
|
|
BuildRequires: glibc-headers
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
|
BuildRequires: sed
|
|
|
|
|
BuildRequires: tar
|
2015-01-09 11:49:44 -08:00
|
|
|
URL: http://www.wolfssl.com/
|
2012-10-20 04:42:34 -04:00
|
|
|
|
2023-08-09 00:39:55 +02:00
|
|
|
Packager: wolfSSL <support@wolfssl.com>
|
2012-10-20 04:42:34 -04:00
|
|
|
|
2015-01-12 09:24:28 -08:00
|
|
|
Source: http://wolfssl.com/%{name}-%{version}.tar.gz
|
2012-10-20 04:42:34 -04:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
|
|
|
|
|
|
|
|
%description
|
2015-01-09 11:49:44 -08:00
|
|
|
Misc tools for wolfSSL.
|
2012-10-20 04:42:34 -04:00
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Header files and development libraries for %{name}
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
This package contains the header files and development libraries
|
2015-01-09 11:49:44 -08:00
|
|
|
for %{name}. If you like to develop programs using %{name},
|
2012-10-20 04:42:34 -04:00
|
|
|
you will need to install %{name}-devel.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
%build
|
2022-10-20 11:56:08 +02:00
|
|
|
%configure @WOLFSSL_CONFIG_ARGS@
|
2012-10-20 04:42:34 -04:00
|
|
|
%{__make} %{?_smp_mflags}
|
2022-10-20 11:56:08 +02:00
|
|
|
if [ "@ENABLED_FIPS@" = "yes" ]
|
|
|
|
|
then
|
|
|
|
|
echo Updating wolfSSL FIPS hash
|
|
|
|
|
./fips-hash.sh
|
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
fi
|
2012-10-20 04:42:34 -04:00
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
|
%{__make} install DESTDIR="%{buildroot}" AM_INSTALL_PROGRAM_FLAGS=""
|
2022-12-15 10:37:10 -07:00
|
|
|
%{__rm} -f %{buildroot}/%{_libdir}/libwolfssl@LIBSUFFIX@.la
|
2023-08-09 00:39:55 +02:00
|
|
|
%{__rm} -f %{buildroot}/%{_libdir}/libwolfssl.a
|
2012-10-20 04:42:34 -04:00
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
|
|
2012-10-25 23:53:21 -04:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
2012-10-20 04:42:34 -04:00
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root,-)
|
2019-03-15 14:03:45 -07:00
|
|
|
%doc AUTHORS ChangeLog.md COPYING README README.md
|
2015-01-09 11:49:44 -08:00
|
|
|
%{_docdir}/wolfssl/taoCert.txt
|
2023-09-11 14:48:17 -04:00
|
|
|
%{_docdir}/wolfssl/example/async_client.c
|
|
|
|
|
%{_docdir}/wolfssl/example/async_server.c
|
|
|
|
|
%{_docdir}/wolfssl/example/client.c
|
2015-01-09 11:49:44 -08:00
|
|
|
%{_docdir}/wolfssl/example/server.c
|
|
|
|
|
%{_docdir}/wolfssl/example/echoclient.c
|
2023-09-11 14:48:17 -04:00
|
|
|
%{_docdir}/wolfssl/example/echoserver.c
|
2016-09-23 11:40:07 -07:00
|
|
|
%{_docdir}/wolfssl/example/sctp-client.c
|
|
|
|
|
%{_docdir}/wolfssl/example/sctp-server.c
|
|
|
|
|
%{_docdir}/wolfssl/example/sctp-client-dtls.c
|
|
|
|
|
%{_docdir}/wolfssl/example/sctp-server-dtls.c
|
2018-03-02 12:31:41 -07:00
|
|
|
%{_docdir}/wolfssl/example/tls_bench.c
|
2015-01-09 11:49:44 -08:00
|
|
|
%{_docdir}/wolfssl/README.txt
|
2022-08-30 08:50:41 -07:00
|
|
|
%{_docdir}/wolfssl/QUIC.md
|
2023-12-12 08:14:05 -08:00
|
|
|
%{_libdir}/libwolfssl@LIBSUFFIX@.so.*
|
2012-10-25 23:53:21 -04:00
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-,root,root,-)
|
2019-03-15 14:03:45 -07:00
|
|
|
%doc AUTHORS ChangeLog.md COPYING README README.md
|
2015-01-09 11:49:44 -08:00
|
|
|
%{_bindir}/wolfssl-config
|
2023-08-09 00:39:55 +02:00
|
|
|
%{_includedir}/wolfssl/*.h
|
|
|
|
|
%{_includedir}/wolfssl/wolfcrypt/*.h
|
|
|
|
|
%{_includedir}/wolfssl/openssl/*.h
|
2015-01-09 11:49:44 -08:00
|
|
|
%{_libdir}/pkgconfig/wolfssl.pc
|
2023-12-12 08:14:05 -08:00
|
|
|
%{_libdir}/libwolfssl@LIBSUFFIX@.so
|
2012-10-20 04:42:34 -04:00
|
|
|
|
|
|
|
|
%changelog
|
2022-10-20 11:56:08 +02:00
|
|
|
* Mon Oct 17 2022 Juliusz Sosinowicz <juliusz@wolfssl.com>
|
|
|
|
|
- Updates for building FIPS packages and general maintenance
|
2022-09-27 13:40:00 -06:00
|
|
|
* Tue Sep 27 2022 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Add include of kyber headers
|
2022-08-30 08:50:41 -07:00
|
|
|
* Tue Aug 30 2022 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Add include of QUIC documentation
|
2022-08-17 08:59:00 -04:00
|
|
|
* Wed Aug 17 2022 Anthony Hu <anthony@wolfssl.com>
|
|
|
|
|
- Add a new header sphincs.h.
|
2022-09-27 13:40:00 -06:00
|
|
|
* Wed Jul 20 2022 Anthony Hu <anthony@wolfssl.com>
|
2022-08-30 08:50:41 -07:00
|
|
|
- Add a new header dilithium.h.
|
|
|
|
|
* Fri Jul 8 2022 Jacob Barthelmeh <jacob@wolfssl.com>
|
2022-07-08 16:04:26 -07:00
|
|
|
- Add missing sp_int.h file
|
2022-05-02 13:17:33 -07:00
|
|
|
* Mon May 2 2022 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Add missing kdf.h file
|
2022-02-18 09:18:49 -08:00
|
|
|
* Wed Feb 16 2022 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Update for new release.
|
2021-12-27 09:49:47 -08:00
|
|
|
* Mon Dec 27 2021 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Add a missing headers camellia.h, modes.h from compat layer.
|
|
|
|
|
- Add a missing header falcon.h.
|
2021-11-01 12:24:53 -06:00
|
|
|
* Mon Nov 01 2021 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Add a missing headers cmac.h, compat_types.h from compat layer.
|
2021-07-08 12:02:40 -06:00
|
|
|
* Thu Jul 08 2021 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Add a missing header eccsi, sakke.
|
2021-03-26 14:17:18 -07:00
|
|
|
* Thu Mar 25 2021 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Add new header kdf.h
|
2020-08-17 14:42:20 -07:00
|
|
|
* Mon Aug 17 2020 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Add a missing header.
|
|
|
|
|
- Update for release.
|
2020-04-16 13:55:27 -07:00
|
|
|
* Thu Apr 16 2020 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Add some missing headers.
|
|
|
|
|
- Sort the file list.
|
2019-12-20 08:43:34 -07:00
|
|
|
* Thu Dec 19 2019 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Add wolfssl/openssl/tls1.h, wolfssl/openssl/x509_vfy.h
|
2019-03-15 14:03:45 -07:00
|
|
|
* Fri Mar 15 2019 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Updates for the v4 release.
|
2018-12-20 17:04:11 -07:00
|
|
|
* Thu Dec 20 2018 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Remove wolfssl/wolfcrypt/fips.h, add wolfssl/openssl/pkcs7.h
|
2018-06-21 12:22:27 -06:00
|
|
|
* Wed Jun 20 2018 Jacob Barthelmeh <jacob@wolfssl.com>
|
2019-01-17 11:01:14 -08:00
|
|
|
- Remove NEWS, update ChangeLog to ChangeLog.md, remove wolfssl/wolfcrypt/fips.h, add wolfssl/wolfcrypt/cryptocb.h
|
2018-05-31 10:20:18 -07:00
|
|
|
* Thu May 31 2018 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Update the version number on the library SO file.
|
2018-03-02 12:31:41 -07:00
|
|
|
* Fri Mar 02 2018 Jacob Barthelmeh <jacob@wolfssl.com>
|
2023-06-22 15:46:34 +02:00
|
|
|
- Added header files fips.h, buffer.h, objects.h, rc4.h and example tls_bench.c
|
2017-09-08 13:58:25 -06:00
|
|
|
* Fri Sep 08 2017 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Change name for header wolfssl/io.h to wolfssl/wolfio.h
|
2017-08-04 15:32:27 -06:00
|
|
|
* Fri Aug 04 2017 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Added header for wolfssl/wolfcrypt/cpuid.h, wolfssl/wolfcrypt/sha3.h
|
2017-05-04 11:03:58 -06:00
|
|
|
* Thu May 04 2017 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Added header for wolfssl/io.h, wolfssl/openssl/ssl23.h, cyassl/openssl/ssl23.h
|
2017-02-10 10:19:34 -07:00
|
|
|
* Thu Feb 09 2017 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Added header for wolfssl/wolfcrypt/wolfmath.h
|
2016-11-11 13:39:36 -07:00
|
|
|
* Fri Nov 11 2016 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Added header for wolfssl/openssl/aes.h
|
2016-10-29 13:12:26 -06:00
|
|
|
* Fri Oct 28 2016 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Added header for pkcs12
|
2016-09-23 11:40:07 -07:00
|
|
|
* Fri Sep 23 2016 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Add the dtls-sctp example sources
|
2018-06-20 12:04:53 -07:00
|
|
|
* Tue Jun 14 2016 Jacob Barthelmeh <jacob@wolfssl.com>
|
2016-06-14 14:35:12 -06:00
|
|
|
- Change location for mem_track.h header
|
|
|
|
|
- Added header for cmac.h
|
2016-03-17 16:02:13 -06:00
|
|
|
* Thu Mar 17 2016 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Added header for mem_track.h
|
2015-12-30 12:09:31 -07:00
|
|
|
* Wed Dec 30 2015 Jacob Barthelmeh <jacob@wolfssl.com>
|
|
|
|
|
- Added headers for curve25519 and ed25519 openssl compatibility
|
|
|
|
|
- Added headers for Idea, srp, signature, and wc_encrypt
|
2015-03-31 10:24:57 -07:00
|
|
|
* Tue Mar 31 2015 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Added recent new wolfcrypt headers for curve25519
|
2015-01-09 11:49:44 -08:00
|
|
|
* Fri Jan 09 2015 John Safranek <john@wolfssl.com>
|
|
|
|
|
- Update for cyassl->wolfssl name change
|
2018-06-20 12:04:53 -07:00
|
|
|
* Sat Oct 20 2012 Brian Aker <brian@tangent.org>
|
2012-10-20 04:42:34 -04:00
|
|
|
- Initial package
|