From ed9e91fa847f09b520bffd7a77c0b38c94963eba Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 19 Dec 2012 07:15:46 +0100 Subject: php-channel-guzzle: import from rawhide --- channel.xml | 16 +++++++++++++ php-channel-guzzle.spec | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 channel.xml create mode 100644 php-channel-guzzle.spec diff --git a/channel.xml b/channel.xml new file mode 100644 index 0000000..65ed8d4 --- /dev/null +++ b/channel.xml @@ -0,0 +1,16 @@ + + + guzzlephp.org/pear + Guzzle PEAR channel + guzzle + + + + http://guzzlephp.org/pear/rest/ + http://guzzlephp.org/pear/rest/ + http://guzzlephp.org/pear/rest/ + http://guzzlephp.org/pear/rest/ + + + + \ No newline at end of file diff --git a/php-channel-guzzle.spec b/php-channel-guzzle.spec new file mode 100644 index 0000000..9df4505 --- /dev/null +++ b/php-channel-guzzle.spec @@ -0,0 +1,62 @@ +%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} + +%global pear_channel guzzlephp.org/pear + +Name: php-channel-guzzle +Version: 1.3 +Release: 1%{?dist} +Summary: Adds %{pear_channel} channel to PEAR + +Group: Development/Libraries +License: Public Domain +URL: http://%{pear_channel} +Source0: http://%{pear_channel}/channel.xml + +BuildArch: noarch +BuildRequires: php-pear(PEAR) + +Requires: php-pear(PEAR) +Requires(post): %{__pear} +Requires(postun): %{__pear} + +Provides: php-channel(%{pear_channel}) + +%description +This package adds the %{pear_channel} channel which allows PEAR packages +from this channel to be installed. + + +%prep +%setup -q -c -T + + +%build +# Empty build section, nothing required + + +%install +mkdir -p %{buildroot}%{pear_xmldir} +install -pm 644 %{SOURCE0} %{buildroot}%{pear_xmldir}/%{name}.xml + + +%post +if [ $1 -eq 1 ] ; then + %{__pear} channel-add %{pear_xmldir}/%{name}.xml > /dev/null || : +else + %{__pear} channel-update %{pear_xmldir}/%{name}.xml > /dev/null || : +fi + + +%postun +if [ $1 -eq 0 ] ; then + %{__pear} channel-delete %{pear_channel} > /dev/null || : +fi + + +%files +%{pear_xmldir}/%{name}.xml + + +%changelog +* Sat Dec 8 2012 Shawn Iwinski 1.3-1 +- Initial package (version matches channel REST version) -- cgit