pgbuilder_pel7ppc64bebuilder0
7 years ago
commit
545d580bf0
13 changed files with 2886 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||||||
|
#!.gitignore |
||||||
|
BUILD/ |
||||||
|
BUILDROOT/ |
||||||
|
TMP/ |
||||||
|
SRPMS/ |
||||||
|
RPMS/ |
||||||
|
SOURCES/*.zip |
||||||
|
SOURCES/*.tar.gz |
||||||
|
SOURCES/*.tar.bz2 |
||||||
|
SOURCES/*.tar.xz |
@ -0,0 +1,67 @@ |
|||||||
|
# |
||||||
|
# Simplified makefile for running the PostgreSQL regression tests |
||||||
|
# in an RPM installation |
||||||
|
# |
||||||
|
|
||||||
|
# maximum simultaneous connections for parallel tests |
||||||
|
MAXCONNOPT = |
||||||
|
ifdef MAX_CONNECTIONS |
||||||
|
MAXCONNOPT += --max-connections=$(MAX_CONNECTIONS) |
||||||
|
endif |
||||||
|
|
||||||
|
# locale |
||||||
|
NOLOCALE = |
||||||
|
ifdef NO_LOCALE |
||||||
|
NOLOCALE += --no-locale |
||||||
|
endif |
||||||
|
|
||||||
|
srcdir := . |
||||||
|
|
||||||
|
REGRESS_OPTS += --dlpath=. |
||||||
|
|
||||||
|
pg_regress_locale_flags = $(if $(ENCODING),--encoding=$(ENCODING)) $(NOLOCALE) |
||||||
|
|
||||||
|
pg_regress_installcheck = ./pg_regress --inputdir=$(srcdir) --bindir=@bindir@ $(pg_regress_locale_flags) |
||||||
|
|
||||||
|
# Test input and expected files. These are created by pg_regress itself, so we |
||||||
|
# don't have a rule to create them. We do need rules to clean them however. |
||||||
|
ifile_list := $(subst .source,, $(notdir $(wildcard $(srcdir)/input/*.source))) |
||||||
|
input_files := $(foreach file, $(ifile_list), sql/$(file).sql) |
||||||
|
ofile_list := $(subst .source,, $(notdir $(wildcard $(srcdir)/output/*.source))) |
||||||
|
output_files := $(foreach file, $(ofile_list), expected/$(file).out) |
||||||
|
|
||||||
|
abs_srcdir := $(shell pwd) |
||||||
|
abs_builddir := $(shell pwd) |
||||||
|
|
||||||
|
check: installcheck-parallel |
||||||
|
|
||||||
|
installcheck: cleandirs |
||||||
|
$(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/serial_schedule $(EXTRA_TESTS) |
||||||
|
|
||||||
|
installcheck-parallel: cleandirs |
||||||
|
$(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) $(EXTRA_TESTS) |
||||||
|
|
||||||
|
# The tests command the server to write into testtablespace and results. |
||||||
|
# On a SELinux-enabled system this will fail unless we mark those directories |
||||||
|
# as writable by the server. |
||||||
|
cleandirs: |
||||||
|
-rm -rf testtablespace results |
||||||
|
mkdir testtablespace results |
||||||
|
[ -x /usr/bin/chcon ] && /usr/bin/chcon -u system_u -r object_r -t postgresql_db_t testtablespace results |
||||||
|
|
||||||
|
# old interfaces follow... |
||||||
|
|
||||||
|
runcheck: check |
||||||
|
runtest: installcheck |
||||||
|
runtest-parallel: installcheck-parallel |
||||||
|
|
||||||
|
|
||||||
|
## |
||||||
|
## Clean up |
||||||
|
## |
||||||
|
|
||||||
|
clean distclean maintainer-clean: |
||||||
|
rm -f $(output_files) $(input_files) |
||||||
|
rm -rf testtablespace |
||||||
|
rm -rf results tmp_check log |
||||||
|
rm -f regression.diffs regression.out regress.out run_check.out |
@ -0,0 +1,58 @@ |
|||||||
|
#! /bin/sh |
||||||
|
|
||||||
|
# This script builds the PDF version of the PostgreSQL documentation. |
||||||
|
# |
||||||
|
# In principle we could do this as part of the RPM build, but there are |
||||||
|
# good reasons not to: |
||||||
|
# 1. The build would take longer and have a larger BuildRequires footprint. |
||||||
|
# 2. The generated PDF has timestamps in it, which would inevitably result |
||||||
|
# in multilib conflicts due to slightly different timestamps. |
||||||
|
# So instead, we run this manually when rebasing to a new upstream release, |
||||||
|
# and treat the resulting PDF as a separate Source file. |
||||||
|
# |
||||||
|
# You will need to have the docbook packages installed to run this. |
||||||
|
# Expect it to take about 20 minutes and use about 160MB of disk. |
||||||
|
|
||||||
|
set -e |
||||||
|
|
||||||
|
# Pass package version (e.g., 9.1.2) as argument |
||||||
|
VERSION=$1 |
||||||
|
|
||||||
|
test -z "$VERSION" && VERSION=`awk '/^Version:/ { print $2; }' postgresql.spec` |
||||||
|
|
||||||
|
TARGETFILE=postgresql-$VERSION-US.pdf |
||||||
|
test -f "$TARGETFILE" && echo "$TARGETFILE exists" && exit 1 |
||||||
|
|
||||||
|
echo Building $TARGETFILE ... |
||||||
|
|
||||||
|
# Unpack postgresql |
||||||
|
|
||||||
|
rm -rf postgresql-$VERSION |
||||||
|
|
||||||
|
tar xfj postgresql-$VERSION.tar.bz2 |
||||||
|
|
||||||
|
cd postgresql-$VERSION |
||||||
|
|
||||||
|
# Apply any patches that affect the PDF documentation |
||||||
|
|
||||||
|
# patch -p1 < ../xxx.patch |
||||||
|
|
||||||
|
# Configure ... |
||||||
|
|
||||||
|
./configure >/dev/null |
||||||
|
|
||||||
|
# Build the PDF docs |
||||||
|
|
||||||
|
cd doc/src/sgml |
||||||
|
|
||||||
|
make postgres-US.pdf >make.log |
||||||
|
|
||||||
|
mv -f postgres-US.pdf ../../../../$TARGETFILE |
||||||
|
|
||||||
|
# Clean up |
||||||
|
|
||||||
|
cd ../../../.. |
||||||
|
|
||||||
|
rm -rf postgresql-$VERSION |
||||||
|
|
||||||
|
exit 0 |
Binary file not shown.
@ -0,0 +1,4 @@ |
|||||||
|
[ -f /etc/profile ] && source /etc/profile |
||||||
|
|
||||||
|
PGDATA=/var/lib/pgsql/data |
||||||
|
export PGDATA |
@ -0,0 +1,41 @@ |
|||||||
|
Default to stderr-based logging with a week's worth of daily logfiles. |
||||||
|
|
||||||
|
|
||||||
|
diff -Naur postgresql-9.1rc1.orig/src/backend/utils/misc/postgresql.conf.sample postgresql-9.1rc1/src/backend/utils/misc/postgresql.conf.sample |
||||||
|
--- postgresql-9.1rc1.orig/src/backend/utils/misc/postgresql.conf.sample 2011-08-18 17:23:13.000000000 -0400 |
||||||
|
+++ postgresql-9.1rc1/src/backend/utils/misc/postgresql.conf.sample 2011-08-18 18:39:39.697526799 -0400 |
||||||
|
@@ -279,7 +279,7 @@ |
||||||
|
# requires logging_collector to be on. |
||||||
|
|
||||||
|
# This is used when logging to stderr: |
||||||
|
-#logging_collector = off # Enable capturing of stderr and csvlog |
||||||
|
+logging_collector = on # Enable capturing of stderr and csvlog |
||||||
|
# into log files. Required to be on for |
||||||
|
# csvlogs. |
||||||
|
# (change requires restart) |
||||||
|
@@ -355,11 +355,11 @@ |
||||||
|
# These are only used if logging_collector is on: |
||||||
|
#log_directory = 'log' # directory where log files are written, |
||||||
|
# can be absolute or relative to PGDATA |
||||||
|
-#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern, |
||||||
|
+log_filename = 'postgresql-%a.log' # log file name pattern, |
||||||
|
# can include strftime() escapes |
||||||
|
#log_file_mode = 0600 # creation mode for log files, |
||||||
|
# begin with 0 to use octal notation |
||||||
|
-#log_truncate_on_rotation = off # If on, an existing log file with the |
||||||
|
+log_truncate_on_rotation = on # If on, an existing log file with the |
||||||
|
# same name as the new log file will be |
||||||
|
# truncated rather than appended to. |
||||||
|
# But such truncation only occurs on |
||||||
|
@@ -367,9 +367,9 @@ |
||||||
|
# or size-driven rotation. Default is |
||||||
|
# off, meaning append to existing files |
||||||
|
# in all cases. |
||||||
|
-#log_rotation_age = 1d # Automatic rotation of logfiles will |
||||||
|
+log_rotation_age = 1d # Automatic rotation of logfiles will |
||||||
|
# happen after that time. 0 disables. |
||||||
|
-#log_rotation_size = 10MB # Automatic rotation of logfiles will |
||||||
|
+log_rotation_size = 0 # Automatic rotation of logfiles will |
||||||
|
# happen after that much log output. |
||||||
|
# 0 disables. |
||||||
|
|
@ -0,0 +1,49 @@ |
|||||||
|
PostgreSQL ecpg/initdb manual page fixes |
||||||
|
|
||||||
|
This was generated based on automatic Red Hat manual page scan (private |
||||||
|
RHBZ#948933). |
||||||
|
|
||||||
|
diff -up ./doc/src/sgml/man1/ecpg.1.man948933 ./doc/src/sgml/man1/ecpg.1 |
||||||
|
--- ./doc/src/sgml/man1/ecpg.1.man948933 2014-12-16 02:13:15.000000000 +0100 |
||||||
|
+++ ./doc/src/sgml/man1/ecpg.1 2014-12-23 11:26:37.883644047 +0100 |
||||||
|
@@ -80,6 +80,11 @@ INFORMIX_SE\&. |
||||||
|
Define a C preprocessor symbol\&. |
||||||
|
.RE |
||||||
|
.PP |
||||||
|
+\fB\-h \fR |
||||||
|
+.RS 4 |
||||||
|
+Parse a header file, this option includes option \fB\-c\fR\&. |
||||||
|
+.RE |
||||||
|
+.PP |
||||||
|
\fB\-i\fR |
||||||
|
.RS 4 |
||||||
|
Parse system include files as well\&. |
||||||
|
@@ -128,6 +133,11 @@ Allow question mark as placeholder for c |
||||||
|
.RE |
||||||
|
.RE |
||||||
|
.PP |
||||||
|
+\fB\-\-regression\fR |
||||||
|
+.RS 4 |
||||||
|
+Run in regression testing mode\&. |
||||||
|
+.RE |
||||||
|
+.PP |
||||||
|
\fB\-t\fR |
||||||
|
.RS 4 |
||||||
|
Turn on autocommit of transactions\&. In this mode, each SQL command is automatically committed unless it is inside an explicit transaction block\&. In the default mode, commands are committed only when |
||||||
|
diff -up ./doc/src/sgml/man1/initdb.1.man948933 ./doc/src/sgml/man1/initdb.1 |
||||||
|
--- ./doc/src/sgml/man1/initdb.1.man948933 2014-12-16 02:13:21.000000000 +0100 |
||||||
|
+++ ./doc/src/sgml/man1/initdb.1 2014-12-23 11:26:37.883644047 +0100 |
||||||
|
@@ -281,6 +281,13 @@ determines that an error prevented it fr |
||||||
|
.PP |
||||||
|
Other options: |
||||||
|
.PP |
||||||
|
+\fB\-s\fR |
||||||
|
+.br |
||||||
|
+\fB\-\-show\fR |
||||||
|
+.RS 4 |
||||||
|
+Print the internal settings, then exit\&. |
||||||
|
+.RE |
||||||
|
+.PP |
||||||
|
\fB\-V\fR |
||||||
|
.br |
||||||
|
\fB\-\-version\fR |
@ -0,0 +1,53 @@ |
|||||||
|
Change the built-in default socket directory to be /var/run/postgresql. |
||||||
|
For backwards compatibility with (probably non-libpq-based) clients that |
||||||
|
might still expect to find the socket in /tmp, also create a socket in |
||||||
|
/tmp. This is to resolve communication problems with clients operating |
||||||
|
under systemd's PrivateTmp environment, which won't be using the same |
||||||
|
global /tmp directory as the server; see bug #825448. |
||||||
|
|
||||||
|
Note that we apply the socket directory change at the level of the |
||||||
|
hard-wired defaults in the C code, not by just twiddling the setting in |
||||||
|
postgresql.conf.sample; this is so that the change will take effect on |
||||||
|
server package update, without requiring any existing postgresql.conf |
||||||
|
to be updated. (Of course, a user who dislikes this behavior can still |
||||||
|
override it via postgresql.conf.) |
||||||
|
|
||||||
|
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c |
||||||
|
index 9481f2d..75532c7 100644 |
||||||
|
--- a/src/backend/utils/misc/guc.c |
||||||
|
+++ b/src/backend/utils/misc/guc.c |
||||||
|
@@ -3196,7 +3196,7 @@ static struct config_string ConfigureNamesString[] = |
||||||
|
}, |
||||||
|
&Unix_socket_directories, |
||||||
|
#ifdef HAVE_UNIX_SOCKETS |
||||||
|
- DEFAULT_PGSOCKET_DIR, |
||||||
|
+ DEFAULT_PGSOCKET_DIR ", /tmp", |
||||||
|
#else |
||||||
|
"", |
||||||
|
#endif |
||||||
|
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c |
||||||
|
index feeff9e..3e3d784 100644 |
||||||
|
--- a/src/bin/initdb/initdb.c |
||||||
|
+++ b/src/bin/initdb/initdb.c |
||||||
|
@@ -1234,7 +1234,7 @@ setup_config(void) |
||||||
|
|
||||||
|
#ifdef HAVE_UNIX_SOCKETS |
||||||
|
snprintf(repltok, sizeof(repltok), "#unix_socket_directories = '%s'", |
||||||
|
- DEFAULT_PGSOCKET_DIR); |
||||||
|
+ DEFAULT_PGSOCKET_DIR ", /tmp"); |
||||||
|
#else |
||||||
|
snprintf(repltok, sizeof(repltok), "#unix_socket_directories = ''"); |
||||||
|
#endif |
||||||
|
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h |
||||||
|
index e278fa0..9ee15d4 100644 |
||||||
|
--- a/src/include/pg_config_manual.h |
||||||
|
+++ b/src/include/pg_config_manual.h |
||||||
|
@@ -169,7 +169,7 @@ |
||||||
|
* here's where to twiddle it. You can also override this at runtime |
||||||
|
* with the postmaster's -k switch. |
||||||
|
*/ |
||||||
|
-#define DEFAULT_PGSOCKET_DIR "/tmp" |
||||||
|
+#define DEFAULT_PGSOCKET_DIR "/var/run/postgresql" |
||||||
|
|
||||||
|
/* |
||||||
|
* This is the default event source for Windows event log. |
@ -0,0 +1,3 @@ |
|||||||
|
#%PAM-1.0 |
||||||
|
auth include password-auth |
||||||
|
account include password-auth |
@ -0,0 +1 @@ |
|||||||
|
d /var/run/postgresql 0755 postgres postgres - |
@ -0,0 +1,72 @@ |
|||||||
|
For the RPMs, we want the custom installation directories to end in |
||||||
|
/pgsql not /postgresql. This is historical but not worth changing. |
||||||
|
|
||||||
|
Notice that this patch also makes the appending of /pgsql unconditional. |
||||||
|
This is to avoid unexpected behavior if the RPM is built in a working |
||||||
|
directory whose path happens to include "postgres" or "pgsql" already. |
||||||
|
However, datadir and sysconfdir are already set up in the specfile's |
||||||
|
configure call, so we do not have to append anything to them. |
||||||
|
|
||||||
|
|
||||||
|
diff -Naur postgresql-9.0.1.orig/src/Makefile.global.in postgresql-9.0.1/src/Makefile.global.in |
||||||
|
--- postgresql-9.0.1.orig/src/Makefile.global.in 2010-10-01 10:25:44.000000000 -0400 |
||||||
|
+++ postgresql-9.0.1/src/Makefile.global.in 2010-10-11 11:52:05.224975308 -0400 |
||||||
|
@@ -55,8 +55,7 @@ |
||||||
|
# Installation directories |
||||||
|
# |
||||||
|
# These are set by the equivalent --xxxdir configure options. We |
||||||
|
-# append "postgresql" to some of them, if the string does not already |
||||||
|
-# contain "pgsql" or "postgres", in order to avoid directory clutter. |
||||||
|
+# append "pgsql" to some of them, in order to avoid directory clutter. |
||||||
|
# |
||||||
|
# In a PGXS build, we cannot use the values inserted into Makefile.global |
||||||
|
# by configure, since the installation tree may have been relocated. |
||||||
|
@@ -74,45 +73,23 @@ |
||||||
|
bindir := @bindir@ |
||||||
|
|
||||||
|
datadir := @datadir@ |
||||||
|
-ifeq "$(findstring pgsql, $(datadir))" "" |
||||||
|
-ifeq "$(findstring postgres, $(datadir))" "" |
||||||
|
-override datadir := $(datadir)/postgresql |
||||||
|
-endif |
||||||
|
-endif |
||||||
|
|
||||||
|
sysconfdir := @sysconfdir@ |
||||||
|
-ifeq "$(findstring pgsql, $(sysconfdir))" "" |
||||||
|
-ifeq "$(findstring postgres, $(sysconfdir))" "" |
||||||
|
-override sysconfdir := $(sysconfdir)/postgresql |
||||||
|
-endif |
||||||
|
-endif |
||||||
|
|
||||||
|
libdir := @libdir@ |
||||||
|
|
||||||
|
pkglibdir = $(libdir) |
||||||
|
-ifeq "$(findstring pgsql, $(pkglibdir))" "" |
||||||
|
-ifeq "$(findstring postgres, $(pkglibdir))" "" |
||||||
|
-override pkglibdir := $(pkglibdir)/postgresql |
||||||
|
-endif |
||||||
|
-endif |
||||||
|
+override pkglibdir := $(pkglibdir)/pgsql |
||||||
|
|
||||||
|
includedir := @includedir@ |
||||||
|
|
||||||
|
pkgincludedir = $(includedir) |
||||||
|
-ifeq "$(findstring pgsql, $(pkgincludedir))" "" |
||||||
|
-ifeq "$(findstring postgres, $(pkgincludedir))" "" |
||||||
|
-override pkgincludedir := $(pkgincludedir)/postgresql |
||||||
|
-endif |
||||||
|
-endif |
||||||
|
+override pkgincludedir := $(pkgincludedir)/pgsql |
||||||
|
|
||||||
|
mandir := @mandir@ |
||||||
|
|
||||||
|
docdir := @docdir@ |
||||||
|
-ifeq "$(findstring pgsql, $(docdir))" "" |
||||||
|
-ifeq "$(findstring postgres, $(docdir))" "" |
||||||
|
-override docdir := $(docdir)/postgresql |
||||||
|
-endif |
||||||
|
-endif |
||||||
|
+override docdir := $(docdir)/pgsql |
||||||
|
|
||||||
|
htmldir := @htmldir@ |
||||||
|
|
@ -0,0 +1,326 @@ |
|||||||
|
%global with_python3 0 |
||||||
|
%global python_runtimes python python-debug |
||||||
|
|
||||||
|
Summary: A PostgreSQL database adapter for Python |
||||||
|
Name: python-psycopg2 |
||||||
|
Version: 2.6.1 |
||||||
|
Release: 5%{?dist} |
||||||
|
# The exceptions allow linking to OpenSSL and PostgreSQL's libpq |
||||||
|
License: LGPLv3+ with exceptions |
||||||
|
Group: Applications/Databases |
||||||
|
Url: http://www.psycopg.org/psycopg/ |
||||||
|
Source0: http://www.psycopg.org/psycopg/tarballs/PSYCOPG-2-6/psycopg2-%{version}.tar.gz |
||||||
|
BuildRequires: postgresql-devel |
||||||
|
BuildRequires: python-devel |
||||||
|
BuildRequires: python-debug |
||||||
|
BuildRequires: python-sphinx |
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
||||||
|
Conflicts: python-psycopg2-zope < %{version} |
||||||
|
|
||||||
|
|
||||||
|
%description |
||||||
|
Psycopg is the most popular PostgreSQL adapter for the Python |
||||||
|
programming language. At its core it fully implements the Python DB |
||||||
|
API 2.0 specifications. Several extensions allow access to many of the |
||||||
|
features offered by PostgreSQL. |
||||||
|
|
||||||
|
|
||||||
|
%package debug |
||||||
|
Summary: A PostgreSQL database adapter for Python 2 (debug build) |
||||||
|
# Require the base package, as we're sharing .py/.pyc files: |
||||||
|
Requires: %{name} = %{version}-%{release} |
||||||
|
%description debug |
||||||
|
This is a build of the psycopg PostgreSQL database adapter for the debug |
||||||
|
build of Python 2. |
||||||
|
|
||||||
|
|
||||||
|
%prep |
||||||
|
%setup -q -n psycopg2-%{version} |
||||||
|
|
||||||
|
|
||||||
|
%build |
||||||
|
for python in %{python_runtimes} ; do |
||||||
|
$python setup.py build |
||||||
|
done |
||||||
|
# Fix for wrong-file-end-of-line-encoding problem; upstream also must fix this. |
||||||
|
for i in `find doc -iname "*.html"`; do sed -i 's/\r//' $i; done |
||||||
|
for i in `find doc -iname "*.css"`; do sed -i 's/\r//' $i; done |
||||||
|
# Get rid of a "hidden" file that rpmlint complains about |
||||||
|
rm -f doc/html/.buildinfo |
||||||
|
|
||||||
|
|
||||||
|
%install |
||||||
|
DoInstall() { |
||||||
|
PythonBinary=$1 |
||||||
|
|
||||||
|
Python_SiteArch=$($PythonBinary -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))") |
||||||
|
|
||||||
|
mkdir -p %{buildroot}$Python_SiteArch/psycopg2 |
||||||
|
$PythonBinary setup.py install --no-compile --root %{buildroot} |
||||||
|
|
||||||
|
# We're not currently interested in packaging the test suite. |
||||||
|
rm -rf %{buildroot}$Python_SiteArch/psycopg2/tests |
||||||
|
} |
||||||
|
rm -rf %{buildroot} |
||||||
|
for python in %{python_runtimes} ; do |
||||||
|
DoInstall $python |
||||||
|
done |
||||||
|
|
||||||
|
|
||||||
|
%clean |
||||||
|
rm -rf %{buildroot} |
||||||
|
|
||||||
|
|
||||||
|
%files |
||||||
|
%defattr(-,root,root) |
||||||
|
%doc AUTHORS LICENSE NEWS README.rst |
||||||
|
%dir %{python_sitearch}/psycopg2 |
||||||
|
%{python_sitearch}/psycopg2/*.py |
||||||
|
#%{python_sitearch}/psycopg2/*.pyc |
||||||
|
%{python_sitearch}/psycopg2/_psycopg.so |
||||||
|
#%{python_sitearch}/psycopg2/*.pyo |
||||||
|
%{python_sitearch}/psycopg2-%{version}-py2*.egg-info |
||||||
|
|
||||||
|
|
||||||
|
%files debug |
||||||
|
%defattr(-,root,root) |
||||||
|
%doc LICENSE |
||||||
|
%{python_sitearch}/psycopg2/_psycopg_d.so |
||||||
|
|
||||||
|
|
||||||
|
%changelog |
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-5 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||||
|
|
||||||
|
* Sun Nov 15 2015 Pavel Raiskup <praiskup@redhat.com> - 2.6.1-4 |
||||||
|
- again bump for new Python 3.5, not build previously? |
||||||
|
- fix rpmlint issues |
||||||
|
- no pyo files with python 3.5 |
||||||
|
|
||||||
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 |
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||||
|
|
||||||
|
* Mon Jun 15 2015 Jozef Mlich <jmlich@redhat.com> 2.6.1-1 |
||||||
|
- Update to 2.6.1 |
||||||
|
|
||||||
|
* Mon Feb 9 2015 Devrim Gündüz <devrim@gunduz.org> 2.6-1 |
||||||
|
- Update to 2.6, per changes described at: |
||||||
|
http://www.psycopg.org/psycopg/articles/2015/02/09/psycopg-26-and-255-released/ |
||||||
|
|
||||||
|
* Tue Jan 13 2015 Devrim Gündüz <devrim@gunduz.org> 2.5.4-1 |
||||||
|
- Update to 2.5.4, per changes described at: |
||||||
|
http://www.psycopg.org/psycopg/articles/2014/08/30/psycopg-254-released |
||||||
|
|
||||||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild |
||||||
|
|
||||||
|
* Fri Jul 04 2014 Pavel Raiskup <praiskup@redhat.com> - 2.5.3-1 |
||||||
|
- rebase to most recent upstream version, per release notes: |
||||||
|
http://www.psycopg.org/psycopg/articles/2014/05/13/psycopg-253-released/ |
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.2-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||||
|
|
||||||
|
* Tue May 13 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2.5.2-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 |
||||||
|
|
||||||
|
* Tue Jan 7 2014 Devrim Gündüz <devrim@gunduz.org> 2.5.2-1 |
||||||
|
- Update to 2.5.2, per changes described at: |
||||||
|
http://www.psycopg.org/psycopg/articles/2014/01/07/psycopg-252-released |
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||||
|
|
||||||
|
* Sun Jul 07 2013 Pavel Raiskup <praiskup@redhat.com> - 2.5.1-1 |
||||||
|
- rebase to 2.5.1 |
||||||
|
|
||||||
|
* Thu May 16 2013 Devrim Gündüz <devrim@gunduz.org> 2.5-1 |
||||||
|
- Update to 2.5, per changes described at: |
||||||
|
http://www.psycopg.org/psycopg/articles/2013/04/07/psycopg-25-released/ |
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-7 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-6 |
||||||
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3 |
||||||
|
|
||||||
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-5 |
||||||
|
- generalize python 3 fileglobbing to work with both Python 3.2 and 3.3 |
||||||
|
|
||||||
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-4 |
||||||
|
- replace "python3.2dmu" with "python3-debug"; with_python3 fixes |
||||||
|
|
||||||
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-3 |
||||||
|
- add with_python3 conditional |
||||||
|
|
||||||
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Apr 7 2012 Tom Lane <tgl@redhat.com> 2.4.5-1 |
||||||
|
- Update to 2.4.5 |
||||||
|
|
||||||
|
* Thu Feb 2 2012 Tom Lane <tgl@redhat.com> 2.4.4-1 |
||||||
|
- Update to 2.4.4 |
||||||
|
- More specfile neatnik-ism |
||||||
|
|
||||||
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||||
|
|
||||||
|
* Tue Nov 29 2011 Tom Lane <tgl@redhat.com> 2.4.2-2 |
||||||
|
- Fix mistaken %%dir marking on python3 files, per Dan Horak |
||||||
|
|
||||||
|
* Sat Jun 18 2011 Tom Lane <tgl@redhat.com> 2.4.2-1 |
||||||
|
- Update to 2.4.2 |
||||||
|
Related: #711095 |
||||||
|
- Some neatnik specfile cleanups |
||||||
|
|
||||||
|
* Thu Feb 10 2011 David Malcolm <dmalcolm@redhat.com> - 2.4-0.beta2 |
||||||
|
- 2.4.0-beta2 |
||||||
|
- add python 2 debug, python3 (optimized) and python3-debug subpackages |
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||||
|
|
||||||
|
* Wed Dec 29 2010 Tom Lane <tgl@redhat.com> 2.3.2-1 |
||||||
|
- Update to 2.3.2 |
||||||
|
- Clean up a few rpmlint warnings |
||||||
|
|
||||||
|
* Fri Dec 03 2010 Jason L Tibbitts III <tibbs@math.uh.edu> - 2.2.2-3 |
||||||
|
- Fix incorrect (and invalid) License: tag. |
||||||
|
|
||||||
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.2.2-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild |
||||||
|
|
||||||
|
* Tue Jul 20 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.2.2-1 |
||||||
|
- Update to 2.2.2 |
||||||
|
|
||||||
|
* Tue May 18 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.2.1-1 |
||||||
|
- Update to 2.2.1 |
||||||
|
- Improve description for 2.2 features. |
||||||
|
- Changelog for 2.2.0 is: |
||||||
|
http://initd.org/pub/software/psycopg/ChangeLog-2.2 |
||||||
|
|
||||||
|
* Wed Mar 17 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.14-1 |
||||||
|
- Update to 2.0.14 |
||||||
|
- Update license (upstream switched to LGPL3) |
||||||
|
|
||||||
|
* Sun Jan 24 2010 Tom Lane <tgl@redhat.com> 2.0.13-2 |
||||||
|
- Fix rpmlint complaints: remove unneeded explicit Requires:, use Conflicts: |
||||||
|
instead of bogus Obsoletes: to indicate lack of zope subpackage |
||||||
|
|
||||||
|
* Sun Oct 18 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.13-1 |
||||||
|
- Update to 2.0.13 |
||||||
|
|
||||||
|
* Fri Aug 14 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.12-1 |
||||||
|
- Update to 2.0.12 |
||||||
|
|
||||||
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.11-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||||
|
|
||||||
|
* Tue May 19 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.11-1 |
||||||
|
- Update to 2.0.11 |
||||||
|
|
||||||
|
* Tue Apr 21 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.10-1 |
||||||
|
- Update to 2.0.10 |
||||||
|
|
||||||
|
* Fri Mar 20 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.9-1 |
||||||
|
- Update to 2.0.9 |
||||||
|
|
||||||
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.8-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.8-2 |
||||||
|
- Rebuild for Python 2.6 |
||||||
|
|
||||||
|
* Sat Nov 29 2008 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.8-1 |
||||||
|
- Update to 2.0.8 |
||||||
|
|
||||||
|
* Sat Nov 29 2008 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.8-1 |
||||||
|
- Update to 2.0.8 |
||||||
|
|
||||||
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.7-3 |
||||||
|
- Rebuild for Python 2.6 |
||||||
|
|
||||||
|
* Thu May 29 2008 Todd Zullinger <tmz@pobox.com> - 2.0.7-2 |
||||||
|
- fix license tags |
||||||
|
|
||||||
|
* Wed Apr 30 2008 Devrim GUNDUZ <devrim@commandprompt.com> 2.0.7-1 |
||||||
|
- Update to 2.0.7 |
||||||
|
|
||||||
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.6-4.1 |
||||||
|
- Autorebuild for GCC 4.3 |
||||||
|
|
||||||
|
* Mon Jan 21 2008 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-3.1 |
||||||
|
- Rebuilt against PostgreSQL 8.3 |
||||||
|
|
||||||
|
* Thu Jan 3 2008 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-3 |
||||||
|
- Rebuild for rawhide changes |
||||||
|
|
||||||
|
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.0.6-2 |
||||||
|
- Rebuild for selinux ppc32 issue. |
||||||
|
|
||||||
|
* Fri Jun 15 2007 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-1 |
||||||
|
- Update to 2.0.6 |
||||||
|
|
||||||
|
* Thu Apr 26 2007 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-8 |
||||||
|
- Disabled zope package temporarily. |
||||||
|
|
||||||
|
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-7 |
||||||
|
- Rebuilt |
||||||
|
|
||||||
|
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-5 |
||||||
|
- Bumped up spec version |
||||||
|
|
||||||
|
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-4 |
||||||
|
- Rebuilt for PostgreSQL 8.2.0 |
||||||
|
|
||||||
|
* Mon Sep 11 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-3 |
||||||
|
- Rebuilt |
||||||
|
|
||||||
|
* Wed Sep 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-2 |
||||||
|
- Remove ghost'ing, per Python Packaging Guidelines |
||||||
|
|
||||||
|
* Mon Sep 4 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-1 |
||||||
|
- Update to 2.0.5.1 |
||||||
|
|
||||||
|
* Sun Aug 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-3 |
||||||
|
- Fixed zope package dependencies and macro definition, per bugzilla review (#199784) |
||||||
|
- Fixed zope package directory ownership, per bugzilla review (#199784) |
||||||
|
- Fixed cp usage for zope subpackage, per bugzilla review (#199784) |
||||||
|
|
||||||
|
* Mon Jul 31 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-2 |
||||||
|
- Fixed 64 bit builds |
||||||
|
- Fixed license |
||||||
|
- Added Zope subpackage |
||||||
|
- Fixed typo in doc description |
||||||
|
- Added macro for zope subpackage dir |
||||||
|
|
||||||
|
* Mon Jul 31 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-1 |
||||||
|
- Update to 2.0.3 |
||||||
|
- Fixed spec file, per bugzilla review (#199784) |
||||||
|
|
||||||
|
* Sat Jul 22 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-3 |
||||||
|
- Removed python dependency, per bugzilla review. (#199784) |
||||||
|
- Changed doc package group, per bugzilla review. (#199784) |
||||||
|
- Replaced dos2unix with sed, per guidelines and bugzilla review (#199784) |
||||||
|
- Fix changelog dates |
||||||
|
|
||||||
|
* Sat Jul 22 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-2 |
||||||
|
- Added dos2unix to buildrequires |
||||||
|
- removed python related part from package name |
||||||
|
|
||||||
|
* Fri Jul 21 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-1 |
||||||
|
- Fix rpmlint errors, including dos2unix solution |
||||||
|
- Re-engineered spec file |
||||||
|
|
||||||
|
* Mon Jan 23 2006 - Devrim GUNDUZ <devrim@commandprompt.com> |
||||||
|
- First 2.0.X build |
||||||
|
|
||||||
|
* Mon Jan 23 2006 - Devrim GUNDUZ <devrim@commandprompt.com> |
||||||
|
- Update to 1.2.21 |
||||||
|
|
||||||
|
* Tue Dec 06 2005 - Devrim GUNDUZ <devrim@commandprompt.com> |
||||||
|
- Initial release for 1.1.20 |
Loading…
Reference in new issue