Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e5b3478c99 |
3 changed files with 25 additions and 23 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1,2 +1 @@
|
||||||
/pgpool-II-3.4.1.tar.gz
|
/pgpool-II-3.4.6.tar.gz
|
||||||
/pgpool-II-3.4.2.tar.gz
|
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
|
|
||||||
Summary: Pgpool is a connection pooling/replication server for PostgreSQL
|
Summary: Pgpool is a connection pooling/replication server for PostgreSQL
|
||||||
Name: postgresql-%{short_name}
|
Name: postgresql-%{short_name}
|
||||||
Version: 3.4.2
|
Version: 3.4.6
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
URL: http://pgpool.net
|
URL: http://pgpool.net
|
||||||
|
|
@ -38,22 +38,22 @@ Provides: postgresql-pgpool = 3.4.3
|
||||||
Obsoletes: postgresql-pgpool <= 3.4.2
|
Obsoletes: postgresql-pgpool <= 3.4.2
|
||||||
|
|
||||||
%description
|
%description
|
||||||
pgpool-II is a inherited project of pgpool (to classify from
|
pgpool-II is a inherited project of pgpool (to classify from
|
||||||
pgpool-II, it is sometimes called as pgpool-I). For those of
|
pgpool-II, it is sometimes called as pgpool-I). For those of
|
||||||
you not familiar with pgpool-I, it is a multi-functional
|
you not familiar with pgpool-I, it is a multi-functional
|
||||||
middle ware for PostgreSQL that features connection pooling,
|
middle ware for PostgreSQL that features connection pooling,
|
||||||
replication and load balancing functions. pgpool-I allows a
|
replication and load balancing functions. pgpool-I allows a
|
||||||
user to connect at most two PostgreSQL servers for higher
|
user to connect at most two PostgreSQL servers for higher
|
||||||
availability or for higher search performance compared to a
|
availability or for higher search performance compared to a
|
||||||
single PostgreSQL server.
|
single PostgreSQL server.
|
||||||
|
|
||||||
pgpool-II, on the other hand, allows multiple PostgreSQL
|
pgpool-II, on the other hand, allows multiple PostgreSQL
|
||||||
servers (DB nodes) to be connected, which enables queries
|
servers (DB nodes) to be connected, which enables queries
|
||||||
to be executed simultaneously on all servers. In other words,
|
to be executed simultaneously on all servers. In other words,
|
||||||
it enables "parallel query" processing. Also, pgpool-II can
|
it enables "parallel query" processing. Also, pgpool-II can
|
||||||
be started as pgpool-I by changing configuration parameters.
|
be started as pgpool-I by changing configuration parameters.
|
||||||
pgpool-II that is executed in pgpool-I mode enables multiple
|
pgpool-II that is executed in pgpool-I mode enables multiple
|
||||||
DB nodes to be connected, which was not possible in pgpool-I.
|
DB nodes to be connected, which was not possible in pgpool-I.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: The development files for pgpool-II
|
Summary: The development files for pgpool-II
|
||||||
|
|
@ -129,7 +129,7 @@ install -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/pgpool
|
||||||
# nuke libtool archive and static lib
|
# nuke libtool archive and static lib
|
||||||
rm -f %{buildroot}%{_libdir}/libpcp.{a,la}
|
rm -f %{buildroot}%{_libdir}/libpcp.{a,la}
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
%if %{systemd_enabled}
|
%if %{systemd_enabled}
|
||||||
%systemd_post pgpool.service
|
%systemd_post pgpool.service
|
||||||
|
|
@ -149,7 +149,7 @@ if [ $1 -eq 0 ] ; then
|
||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
%if %{systemd_enabled}
|
%if %{systemd_enabled}
|
||||||
%systemd_postun_with_restart pgpool.service
|
%systemd_postun_with_restart pgpool.service
|
||||||
|
|
@ -191,7 +191,7 @@ fi
|
||||||
%dir %{_datadir}/%{short_name}
|
%dir %{_datadir}/%{short_name}
|
||||||
%{_datadir}/%{short_name}/insert_lock.sql
|
%{_datadir}/%{short_name}/insert_lock.sql
|
||||||
%{_datadir}/%{short_name}/system_db.sql
|
%{_datadir}/%{short_name}/system_db.sql
|
||||||
%{_datadir}/%{short_name}/pgpool.conf.sample-master-slave
|
%{_datadir}/%{short_name}/pgpool.conf.sample-master-slave
|
||||||
%{_datadir}/%{short_name}/pgpool.conf.sample-replication
|
%{_datadir}/%{short_name}/pgpool.conf.sample-replication
|
||||||
%{_datadir}/%{short_name}/pgpool.conf.sample-stream
|
%{_datadir}/%{short_name}/pgpool.conf.sample-stream
|
||||||
%{_libdir}/libpcp.so.*
|
%{_libdir}/libpcp.so.*
|
||||||
|
|
@ -228,6 +228,9 @@ fi
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue May 3 2016 Devrim Gündüz <devrim@gunduz.org> - 3.4.6-1
|
||||||
|
- Update to 3.4.6
|
||||||
|
|
||||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.2-2
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.2-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
|
@ -243,7 +246,7 @@ fi
|
||||||
requires postgresql-server(:MODULE_COMPAT_9.3)
|
requires postgresql-server(:MODULE_COMPAT_9.3)
|
||||||
|
|
||||||
* Mon Dec 15 2014 Jozef Mlich <jmlich@redhat.com> - 3.4.0-5
|
* Mon Dec 15 2014 Jozef Mlich <jmlich@redhat.com> - 3.4.0-5
|
||||||
- incorrect permissions on init script.
|
- incorrect permissions on init script.
|
||||||
|
|
||||||
* Thu Dec 11 2014 Jozef Mlich <jmlich@redhat.com> - 3.4.0-4
|
* Thu Dec 11 2014 Jozef Mlich <jmlich@redhat.com> - 3.4.0-4
|
||||||
- incorrect epoch in obsoletes of recovery subpackage
|
- incorrect epoch in obsoletes of recovery subpackage
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
a2872b2ff70b2530b324b3bab86d0eb3 pgpool-II-3.4.2.tar.gz
|
d90a22a75e395655e9d948b0c4a5968d pgpool-II-3.4.6.tar.gz
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue