import postgresql-13.5-1.el9
This commit is contained in:
parent
69a75f3678
commit
98a27b6f59
8
.gitignore
vendored
8
.gitignore
vendored
@ -1,4 +1,4 @@
|
|||||||
SOURCES/postgresql-12.7.tar.bz2
|
SOURCES/postgresql-12.9.tar.bz2
|
||||||
SOURCES/postgresql-13.3-US.pdf
|
SOURCES/postgresql-13.5-US.pdf
|
||||||
SOURCES/postgresql-13.3.tar.bz2
|
SOURCES/postgresql-13.5.tar.bz2
|
||||||
SOURCES/postgresql-setup-8.5.tar.gz
|
SOURCES/postgresql-setup-8.6.tar.gz
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
e7071caed1f31a0b6d7579ea66e00342e8ebe146 SOURCES/postgresql-12.7.tar.bz2
|
a79d8428850da50a65451e5e44771844c7f166d5 SOURCES/postgresql-12.9.tar.bz2
|
||||||
0f1150c6be91f6fcfdd4d98b506da4f98c422534 SOURCES/postgresql-13.3-US.pdf
|
7e450e4c325b1d8873ec831593cef2329429a3cc SOURCES/postgresql-13.5-US.pdf
|
||||||
7a775f95367613ed5f7e4cd632586f9628475a92 SOURCES/postgresql-13.3.tar.bz2
|
9321e2b01d1ffb15adae06945cb2c5f9dd671bc9 SOURCES/postgresql-13.5.tar.bz2
|
||||||
3f6ff4a7c424f15034b35380a8669b52d7fb3940 SOURCES/postgresql-setup-8.5.tar.gz
|
9e12ee26bf41d3831f83049b51ae5da76de2ce12 SOURCES/postgresql-setup-8.6.tar.gz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
8490741f47c88edc8b6624af009ce19fda4dc9b31c4469ce2551d84075d5d995 postgresql-12.7.tar.bz2
|
|
1
SOURCES/postgresql-12.9.tar.bz2.sha256
Normal file
1
SOURCES/postgresql-12.9.tar.bz2.sha256
Normal file
@ -0,0 +1 @@
|
|||||||
|
89fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce postgresql-12.9.tar.bz2
|
@ -1 +0,0 @@
|
|||||||
3cd9454fa8c7a6255b6743b767700925ead1b9ab0d7a0f9dcb1151010f8eb4a1 postgresql-13.3.tar.bz2
|
|
1
SOURCES/postgresql-13.5.tar.bz2.sha256
Normal file
1
SOURCES/postgresql-13.5.tar.bz2.sha256
Normal file
@ -0,0 +1 @@
|
|||||||
|
9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3 postgresql-13.5.tar.bz2
|
@ -1,33 +0,0 @@
|
|||||||
Upstream patch: https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=135d8687ad
|
|
||||||
author Daniel Gustafsson <dgustafsson@postgresql.org>
|
|
||||||
|
|
||||||
The PX layer in pgcrypto is handling digest padding on its own uniformly
|
|
||||||
for all backend implementations. Starting with OpenSSL 3.0.0, DecryptUpdate
|
|
||||||
doesn't flush the last block in case padding is enabled so explicitly
|
|
||||||
disable it as we don't use it.
|
|
||||||
|
|
||||||
This will be backpatched to all supported version once there is sufficient
|
|
||||||
testing in the buildfarm of OpenSSL 3.
|
|
||||||
|
|
||||||
diff -ur postgresql-14rc1/contrib/pgcrypto/openssl.c postgresql-p/contrib/pgcrypto/openssl.c
|
|
||||||
--- postgresql-14rc1/contrib/pgcrypto/openssl.c 2021-09-20 17:33:01.000000000 -0400
|
|
||||||
+++ postgresql-p/contrib/pgcrypto/openssl.c 2021-10-06 04:07:24.628836908 -0400
|
|
||||||
@@ -379,6 +379,8 @@
|
|
||||||
{
|
|
||||||
if (!EVP_DecryptInit_ex(od->evp_ctx, od->evp_ciph, NULL, NULL, NULL))
|
|
||||||
return PXE_CIPHER_INIT;
|
|
||||||
+ if (!EVP_CIPHER_CTX_set_padding(od->evp_ctx, 0))
|
|
||||||
+ return PXE_CIPHER_INIT;
|
|
||||||
if (!EVP_CIPHER_CTX_set_key_length(od->evp_ctx, od->klen))
|
|
||||||
return PXE_CIPHER_INIT;
|
|
||||||
if (!EVP_DecryptInit_ex(od->evp_ctx, NULL, NULL, od->key, od->iv))
|
|
||||||
@@ -403,6 +405,8 @@
|
|
||||||
{
|
|
||||||
if (!EVP_EncryptInit_ex(od->evp_ctx, od->evp_ciph, NULL, NULL, NULL))
|
|
||||||
return PXE_CIPHER_INIT;
|
|
||||||
+ if (!EVP_CIPHER_CTX_set_padding(od->evp_ctx, 0))
|
|
||||||
+ return PXE_CIPHER_INIT;
|
|
||||||
if (!EVP_CIPHER_CTX_set_key_length(od->evp_ctx, od->klen))
|
|
||||||
return PXE_CIPHER_INIT;
|
|
||||||
if (!EVP_EncryptInit_ex(od->evp_ctx, NULL, NULL, od->key, od->iv))
|
|
||||||
|
|
@ -62,8 +62,8 @@
|
|||||||
Summary: PostgreSQL client programs
|
Summary: PostgreSQL client programs
|
||||||
Name: postgresql
|
Name: postgresql
|
||||||
%global majorversion 13
|
%global majorversion 13
|
||||||
Version: %{majorversion}.3
|
Version: %{majorversion}.5
|
||||||
Release: 10%{?dist}
|
Release: 1%{?dist}
|
||||||
|
|
||||||
# The PostgreSQL license is very similar to other MIT licenses, but the OSI
|
# The PostgreSQL license is very similar to other MIT licenses, but the OSI
|
||||||
# recognizes it as an independent license, so we do as well.
|
# recognizes it as an independent license, so we do as well.
|
||||||
@ -75,11 +75,11 @@ Url: http://www.postgresql.org/
|
|||||||
# that this be kept up with the latest minor release of the previous series;
|
# that this be kept up with the latest minor release of the previous series;
|
||||||
# but update when bugs affecting pg_dump output are fixed.
|
# but update when bugs affecting pg_dump output are fixed.
|
||||||
%global prevmajorversion 12
|
%global prevmajorversion 12
|
||||||
%global prevversion %{prevmajorversion}.7
|
%global prevversion %{prevmajorversion}.9
|
||||||
%global prev_prefix %{_libdir}/pgsql/postgresql-%{prevmajorversion}
|
%global prev_prefix %{_libdir}/pgsql/postgresql-%{prevmajorversion}
|
||||||
%global precise_version %{?epoch:%epoch:}%version-%release
|
%global precise_version %{?epoch:%epoch:}%version-%release
|
||||||
|
|
||||||
%global setup_version 8.5
|
%global setup_version 8.6
|
||||||
|
|
||||||
%global service_name postgresql.service
|
%global service_name postgresql.service
|
||||||
|
|
||||||
@ -111,7 +111,6 @@ Patch5: postgresql-var-run-socket.patch
|
|||||||
Patch8: postgresql-external-libpq.patch
|
Patch8: postgresql-external-libpq.patch
|
||||||
Patch9: postgresql-server-pg_config.patch
|
Patch9: postgresql-server-pg_config.patch
|
||||||
Patch12: postgresql-no-libecpg.patch
|
Patch12: postgresql-no-libecpg.patch
|
||||||
Patch13: postgresql-pgcrypto-openssl3-init.patch
|
|
||||||
Patch14: postgresql-pgcrypto-openssl3-tests.patch
|
Patch14: postgresql-pgcrypto-openssl3-tests.patch
|
||||||
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
@ -427,7 +426,6 @@ goal of accelerating analytics queries.
|
|||||||
%patch12 -p1
|
%patch12 -p1
|
||||||
%endif
|
%endif
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch13 -p1
|
|
||||||
%patch14 -p1
|
%patch14 -p1
|
||||||
|
|
||||||
# We used to run autoconf here, but there's no longer any real need to,
|
# We used to run autoconf here, but there's no longer any real need to,
|
||||||
@ -1221,6 +1219,13 @@ make -C postgresql-setup-%{setup_version} check
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 30 2021 Marek Kulik <mkulik@redhat.com> - 13.5-1
|
||||||
|
- Update to 13.5 (#2023301)
|
||||||
|
Remove patch postgresql-pgcrypto-openssl3-init.patch - Already in upstream
|
||||||
|
|
||||||
|
* Mon Nov 29 2021 Marek Kulik <mkulik@redhat.com> - 13.3-11
|
||||||
|
- Update postgresql-setup to 8.6 (#2027278)
|
||||||
|
|
||||||
* Wed Oct 13 2021 Ondrej Dubaj <odubaj@redhat.com> - 13.3-10
|
* Wed Oct 13 2021 Ondrej Dubaj <odubaj@redhat.com> - 13.3-10
|
||||||
- Release bum due to gating configuration
|
- Release bum due to gating configuration
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user