From db5edf1494aaa6874144f6ddeda72f6cbf5f0ba6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 12 Nov 2012 10:27:49 +0100 Subject: php-sabredav-Sabre: backport --- Makefile | 4 +++ php-sabredav-Sabre.spec | 92 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 96 insertions(+) create mode 100644 Makefile create mode 100644 php-sabredav-Sabre.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile + diff --git a/php-sabredav-Sabre.spec b/php-sabredav-Sabre.spec new file mode 100644 index 0000000..f6b5fa9 --- /dev/null +++ b/php-sabredav-Sabre.spec @@ -0,0 +1,92 @@ +%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} +%global pear_name %(echo %{name} | sed -e 's/^php-sabredav-//' -e 's/-/_/g') +%global channelname pear.sabredav.org + +Name: php-sabredav-Sabre +Version: 1.0.0 +Release: 6%{?dist} +Summary: Base for Sabre_DAV packages + +License: BSD +URL: http://code.google.com/p/sabredav +Source0: http://pear.sabredav.org/get/%{pear_name}-%{version}.tgz + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: php-pear(PEAR) +BuildRequires: php-channel(%{channelname}) + +Requires: php-pear(PEAR) +Requires: php-common >= 5.1 +Requires: php-pdo +Requires: php-xml +Requires: php-mbstring + +Requires(post): %{__pear} +Requires(postun): %{__pear} +Requires: php-channel(%{channelname}) + +Provides: php-pear(%{pear_name}) = %{version} +Provides: php-pear(%{channelname}/%{pear_name}) = %{version} + +%description +The Base SabreDAV package provides some functionality used by all packages. + +%prep +%setup -q -c +[ -f package2.xml ] || mv package.xml package2.xml +mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml + +%build +# Empty build section, most likely nothing required. + +%install +cd %{pear_name}-%{version} +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_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 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} + + +%post +%{__pear} install --nodeps --soft --force --register-only \ + %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + +%postun +if [ $1 -eq 0 ] ; then + %{__pear} uninstall --nodeps --ignore-errors --register-only \ + %{pear_name} >/dev/null || : +fi + + +%files +%defattr(-,root,root,-) +%doc %{pear_docdir}/%{pear_name} +%{pear_xmldir}/%{pear_name}.xml +%{pear_phpdir}/%{pear_name} + + +%changelog +* Mon Nov 12 2012 Remi Collet 1.3-3 +- backport for remi repo + +* Wed Oct 31 2012 Joseph Marrero - 1.0.0-6 +- Added the requirements deps asked by phpci +* Sun Oct 14 2012 Joseph Marrero - 1.0.0-5 +- Fixed Description +* Sun Oct 14 2012 Joseph Marrero - 1.0.0-4 +- Fixed Documentation directory +- Added phpci pointed requirements wich are all in php-common +- Dependencies Clean up +* Wed Oct 03 2012 Joseph Marrero - 1.0.0-3 +- removed uneaded remove of %%BUILDROOT +- changed %%define for global +- removed extra changes of directory +* Wed Oct 03 2012 Joseph Marrero - 1.0.0-2 +- Change Description to be more specific to diferenciate from Sabre_DAV package +* Fri Apr 06 2012 Felix Kaechele - 1.0.0-1 +- initial package -- cgit