2006-08-16 16:57:06 +00:00
|
|
|
# Copyright (c) 2000-2005, JPackage Project
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name of the JPackage Project nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2016-07-20 05:29:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Configuration for rpmbuild, might be specified by options
|
|
|
|
# like e.g. 'rpmbuild --define "runselftest 0"'.
|
|
|
|
|
2019-03-07 12:19:37 +00:00
|
|
|
# =============================================================================
|
|
|
|
# IMPORTANT NOTE: This spec file is maintained on two places -- in native
|
|
|
|
# Fedora repo [1] and in pgjdbc upstream [2]. Please, keep that in sync
|
|
|
|
# (manual effort!) so both Fedora and Upstream can benefit from automatic
|
|
|
|
# packaging CI, this is now done in [3] Copr project.
|
|
|
|
# [1] https://src.fedoraproject.org/rpms/postgresql-jdbc
|
|
|
|
# [2] https://github.com/pgjdbc/pgjdbc/tree/master/packaging/rpm
|
|
|
|
# [3] https://copr.fedorainfracloud.org/coprs/g/pgjdbc/pgjdbc-travis/
|
|
|
|
# ============================================================================
|
|
|
|
|
2016-07-20 05:29:48 +00:00
|
|
|
%{!?runselftest:%global runselftest 1}
|
|
|
|
|
2006-08-16 16:57:06 +00:00
|
|
|
|
2010-01-05 17:13:54 +00:00
|
|
|
%global section devel
|
2016-07-20 05:29:48 +00:00
|
|
|
%global source_path pgjdbc/src/main/java/org/postgresql
|
2019-06-25 13:07:40 +00:00
|
|
|
%global parent_ver 1.1.6
|
2016-07-20 05:29:48 +00:00
|
|
|
%global parent_poms_builddir ./pgjdbc-parent-poms
|
|
|
|
|
|
|
|
%global pgjdbc_mvn_options -DwaffleEnabled=false -DosgiEnabled=false \\\
|
2016-07-21 12:25:02 +00:00
|
|
|
-DexcludePackageNames=org.postgresql.osgi:org.postgresql.sspi
|
2006-02-16 21:10:22 +00:00
|
|
|
|
|
|
|
Summary: JDBC driver for PostgreSQL
|
|
|
|
Name: postgresql-jdbc
|
2020-03-02 13:59:21 +00:00
|
|
|
Version: 42.3.0
|
|
|
|
Release: 1%{?dist}
|
2016-08-29 09:31:24 +00:00
|
|
|
License: BSD
|
2006-02-16 21:10:22 +00:00
|
|
|
URL: http://jdbc.postgresql.org/
|
|
|
|
|
2020-03-02 13:59:21 +00:00
|
|
|
Source0: https://github.com/pgjdbc/pgjdbc/archive/v%{version}-rc2/pgjdbc-v%{version}-rc2.tar.gz
|
2018-04-20 10:06:00 +00:00
|
|
|
Provides: pgjdbc = %version-%release
|
2006-02-16 21:10:22 +00:00
|
|
|
|
2016-07-20 05:29:48 +00:00
|
|
|
# Upstream moved parent pom.xml into separate project (even though there is only
|
|
|
|
# one dependant project on it?). Let's try to not complicate packaging by
|
|
|
|
# having separate spec file for it, too.
|
2018-01-19 09:07:44 +00:00
|
|
|
Source1: https://github.com/pgjdbc/pgjdbc-parent-poms/archive/REL%parent_ver/pgjdbc-parent-poms-REL%{parent_ver}.tar.gz
|
2014-07-14 07:06:24 +00:00
|
|
|
|
2016-12-22 22:17:20 +00:00
|
|
|
# disable test that makes unpredictable assumptions about non-routable IPs
|
|
|
|
# See https://github.com/pgjdbc/pgjdbc/issues/556
|
2018-11-21 10:27:20 +00:00
|
|
|
Patch0: disable-ConnectTimeoutTest.patch
|
2016-12-22 22:17:20 +00:00
|
|
|
|
2006-02-16 21:10:22 +00:00
|
|
|
BuildArch: noarch
|
2016-07-20 05:29:48 +00:00
|
|
|
BuildRequires: java-devel >= 1.8
|
|
|
|
BuildRequires: maven-local
|
|
|
|
BuildRequires: java-comment-preprocessor
|
|
|
|
BuildRequires: maven-enforcer-plugin
|
|
|
|
BuildRequires: maven-plugin-bundle
|
|
|
|
BuildRequires: maven-plugin-build-helper
|
2016-11-03 12:48:08 +00:00
|
|
|
BuildRequires: classloader-leak-test-framework
|
2016-07-20 05:29:48 +00:00
|
|
|
|
2018-01-19 09:07:44 +00:00
|
|
|
BuildRequires: mvn(com.ongres.scram:client)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-clean-plugin)
|
|
|
|
|
2016-07-20 05:29:48 +00:00
|
|
|
%if %runselftest
|
|
|
|
BuildRequires: postgresql-contrib
|
2018-04-13 15:03:35 +00:00
|
|
|
BuildRequires: postgresql-test-rpm-macros
|
2016-07-20 05:29:48 +00:00
|
|
|
%endif
|
|
|
|
|
2009-04-21 18:20:39 +00:00
|
|
|
# gettext is only needed if we try to update translations
|
|
|
|
#BuildRequires: gettext
|
2006-02-16 21:10:22 +00:00
|
|
|
|
2018-11-21 10:27:20 +00:00
|
|
|
Obsoletes: %{name}-parent-poms < 42.2.2-2
|
2018-05-30 10:57:30 +00:00
|
|
|
|
2006-02-16 21:10:22 +00:00
|
|
|
%description
|
|
|
|
PostgreSQL is an advanced Object-Relational database management
|
|
|
|
system. The postgresql-jdbc package includes the .jar files needed for
|
|
|
|
Java programs to access a PostgreSQL database.
|
|
|
|
|
2016-07-20 05:29:48 +00:00
|
|
|
|
2013-08-06 11:51:07 +00:00
|
|
|
%package javadoc
|
2016-07-20 05:29:48 +00:00
|
|
|
Summary: API docs for %{name}
|
2013-08-06 11:51:07 +00:00
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
This package contains the API Documentation for %{name}.
|
|
|
|
|
2016-07-20 05:29:48 +00:00
|
|
|
|
2006-02-16 21:10:22 +00:00
|
|
|
%prep
|
2018-01-19 09:07:44 +00:00
|
|
|
%setup -c -q -a 1
|
2016-07-20 05:29:48 +00:00
|
|
|
|
2020-03-02 13:59:21 +00:00
|
|
|
mv pgjdbc-%{version}-rc2/* .
|
2016-07-20 05:29:48 +00:00
|
|
|
mv pgjdbc-parent-poms-REL%parent_ver pgjdbc-parent-poms
|
2006-02-16 21:10:22 +00:00
|
|
|
|
2020-03-02 13:59:21 +00:00
|
|
|
|
2017-08-23 15:01:10 +00:00
|
|
|
%patch0 -p1
|
2016-12-22 22:17:20 +00:00
|
|
|
|
2006-02-16 21:10:22 +00:00
|
|
|
# remove any binary libs
|
|
|
|
find -name "*.jar" -or -name "*.class" | xargs rm -f
|
|
|
|
|
2016-07-20 07:49:12 +00:00
|
|
|
# Build parent POMs in the same Maven call.
|
|
|
|
%pom_xpath_inject pom:modules "<module>%parent_poms_builddir</module>"
|
|
|
|
%pom_xpath_inject pom:parent "<relativePath>pgjdbc-parent-poms/pgjdbc-versions</relativePath>"
|
|
|
|
%pom_xpath_set pom:relativePath ../pgjdbc-parent-poms/pgjdbc-core-parent pgjdbc
|
2018-01-19 09:07:44 +00:00
|
|
|
%pom_xpath_remove "pom:plugin[pom:artifactId = 'maven-shade-plugin']" pgjdbc
|
2019-09-20 13:31:06 +00:00
|
|
|
%pom_remove_plugin :karaf-maven-plugin pgjdbc
|
|
|
|
%pom_remove_plugin :properties-maven-plugin pgjdbc-parent-poms/pgjdbc-core-parent
|
|
|
|
%pom_remove_plugin :properties-maven-plugin pgjdbc-parent-poms/pgjdbc-versions
|
|
|
|
|
2016-07-20 07:49:12 +00:00
|
|
|
|
2016-07-21 12:15:45 +00:00
|
|
|
# compat symlink: requested by dtardon (libreoffice), reverts part of
|
|
|
|
# 0af97ce32de877 commit.
|
2018-04-20 10:06:00 +00:00
|
|
|
%mvn_file org.postgresql:postgresql %{name}/postgresql %{name} postgresql
|
2016-07-21 12:15:45 +00:00
|
|
|
|
2018-05-30 10:57:30 +00:00
|
|
|
# Parent POMs should not be installed.
|
|
|
|
%mvn_package ":*{parent,versions,prevjre}*" __noinstall
|
2016-07-20 07:49:12 +00:00
|
|
|
|
|
|
|
# For compat reasons, make Maven artifact available under older coordinates.
|
|
|
|
%mvn_alias org.postgresql:postgresql postgresql:postgresql
|
2016-07-20 05:29:48 +00:00
|
|
|
|
|
|
|
# Hack #1! This directory is missing for some reason, it is most probably some
|
|
|
|
# misunderstanding between maven, maven-compiler-plugin and
|
|
|
|
# java-comment-preprocessor? Not solved yet. See rhbz#1325060.
|
|
|
|
mkdir -p pgjdbc/target/generated-sources/annotations
|
2009-04-21 18:20:39 +00:00
|
|
|
|
2016-07-20 05:29:48 +00:00
|
|
|
|
|
|
|
%build
|
2009-04-21 18:20:39 +00:00
|
|
|
# Ideally we would run "sh update-translations.sh" here, but that results
|
|
|
|
# in inserting the build timestamp into the generated messages_*.class
|
|
|
|
# files, which makes rpmdiff complain about multilib conflicts if the
|
|
|
|
# different platforms don't build in the same minute. For now, rely on
|
|
|
|
# upstream to have updated the translations files before packaging.
|
|
|
|
|
2016-07-20 05:29:48 +00:00
|
|
|
# Include PostgreSQL testing methods and variables.
|
|
|
|
%if %runselftest
|
2018-01-19 09:14:58 +00:00
|
|
|
%postgresql_tests_init
|
2016-07-20 05:29:48 +00:00
|
|
|
|
|
|
|
PGTESTS_LOCALE=C.UTF-8
|
|
|
|
|
|
|
|
cat <<EOF > build.local.properties
|
|
|
|
server=localhost
|
|
|
|
port=$PGTESTS_PORT
|
|
|
|
database=test
|
|
|
|
username=test
|
|
|
|
password=test
|
|
|
|
privilegedUser=$PGTESTS_ADMIN
|
|
|
|
privilegedPassword=$PGTESTS_ADMINPASS
|
|
|
|
preparethreshold=5
|
|
|
|
loglevel=0
|
|
|
|
protocolVersion=0
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Start the local PG cluster.
|
2018-01-19 09:14:58 +00:00
|
|
|
%postgresql_tests_start
|
2016-07-20 05:29:48 +00:00
|
|
|
%else
|
2016-07-21 12:15:45 +00:00
|
|
|
# -f is equal to -Dmaven.test.skip=true
|
|
|
|
opts="-f"
|
2016-07-20 05:29:48 +00:00
|
|
|
%endif
|
|
|
|
|
2016-07-21 12:15:45 +00:00
|
|
|
%mvn_build $opts -- %pgjdbc_mvn_options
|
2014-04-23 07:51:20 +00:00
|
|
|
|
2016-07-23 04:46:08 +00:00
|
|
|
|
2016-07-20 05:29:48 +00:00
|
|
|
%install
|
|
|
|
%mvn_install
|
2006-02-16 21:10:22 +00:00
|
|
|
|
2016-07-23 04:46:08 +00:00
|
|
|
|
2013-08-06 11:43:33 +00:00
|
|
|
%files -f .mfiles
|
2016-07-20 05:29:48 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
2006-02-16 21:10:22 +00:00
|
|
|
|
2016-07-23 04:46:08 +00:00
|
|
|
|
2016-07-21 12:15:45 +00:00
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
|
|
%license LICENSE
|
2016-07-20 05:29:48 +00:00
|
|
|
|
2016-07-23 04:46:08 +00:00
|
|
|
|
2006-02-16 21:10:22 +00:00
|
|
|
%changelog
|
2020-03-02 13:59:21 +00:00
|
|
|
* Mon Mar 02 2020 Ondrej Dubaj <odubaj@redhat.com> - 42.3.0-1
|
|
|
|
- new upstream release (rhbz#1800440)
|
|
|
|
|
2020-01-30 09:35:57 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 42.2.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-12-16 08:40:53 +00:00
|
|
|
* Fri Dec 13 2019 Ondrej Dubaj <odubaj@redhat.com> - 42.2.9-1
|
|
|
|
- new upstream release (rhbz#1782277)
|
|
|
|
|
2019-09-20 13:31:06 +00:00
|
|
|
* Fri Sep 20 2019 Pavel Raiskup <praiskup@redhat.com> - 42.2.8-1
|
|
|
|
- new upstream release (rhbz#1750766)
|
|
|
|
|
2019-07-26 11:10:37 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 42.2.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-25 13:07:40 +00:00
|
|
|
* Tue Jun 25 2019 Jakub Janco <jjanco@redhat.com> - 42.2.6-1
|
|
|
|
- new version
|
|
|
|
|
2019-02-02 04:41:04 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 42.2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-11-21 10:27:20 +00:00
|
|
|
* Wed Nov 21 2018 Pavel Raiskup <praiskup@redhat.com> - 42.2.5-1
|
|
|
|
- new upstream release
|
|
|
|
|
2018-08-03 08:53:22 +00:00
|
|
|
* Fri Aug 03 2018 Pavel Raiskup <praiskup@redhat.com> - 42.2.4-1
|
|
|
|
- new upstream release (rhbz#1601193)
|
|
|
|
|
2018-07-13 05:16:22 +00:00
|
|
|
* Fri Jul 13 2018 Pavel Raiskup <praiskup@redhat.com> - 42.2.3-1
|
|
|
|
- new upstream release (rhbz#1600759)
|
|
|
|
|
2018-05-30 10:57:30 +00:00
|
|
|
* Wed May 30 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 42.2.2-4
|
|
|
|
- Remove and obsolete parent-poms subpackage
|
|
|
|
|
2018-04-20 10:06:00 +00:00
|
|
|
* Fri Apr 20 2018 Pavel Raiskup <praiskup@redhat.com> - 42.2.2-3
|
|
|
|
- provide postgresql.jar, as that's the upstream's artifactId
|
|
|
|
|
2018-04-13 15:03:35 +00:00
|
|
|
* Fri Apr 13 2018 Pavel Raiskup <praiskup@redhat.com> - 42.2.2-2
|
|
|
|
- BR postgresql-test-rpm-macros
|
|
|
|
|
2018-03-16 16:39:38 +00:00
|
|
|
* Fri Mar 16 2018 Pavel Raiskup <praiskup@redhat.com> - 42.2.2-1
|
|
|
|
- new upstream release
|
|
|
|
|
2018-02-09 05:38:04 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 42.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-26 09:50:39 +00:00
|
|
|
* Fri Jan 26 2018 Pavel Raiskup <praiskup@redhat.com> - 42.2.1-1
|
|
|
|
- new upstream release
|
|
|
|
|
2018-01-19 09:07:44 +00:00
|
|
|
* Fri Jan 19 2018 Pavel Raiskup <praiskup@redhat.com> - 42.2.0-1
|
|
|
|
- rebase to the latest upstream release
|
|
|
|
- nicer github source urls
|
|
|
|
- sync with upstream spec
|
2018-01-19 09:14:58 +00:00
|
|
|
- use new postgresql testing macros (rawhide only)
|
2018-01-19 09:07:44 +00:00
|
|
|
|
2017-08-23 15:01:10 +00:00
|
|
|
* Wed Aug 23 2017 Pavel Raiskup <praiskup@redhat.com> - 42.1.4-1
|
|
|
|
- rebase to latest upstream release
|
|
|
|
|
2017-07-27 08:57:37 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.4.1212-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 07:46:47 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.4.1212-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-22 22:17:20 +00:00
|
|
|
* Thu Dec 22 2016 Pavel Raiskup <praiskup@redhat.com> - 9.4.1212-2
|
|
|
|
- Disable unpredictable test to fix FTBFS (BZ#1406931),
|
|
|
|
patch by Merlin Mathesius
|
|
|
|
|
2016-11-03 12:48:08 +00:00
|
|
|
* Thu Nov 03 2016 Pavel Raiskup <praiskup@redhat.com> - 9.4.1212-1
|
|
|
|
- new release, rhbz#1377317, per announcement:
|
|
|
|
https://www.postgresql.org/message-id/CAB=Je-FjbvQ_MmAGmhZ-1sSMnodpjr9Uz6Q=faxqCxOvpRO-UQ@mail.gmail.com
|
|
|
|
|
2016-10-04 14:42:51 +00:00
|
|
|
* Tue Oct 04 2016 Pavel Raiskup <praiskup@redhat.com> - 9.4.1210-2
|
|
|
|
- depend on test macros from postgresql-setup
|
|
|
|
|
2016-09-08 06:15:14 +00:00
|
|
|
* Thu Sep 08 2016 Pavel Raiskup <praiskup@redhat.com> - 9.4.1210-1
|
|
|
|
- new release, rhbz#1374106, per announcement:
|
|
|
|
https://www.postgresql.org/message-id/CAB=Je-FzuqwDXLTT62VfzvTUhR4QTfLjmw2D5QfgaykDkhW7nw@mail.gmail.com
|
|
|
|
|
2016-08-29 09:31:24 +00:00
|
|
|
* Mon Aug 29 2016 Pavel Raiskup <praiskup@redhat.com> - 9.4.1209-6
|
|
|
|
- fix License, pgjdbc is BSD only
|
|
|
|
|
2016-07-21 12:15:45 +00:00
|
|
|
* Thu Jul 21 2016 gil cattaneo <puntogil@libero.it> 9.4.1209-5
|
|
|
|
- fix postgresql-jdbc.jar symlink using javapackages macros
|
|
|
|
- adapt to current guideline
|
|
|
|
- install doc and license file in parent-poms sub package
|
|
|
|
- simplified runselftest check
|
|
|
|
|
2016-07-20 11:32:42 +00:00
|
|
|
* Wed Jul 20 2016 Pavel Raiskup <praiskup@redhat.com> - 9.4.1209-4
|
|
|
|
- restore one compat symlink
|
|
|
|
|
2016-07-20 08:34:16 +00:00
|
|
|
* Wed Jul 20 2016 Pavel Raiskup <praiskup@redhat.com> - 9.4.1209-3
|
|
|
|
- bump: for Mikolaj's fixes
|
|
|
|
|
2016-07-20 07:11:57 +00:00
|
|
|
* Wed Jul 20 2016 Pavel Raiskup <praiskup@redhat.com> - 9.4.1209-2
|
2016-07-20 05:29:48 +00:00
|
|
|
- update to latest release version, thanks to Pavel Kajaba, Michael Simacek and
|
|
|
|
Vladimir Sitnikov for big help
|
2016-07-20 06:37:34 +00:00
|
|
|
- fix Provides, remove old compatibility hacks
|
2016-07-20 05:29:48 +00:00
|
|
|
|
2016-02-04 18:23:02 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 9.4.1200-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-18 15:42:12 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.4.1200-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-02-04 08:42:36 +00:00
|
|
|
* Wed Feb 04 2015 Pavel Raiskup <praiskup@redhat.com> - 9.4.1200-1
|
|
|
|
- rebase to most recent version (#1188827)
|
|
|
|
|
2014-07-14 07:06:24 +00:00
|
|
|
* Mon Jul 14 2014 Pavel Raiskup <praiskup@redhat.com> - 9.3.1102-1
|
2014-07-11 13:42:19 +00:00
|
|
|
- Rebase to most recent version (#1118667)
|
2014-07-14 07:06:24 +00:00
|
|
|
- revert back upstream commit for travis build
|
2014-07-11 13:42:19 +00:00
|
|
|
|
2014-06-07 16:54:55 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.3.1101-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-19 12:43:36 +00:00
|
|
|
* Mon May 19 2014 Pavel Raiskup <praiskup@redhat.com> - 9.3.1101-3
|
|
|
|
- run upstream testsuite when '%%runselftest' defined
|
|
|
|
|
2014-04-23 14:30:03 +00:00
|
|
|
* Wed Apr 23 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 9.3.1101-2
|
|
|
|
- Add explicit requires on java-headless
|
|
|
|
|
2014-04-23 07:51:20 +00:00
|
|
|
* Wed Apr 23 2014 Pavel Raiskup <praiskup@redhat.com> - 9.3.1101-1
|
|
|
|
- Rebase to most recent version (#1090366)
|
|
|
|
|
2014-03-28 14:29:36 +00:00
|
|
|
* Fri Mar 28 2014 Michael Simacek <msimacek@redhat.com> - 9.2.1002-5
|
|
|
|
- Use Requires: java-headless rebuild (#1067528)
|
|
|
|
|
2013-08-06 11:51:07 +00:00
|
|
|
* Tue Aug 06 2013 Pavel Raiskup <praiskup@redhat.com> - 9.2.1002-4
|
|
|
|
- add javadoc subpackage
|
|
|
|
|
2013-08-06 11:38:37 +00:00
|
|
|
* Tue Aug 06 2013 Pavel Raiskup <praiskup@redhat.com> - 9.2.1002-4
|
|
|
|
- don't use removed macro %%add_to_maven_depmap (#992816)
|
2013-08-06 11:39:28 +00:00
|
|
|
- lint: trim-lines, reuse %%{name} macro, fedora-review fixes
|
2013-08-06 11:43:33 +00:00
|
|
|
- merge cleanup changes by Stano Ochotnicky
|
2013-08-06 11:38:37 +00:00
|
|
|
|
2013-08-04 04:58:45 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.2.1002-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 18:14:04 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.2.1002-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-14 20:43:36 +00:00
|
|
|
* Wed Nov 14 2012 Tom Lane <tgl@redhat.com> 9.2.1002-1
|
|
|
|
- Update to build 9.2-1002 (just to correct mispackaging of source tarball)
|
|
|
|
|
2012-11-13 23:39:35 +00:00
|
|
|
* Tue Nov 13 2012 Tom Lane <tgl@redhat.com> 9.2.1001-1
|
|
|
|
- Update to build 9.2-1001 for compatibility with PostgreSQL 9.2
|
|
|
|
|
2012-07-23 01:44:17 +00:00
|
|
|
* Sun Jul 22 2012 Tom Lane <tgl@redhat.com> 9.1.902-1
|
|
|
|
- Update to build 9.1-902
|
|
|
|
|
2012-07-21 02:46:39 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.1.901-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-02-23 18:12:13 +00:00
|
|
|
* Thu Feb 23 2012 Tom Lane <tgl@redhat.com> 9.1.901-3
|
|
|
|
- Change BuildRequires: java-1.6.0-openjdk-devel to just java-devel.
|
|
|
|
As of 9.1-901, upstream has support for JDBC4.1, so we don't have to
|
|
|
|
restrict to JDK6 anymore, and Fedora is moving to JDK7
|
|
|
|
Resolves: #796580
|
|
|
|
|
2012-01-14 01:09:29 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.1.901-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-09-12 06:52:36 +00:00
|
|
|
* Mon Sep 12 2011 Tom Lane <tgl@redhat.com> 9.1.901-1
|
|
|
|
- Update to build 9.1-901 for compatibility with PostgreSQL 9.1
|
|
|
|
|
2011-08-15 20:08:21 +00:00
|
|
|
* Mon Aug 15 2011 Tom Lane <tgl@redhat.com> 9.0.801-4
|
2011-08-15 20:25:11 +00:00
|
|
|
- Add BuildRequires: java-1.6.0-openjdk-devel to ensure we have recent JDK
|
2011-08-15 20:08:21 +00:00
|
|
|
Related: #730588
|
|
|
|
- Remove long-obsolete minimum versions from BuildRequires
|
|
|
|
|
2011-07-17 20:36:19 +00:00
|
|
|
* Sun Jul 17 2011 Tom Lane <tgl@redhat.com> 9.0.801-3
|
|
|
|
- Switch to non-GCJ build, since GCJ is now deprecated in Fedora
|
|
|
|
Resolves: #722247
|
|
|
|
- Use %%{_mavendepmapfragdir} to fix FTBFS with maven 3
|
|
|
|
|
2011-02-09 16:12:39 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0.801-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-29 21:32:33 +00:00
|
|
|
* Wed Dec 29 2010 Tom Lane <tgl@redhat.com> 9.0.801-1
|
|
|
|
- Update to build 9.0-801
|
|
|
|
|
2010-05-31 19:43:44 +00:00
|
|
|
* Mon May 31 2010 Tom Lane <tgl@redhat.com> 8.4.701-4
|
|
|
|
- Update gcj_support sections to meet Packaging/GCJGuidelines;
|
|
|
|
fixes FTBFS in F-14 rawhide
|
|
|
|
|
2009-11-24 19:42:51 +00:00
|
|
|
* Tue Nov 24 2009 Tom Lane <tgl@redhat.com> 8.4.701-3
|
|
|
|
- Seems the .pom file *must* have a package version number in it, sigh
|
|
|
|
Resolves: #538487
|
|
|
|
|
2009-11-23 16:32:13 +00:00
|
|
|
* Mon Nov 23 2009 Tom Lane <tgl@redhat.com> 8.4.701-2
|
|
|
|
- Add a .pom file to ease use by maven-based packages (courtesy Deepak Bhole)
|
|
|
|
Resolves: #538487
|
|
|
|
|
2009-08-18 04:00:50 +00:00
|
|
|
* Tue Aug 18 2009 Tom Lane <tgl@redhat.com> 8.4.701-1
|
|
|
|
- Update to build 8.4-701
|
|
|
|
|
2009-07-26 19:15:30 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:8.3.603-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-04-21 18:20:39 +00:00
|
|
|
* Tue Apr 21 2009 Tom Lane <tgl@redhat.com> 8.3.603-3
|
|
|
|
- Avoid multilib conflict caused by overeager attempt to rebuild translations
|
|
|
|
|
2009-02-27 01:46:35 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:8.3.603-2.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-07-09 21:51:55 +00:00
|
|
|
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> 8.3.603-1.1
|
|
|
|
- drop repotag
|
|
|
|
|
2008-02-12 17:09:37 +00:00
|
|
|
* Tue Feb 12 2008 Tom Lane <tgl@redhat.com> 8.3.603-1jpp
|
|
|
|
- Update to build 8.3-603
|
|
|
|
|
2007-08-12 22:40:35 +00:00
|
|
|
* Sun Aug 12 2007 Tom Lane <tgl@redhat.com> 8.2.506-1jpp
|
|
|
|
- Update to build 8.2-506
|
|
|
|
|
2007-04-24 17:58:19 +00:00
|
|
|
* Tue Apr 24 2007 Tom Lane <tgl@redhat.com> 8.2.505-1jpp
|
2007-04-23 22:28:57 +00:00
|
|
|
- Update to build 8.2-505
|
2007-04-24 17:58:19 +00:00
|
|
|
- Work around 1.4 vs 1.5 versioning inconsistency
|
2007-04-23 22:28:57 +00:00
|
|
|
|
2006-12-15 23:39:09 +00:00
|
|
|
* Fri Dec 15 2006 Tom Lane <tgl@redhat.com> 8.2.504-1jpp
|
|
|
|
- Update to build 8.2-504
|
|
|
|
|
2006-08-16 21:56:22 +00:00
|
|
|
* Wed Aug 16 2006 Tom Lane <tgl@redhat.com> 8.1.407-1jpp.4
|
|
|
|
- Fix Requires: for rebuild-gcj-db (bz #202544)
|
|
|
|
|
2006-08-16 16:57:06 +00:00
|
|
|
* Wed Aug 16 2006 Fernando Nasser <fnasser@redhat.com> 8.1.407-1jpp.3
|
|
|
|
- Merge with upstream
|
|
|
|
|
2006-07-22 08:45:07 +00:00
|
|
|
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> 8.1.407-1jpp.2
|
|
|
|
- Rebuilt
|
|
|
|
|
2006-07-12 07:52:10 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0:8.1.407-1jpp.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-14 20:25:18 +00:00
|
|
|
* Wed Jun 14 2006 Tom Lane <tgl@redhat.com> 8.1.407-1jpp
|
|
|
|
- Update to build 8.1-407
|
|
|
|
|
2006-03-27 21:41:47 +00:00
|
|
|
* Mon Mar 27 2006 Tom Lane <tgl@redhat.com> 8.1.405-2jpp
|
|
|
|
- Back-patch upstream fix to support unspecified-type strings.
|
|
|
|
|
2006-02-16 21:10:22 +00:00
|
|
|
* Thu Feb 16 2006 Tom Lane <tgl@redhat.com> 8.1.405-1jpp
|
|
|
|
- Split postgresql-jdbc into its own SRPM (at last).
|
|
|
|
- Build it from source. Add support for gcj compilation.
|