Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39b0e21a63 | ||
|
|
3dacbede98 | ||
|
|
1314ff66c1 | ||
|
|
ce3e6b201c | ||
|
|
f7cab0b0bf | ||
|
|
a4dbbdd8d2 | ||
|
|
06b93b8b1f | ||
|
|
48e93b166e |
5 changed files with 59 additions and 8 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
|
@ -7,3 +7,19 @@
|
|||
/postgresql-16.3.tar.bz2
|
||||
/postgresql-15.7.tar.bz2.sha256
|
||||
/postgresql-16.3.tar.bz2.sha256
|
||||
/postgresql-16.8.tar.bz2
|
||||
/postgresql-15.12.tar.bz2
|
||||
/postgresql-16.8.tar.bz2.sha256
|
||||
/postgresql-15.12.tar.bz2.sha256
|
||||
/postgresql-16.9.tar.bz2
|
||||
/postgresql-15.13.tar.bz2
|
||||
/postgresql-16.9.tar.bz2.sha256
|
||||
/postgresql-15.13.tar.bz2.sha256
|
||||
/postgresql-16.10.tar.bz2
|
||||
/postgresql-15.14.tar.bz2
|
||||
/postgresql-16.10.tar.bz2.sha256
|
||||
/postgresql-15.14.tar.bz2.sha256
|
||||
/postgresql-16.11.tar.bz2
|
||||
/postgresql-15.15.tar.bz2
|
||||
/postgresql-16.11.tar.bz2.sha256
|
||||
/postgresql-15.15.tar.bz2.sha256
|
||||
|
|
|
|||
3
README.packit
Normal file
3
README.packit
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
This repository is maintained by packit.
|
||||
https://packit.dev/
|
||||
The file was generated using packit 1.12.0.post1.dev18+gc39b0e7d4.
|
||||
8
packit-update-sources.sh
Executable file
8
packit-update-sources.sh
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
git clone --depth 1 --branch master https://github.com/postgres/postgres.git
|
||||
pushd postgres
|
||||
git fetch --tags
|
||||
NEW_MINOR=$(git tag -l "REL_15_*" | sed -E "s/REL_15_([0-9]+)/\1/" | sort -n | tail -n 1)
|
||||
popd
|
||||
pushd $PACKIT_DOWNSTREAM_REPO
|
||||
sed -i "s/\(%global prevversion %{prevmajorversion}\)\.[0-9]\+/\1.$NEW_MINOR/" $PACKIT_DOWNSTREAM_PACKAGE_NAME.spec
|
||||
popd
|
||||
|
|
@ -47,8 +47,8 @@
|
|||
|
||||
Summary: PostgreSQL client programs
|
||||
Name: %{majorname}%{majorversion}
|
||||
Version: %{majorversion}.3
|
||||
Release: 4%{?dist}
|
||||
Version: %{majorversion}.11
|
||||
Release: 1%{?dist}
|
||||
|
||||
# The PostgreSQL license is very similar to other MIT licenses, but the OSI
|
||||
# recognizes it as an independent license, so we do as well.
|
||||
|
|
@ -60,7 +60,7 @@ Url: http://www.postgresql.org/
|
|||
# that this be kept up with the latest minor release of the previous series;
|
||||
# but update when bugs affecting pg_dump output are fixed.
|
||||
%global prevmajorversion 15
|
||||
%global prevversion %{prevmajorversion}.7
|
||||
%global prevversion %{prevmajorversion}.15
|
||||
%global prev_prefix %{_libdir}/pgsql/postgresql-%{prevmajorversion}
|
||||
%global precise_version %{?epoch:%epoch:}%version-%release
|
||||
|
||||
|
|
@ -178,6 +178,7 @@ BuildRequires: libicu-devel
|
|||
%define postgresqlXX_if_default() %{expand:\
|
||||
Provides: postgresql%{majorversion}%{?1:-%{1}} = %precise_version\
|
||||
Provides: postgresql%{majorversion}%{?1:-%{1}}%{?_isa} = %precise_version\
|
||||
Obsoletes: postgresql%{majorversion}%{?1:-%{1}}\
|
||||
}
|
||||
%else
|
||||
%define postgresqlXX_if_default() %{nil}
|
||||
|
|
@ -433,7 +434,7 @@ Requires: %{pkgname}-server%{?_isa} = %precise_version
|
|||
Provides: %{pkgname}-plpython3 = %precise_version
|
||||
Provides: %{pkgname}-plpython3%{?_isa} = %precise_version
|
||||
|
||||
%virtual_conflicts_and_provides python3
|
||||
%virtual_conflicts_and_provides plpython3
|
||||
|
||||
%description -n %{pkgname}-plpython3
|
||||
The postgresql-plpython3 package contains the PL/Python3 procedural language,
|
||||
|
|
@ -1330,6 +1331,29 @@ make -C postgresql-setup-%{setup_version} check
|
|||
|
||||
|
||||
%changelog
|
||||
* Thu Nov 13 2025 Packit <hello@packit.dev> - 16.11-1
|
||||
- Update to version 16.11
|
||||
- Resolves: rhbz#2414832
|
||||
|
||||
* Thu Aug 14 2025 Packit <hello@packit.dev> - 16.10-1
|
||||
- Update to version 16.10
|
||||
- Resolves: rhbz#2388580
|
||||
|
||||
* Wed May 21 2025 Packit <hello@packit.dev> - 16.9-1
|
||||
- Update to version 16.9
|
||||
- Resolves: rhbz#2365100
|
||||
|
||||
* Wed Feb 26 2025 Packit <hello@packit.dev> - 16.8-1
|
||||
- Update to version 16.8
|
||||
- Resolves: rhbz#2282749
|
||||
|
||||
* Tue Sep 03 2024 Karolina Surma <ksurma@redhat.com> - 16.3-6
|
||||
- Fix the name of the Obsoleted Python package - it's plpython3
|
||||
|
||||
* Mon Aug 05 2024 Filip Janus <fjanus@redhat.com> - 16.3-5
|
||||
- Add Obsoletes of versioned alternative stream from F39
|
||||
- It makes the upgrade path clear
|
||||
|
||||
* Mon Jul 29 2024 Lumír Balhar <lbalhar@redhat.com> - 16.3-4
|
||||
- Add new systemtap-sdt-dtrace to build deps
|
||||
|
||||
|
|
|
|||
8
sources
8
sources
|
|
@ -1,5 +1,5 @@
|
|||
SHA512 (postgresql-15.7.tar.bz2) = 8a03e2d7a267f0d11c27d90a2fb605725accb41cfebba2b56c735d4af45bb5f977d4ba051a02ac8d31f93253372df3d3b5efdd159e258d6fcc506b73e3ad6e27
|
||||
SHA512 (postgresql-16.3.tar.bz2) = dc1c8d4fbc8e53e9be91dcf1b644b3969bd634f11bf5a1c4fe16619fd386f3349a5509788d43e6a57d099ad75233026d4dd4e0bb180ffc747fd3c1a575c51a5f
|
||||
SHA512 (postgresql-16.11.tar.bz2) = f11f8f3e5855cfce27108a1bd2122c5a7a1ff37c6d9366d7a96a041aab67a4e4a31e54f0757b6b97c72d841acdcaa97d3eaa765213d4899b2cf7047c549012b8
|
||||
SHA512 (postgresql-15.15.tar.bz2) = efd5dcdb6e45bc13cd4b1b73f4de19fc3ae2bac96e85086cacd649bfbf50969429c40193e86717380759c6995204c18e14ac5352565d5ae85df61c0a127a1562
|
||||
SHA512 (postgresql-setup-8.9.tar.gz) = 118e9ebf858722a38b0e90324bc1b49fc7058cda601ca0a7e78c94e7b95e89d6dbbc46f377626364b068614ced3cde3cb4733973ad2d71bf17892ad773657ef7
|
||||
SHA512 (postgresql-15.7.tar.bz2.sha256) = bff16a90703353ad9577d827e3f0616ed8f41ee6ebc86d36ca62c199a2339de482e7f2246a6a3ea843136b9b7e654e4d291e31bfc243ae5a32743c22440dc8f5
|
||||
SHA512 (postgresql-16.3.tar.bz2.sha256) = eeebced14bc6c42df864c00397caaafa91b3ddc1c3900943989f04d396674907f63051b93aeb6b1b2408ffeb1b2fc44521b123b42b986b45c19bdcf706523c84
|
||||
SHA512 (postgresql-16.11.tar.bz2.sha256) = 3c07dc85608f8cee5071bd7d404feff1c767afb468a8f41225b73d5df05334dca9a3465e16307a3b5b21c1a44684deab0c496fbd03b9d061e4a9559684876671
|
||||
SHA512 (postgresql-15.15.tar.bz2.sha256) = dcabc9fceaa557dac1d6d5b014d21ec6edfb7409103651820126351b5534c1605255f36bb18d654cd537f5128e705d2847f2bd52e38c6dd442a21c0722f39b76
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue