2022-01-06 10:23:12 +00:00
|
|
|
%global majorversion 14
|
2019-05-10 14:41:28 +00:00
|
|
|
%global obsoletes_version %( echo $(( %majorversion + 1 )) )
|
2018-09-05 10:34:58 +00:00
|
|
|
|
|
|
|
Summary: PostgreSQL client library
|
|
|
|
Name: libpq
|
2022-01-06 10:23:12 +00:00
|
|
|
Version: %{majorversion}.1
|
|
|
|
Release: 1%{?dist}
|
2018-09-05 10:34:58 +00:00
|
|
|
|
|
|
|
License: PostgreSQL
|
|
|
|
Url: http://www.postgresql.org/
|
|
|
|
|
2020-02-04 19:37:02 +00:00
|
|
|
Source0: https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
|
|
|
|
Source1: https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2.sha256
|
2018-09-05 10:34:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Comments for these patches are in the patch files.
|
|
|
|
Patch1: libpq-10.3-rpm-pgsql.patch
|
|
|
|
Patch2: libpq-10.3-var-run-socket.patch
|
2020-02-04 19:37:02 +00:00
|
|
|
Patch3: libpq-12.1-symbol-versioning.patch
|
2018-09-05 10:34:58 +00:00
|
|
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: glibc-devel bison flex gawk
|
|
|
|
BuildRequires: zlib-devel
|
|
|
|
BuildRequires: openssl-devel
|
|
|
|
BuildRequires: krb5-devel
|
|
|
|
BuildRequires: openldap-devel
|
|
|
|
BuildRequires: gettext
|
|
|
|
BuildRequires: multilib-rpm-config
|
2021-01-05 02:31:46 +00:00
|
|
|
BuildRequires: make
|
2018-09-05 10:34:58 +00:00
|
|
|
|
2019-05-10 14:41:28 +00:00
|
|
|
Obsoletes: postgresql-libs < %obsoletes_version
|
2018-09-05 10:34:58 +00:00
|
|
|
Provides: postgresql-libs = %version-%release
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
The libpq package provides the essential shared library for any PostgreSQL
|
|
|
|
client program or interface. You will need to install this package to use any
|
|
|
|
other PostgreSQL package or any clients that need to connect to a PostgreSQL
|
|
|
|
server.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for building PostgreSQL client tools
|
|
|
|
Requires: %name%{?_isa} = %version-%release
|
|
|
|
# Historically we had 'postgresql-devel' package which was used for building
|
|
|
|
# both PG clients and PG server modules; let's have this fake provide to cover
|
|
|
|
# most of the depending packages and the rest (those which want to build server
|
|
|
|
# modules) need to be fixed to require postgresql-server-devel package.
|
|
|
|
Provides: postgresql-devel = %version-%release
|
2019-05-10 14:41:28 +00:00
|
|
|
Obsoletes: postgresql-devel < %obsoletes_version
|
2018-09-05 10:34:58 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The libpq package provides the essential shared library for any PostgreSQL
|
|
|
|
client program or interface. You will need to install this package to build any
|
|
|
|
package or any clients that need to connect to a PostgreSQL server.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
( cd "$(dirname "%SOURCE1")" ; sha256sum -c "%SOURCE1" )
|
|
|
|
%autosetup -n postgresql-%version -p1
|
|
|
|
|
|
|
|
# remove .gitignore files to ensure none get into the RPMs (bug #642210)
|
|
|
|
find . -type f -name .gitignore | xargs rm
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
# complements symbol-versioning patch
|
|
|
|
export SYMBOL_VERSION_PREFIX=RHPG_
|
|
|
|
|
|
|
|
# We don't build server nor client (e.g. /bin/psql) binaries in this package, so
|
|
|
|
# we can disable some configure options.
|
|
|
|
%configure \
|
|
|
|
--disable-rpath \
|
|
|
|
--with-ldap \
|
|
|
|
--with-openssl \
|
|
|
|
--with-gssapi \
|
|
|
|
--enable-nls \
|
|
|
|
--without-readline \
|
|
|
|
--datadir=%_datadir/pgsql
|
|
|
|
|
|
|
|
%global build_subdirs \\\
|
2020-02-04 19:37:02 +00:00
|
|
|
src/include \\\
|
|
|
|
src/common \\\
|
|
|
|
src/port \\\
|
2018-09-05 10:34:58 +00:00
|
|
|
src/interfaces/libpq \\\
|
2020-02-04 19:37:02 +00:00
|
|
|
src/bin/pg_config
|
2018-09-05 10:34:58 +00:00
|
|
|
|
|
|
|
for subdir in %build_subdirs; do
|
|
|
|
%make_build -C "$subdir"
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
for subdir in %build_subdirs; do
|
|
|
|
%make_install -C "$subdir"
|
|
|
|
done
|
|
|
|
|
|
|
|
# remove files not to be packaged
|
|
|
|
find $RPM_BUILD_ROOT -name '*.a' -delete
|
|
|
|
rm -r $RPM_BUILD_ROOT%_includedir/pgsql/server
|
|
|
|
|
|
|
|
%multilib_fix_c_header --file "%_includedir/pg_config.h"
|
|
|
|
%multilib_fix_c_header --file "%_includedir/pg_config_ext.h"
|
|
|
|
|
|
|
|
find_lang_bins ()
|
|
|
|
{
|
|
|
|
lstfile=$1 ; shift
|
|
|
|
cp /dev/null "$lstfile"
|
|
|
|
for binary; do
|
|
|
|
%find_lang "$binary"-%majorversion
|
|
|
|
cat "$binary"-%majorversion.lang >>"$lstfile"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
find_lang_bins %name.lst libpq5
|
|
|
|
find_lang_bins %name-devel.lst pg_config
|
|
|
|
|
|
|
|
|
|
|
|
%files -f %name.lst
|
|
|
|
%license COPYRIGHT
|
2018-10-16 11:18:51 +00:00
|
|
|
%_libdir/libpq.so.5*
|
2018-09-05 10:34:58 +00:00
|
|
|
%dir %_datadir/pgsql
|
|
|
|
%doc %_datadir/pgsql/pg_service.conf.sample
|
|
|
|
|
|
|
|
|
|
|
|
%files devel -f %name-devel.lst
|
|
|
|
%_bindir/pg_config
|
|
|
|
%_includedir/*
|
|
|
|
%_libdir/libpq.so
|
|
|
|
%_libdir/pkgconfig/libpq.pc
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2022-01-06 10:23:12 +00:00
|
|
|
* Mon Jan 03 2022 Filip Januš <fjanus@rredhat.com> - 14.1-1
|
|
|
|
- Update to v14
|
|
|
|
- Resolves: https://fedoraproject.org/wiki/Changes/PostgreSQL_14
|
|
|
|
|
2021-09-14 17:06:26 +00:00
|
|
|
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 13.4-2
|
|
|
|
- Rebuilt with OpenSSL 3.0.0
|
|
|
|
|
2021-08-10 10:03:23 +00:00
|
|
|
* Thu Aug 12 2021 Filip Januš <fjanus@rehdat.com> - 13.4-1
|
|
|
|
- Update to 13.4
|
|
|
|
|
2021-07-22 12:08:08 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 13.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-05-17 08:49:01 +00:00
|
|
|
* Mon May 17 2021 Filip Januš <fjanus@redhat.com> - 13.3-1
|
|
|
|
- Update to 13.3
|
|
|
|
|
2021-02-16 20:20:26 +00:00
|
|
|
* Tue Feb 16 2021 Honza Horak <hhorak@redhat.com> - 13.2-1
|
|
|
|
- Update to 13.2
|
|
|
|
|
2021-02-08 05:33:39 +00:00
|
|
|
* Mon Feb 08 2021 Patrik Novotný <panovotn@redhat.com> - 13.1-3
|
|
|
|
- Fix symbol versioning
|
|
|
|
|
2021-01-26 17:47:17 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 13.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-11-16 14:09:07 +00:00
|
|
|
* Mon Nov 16 2020 Patrik Novotný <panovotn@redhat.com> - 13.1-1
|
|
|
|
- Rebase to upstream release 13.1
|
|
|
|
|
2020-11-02 12:41:45 +00:00
|
|
|
* Mon Nov 02 2020 Patrik Novotný <panovotn@redhat.com> - 13.0-2
|
|
|
|
- Rebuild for symbol versioning fix
|
|
|
|
|
2020-10-22 11:14:13 +00:00
|
|
|
* Wed Oct 14 2020 Patrik Novotný <panovotn@redhat.com> - 13.0-1
|
|
|
|
- Rebase to upstream release 13.0
|
|
|
|
|
2020-08-18 07:21:13 +00:00
|
|
|
* Tue Aug 18 2020 Patrik Novotný <panovotn@redhat.com> - 12.4-1
|
|
|
|
- Rebase to upstream release 12.4
|
|
|
|
|
2020-07-28 05:22:17 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-18 10:14:22 +00:00
|
|
|
* Mon May 18 2020 Patrik Novotný <panovotn@redhat.com> - 12.3-1
|
|
|
|
- Rebase to upstream release 12.3
|
|
|
|
|
2020-02-17 08:16:45 +00:00
|
|
|
* Mon Feb 17 2020 Patrik Novotný <panovotn@redhat.com> - 12.2-1
|
|
|
|
- Rebase to upstream release 12.2
|
|
|
|
|
2020-02-04 19:37:02 +00:00
|
|
|
* Tue Feb 04 2020 Patrik Novotný <panovotn@redhat.com> - 12.1-1
|
|
|
|
- Rebase to upstream release 12.1
|
|
|
|
|
2020-01-29 10:05:52 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 11.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-11-25 14:02:41 +00:00
|
|
|
* Mon Nov 25 2019 Patrik Novotný <panovotn@redhat.com> - 11.6-1
|
|
|
|
- Rebase to upstream version 11.6
|
|
|
|
|
2019-08-07 05:24:46 +00:00
|
|
|
* Wed Aug 07 2019 Petr Kubat <pkubat@redhat.com> - 11.5-1
|
|
|
|
- New upstream version 11.5
|
|
|
|
|
2019-07-25 14:09:46 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 11.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-09 07:46:50 +00:00
|
|
|
* Tue Jul 09 2019 Petr Kubat <pkubat@redhat.com> - 11.4-1
|
|
|
|
- New upstream version 11.4
|
|
|
|
|
2019-05-10 14:41:28 +00:00
|
|
|
* Fri May 10 2019 Pavel Raiskup <praiskup@redhat.com> - 11.3-2
|
|
|
|
- obsolete anything < %%majorversion+1
|
|
|
|
|
2019-05-09 12:17:12 +00:00
|
|
|
* Thu May 09 2019 Patrik Novotný <panovotn@redhat.com> - 11.3-1
|
|
|
|
- New upstream version 11.3
|
|
|
|
|
2019-02-18 10:07:17 +00:00
|
|
|
* Mon Feb 18 2019 Pavel Raiskup <praiskup@redhat.com> - 11.2-2
|
|
|
|
- fix dnf system-upgrade from f29 to f29+, rhbz#1677849
|
|
|
|
|
2019-02-14 14:04:33 +00:00
|
|
|
* Thu Feb 14 2019 Pavel Raiskup <praiskup@redhat.com> - 11.2-1
|
|
|
|
- latest upstream release, per release notes:
|
|
|
|
https://www.postgresql.org/docs/11/static/release-11-1.html
|
|
|
|
https://www.postgresql.org/docs/11/static/release-11-2.html
|
|
|
|
|
2019-02-01 07:59:40 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 11.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-10-16 11:18:51 +00:00
|
|
|
* Tue Oct 16 2018 Pavel Raiskup <praiskup@redhat.com> - 11.0-1
|
|
|
|
- latest upstream release, per release notes:
|
|
|
|
https://www.postgresql.org/docs/11/static/release-11-0.html
|
|
|
|
|
2018-09-05 10:34:58 +00:00
|
|
|
* Tue Sep 04 2018 Pavel Raiskup <praiskup@redhat.com> - 10.5-4
|
|
|
|
- fix provides/obsoletes to final state
|
|
|
|
|
|
|
|
* Thu Aug 30 2018 Pavel Raiskup <praiskup@redhat.com> - 10.5-1
|
|
|
|
- libpq packaging for Fedora
|