Compare commits
14 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a01a0e8a0b | ||
|
|
8ccbd9afb1 | ||
|
|
b21dccae1d | ||
|
|
0341da7a5e | ||
|
|
88c2bbe049 | ||
|
|
37afefd0d3 | ||
|
|
1b6ac6a8c3 | ||
|
|
ee0a5ccc76 | ||
|
|
1b0c05ffb6 | ||
|
|
6f95032a26 | ||
|
|
ab419a78f7 | ||
|
|
fa64be91d4 | ||
|
|
694f9b7af6 | ||
|
|
7664a774e4 |
7 changed files with 117 additions and 30 deletions
|
|
@ -1 +0,0 @@
|
|||
pgpool-II-1.2.tar.gz
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
pgpool-II-2.1.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: postgresql-pgpool-II
|
||||
# $Id$
|
||||
NAME := postgresql-pgpool-II
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
33
pgpool.conf.sample.patch
Normal file
33
pgpool.conf.sample.patch
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
--- pgpool.conf.sample.old 2008-08-12 08:26:07.000000000 +0300
|
||||
+++ pgpool.conf.sample 2008-08-12 08:27:31.000000000 +0300
|
||||
@@ -12,16 +12,14 @@
|
||||
# Port number for pgpool communication manager
|
||||
pcp_port = 9898
|
||||
|
||||
-# Unix domain socket path. (The Debian package defaults to
|
||||
-# /var/run/postgresql.)
|
||||
-socket_dir = '/tmp'
|
||||
+# Unix domain socket path.
|
||||
+socket_dir = '/var/run'
|
||||
|
||||
# Unix domain socket path for pgpool communication manager.
|
||||
-# (Debian package defaults to /var/run/postgresql)
|
||||
-pcp_socket_dir = '/tmp'
|
||||
+pcp_socket_dir = '/var/run'
|
||||
|
||||
-# Unix domain socket path for the backend. Debian package defaults to /var/run/postgresql!
|
||||
-backend_socket_dir = '/tmp'
|
||||
+# Unix domain socket path for the backend.
|
||||
+backend_socket_dir = '/var/run'
|
||||
|
||||
# pgpool communication manager timeout. 0 means no timeout, but strongly not recommended!
|
||||
pcp_timeout = 10
|
||||
@@ -54,7 +52,7 @@
|
||||
authentication_timeout = 60
|
||||
|
||||
# Logging directory
|
||||
-logdir = '/tmp'
|
||||
+logdir = '/var/run'
|
||||
|
||||
# Replication mode
|
||||
replication_mode = false
|
||||
27
pool_process_query-2.0.1.patch
Normal file
27
pool_process_query-2.0.1.patch
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
*** pool_process_query.c 2007/11/21 09:37:39 1.79
|
||||
--- pool_process_query.c.old 2007/12/01 13:26:36 1.80
|
||||
***************
|
||||
*** 1,6 ****
|
||||
/* -*-pgsql-c-*- */
|
||||
/*
|
||||
! * $Header: /home/fedora/jkeating/pkgs/rpms/postgresql-pgpool-II/F-8/pool_process_query-2.0.1.patch,v 1.1 2008/01/14 08:24:14 devrim Exp $
|
||||
*
|
||||
* pgpool: a language independent connection pool server for PostgreSQL
|
||||
* written by Tatsuo Ishii
|
||||
--- 1,6 ----
|
||||
/* -*-pgsql-c-*- */
|
||||
/*
|
||||
! * $Header: /home/fedora/jkeating/pkgs/rpms/postgresql-pgpool-II/F-8/pool_process_query-2.0.1.patch,v 1.1 2008/01/14 08:24:14 devrim Exp $
|
||||
*
|
||||
* pgpool: a language independent connection pool server for PostgreSQL
|
||||
* written by Tatsuo Ishii
|
||||
*************** POOL_STATUS SimpleForwardToBackend(char
|
||||
*** 3895,3901 ****
|
||||
|
||||
if (kind == 'S') /* Sync message? */
|
||||
{
|
||||
- pool_log("YYYYY");
|
||||
receive_sync = 1;
|
||||
}
|
||||
|
||||
--- 3895,3900 ----
|
||||
|
|
@ -2,14 +2,15 @@
|
|||
|
||||
Summary: Pgpool is a connection pooling/replication server for PostgreSQL
|
||||
Name: postgresql-%{short_name}
|
||||
Version: 1.2
|
||||
Release: 2%{?dist}
|
||||
Version: 2.1
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Group: Applications/Databases
|
||||
URL: http://pgpool.projects.PostgreSQL.org/pgpool-II/en
|
||||
Source0: http://pgfoundry.org/frs/download.php/1419/%{short_name}-%{version}.tar.gz
|
||||
Source0: http://pgfoundry.org/frs/download.php/1843/%{short_name}-%{version}.tar.gz
|
||||
Source1: pgpool.init
|
||||
Source2: pgpool.sysconfig
|
||||
Patch1: pgpool.conf.sample.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: postgresql-devel pam-devel
|
||||
|
||||
|
|
@ -36,13 +37,14 @@ DB nodes to be connected, which was not possible in pgpool-I.
|
|||
%package devel
|
||||
Summary: The development files for pgpool-II
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
Development headers and libraries for pgpool-II.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{short_name}-%{version}
|
||||
%patch1 -p0
|
||||
|
||||
%build
|
||||
%configure --with-pgsql-includedir=%{_includedir}/pgsql --with-pgsql-lib=%{_libdir}/pgsql --disable-static --with-pam --disable-rpath
|
||||
|
|
@ -52,11 +54,12 @@ make %{?_smp_flags}
|
|||
%install
|
||||
rm -rf %{buildroot}
|
||||
make %{?_smp_flags} DESTDIR=%{buildroot} install
|
||||
install -d %{buildroot}%{_datadir}/%{short_name}
|
||||
mv %{buildroot}/%{_sysconfdir}/*.conf.sample %{buildroot}%{_datadir}/%{short_name}
|
||||
install -d %{buildroot}%{_initrddir}
|
||||
install -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/pgpool
|
||||
install -d %{buildroot}%{_sysconfdir}/sysconfig
|
||||
install -m 755 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/pgpool
|
||||
install -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/pgpool
|
||||
|
||||
# nuke libtool archive and static lib
|
||||
rm -f %{buildroot}%{_libdir}/libpcp.{a,la}
|
||||
|
|
@ -64,7 +67,10 @@ rm -f %{buildroot}%{_libdir}/libpcp.{a,la}
|
|||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%post
|
||||
/sbin/ldconfig
|
||||
chkconfig --add pgpool
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
|
|
@ -77,13 +83,14 @@ rm -rf %{buildroot}
|
|||
%{_bindir}/pcp_node_info
|
||||
%{_bindir}/pcp_proc_count
|
||||
%{_bindir}/pcp_proc_info
|
||||
%{_bindir}/pcp_recovery_node
|
||||
%{_bindir}/pcp_stop_pgpool
|
||||
%{_bindir}/pcp_systemdb_info
|
||||
%{_bindir}/pg_md5
|
||||
%{_mandir}/man8/pgpool*
|
||||
%{_datadir}/%{short_name}/system_db.sql
|
||||
%{_libdir}/libpcp.so.*
|
||||
%attr(764,root,apache) %{_datadir}/%{short_name}/*.conf.sample
|
||||
%attr(764,root,root) %{_datadir}/%{short_name}/*.conf.sample
|
||||
%{_datadir}/%{short_name}/pgpool.pam
|
||||
%{_initrddir}/pgpool
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/pgpool
|
||||
|
|
@ -95,6 +102,47 @@ rm -rf %{buildroot}
|
|||
%{_libdir}/libpcp.so
|
||||
|
||||
%changelog
|
||||
* Tue Aug 12 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.1-1
|
||||
- Update to 2.1 Gold
|
||||
- Set group of sample config files to root, not apache. Fixes RH #442372.
|
||||
- Update patch #1
|
||||
|
||||
* Fri Apr 11 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.1-0.2.beta2
|
||||
- Fix Requires: issue, per #442021 (Alex Lancaster)
|
||||
|
||||
* Sun Apr 6 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.1-beta2
|
||||
- Update to 2.1 beta2
|
||||
|
||||
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.1-3.1
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Mon Jan 21 2008 Devrim GUNDUZ <devrim@commandprompt.com> 2.0.1-2.1
|
||||
- Rebuilt against PostgreSQL 8.3
|
||||
|
||||
* Sat Jan 19 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.0.1-2
|
||||
- Fix Requires of -devel package, per bz#429436
|
||||
|
||||
* Sun Jan 13 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.0.1-1
|
||||
- Update to 2.0.1
|
||||
- Add a temp patch that will disappear in 2.0.2
|
||||
|
||||
* Tue Oct 23 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.3-1
|
||||
- Update to 1.3
|
||||
|
||||
* Fri Oct 5 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2.1-1
|
||||
- Update to 1.2.1
|
||||
|
||||
* Wed Aug 29 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-5
|
||||
- Chmod sysconfig/pgpool to 644, not 755. Per BZ review.
|
||||
- Run chkconfig --add pgpool during %%post.
|
||||
|
||||
* Thu Aug 16 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-4
|
||||
- Fixed the directory name where sample conf files and sql files
|
||||
are installed.
|
||||
|
||||
* Sun Aug 5 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-3
|
||||
- Added a patch for sample conf file to use Fedora defaults
|
||||
|
||||
* Sun Aug 5 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-2
|
||||
- Added an init script for pgpool
|
||||
- Added /etc/sysconfig/pgpool
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
8fed94ed12769dacbbf8758b2154e5a7 pgpool-II-1.2.tar.gz
|
||||
cf02f9358f46849bd526798868e13162 pgpool-II-2.1.tar.gz
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue