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