Compare commits
4 Commits
strongswan
...
9f7c999689
| Author | SHA1 | Date | |
|---|---|---|---|
| 9f7c999689 | |||
|
|
6332068c3c | ||
|
|
a2b9b8b4df | ||
|
|
812d691f0c |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -11,7 +11,3 @@
|
|||||||
/strongswan-5.9.6.tar.bz2.sig
|
/strongswan-5.9.6.tar.bz2.sig
|
||||||
/strongswan-5.9.8.tar.bz2
|
/strongswan-5.9.8.tar.bz2
|
||||||
/strongswan-5.9.8.tar.bz2.sig
|
/strongswan-5.9.8.tar.bz2.sig
|
||||||
/strongswan-5.9.9.tar.bz2
|
|
||||||
/strongswan-5.9.9.tar.bz2.sig
|
|
||||||
/strongswan-5.9.10.tar.bz2
|
|
||||||
/strongswan-5.9.10.tar.bz2.sig
|
|
||||||
|
|||||||
4
sources
4
sources
@@ -1,2 +1,2 @@
|
|||||||
SHA512 (strongswan-5.9.10.tar.bz2) = cf1d4a79ec02ac0502494ce6bfcab7399ddff151e2bc39bd4fbb9562bae7d0c66cf8d1e387b3c36a35e4387d597889fd7519e7bce07d3a7f764b1b73bd8a4667
|
SHA512 (strongswan-5.9.8.tar.bz2.sig) = bf5c5fbcb6d14381260d1e79f6164170c3d568fbe2f623afb42b59bfa7e085551e26c43e4a41f4d8271d5f46601366f34fb52067bdd4c25a7633fa2fda83d5ae
|
||||||
SHA512 (strongswan-5.9.10.tar.bz2.sig) = 174c3582c50505d7f35638eb68f717fd16e426009dff135125a847635fea1184d81fb7e81e24e3539bda1faa3fa9b1a42b679a841521c82d8048523d6b972fd3
|
SHA512 (strongswan-5.9.8.tar.bz2) = 16d3afc80704f896f3f97addf452b4bb29fc1911c54e980f76ac48bdbe2340ce3bd4e79024848cb7961bbe9ad5458d93389343878ca042af658d51b11219666b
|
||||||
|
|||||||
11
strongswan-5.9.6-error-format-security.patch
Normal file
11
strongswan-5.9.6-error-format-security.patch
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
--- strongswan-5.9.6-orig/src/libstrongswan/utils/enum.c 2022-04-16 10:08:07.000000000 +0200
|
||||||
|
+++ strongswan-5.9.6/src/libstrongswan/utils/enum.c 2022-06-20 23:21:47.408857710 +0200
|
||||||
|
@@ -97,7 +97,7 @@
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
|
||||||
|
- if (snprintf(buf, len, e->names[0]) >= len)
|
||||||
|
+ if (snprintf(buf, len, "%s", e->names[0]) >= len)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
@@ -13,17 +13,14 @@
|
|||||||
%bcond_with tss_trousers
|
%bcond_with tss_trousers
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%global forgeurl0 https://github.com/strongswan/strongswan
|
|
||||||
|
|
||||||
Name: strongswan
|
Name: strongswan
|
||||||
Version: 5.9.10
|
Version: 5.9.8
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: An OpenSource IPsec-based VPN and TNC solution
|
Summary: An OpenSource IPsec-based VPN and TNC solution
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: https://www.strongswan.org/
|
URL: http://www.strongswan.org/
|
||||||
VCS: git:%{forgeurl0}
|
Source0: http://download.strongswan.org/strongswan-%{version}%{?prerelease}.tar.bz2
|
||||||
Source0: https://download.strongswan.org/strongswan-%{version}%{?prerelease}.tar.bz2
|
Source1: http://download.strongswan.org/strongswan-%{version}%{?prerelease}.tar.bz2.sig
|
||||||
Source1: https://download.strongswan.org/strongswan-%{version}%{?prerelease}.tar.bz2.sig
|
|
||||||
Source2: https://download.strongswan.org/STRONGSWAN-RELEASE-PGP-KEY
|
Source2: https://download.strongswan.org/STRONGSWAN-RELEASE-PGP-KEY
|
||||||
Source3: tmpfiles-strongswan.conf
|
Source3: tmpfiles-strongswan.conf
|
||||||
Patch0: strongswan-5.6.0-uintptr_t.patch
|
Patch0: strongswan-5.6.0-uintptr_t.patch
|
||||||
@@ -64,7 +61,7 @@ BuildRequires: python3-pytest
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{with perl}
|
%if %{with perl}
|
||||||
BuildRequires: perl-devel perl-generators
|
BuildRequires: perl-devel perl-macros
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@@ -260,9 +257,6 @@ for p in bypass-lan; do
|
|||||||
echo -e "\ncharon.plugins.${p}.load := no" >> conf/plugins/${p}.opt
|
echo -e "\ncharon.plugins.${p}.load := no" >> conf/plugins/${p}.opt
|
||||||
done
|
done
|
||||||
|
|
||||||
# ensure manual page is regenerated with local configuration
|
|
||||||
rm -f src/ipsec/_ipsec.8
|
|
||||||
|
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
pushd src/libcharon/plugins/vici
|
pushd src/libcharon/plugins/vici
|
||||||
@@ -421,38 +415,16 @@ install -D -m 0644 %{SOURCE3} %{buildroot}/%{_tmpfilesdir}/strongswan-starter.co
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Mar 02 2023 Paul Wouters <paul.wouters@aiven.io - 5.9.10-1
|
|
||||||
- Update to 5.9.10
|
|
||||||
|
|
||||||
* Tue Feb 28 2023 Paul Wouters <paul.wouters@aiven.io - 5.9.9-3
|
|
||||||
- Resolves: CVE-2023-26463 authorization bypass in TLS-based EAP methods
|
|
||||||
|
|
||||||
* Mon Jan 16 2023 Petr Menšík <pemensik@redhat.com> - 5.9.9-2
|
|
||||||
- Use configure paths in manual pages (#2106120)
|
|
||||||
|
|
||||||
* Sun Jan 15 2023 Petr Menšík <pemensik@redhat.com> - 5.9.9-1
|
|
||||||
- Update to 5.9.9 (#2157850)
|
|
||||||
|
|
||||||
* Thu Dec 08 2022 Jitka Plesnikova <jplesnik@redhat.com> - 5.9.8-2
|
|
||||||
- Add BR perl-generators to automatically generates run-time dependencies
|
|
||||||
for installed Perl files
|
|
||||||
|
|
||||||
* Sun Oct 16 2022 Arne Reiter <redhat@arnereiter.de> - 5.9.8-1
|
* Sun Oct 16 2022 Arne Reiter <redhat@arnereiter.de> - 5.9.8-1
|
||||||
- Resolves rhbz#2112274 strongswan-5.9.8 is available
|
- Resolves rhbz#2112274 strongswan-5.9.8 is available
|
||||||
- Patch1 removes CFLAGS -Wno-format which interferes with -Werror=format-security
|
- Patch1 removes CFLAGS -Wno-format which interferes with -Werror=format-security
|
||||||
- Add BuildRequire for autoconf and automake, now required for release
|
- Add BuildRequire for autoconf and automake, now required for release
|
||||||
- Remove obsolete patches
|
- Remove obsolete patches
|
||||||
|
|
||||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.9.6-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jun 22 2022 Arne Reiter <redhat@arnereiter.de> - 5.9.6-1
|
* Wed Jun 22 2022 Arne Reiter <redhat@arnereiter.de> - 5.9.6-1
|
||||||
- Resolves rhbz#2080070 strongswan-5.9.6 is available
|
- Resolves rhbz#2080070 strongswan-5.9.6 is available
|
||||||
- Fixed missing format string in enum_flags_to_string()
|
- Fixed missing format string in enum_flags_to_string()
|
||||||
|
|
||||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 5.9.5-4
|
|
||||||
- Rebuilt for Python 3.11
|
|
||||||
|
|
||||||
* Fri Feb 25 2022 Arne Reiter <redhat@arnereiter.de> - 5.9.5-3
|
* Fri Feb 25 2022 Arne Reiter <redhat@arnereiter.de> - 5.9.5-3
|
||||||
- Resolves: rhbz#2048108 - segfault at 18 ip 00007f4c7c0d841c sp 00007ffe49f61b70 error 4 in libc.so.6
|
- Resolves: rhbz#2048108 - segfault at 18 ip 00007f4c7c0d841c sp 00007ffe49f61b70 error 4 in libc.so.6
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user