2012-03-02 18:03:26 +00:00
|
|
|
%{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}}
|
|
|
|
|
|
|
|
# The project is pecl_http but the extension is only http
|
|
|
|
%global proj_name pecl_http
|
|
|
|
%global pecl_name http
|
2012-10-12 05:08:14 +00:00
|
|
|
%global prever beta1
|
2012-03-02 18:03:26 +00:00
|
|
|
|
|
|
|
Name: php-pecl-http
|
|
|
|
Version: 2.0.0
|
2012-10-12 05:08:14 +00:00
|
|
|
Release: 0.11.%{prever}%{?dist}
|
2012-03-02 18:03:26 +00:00
|
|
|
Summary: Extended HTTP support
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
Group: Development/Languages
|
|
|
|
URL: http://pecl.php.net/package/pecl_http
|
2012-10-12 05:08:14 +00:00
|
|
|
# upstream archive is corrupted, need to be repack
|
|
|
|
# tar xif pecl_http-2.0.0beta1.tgz
|
|
|
|
# tar cf pecl_http-2.0.0beta1.tgz package.xml pecl_http-2.0.0beta1
|
2012-03-02 18:03:26 +00:00
|
|
|
Source0: http://pecl.php.net/get/%{proj_name}-%{version}%{?prever}.tgz
|
|
|
|
|
|
|
|
# From http://www.php.net/manual/en/http.configuration.php
|
|
|
|
Source1: %{proj_name}.ini
|
|
|
|
|
2012-10-12 05:08:14 +00:00
|
|
|
BuildRequires: php-devel >= 5.3.0
|
|
|
|
BuildRequires: php-json
|
2012-03-02 18:03:26 +00:00
|
|
|
BuildRequires: php-pear
|
|
|
|
BuildRequires: pcre-devel
|
|
|
|
BuildRequires: zlib-devel >= 1.2.0.4
|
|
|
|
BuildRequires: libevent-devel >= 1.4
|
|
|
|
BuildRequires: curl-devel >= 7.18.2
|
|
|
|
# No yet available on fedora: BuildRequires: libserf-devel
|
|
|
|
|
|
|
|
Requires(post): %{__pecl}
|
|
|
|
Requires(postun): %{__pecl}
|
|
|
|
Requires: php(zend-abi) = %{php_zend_api}
|
|
|
|
Requires: php(api) = %{php_core_api}
|
2012-10-12 05:08:14 +00:00
|
|
|
Requires: php-json
|
2012-03-02 18:03:26 +00:00
|
|
|
|
2012-10-12 05:08:14 +00:00
|
|
|
Provides: php-pecl(%{proj_name}) = %{version}%{?prever}
|
|
|
|
Provides: php-pecl(%{proj_name})%{?_isa} = %{version}%{?prever}
|
|
|
|
Provides: php-pecl(%{pecl_name}) = %{version}%{?prever}
|
|
|
|
Provides: php-pecl(%{pecl_name})%{?_isa} = %{version}%{?prever}
|
|
|
|
|
|
|
|
# Filter shared private
|
2012-03-09 15:16:15 +00:00
|
|
|
%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$}
|
2012-03-02 18:03:26 +00:00
|
|
|
%{?filter_setup}
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
The HTTP extension aims to provide a convenient and powerful set of
|
|
|
|
functionality for major applications.
|
|
|
|
|
|
|
|
The HTTP extension eases handling of HTTP URLs, dates, redirects, headers
|
|
|
|
and messages in a HTTP context (both incoming and outgoing). It also provides
|
|
|
|
means for client negotiation of preferred language and charset, as well as
|
|
|
|
a convenient way to exchange arbitrary data with caching and resuming
|
|
|
|
capabilities.
|
|
|
|
|
|
|
|
Also provided is a powerful request and parallel interface.
|
|
|
|
|
|
|
|
Version 2 is completely incompatible to previous version.
|
|
|
|
|
|
|
|
Documentation : http://php.net/http
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Extended HTTP support developer files (header)
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: php-pecl-http%{?_isa} = %{version}-%{release}
|
2012-10-12 05:08:14 +00:00
|
|
|
Requires: php-devel%{?_isa} >= 5.3.0
|
2012-03-02 18:03:26 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
These are the files needed to compile programs using HTTP extension.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -c -q
|
|
|
|
|
|
|
|
extver=$(sed -n '/#define PHP_HTTP_EXT_VERSION/{s/.* "//;s/".*$//;p}' %{proj_name}-%{version}%{?prever}/php_http.h)
|
2012-10-12 05:08:14 +00:00
|
|
|
if test "x${extver}" != "x%{version}%{?prever}"; then
|
|
|
|
: Error: Upstream HTTP version is now ${extver}, expecting %{version}%{?prever}.
|
2012-03-02 18:03:26 +00:00
|
|
|
: Update the pdover macro and rebuild.
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cp %{SOURCE1} %{pecl_name}.ini
|
|
|
|
|
|
|
|
cp -pr %{proj_name}-%{version}%{?prever} %{proj_name}-zts
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
cd %{proj_name}-%{version}%{?prever}
|
|
|
|
%{_bindir}/phpize
|
|
|
|
%configure --with-php-config=%{_bindir}/php-config
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
cd ../%{proj_name}-zts
|
|
|
|
%{_bindir}/zts-phpize
|
|
|
|
%configure --with-php-config=%{_bindir}/zts-php-config
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
make -C %{proj_name}-%{version}%{?prever} \
|
|
|
|
install INSTALL_ROOT=%{buildroot}
|
|
|
|
|
|
|
|
make -C %{proj_name}-zts \
|
|
|
|
install INSTALL_ROOT=%{buildroot}
|
|
|
|
|
|
|
|
# Install XML package description
|
|
|
|
install -Dpm 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
|
|
|
|
|
2012-10-12 05:08:14 +00:00
|
|
|
# install config file (z-http.ini to be loaded after json)
|
|
|
|
install -Dpm644 %{pecl_name}.ini %{buildroot}%{php_inidir}/z-%{pecl_name}.ini
|
|
|
|
install -Dpm644 %{pecl_name}.ini %{buildroot}%{php_ztsinidir}/z-%{pecl_name}.ini
|
2012-03-02 18:03:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
# Minimal load test for NTS extension
|
2012-10-12 05:08:14 +00:00
|
|
|
ln -sf %{php_extdir}/json.so %{proj_name}-%{version}%{?prever}/modules
|
2012-03-02 18:03:26 +00:00
|
|
|
%{__php} --no-php-ini \
|
|
|
|
--define extension_dir=%{proj_name}-%{version}%{?prever}/modules \
|
2012-10-12 05:08:14 +00:00
|
|
|
--define extension=json.so \
|
2012-03-02 18:03:26 +00:00
|
|
|
--define extension=%{pecl_name}.so \
|
|
|
|
--modules | grep %{pecl_name}
|
|
|
|
|
|
|
|
# Minimal load test for ZTS extension
|
2012-10-12 05:08:14 +00:00
|
|
|
ln -sf %{php_ztsextdir}/json.so %{proj_name}-zts/modules
|
2012-03-02 18:03:26 +00:00
|
|
|
%{__ztsphp} --no-php-ini \
|
|
|
|
--define extension_dir=%{proj_name}-zts/modules \
|
2012-10-12 05:08:14 +00:00
|
|
|
--define extension=json.so \
|
2012-03-02 18:03:26 +00:00
|
|
|
--define extension=%{pecl_name}.so \
|
|
|
|
--modules | grep %{pecl_name}
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || :
|
|
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
%{pecl_uninstall} %{proj_name} >/dev/null || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc %{proj_name}-%{version}%{?prever}/{CREDITS,LICENSE,ThanksTo.txt}
|
2012-10-12 05:08:14 +00:00
|
|
|
%config(noreplace) %{php_inidir}/z-%{pecl_name}.ini
|
|
|
|
%config(noreplace) %{php_ztsinidir}/z-%{pecl_name}.ini
|
2012-03-02 18:03:26 +00:00
|
|
|
%{php_extdir}/%{pecl_name}.so
|
|
|
|
%{php_ztsextdir}/%{pecl_name}.so
|
|
|
|
%{pecl_xmldir}/%{name}.xml
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{php_incldir}/ext/%{pecl_name}
|
|
|
|
%{php_ztsincldir}/ext/%{pecl_name}
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2012-10-12 05:08:14 +00:00
|
|
|
* Fri Oct 12 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.11.beta1
|
|
|
|
- update to 2.0.0beta1
|
|
|
|
- must be load after json, to rename config to z-http.ini
|
|
|
|
- spec cleanups
|
|
|
|
|
2012-07-21 00:43:37 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-0.10.alpha1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-21 06:30:01 +00:00
|
|
|
* Sat Apr 21 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.9.alpha1
|
|
|
|
- update to 2.0.0alpha1
|
|
|
|
|
2012-03-31 15:14:55 +00:00
|
|
|
* Sat Mar 31 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.8.dev10
|
|
|
|
- update to 2.0.0dev10
|
|
|
|
|
2012-03-16 18:22:30 +00:00
|
|
|
* Fri Mar 16 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.7.dev8
|
|
|
|
- update to 2.0.0dev8
|
|
|
|
|
2012-03-09 15:16:15 +00:00
|
|
|
* Fri Mar 09 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.6.dev7
|
|
|
|
- update to 2.0.0dev7
|
|
|
|
|
2012-03-02 18:07:01 +00:00
|
|
|
* Fri Mar 02 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.5.dev6
|
|
|
|
- update to 2.0.0dev6
|
|
|
|
|
2012-03-02 18:03:26 +00:00
|
|
|
* Sat Feb 18 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.4.dev5
|
|
|
|
- update to 2.0.0dev5
|
|
|
|
- fix filters
|
|
|
|
|
|
|
|
* Wed Jan 25 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.3.dev4
|
|
|
|
- zts binary in /usr/bin with zts prefix
|
|
|
|
|
|
|
|
* Mon Jan 23 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.2.dev4
|
|
|
|
- update to 2.0.0dev4
|
|
|
|
- fix missing file https://bugs.php.net/60839
|
|
|
|
|
|
|
|
* Sun Jan 22 2012 Remi Collet <remi@fedoraproject.org> - 2.0.0-0.1.dev3
|
|
|
|
- initial package
|
|
|
|
|