[php-horde-Horde-Nls] Initial commit

Nick Bebout nb at fedoraproject.org
Mon Feb 20 03:01:52 UTC 2012


commit ce4877ec611918036442d95716cc89d714b7bf41
Author: Nick Bebout <nb at fedoraproject.org>
Date:   Sun Feb 19 21:01:45 2012 -0600

    Initial commit

 .gitignore               |    1 +
 php-horde-Horde-Nls.spec |   84 ++++++++++++++++++++++++++++++++++++++++++++++
 sources                  |    1 +
 3 files changed, 86 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..ac42018 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Horde_Nls-1.1.3.tgz
diff --git a/php-horde-Horde-Nls.spec b/php-horde-Horde-Nls.spec
new file mode 100644
index 0000000..3e39d3f
--- /dev/null
+++ b/php-horde-Horde-Nls.spec
@@ -0,0 +1,84 @@
+%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}}
+%global pear_name Horde_Nls
+
+Name:           php-horde-Horde-Nls
+Version:        1.1.3
+Release:        1%{?dist}
+Summary:        Native Language Support (NLS)
+
+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 >= 1:1.4.9-1.2
+BuildRequires:  gettext
+Requires(post): %{__pear}
+Requires(postun): %{__pear}
+Requires:       php-pear(pear.horde.org/Horde_Util) < 2.0.0
+Requires:       php-pear(PEAR) >= 1.7.0
+Provides:       php-pear(pear.horde.org/Horde_Nls) = %{version}
+BuildRequires:  php-channel(pear.horde.org)
+
+%description
+Common methods for handling language data, timezones, and hostname->country
+lookups.
+
+%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 '/%{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}
+rm -rf $RPM_BUILD_ROOT
+%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml
+
+# Clean up unnecessary files
+rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??*
+
+# 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/Nls
+%{pear_phpdir}/Horde/Nls.php
+# own locales (non standard) directories, .mo own by find_lang
+%dir %{pear_datadir}/Horde_Nls
+%dir %{pear_datadir}/Horde_Nls/locale
+%dir %{pear_datadir}/Horde_Nls/locale/*
+%dir %{pear_datadir}/Horde_Nls/locale/*/LC_MESSAGES
+
+%changelog
+* Sat Jan 28 2012 Nick Bebout <nb at fedoraproject.org> - 1.1.3-1
+- Initial package
diff --git a/sources b/sources
index e69de29..bb17597 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+1f8ed82b8d55d95c7dda87e34881e831  Horde_Nls-1.1.3.tgz


More information about the scm-commits mailing list