Compare commits
21 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
54bbb24079 | ||
|
|
9f35c14618 | ||
|
|
3eef9b7f69 | ||
|
|
3004e003d4 | ||
|
|
349f48f183 | ||
|
|
27a75ba780 | ||
|
|
f33689347e | ||
|
|
51276f54f1 | ||
|
|
042df027b0 | ||
|
|
290d36f9d8 | ||
|
|
4e5009ca14 | ||
|
|
72061a9ba2 | ||
|
|
792d356289 | ||
|
|
78d431c36a | ||
|
|
4bee6b7687 | ||
|
|
84ff0438ce | ||
|
|
8cd443c549 | ||
|
|
28b8023ffd | ||
|
|
de696001ac | ||
|
|
90650b6371 | ||
|
|
6e4e3dd713 |
4 changed files with 61 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -17,6 +17,7 @@
|
||||||
/postgresql-15.13.tar.bz2
|
/postgresql-15.13.tar.bz2
|
||||||
/postgresql-16.9.tar.bz2.sha256
|
/postgresql-16.9.tar.bz2.sha256
|
||||||
/postgresql-15.13.tar.bz2.sha256
|
/postgresql-15.13.tar.bz2.sha256
|
||||||
|
/postgresql-16.10.tar.bz2
|
||||||
/postgresql-15.14.tar.bz2
|
/postgresql-15.14.tar.bz2
|
||||||
/postgresql-16.10.tar.bz2.sha256
|
/postgresql-16.10.tar.bz2.sha256
|
||||||
/postgresql-15.14.tar.bz2.sha256
|
/postgresql-15.14.tar.bz2.sha256
|
||||||
|
|
|
||||||
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
|
||||||
19
packit.yaml
Normal file
19
packit.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# See the documentation for more information:
|
||||||
|
# https://packit.dev/docs/configuration/
|
||||||
|
actions:
|
||||||
|
pre-sync:
|
||||||
|
- bash -c "$PACKIT_DOWNSTREAM_REPO/packit-update-sources.sh"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
- job: pull_from_upstream
|
||||||
|
trigger: release
|
||||||
|
dist_git_branches:
|
||||||
|
- fedora-all
|
||||||
|
- job: koji_build
|
||||||
|
trigger: commit
|
||||||
|
dist_git_branches:
|
||||||
|
- fedora-all
|
||||||
|
- job: bodhi_update
|
||||||
|
trigger: commit
|
||||||
|
dist_git_branches:
|
||||||
|
fedora-all
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
%{!?sdt:%global sdt 1}
|
%{!?sdt:%global sdt 1}
|
||||||
%{!?selinux:%global selinux 1}
|
%{!?selinux:%global selinux 1}
|
||||||
%{!?runselftest:%global runselftest 1}
|
%{!?runselftest:%global runselftest 1}
|
||||||
%{!?postgresql_default:%global postgresql_default 1}
|
%{!?postgresql_default:%global postgresql_default 0}
|
||||||
|
|
||||||
%global majorname postgresql
|
%global majorname postgresql
|
||||||
%global majorversion 16
|
%global majorversion 16
|
||||||
|
|
@ -748,6 +748,9 @@ upgrade_configure ()
|
||||||
--enable-dtrace \
|
--enable-dtrace \
|
||||||
%endif
|
%endif
|
||||||
%if %selinux
|
%if %selinux
|
||||||
|
%if %ssl
|
||||||
|
--with-openssl \
|
||||||
|
%endif
|
||||||
--with-selinux \
|
--with-selinux \
|
||||||
%endif
|
%endif
|
||||||
%if %plpython3
|
%if %plpython3
|
||||||
|
|
@ -1346,17 +1349,43 @@ make -C postgresql-setup-%{setup_version} check
|
||||||
- Update to version 16.11
|
- Update to version 16.11
|
||||||
- Resolves: rhbz#2414832
|
- Resolves: rhbz#2414832
|
||||||
|
|
||||||
* Wed Jun 25 2025 Filip Janus <fjanus@redhat.com> - 16.9-3
|
* Tue Sep 09 2025 Filip Janus <fjanus@redhat.com> - 16.10-2
|
||||||
|
- Add OpenSSL support to upgrade_configure function
|
||||||
|
- This ensures upgrade server is compiled with OpenSSL support
|
||||||
|
- Required for SSL/TLS connections during database upgrades
|
||||||
|
|
||||||
|
* Thu Aug 14 2025 Packit <hello@packit.dev> - 16.10-1
|
||||||
|
- Update to version 16.10
|
||||||
|
- Resolves: rhbz#2388580
|
||||||
|
|
||||||
|
* Wed Aug 06 2025 František Zatloukal <fzatlouk@redhat.com> - 16.9-8
|
||||||
|
- Rebuilt for icu 77.1
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 16.9-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 22 2025 Nikola Davidova <ndavidov@redhat.com> - 16.9-6
|
||||||
|
- Make Postgresql16 non default
|
||||||
|
|
||||||
|
* Mon Jul 07 2025 Jitka Plesnikova <jplesnik@redhat.com> - 16.9-5
|
||||||
|
- Perl 5.42 rebuild
|
||||||
|
|
||||||
|
* Wed Jun 25 2025 Filip Janus <fjanus@redhat.com> - 16.9-4
|
||||||
- Enable zstd
|
- Enable zstd
|
||||||
|
|
||||||
* Wed Jun 25 2025 Filip Janus <fjanus@redhat.com> - 16.9-2
|
* Mon Jun 16 2025 Filip Janus <fjanus@redhat.com> - 16.9-3
|
||||||
- Add sysusers.d config file to allow rpm to create users/groups automatically
|
|
||||||
- Add tmpfiles.d configuration file definition
|
- Add tmpfiles.d configuration file definition
|
||||||
|
|
||||||
|
* Mon Jun 02 2025 Python Maint <python-maint@redhat.com> - 16.9-2
|
||||||
|
- Rebuilt for Python 3.14
|
||||||
|
|
||||||
* Wed May 21 2025 Packit <hello@packit.dev> - 16.9-1
|
* Wed May 21 2025 Packit <hello@packit.dev> - 16.9-1
|
||||||
- Update to version 16.9
|
- Update to version 16.9
|
||||||
- Resolves: rhbz#2365100
|
- Resolves: rhbz#2365100
|
||||||
|
|
||||||
|
* Wed Feb 26 2025 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 16.8-2
|
||||||
|
- Add sysusers.d config file to allow rpm to create users/groups automatically
|
||||||
|
|
||||||
* Wed Feb 26 2025 Packit <hello@packit.dev> - 16.8-1
|
* Wed Feb 26 2025 Packit <hello@packit.dev> - 16.8-1
|
||||||
- Update to version 16.8
|
- Update to version 16.8
|
||||||
- Resolves: rhbz#2282749
|
- Resolves: rhbz#2282749
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue