Back-patch upstream fix to support unspecified-type strings.

This commit is contained in:
Tom Lane 2006-03-27 21:41:47 +00:00
parent 02ff8f88ea
commit 71f37258f5

View File

@ -1,16 +1,18 @@
%define section devel
%define upstreamver 8.1-405 %define upstreamver 8.1-405
%define gcj_support 1 %define gcj_support 1
Summary: JDBC driver for PostgreSQL Summary: JDBC driver for PostgreSQL
Name: postgresql-jdbc Name: postgresql-jdbc
Version: 8.1.405 Version: 8.1.405
Release: 1jpp Release: 2jpp
Epoch: 0 Epoch: 0
License: BSD License: BSD
Group: Applications/Databases Group: Applications/Databases
URL: http://jdbc.postgresql.org/ URL: http://jdbc.postgresql.org/
Source0: http://jdbc.postgresql.org/download/%{name}-%{upstreamver}.src.tar.gz Source0: http://jdbc.postgresql.org/download/%{name}-%{upstreamver}.src.tar.gz
Patch1: postgresql-jdbc-unspec-string.patch
%if %{gcj_support} %if %{gcj_support}
%else %else
@ -44,6 +46,8 @@ rmdir %{name}-%{upstreamver}.src
# remove any binary libs # remove any binary libs
find -name "*.jar" -or -name "*.class" | xargs rm -f find -name "*.jar" -or -name "*.class" | xargs rm -f
%patch1 -p1
%build %build
export OPT_JAR_LIST="ant/ant-junit junit" export OPT_JAR_LIST="ant/ant-junit junit"
export CLASSPATH= export CLASSPATH=
@ -95,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT
%endif %endif
%changelog %changelog
* Mon Mar 27 2006 Tom Lane <tgl@redhat.com> 8.1.405-2jpp
- Back-patch upstream fix to support unspecified-type strings.
* Thu Feb 16 2006 Tom Lane <tgl@redhat.com> 8.1.405-1jpp * Thu Feb 16 2006 Tom Lane <tgl@redhat.com> 8.1.405-1jpp
- Split postgresql-jdbc into its own SRPM (at last). - Split postgresql-jdbc into its own SRPM (at last).
- Build it from source. Add support for gcj compilation. - Build it from source. Add support for gcj compilation.