[php-horde-Horde-Browser] Initial import

Nick Bebout nb at fedoraproject.org
Thu Dec 20 21:58:50 UTC 2012


commit ca8f0104948f2807dcfcc09349c932ec4b6c6c7e
Author: Nick Bebout <nb at fedoraproject.org>
Date:   Thu Dec 20 15:56:35 2012 -0600

    Initial import

 .gitignore                   |    1 +
 php-horde-Horde-Browser.spec |   97 ++++++++++++++++++++++++++++++++++++++++++
 sources                      |    1 +
 3 files changed, 99 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..3a41a5a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Horde_Browser-2.0.2.tgz
diff --git a/php-horde-Horde-Browser.spec b/php-horde-Horde-Browser.spec
new file mode 100644
index 0000000..1748ceb
--- /dev/null
+++ b/php-horde-Horde-Browser.spec
@@ -0,0 +1,97 @@
+%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}}
+%{!?pear_metadir: %global pear_metadir %{pear_phpdir}}
+%global pear_channel pear.horde.org
+%global pear_name Horde_Browser
+
+Name:           php-horde-Horde-Browser
+Version:        2.0.2
+Release:        1%{?dist}
+Summary:        Horde Browser API
+
+Group:          Development/Libraries
+License:        LGPLv2+
+URL:            http://pear.horde.org
+Source0:        http://pear.horde.org/get/%{pear_name}-%{version}.tgz
+
+BuildArch:      noarch
+BuildRequires:  php-pear(PEAR) >= 1.7.0
+BuildRequires:  gettext
+BuildRequires:  php-channel(%pear_channel)
+
+Requires(post): %{__pear}
+Requires(postun): %{__pear}
+Requires:       php-pear(pear.horde.org/Horde_Exception) >= 2.0.0
+Requires:       php-pear(pear.horde.org/Horde_Util) >= 2.0.0
+Requires:       php-pear(PEAR) >= 1.7.0
+Requires:       php-common >= 5.3.0
+Requires:       php-channel(%pear_channel)
+Requires:       php-pcre
+
+Provides:       php-pear(pear.horde.org/Horde_Browser) = %{version}
+
+%description
+The Horde_Browser class provides an API for getting information about the
+current user's browser and its capabilities.
+
+%prep
+%setup -q -c
+cd %{pear_name}-%{version}
+
+# Don't install .po and .pot files
+# Remove checksum for .mo, as we regenerate them
+sed -e '/%{pear_name}.po/d' \
+    -e '/Horde_Other.po/d' \
+    -e '/%{pear_name}.mo/s/md5sum=.*name=/name=/' \
+    ../package.xml >%{name}.xml
+
+%build
+cd %{pear_name}-%{version}
+
+# Regenerate the locales
+for po in $(find locale -name \*.po)
+do
+   msgfmt $po -o $(dirname $po)/$(basename $po .po).mo
+done
+
+%install
+cd %{pear_name}-%{version}
+%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml
+
+# Clean up unnecessary files
+rm -rf $RPM_BUILD_ROOT%{pear_metadir}/.??*
+
+# Install XML package description
+mkdir -p $RPM_BUILD_ROOT%{pear_xmldir}
+install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir}
+%find_lang %{pear_name}
+
+%post
+%{__pear} install --nodeps --soft --force --register-only \
+    %{pear_xmldir}/%{name}.xml >/dev/null || :
+
+%postun
+if [ $1 -eq 0 ] ; then
+    %{__pear} uninstall --nodeps --ignore-errors --register-only \
+        pear.horde.org/%{pear_name} >/dev/null || :
+fi
+
+%files -f %{pear_name}-%{version}/%{pear_name}.lang
+%doc %{pear_docdir}/%{pear_name}
+%{pear_xmldir}/%{name}.xml
+%{pear_phpdir}/Horde/Browser
+%{pear_phpdir}/Horde/Browser.php
+# own locales (non standard) directories, .mo own by find_lang
+%dir %{pear_datadir}/Horde_Browser
+%dir %{pear_datadir}/Horde_Browser/locale
+%dir %{pear_datadir}/Horde_Browser/locale/*
+%dir %{pear_datadir}/Horde_Browser/locale/*/LC_MESSAGES
+
+%changelog
+* Wed Dec 12 2012 Nick Bebout <nb at fedoraproject.org> - 2.0.2-1
+- Upgrade to 2.0.2
+
+* Thu Jun 21 2012 Nick Bebout <nb at fedoraproject.org> - 1.0.7-1
+- Upgrade to 1.0.7
+
+* Sat Jan 28 2012 Nick Bebout <nb at fedoraproject.org> - 1.0.5-1
+- Initial package
diff --git a/sources b/sources
index e69de29..824b14a 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+0567260322579bba949876f51e1e2243  Horde_Browser-2.0.2.tgz


More information about the scm-commits mailing list