From 297fa3a997b74a91776da4c0bf55fad34e936467 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 10 Jun 2012 07:06:04 +0200 Subject: repo reorg --- php-pecl-gearman.spec | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 php-pecl-gearman.spec (limited to 'php-pecl-gearman.spec') diff --git a/php-pecl-gearman.spec b/php-pecl-gearman.spec new file mode 100644 index 0000000..a981198 --- /dev/null +++ b/php-pecl-gearman.spec @@ -0,0 +1,154 @@ +%{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}} + +%global pecl_name gearman + + +Name: php-pecl-gearman +Version: 0.8.1 +Release: 2%{?dist} +Summary: PHP wrapper to libgearman + +Group: Development/Tools +License: PHP +URL: http://gearman.org +Source0: http://pecl.php.net/get/%{pecl_name}-%{version}.tgz + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: php-devel, libgearman-devel > 0.10 +BuildRequires: php-pear +# Required by phpize +BuildRequires: autoconf, automake, libtool + +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +Requires(post): %{__pecl} +Requires(postun): %{__pecl} + +# RPM 4.8 +%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} +%{?filter_setup} +# RPM 4.9 +%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}%{_libdir}/.*\\.so$ + + +%description +This extension uses libgearman library to provide API for +communicating with gearmand, and writing clients and workers + + +%prep +%setup -q -c + +extver=$(sed -n '/#define PHP_GEARMAN_VERSION/{s/.* "//;s/".*$//;p}' %{pecl_name}-%{version}/php_gearman.h) +if test "x${extver}" != "x%{version}"; then + : Error: Upstream version is ${extver}, expecting %{version}. + exit 1 +fi + +cat >%{pecl_name}.ini </dev/null || : + + +%postun +if [ $1 -eq 0 ] ; then + %{pecl_uninstall} %{pecl_name} >/dev/null || : +fi + + +%files +%defattr(-,root,root,-) +%doc %{pecl_name}-%{version}/{ChangeLog,README,CREDITS,EXPERIMENTAL,LICENSE} +%config(noreplace) %{php_inidir}/%{pecl_name}.ini +%config(noreplace) %{php_ztsinidir}/%{pecl_name}.ini +%{php_extdir}/%{pecl_name}.so +%{php_ztsextdir}/%{pecl_name}.so +%{pecl_xmldir}/%{name}.xml + + +%changelog +* Fri Dec 09 2011 Remi Collet - 0.8.1-2 +- update to 0.8.1, build against php 5.4 + +* Fri Dec 09 2011 Remi Collet - 0.8.1-1 +- update to 0.8.1 + +* Mon Nov 14 2011 Remi Collet - 0.8.0-2 +- build against php 5.4 + +* Sat Oct 15 2011 Remi Collet - 0.8.0-1 +- update to 0.8.0 +- ZTS extension +- spec cleanup and minimal %%check +- fix requires + +* Fri Aug 12 2011 Jesse Keating - 0.7.0-5 +- Rebuild for broken deps + +* Mon Apr 11 2011 Paul Whalen 0.7.0-4 +- fix setup and package.xml install + +* Mon Apr 11 2011 Paul Whalen 0.7.0-3 +- correct macros, add license to files + +* Fri Apr 08 2011 Paul Whalen 0.7.0-2 +- correct package following pecl packaging guidelines + +* Fri Mar 11 2011 Paul Whalen 0.7.0-1 +- Initial Packaging + -- cgit