From 4bac7638fc555942e966df4f94ac2139fbf86100 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 10 Jun 2012 07:07:08 +0200 Subject: repo reorg --- Makefile | 4 +++ channel.xml | 16 ++++++++++++ php-channel-pear2.spec | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 87 insertions(+) create mode 100644 Makefile create mode 100644 channel.xml create mode 100644 php-channel-pear2.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e65467 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../common/Makefile + diff --git a/channel.xml b/channel.xml new file mode 100644 index 0000000..519a4a2 --- /dev/null +++ b/channel.xml @@ -0,0 +1,16 @@ + + + pear2.php.net + pear2 + PEAR2 + + + + http://pear2.php.net/rest/ + http://pear2.php.net/rest/ + http://pear2.php.net/rest/ + http://pear2.php.net/rest/ + + + + diff --git a/php-channel-pear2.spec b/php-channel-pear2.spec new file mode 100644 index 0000000..5109be1 --- /dev/null +++ b/php-channel-pear2.spec @@ -0,0 +1,67 @@ +%global channel pear2.php.net + +Name: php-channel-pear2 +# Use Provided REST version +Version: 1.3 +Release: 1 +Summary: Adds pear2.php.net channel to PEAR + +Group: Development/Languages +License: Public domain +URL: http://pear2.php.net/ +Source0: http://pear2.php.net/channel.xml + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: php-pear(PEAR) >= 1.4.7 + +Requires: php-pear(PEAR) +Provides: php-channel(%{channel}) + +%description +This package adds the pear2.php.net channel which allows PEAR packages +from this channel to be installed. + + +%prep +%setup -q -c -T + + +%build +# Empty build section, nothing to build + + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{pear_xmldir} +install -pm 644 %{SOURCE0} %{buildroot}%{pear_xmldir}/%{channel}.xml + + +%clean +rm -rf %{buildroot} + + +%post +if [ $1 -eq 1 ] ; then + %{__pear} channel-add %{pear_xmldir}/%{channel}.xml > /dev/null || : +else + %{__pear} channel-update %{pear_xmldir}/%{channel}.xml > /dev/null ||: +fi + + +%postun +if [ $1 -eq 0 ] ; then + %{__pear} channel-delete %{channel} > /dev/null || : +fi + + +%files +%defattr(-,root,root,-) +%{pear_xmldir}/%{channel}.xml + + +%changelog +* Sun Feb 26 2012 Remi Collet - 1.3-1 +- initial RPM. + + -- cgit