From 096587426c1f6194f2fa909a191d35af513e5b92 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 31 Dec 2013 18:21:41 +0100 Subject: php-sabre-dav: 1.8.7 - new package --- Makefile | 4 ++ php-sabre-dav.spec | 137 +++++++++++++++++++++++++++++++++++++++++++++++ sabre-dav-autoload.patch | 20 +++++++ 3 files changed, 161 insertions(+) create mode 100644 Makefile create mode 100644 php-sabre-dav.spec create mode 100644 sabre-dav-autoload.patch 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-sabre-dav.spec b/php-sabre-dav.spec new file mode 100644 index 0000000..93721bc --- /dev/null +++ b/php-sabre-dav.spec @@ -0,0 +1,137 @@ +# Spec file for php-sabre-dav +# +# Copyright (c) 2013 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/3.0/ +# +# Please, preserve the changelog entries +# +%global gh_commit 41c750da3c60a427cdd847df090ef0fc7e8f1076 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner fruux +%global gh_project sabre-dav +%global with_tests %{?_without_tests:0}%{!?_without_tests:1} + +Name: php-%{gh_project} +Summary: WebDAV Framework for PHP +Version: 1.8.7 +Release: 1%{?dist} + +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}.tar.gz +License: BSD +Group: Development/Libraries + +# replace composer autoloader with trivial PSR-0 one +Patch0: %{gh_project}-autoload.patch + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +%if %{with_tests} +BuildRequires: php(language) >= 5.3.1 +BuildRequires: php-pear(pear.phpunit.de/PHPUnit) > 3.7 +BuildRequires: php-sabre-vobject > 2.1 +Requires: php-pdo +%endif + +# From composer.json +Requires: php(language) >= 5.3.1 +Requires: php-ctype +Requires: php-date +Requires: php-dom +Requires: php-iconv +Requires: php-libxml +Requires: php-mbstring +Requires: php-pcre +Requires: php-simplexml +Requires: php-spl +Requires: php-sabre-vobject > 2.1 +Requires: php-sabre-vobject < 2.2 +# From phpcompatinfo report for version 1.8.7 +Requires: php-curl +Requires: php-pdo +Requires: php-xml + + +%description +What is SabreDAV + +SabreDAV allows you to easily add WebDAV support to a PHP application. +SabreDAV is meant to cover the entire standard, and attempts to allow +integration using an easy to understand API. + +Feature list: +* Fully WebDAV compliant +* Supports Windows XP, Windows Vista, Mac OS/X, DavFSv2, Cadaver, Netdrive, + Open Office, and probably more. +* Passing all Litmus tests. +* Supporting class 1, 2 and 3 Webdav servers. +* Locking support. +* Custom property support. +* CalDAV (tested with Evolution, iCal, iPhone and Lightning). +* CardDAV (tested with OS/X addressbook, the iOS addressbook and Evolution). +* Over 97% unittest code coverage. + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + +%patch0 -p0 + +: Create trivial PSR0 autoloader for tests +cat < - 1.8.7-1 +- Initial packaging \ No newline at end of file diff --git a/sabre-dav-autoload.patch b/sabre-dav-autoload.patch new file mode 100644 index 0000000..1aa22db --- /dev/null +++ b/sabre-dav-autoload.patch @@ -0,0 +1,20 @@ +--- lib/Sabre/autoload.php.old 2013-12-31 17:54:12.000000000 +0100 ++++ lib/Sabre/autoload.php 2013-12-31 17:58:28.000000000 +0100 +@@ -15,11 +15,9 @@ + * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License + */ + +-/** +- * We are assuming that the composer autoloader is just 2 directories up. +- * +- * This is not the case when sabredav is installed as a dependency. But, in +- * those cases it's not expected that people will look for this file anyway. +- */ +- +-require __DIR__ . '/../../vendor/autoload.php'; ++spl_autoload_register(function ($class) { ++ if (strpos($class,'Sabre\\')===0) { ++ $file = __DIR__ . str_replace('\\', '/', substr($class,5)).'.php'; ++ @include $file; ++ } ++}); -- cgit