From 662fb7839c47098fadbf36c1dc1e65da6091c5c6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 9 Mar 2013 11:07:32 +0100 Subject: php-dropbox-php-Dropbox: import from rawhide --- Makefile | 10 +++++ php-dropbox-php-Dropbox.spec | 94 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+) create mode 100644 Makefile create mode 100644 php-dropbox-php-Dropbox.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d095534 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +INCL1 := $(shell php-config --includes) +INCL2 := -I $(shell php-config --include-dir)/sapi/embed +LIBS := -lphp5 $(shell php-config --libs) + +include ../../common/Makefile + +tembed: tembed.c + gcc -Wall $(INCL1) $(INCL2) tembed.c $(LIBS) -o tembed diff --git a/php-dropbox-php-Dropbox.spec b/php-dropbox-php-Dropbox.spec new file mode 100644 index 0000000..3fe42ae --- /dev/null +++ b/php-dropbox-php-Dropbox.spec @@ -0,0 +1,94 @@ +%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} +%{!?pear_metadir: %global pear_metadir %{pear_phpdir}} +%global pear_name %(echo %{name} | sed -e 's/^php-dropbox-php-//' -e 's/-/_/g') +%global channelname pear.dropbox-php.com + +Name: php-dropbox-php-Dropbox +Version: 1.0.0 +Release: 4%{?dist} +Summary: Library for integrating dropbox with PHP + +License: MIT +URL: http://www.dropbox-php.com/ +Source0: http://%{channelname}/get/%{pear_name}-%{version}.tgz + +BuildArch: noarch + +BuildRequires: php-pear(PEAR) +BuildRequires: php-channel(%{channelname}) + +Requires: php-pear(PEAR) +Requires: php-channel(%{channelname}) +Requires(post): %{__pear} +Requires(postun): %{__pear} + +Requires: php-spl php-curl php-date php-hash +Requires: php-json php-pcre + +Requires: php-pear(HTTP_OAuth) +Requires: php-pecl(oauth) + +Provides: php-pear(%{channelname}/%{pear_name}) = %{version} + +%description +This PHP library allows you to easily integrate dropbox with PHP. +The library makes use of OAuth. + +Optional Dependencies: +Zend framework: Zend_{Oauth,Json,Uri} for OAuth/Zend back-end +Wordpress: WP_Http for OAuth/Wordpress back-end + + +%prep +%setup -q -c + +mv package.xml %{pear_name}-%{version}/%{name}.xml + + +%build + + +%install +cd %{pear_name}-%{version} +rm -rf %{buildroot} docdir +%{__pear} install --nodeps --packagingroot %{buildroot} %{name}.xml + +# Clean up unnecessary files +rm -rf %{buildroot}%{pear_metadir}/.??* + +# Install XML package description +mkdir -p %{buildroot}%{pear_xmldir} +install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} + + +%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 \ + %{channelname}/%{pear_name} >/dev/null || : +fi + + +%files +%doc %{pear_docdir}/%{pear_name} +%{pear_xmldir}/%{name}.xml +%{pear_phpdir}/%{pear_name} + + +%changelog +* Thu Mar 07 2013 Gregor Tätzner - 1.0.0-4 +- require php-pecl(oauth) instead of php-oauth +- add note about optional dep to wordpress and zend + +* Wed Mar 06 2013 Gregor Tätzner - 1.0.0-3 +- require HTTP_OAuth +- get source from pear host http://pear.dropbox-php.com + +* Wed Feb 27 2013 Gregor Tätzner - 1.0.0-2 +- rename to php-dropbox-php-Dropbox + +* Tue Feb 19 2013 Gregor Tätzner - 1.0.0-1 +- Initial package -- cgit