summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcvsdist <cvsdist@fedoraproject.org>2004-09-09 10:41:46 +0000
committercvsdist <cvsdist@fedoraproject.org>2004-09-09 10:41:46 +0000
commit7fe3c310105200bc6fb2aa3946e06e8269613e39 (patch)
treed21f8d4cea1073c8f0441e3022aac5522ed5f06e
parent5a04de739604b61c44bedb9d4ed00f6701103b42 (diff)
downloadpostgresql-setup-postgresql-7_2_4-5_80.tar.gz
postgresql-setup-postgresql-7_2_4-5_80.tar.xz
postgresql-setup-postgresql-7_2_4-5_80.zip
auto-import postgresql-7.2.4-5.80 from postgresql-7.2.4-5.80.src.rpmpostgresql-7_2_4-5_80
-rw-r--r--.cvsignore2
-rwxr-xr-xpostgresql.spec36
-rw-r--r--sources2
3 files changed, 35 insertions, 5 deletions
diff --git a/.cvsignore b/.cvsignore
index 8ffdcca..5d60585 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1,3 +1,3 @@
migration-scripts.tar.gz
-postgresql-7.2.3.tar.gz
+postgresql-7.2.4.tar.gz
postgresql-dump.1.gz
diff --git a/postgresql.spec b/postgresql.spec
index 2827aac..48ee43c 100755
--- a/postgresql.spec
+++ b/postgresql.spec
@@ -36,7 +36,7 @@
Summary: PostgreSQL client programs and libraries.
Name: postgresql
-Version: 7.2.3
+Version: 7.2.4
# Conventions for PostgreSQL Global Development Group RPM releases:
@@ -76,7 +76,7 @@ Source12: postgresql-dump.1.gz
Source14: rh-pgdump.sh
Source15: postgresql-bashprofile
Patch1: rpm-pgsql-%{version}.patch
-Patch2: postgresql-%{version}-geo_ops.patch
+Patch2: postgresql-%{version}-security.patch
Patch3: postgresql-%{version}-tighten.patch
Buildrequires: perl glibc-devel
Prereq: /sbin/ldconfig initscripts
@@ -708,12 +708,14 @@ rm -f perlfiles.list
/usr/lib/pgsql/moddatetime.so
/usr/lib/pgsql/noup.so
/usr/lib/pgsql/pgcrypto.so
+/usr/lib/pgsql/pgstattuple.so
/usr/lib/pgsql/refint.so
/usr/lib/pgsql/rserv.so
/usr/lib/pgsql/rtree_gist.so
/usr/lib/pgsql/seg.so
/usr/lib/pgsql/string_io.so
/usr/lib/pgsql/timetravel.so
+/usr/lib/pgsql/tsearch.so
/usr/lib/pgsql/user_locks.so
/usr/share/pgsql/contrib/
/usr/bin/dbf2pg
@@ -739,7 +741,8 @@ rm -f perlfiles.list
/usr/bin/ApplySnapshot
/usr/bin/InitRservTest
/usr/bin/vacuumlo
-%doc contrib/*/README.* contrib/spi/*.example
+%doc %{_docdir}/postgresql/contrib/README.*
+%doc %{_docdir}/postgresql/contrib/*.example
%files libs -f libpq.lang
%defattr(-,root,root)
@@ -764,6 +767,7 @@ rm -f perlfiles.list
%{_mandir}/man1/ipcclean.1*
%{_mandir}/man1/pg_ctl.1*
%{_mandir}/man1/pg_passwd.1*
+%{_mandir}/man1/pg_restore.1*
%{_mandir}/man1/postgres.1*
%{_mandir}/man1/postmaster.1*
%{_mandir}/man1/postgresql-dump.1*
@@ -793,6 +797,9 @@ rm -f perlfiles.list
/usr/lib/libecpg.a
/usr/lib/libpq++.a
/usr/lib/libpgeasy.a
+%if %odbc
+/usr/lib/libpsqlodbc.a
+%endif
%if %tcl
/usr/lib/libpgtcl.a
%endif
@@ -808,6 +815,10 @@ rm -f perlfiles.list
/usr/bin/pgtclsh
%{_mandir}/man1/pgtclsh.1*
/usr/lib/pgsql/pltcl.so
+/usr/bin/pltcl_delmod
+/usr/bin/pltcl_listmod
+/usr/bin/pltcl_loadmod
+/usr/share/pgsql/unknown.pltcl
%endif
%if %tkpkg
@@ -829,6 +840,7 @@ rm -f perlfiles.list
%defattr(-,root,root)
%attr(755,root,root) /usr/lib/libpsqlodbc.so*
/usr/share/pgsql/odbc.sql
+/usr/share/pgsql/odbc-drop.sql
%endif
%if %perl
@@ -851,6 +863,7 @@ rm -f perlfiles.list
%doc src/interfaces/python/README src/interfaces/python/tutorial
/usr/lib/python%{pyver}/site-packages/_pgmodule.so
/usr/lib/python%{pyver}/site-packages/*.py
+/usr/lib/pgsql/plpython.so
%endif
%if %jdbc
@@ -870,6 +883,23 @@ rm -f perlfiles.list
%endif
%changelog
+* Mon Nov 03 2003 David Jee <djee@redhat.com>
+- 7.2.4-4.(73,80) - rename the to_ascii() patch to a generic security
+patch, and add another security patch to it, which avoids running off
+the end of to_timestamp()'s input string when the input is shorter than
+the format string expects.
+- 7.2.4-5.(73,80) - fix the entry above to say to_timestamp(), not
+to_char()
+
+* Fri Oct 31 2003 David Jee <djee@redhat.com>
+- 7.2.4-2.(73,80) - merge changes from 7.2.4-2PGDG release: Fixed some
+missing files in devel, python, odbc, tcl, and contrib packages.
+- 7.2.4-3.(73,80) - include a patch for to_ascii() buffer overrun
+vulnerability.
+
+* Tue Oct 28 2003 David Jee <djee@redhat.com>
+- 7.2.4-1.(73,80) - initial Red Hat build.
+
* Wed Dec 20 2002 Andrew Overholt <overholt@redhat.com>
- 7.2.3-4.(73,80) - add buffer overrun patch for geo_ops
- 7.2.3-5.(73,80) - add pg_hba.conf tightening patch
diff --git a/sources b/sources
index 3e6cc6c..ed4c8c9 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
5e9beca9c039be1ded2e51a0edcd9fba migration-scripts.tar.gz
-cf665c93a08a60e4a99db3a6dfe7ba10 postgresql-7.2.3.tar.gz
+b767f204a91097f1b3a6d2b4c39eac7a postgresql-7.2.4.tar.gz
3d2e8223f6bb715659cbecedeae81ccc postgresql-dump.1.gz