Remove SHA-1 algorithms according to its deprecation in RHEL-9 (#1935442)

This commit is contained in:
Ondrej Dubaj 2021-04-19 10:11:35 +02:00
parent d95c433dc3
commit 2b4b69fa67
2 changed files with 1260 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,7 @@
Summary: Library that implements an embeddable SQL database engine
Name: sqlite
Version: %{rpmver}
Release: 2%{?dist}
Release: 3%{?dist}
License: Public Domain
URL: http://www.sqlite.org/
@ -34,6 +34,8 @@ Patch5: sqlite-3.18.0-sync2-dirsync.patch
# Fixed handling LIKE experrsion in WHERE clause
# https://sqlite.org/src/info/40852ca8e215e51f
Patch6: sqlite-3.35.4-fix-handling-LIKE-expressions.patch
# Remove SHA-1 algorithm accoridng to its deprecation (downstream)
Patch7: sqlite-3.34.1-remove-SHA-1.patch
BuildRequires: make
BuildRequires: gcc
@ -143,6 +145,7 @@ This package contains the analysis program for %{name}.
%endif
%patch5 -p1
%patch6 -p1
%patch7 -p1
# Remove backup-file
rm -f %{name}-doc-%{docver}/sqlite.css~ || :
@ -261,6 +264,9 @@ make test
%endif
%changelog
* Thu Apr 15 2021 Ondrej Dubaj <odubaj@redhat.com> - 3.35.4-3
- Remove SHA-1 algorithms according to its deprecation in RHEL-9 (#1935442)
* Wed Apr 14 2021 Ondrej Dubaj <odubaj@redhat.com> - 3.35.4-2
- Fixed handling LIKE experrsion in WHERE clause (#1947883)