[php-channel-horde] Initial import

Nick Bebout nb at fedoraproject.org
Sun Jan 29 22:21:01 UTC 2012


commit 6501f8b2c1d7ffd6704668f625feda278bcf0d71
Author: Nick Bebout <nb at fedoraproject.org>
Date:   Sun Jan 29 16:20:51 2012 -0600

    Initial import

 channel.xml            |   16 ++++++++++++
 php-channel-horde.spec |   60 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+), 0 deletions(-)
---
diff --git a/channel.xml b/channel.xml
new file mode 100644
index 0000000..3edbb3d
--- /dev/null
+++ b/channel.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<channel version="1.0" xmlns="http://pear.php.net/channel-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/channel-1.0 http://pear.php.net/dtd/channel-1.0.xsd">
+    <name>pear.horde.org</name>
+    <summary>Horde PEAR server</summary>
+    <suggestedalias>horde</suggestedalias>
+    <servers>
+        <primary>
+            <rest>
+                <baseurl type="REST1.0">http://pear.horde.org/rest/</baseurl>
+                <baseurl type="REST1.1">http://pear.horde.org/rest/</baseurl>
+                <baseurl type="REST1.2">http://pear.horde.org/rest/</baseurl>
+                <baseurl type="REST1.3">http://pear.horde.org/rest/</baseurl>
+            </rest>
+        </primary>
+    </servers>
+</channel>
\ No newline at end of file
diff --git a/php-channel-horde.spec b/php-channel-horde.spec
new file mode 100644
index 0000000..0a8ba07
--- /dev/null
+++ b/php-channel-horde.spec
@@ -0,0 +1,60 @@
+Name:           php-channel-horde
+Version:        1.0
+Release:        1%{?dist}
+Summary:        Adds pear.horde.org channel to PEAR
+
+Group:          Development/Languages
+License:        Public Domain
+URL:            http://pear.horde.org/
+Source0:        http://pear.horde.org/channel.xml
+
+BuildArch:      noarch
+BuildRequires:  php-pear >= 1:1.4.9-1.2
+Requires:       php-pear(PEAR)
+Requires(post): %{__pear}
+Requires(postun): %{__pear}
+Provides:       php-channel(pear.horde.org)
+
+%description
+This package adds the pear.horde.org 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 $RPM_BUILD_ROOT
+mkdir -p $RPM_BUILD_ROOT%{pear_xmldir}
+install -pm 644 %{SOURCE0} $RPM_BUILD_ROOT%{pear_xmldir}/pear.horde.org.xml
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post
+if [ $1 -eq  1 ] ; then
+   %{__pear} channel-add %{pear_xmldir}/pear.horde.org.xml > /dev/null || :
+else
+   %{__pear} channel-update %{pear_xmldir}/pear.horde.org.xml > /dev/null ||:
+fi
+
+
+%postun
+if [ $1 -eq 0 ] ; then
+   %{__pear} channel-delete pear.horde.org > /dev/null || :
+fi
+
+
+%files
+%{pear_xmldir}/pear.horde.org.xml
+
+%changelog
+* Sat Jan 28 2012 Nick Bebout <nb at fedoraproject.org> - 1.0-1
+- Initial package


More information about the scm-commits mailing list