From ff48430e6b1400890ee254548d2a353013fde76c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 23 May 2015 08:52:49 +0200 Subject: php-google-apiclient: sync with rawhdie --- php-google-apiclient-1.1.2-move_autoloader.patch | 639 ----------------------- php-google-apiclient.spec | 109 ++-- 2 files changed, 72 insertions(+), 676 deletions(-) delete mode 100644 php-google-apiclient-1.1.2-move_autoloader.patch diff --git a/php-google-apiclient-1.1.2-move_autoloader.patch b/php-google-apiclient-1.1.2-move_autoloader.patch deleted file mode 100644 index 35bc716..0000000 --- a/php-google-apiclient-1.1.2-move_autoloader.patch +++ /dev/null @@ -1,639 +0,0 @@ -diff --git a/examples/appengineauth.php b/examples/appengineauth.php -index 4300c70..7b147e9 100644 ---- a/examples/appengineauth.php -+++ b/examples/appengineauth.php -@@ -21,7 +21,7 @@ include_once "templates/base.php"; - Make an API request authenticated via the - AppIdentity service on AppEngine. - ************************************************/ --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - echo pageHeader("AppIdentity Account Access"); - -diff --git a/examples/batch.php b/examples/batch.php -index 3a51ab9..5183e58 100644 ---- a/examples/batch.php -+++ b/examples/batch.php -@@ -22,7 +22,7 @@ echo pageHeader("Batching Queries"); - books API again as an example, but this time we - will batch up two queries into a single call. - ************************************************/ --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - /************************************************ - We create the client and set the simple API -diff --git a/examples/fileupload.php b/examples/fileupload.php -index 0940e1c..6a20390 100644 ---- a/examples/fileupload.php -+++ b/examples/fileupload.php -@@ -17,7 +17,7 @@ - include_once "templates/base.php"; - session_start(); - --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - /************************************************ - We'll setup an empty 20MB file to upload. -diff --git a/examples/idtoken.php b/examples/idtoken.php -index 963f35b..e3991e9 100644 ---- a/examples/idtoken.php -+++ b/examples/idtoken.php -@@ -17,7 +17,7 @@ - include_once "templates/base.php"; - session_start(); - --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - /************************************************ - ATTENTION: Fill in these values! Make sure -diff --git a/examples/multi-api.php b/examples/multi-api.php -index 3780287..86f682c 100644 ---- a/examples/multi-api.php -+++ b/examples/multi-api.php -@@ -17,7 +17,7 @@ - include_once "templates/base.php"; - session_start(); - --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - /************************************************ - ATTENTION: Fill in these values! Make sure -diff --git a/examples/service-account.php b/examples/service-account.php -index 4cc0840..45dc75c 100644 ---- a/examples/service-account.php -+++ b/examples/service-account.php -@@ -21,7 +21,7 @@ include_once "templates/base.php"; - Make an API request authenticated with a service - account. - ************************************************/ --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - /************************************************ - ATTENTION: Fill in these values! You can get -diff --git a/examples/simple-query.php b/examples/simple-query.php -index e22790b..b3fd128 100644 ---- a/examples/simple-query.php -+++ b/examples/simple-query.php -@@ -25,7 +25,7 @@ echo pageHeader("Simple API Access"); - should use our quota, which is higher than the - anonymous quota (which is limited per IP). - ************************************************/ --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - /************************************************ - We create the client and set the simple API -diff --git a/examples/simplefileupload.php b/examples/simplefileupload.php -index 1d8fbda..40f14f2 100644 ---- a/examples/simplefileupload.php -+++ b/examples/simplefileupload.php -@@ -17,7 +17,7 @@ - include_once "templates/base.php"; - session_start(); - --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - /************************************************ - We'll setup an empty 1MB file to upload. -diff --git a/examples/user-example.php b/examples/user-example.php -index 4370b08..9cfd3d2 100644 ---- a/examples/user-example.php -+++ b/examples/user-example.php -@@ -17,7 +17,7 @@ - include_once "templates/base.php"; - session_start(); - --require_once realpath(dirname(__FILE__) . '/../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../src/Google/autoload.php'); - - /************************************************ - ATTENTION: Fill in these values! Make sure -diff --git a/src/Google/Auth/Abstract.php b/src/Google/Auth/Abstract.php -index c1e36dc..d099937 100644 ---- a/src/Google/Auth/Abstract.php -+++ b/src/Google/Auth/Abstract.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Abstract class for the Authentication in the API client -diff --git a/src/Google/Auth/AppIdentity.php b/src/Google/Auth/AppIdentity.php -index ff96a9d..c40b37d 100644 ---- a/src/Google/Auth/AppIdentity.php -+++ b/src/Google/Auth/AppIdentity.php -@@ -22,7 +22,7 @@ - */ - use google\appengine\api\app_identity\AppIdentityService; - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Authentication via the Google App Engine App Identity service. -diff --git a/src/Google/Auth/AssertionCredentials.php b/src/Google/Auth/AssertionCredentials.php -index 2b92c57..97ef4e0 100644 ---- a/src/Google/Auth/AssertionCredentials.php -+++ b/src/Google/Auth/AssertionCredentials.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Credentials object used for OAuth 2.0 Signed JWT assertion grants. -diff --git a/src/Google/Auth/Exception.php b/src/Google/Auth/Exception.php -index 81c795a..be43955 100644 ---- a/src/Google/Auth/Exception.php -+++ b/src/Google/Auth/Exception.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - class Google_Auth_Exception extends Google_Exception - { -diff --git a/src/Google/Auth/LoginTicket.php b/src/Google/Auth/LoginTicket.php -index b29abdf..6415533 100644 ---- a/src/Google/Auth/LoginTicket.php -+++ b/src/Google/Auth/LoginTicket.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Class to hold information about an authenticated login. -diff --git a/src/Google/Auth/OAuth2.php b/src/Google/Auth/OAuth2.php -index 58e86e5..0c72a64 100644 ---- a/src/Google/Auth/OAuth2.php -+++ b/src/Google/Auth/OAuth2.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Authentication class that deals with the OAuth 2 web-server authentication flow -diff --git a/src/Google/Auth/Simple.php b/src/Google/Auth/Simple.php -index 3c85ae3..5514cf5 100644 ---- a/src/Google/Auth/Simple.php -+++ b/src/Google/Auth/Simple.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Simple API access implementation. Can either be used to make requests -diff --git a/src/Google/Cache/Apc.php b/src/Google/Cache/Apc.php -index 7c9a075..72eeb10 100644 ---- a/src/Google/Cache/Apc.php -+++ b/src/Google/Cache/Apc.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * A persistent storage class based on the APC cache, which is not -diff --git a/src/Google/Cache/Exception.php b/src/Google/Cache/Exception.php -index a1d2d7a..9a73a82 100644 ---- a/src/Google/Cache/Exception.php -+++ b/src/Google/Cache/Exception.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - class Google_Cache_Exception extends Google_Exception - { -diff --git a/src/Google/Cache/File.php b/src/Google/Cache/File.php -index e4c99ad..4ad53bf 100644 ---- a/src/Google/Cache/File.php -+++ b/src/Google/Cache/File.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /* - * This class implements a basic on disk storage. While that does -diff --git a/src/Google/Cache/Memcache.php b/src/Google/Cache/Memcache.php -index c9fb4bc..2afce67 100644 ---- a/src/Google/Cache/Memcache.php -+++ b/src/Google/Cache/Memcache.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * A persistent storage class based on the memcache, which is not -diff --git a/src/Google/Cache/Null.php b/src/Google/Cache/Null.php -index 0cd24c5..56c6edb 100644 ---- a/src/Google/Cache/Null.php -+++ b/src/Google/Cache/Null.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * A blank storage class, for cases where caching is not -diff --git a/src/Google/Client.php b/src/Google/Client.php -index 1de6c59..98794b2 100644 ---- a/src/Google/Client.php -+++ b/src/Google/Client.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/autoload.php'); - - /** - * The Google API Client -diff --git a/src/Google/Collection.php b/src/Google/Collection.php -index dbb2855..eebe56b 100644 ---- a/src/Google/Collection.php -+++ b/src/Google/Collection.php -@@ -1,6 +1,6 @@ - -diff --git a/src/Google/Http/CacheParser.php b/src/Google/Http/CacheParser.php -index 298317c..2fea46f 100644 ---- a/src/Google/Http/CacheParser.php -+++ b/src/Google/Http/CacheParser.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Implement the caching directives specified in rfc2616. This -diff --git a/src/Google/Http/MediaFileUpload.php b/src/Google/Http/MediaFileUpload.php -index 87f3762..7d6d5f1 100644 ---- a/src/Google/Http/MediaFileUpload.php -+++ b/src/Google/Http/MediaFileUpload.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * @author Chirag Shah -diff --git a/src/Google/Http/REST.php b/src/Google/Http/REST.php -index 6ac9f07..3adfede 100644 ---- a/src/Google/Http/REST.php -+++ b/src/Google/Http/REST.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * This class implements the RESTful transport of apiServiceRequest()'s -diff --git a/src/Google/Http/Request.php b/src/Google/Http/Request.php -index 9811c14..1c302a7 100644 ---- a/src/Google/Http/Request.php -+++ b/src/Google/Http/Request.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * HTTP Request to be executed by IO classes. Upon execution, the -diff --git a/src/Google/IO/Abstract.php b/src/Google/IO/Abstract.php -index fc8edbe..cb8e619 100644 ---- a/src/Google/IO/Abstract.php -+++ b/src/Google/IO/Abstract.php -@@ -19,7 +19,7 @@ - * Abstract IO base class - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - abstract class Google_IO_Abstract - { -diff --git a/src/Google/IO/Curl.php b/src/Google/IO/Curl.php -index 8bd6738..8bf1213 100644 ---- a/src/Google/IO/Curl.php -+++ b/src/Google/IO/Curl.php -@@ -21,7 +21,7 @@ - * @author Stuart Langley - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - class Google_IO_Curl extends Google_IO_Abstract - { -diff --git a/src/Google/IO/Exception.php b/src/Google/IO/Exception.php -index 98e9d25..cb0b6ec 100644 ---- a/src/Google/IO/Exception.php -+++ b/src/Google/IO/Exception.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - class Google_IO_Exception extends Google_Exception - { -diff --git a/src/Google/IO/Stream.php b/src/Google/IO/Stream.php -index 35f9d90..5345544 100644 ---- a/src/Google/IO/Stream.php -+++ b/src/Google/IO/Stream.php -@@ -21,7 +21,7 @@ - * @author Stuart Langley - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - class Google_IO_Stream extends Google_IO_Abstract - { -diff --git a/src/Google/Logger/Abstract.php b/src/Google/Logger/Abstract.php -index 571918c..9d07e58 100644 ---- a/src/Google/Logger/Abstract.php -+++ b/src/Google/Logger/Abstract.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Abstract logging class based on the PSR-3 standard. -diff --git a/src/Google/Logger/Exception.php b/src/Google/Logger/Exception.php -index 7c828e6..f1a7927 100644 ---- a/src/Google/Logger/Exception.php -+++ b/src/Google/Logger/Exception.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - class Google_Logger_Exception extends Google_Exception - { -diff --git a/src/Google/Logger/File.php b/src/Google/Logger/File.php -index f337471..a9efa4d 100644 ---- a/src/Google/Logger/File.php -+++ b/src/Google/Logger/File.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * File logging class based on the PSR-3 standard. -diff --git a/src/Google/Logger/Null.php b/src/Google/Logger/Null.php -index 9c5f64a..0feb24f 100644 ---- a/src/Google/Logger/Null.php -+++ b/src/Google/Logger/Null.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Null logger based on the PSR-3 standard. -diff --git a/src/Google/Logger/Psr.php b/src/Google/Logger/Psr.php -index d577244..da565ca 100644 ---- a/src/Google/Logger/Psr.php -+++ b/src/Google/Logger/Psr.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once realpath(dirname(__FILE__) . '/../../../autoload.php'); -+require_once realpath(dirname(__FILE__) . '/../autoload.php'); - - /** - * Psr logging class based on the PSR-3 standard. -diff --git a/src/Google/Service/Exception.php b/src/Google/Service/Exception.php -index 65c1fcc..502229c 100644 ---- a/src/Google/Service/Exception.php -+++ b/src/Google/Service/Exception.php -@@ -1,6 +1,6 @@ - setScopes( -diff --git a/tests/bootstrap.php b/tests/bootstrap.php -index e1783a0..327b974 100644 ---- a/tests/bootstrap.php -+++ b/tests/bootstrap.php -@@ -15,7 +15,7 @@ - * limitations under the License. - */ - --require_once dirname(__FILE__) . '/../autoload.php'; -+require_once dirname(__FILE__) . '/../src/Google/autoload.php'; - require_once dirname(__FILE__) . '/BaseTest.php'; - - date_default_timezone_set('UTC'); -diff --git a/README.md b/README.md -index 7508aeb..752dad9 100644 ---- a/README.md -+++ b/README.md -@@ -26,7 +26,7 @@ See the examples/ directory for examples of the key client features. - ```PHP - setApplicationName("Client_Library_Examples"); -diff --git a/autoload.php b/autoload.php -index 3815c52..25af272 100644 ---- a/autoload.php -+++ b/autoload.php -@@ -15,19 +15,12 @@ - * limitations under the License. - */ - --function google_api_php_client_autoload($className) { -- $classPath = explode('_', $className); -- if ($classPath[0] != 'Google') { -- return; -- } -- if (count($classPath) > 3) { -- // Maximum class file path depth in this project is 3. -- $classPath = array_slice($classPath, 0, 3); -- } -- $filePath = dirname(__FILE__) . '/src/' . implode('/', $classPath) . '.php'; -- if (file_exists($filePath)) { -- require_once($filePath); -- } -+// PHP 5.2 compatibility: E_USER_DEPRECATED was added in 5.3 -+if (!defined('E_USER_DEPRECATED')) { -+ define('E_USER_DEPRECATED', E_USER_WARNING); - } - --spl_autoload_register('google_api_php_client_autoload'); -+$error = "google-api-php-client's autoloader was moved to src/Google/autoload.php in 1.1.3. This "; -+$error .= "redirect will be removed in 1.2. Please adjust your code to use the new location."; -+trigger_error($error, E_USER_DEPRECATED); -+require_once 'src/Google/autoload.php'; -diff --git a/src/Google/autoload.php b/src/Google/autoload.php -new file mode 100644 -index 0000000..debdd27 ---- /dev/null -+++ b/src/Google/autoload.php -@@ -0,0 +1,32 @@ -+ +# Adam Williamson +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve changelog entries +# + +%global github_owner google +%global github_name google-api-php-client +%global github_version 1.1.4 +%global github_commit 2adb5ba90612858d4add0342eee6b8b9aaca398d + +%global composer_vendor google +%global composer_project apiclient # "php": ">=5.2.1" -%global php_min_ver 5.2.1 +%global php_min_ver 5.2.1 -Name: php-google-apiclient +# Build using "--without tests" to disable tests +%global with_tests %{?_without_tests:0}%{!?_without_tests:1} + +%{!?phpdir: %global phpdir %{_datadir}/php} + +Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 2%{?dist} +Release: 1%{?dist} Summary: Client library for Google APIs Group: Development/Libraries @@ -16,33 +37,37 @@ License: ASL 2.0 URL: https://developers.google.com/api-client-library/php/ Source0: https://github.com/%{github_owner}/%{github_name}/archive/%{github_commit}/%{name}-%{github_version}-%{github_commit}.tar.gz -# Submitted upstream: https://github.com/google/google-api-php-client/pull/437 -# Relocate the autoloader added in 1.1, or else we can't sensibly package it -# Rediffed against 1.1.2 (files have been moved/added upstream since) -Patch0: php-google-apiclient-1.1.2-move_autoloader.patch - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -# For tests +# Tests +%if %{with_tests} +## composer.json BuildRequires: php(language) >= %{php_min_ver} BuildRequires: %{_bindir}/phpunit -# For tests: phpcompatinfo (computed from 1.0.3-beta) +## phpcompatinfo (computed from version 1.1.4) +BuildRequires: php-curl BuildRequires: php-date BuildRequires: php-json BuildRequires: php-openssl +BuildRequires: php-pcre BuildRequires: php-reflection BuildRequires: php-spl +%endif -Requires: php(language) >= %{php_min_ver} Requires: ca-certificates -# phpcompatinfo (computed from 1.0.3-beta) +# composer.json +Requires: php(language) >= %{php_min_ver} +# phpcompatinfo (computed from version 1.1.4) +Requires: php-curl Requires: php-date Requires: php-json Requires: php-openssl +Requires: php-pcre Requires: php-reflection Requires: php-spl -Provides: php-composer(google/apiclient) = %{version} +# Composer +Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description Google APIs Client Library for PHP provides access to many Google APIs. @@ -54,7 +79,7 @@ Optional: * php-pecl-memcache * php-pecl-memcached -Examples available in the %{name}-examples package. +Examples are available in the %{name}-examples package. %package examples @@ -69,16 +94,15 @@ Requires: %{name} = %{version}-%{release} %prep %setup -qn %{github_name}-%{github_commit} -%patch0 -p1 -# Replace bundled CA cert trust list with our systemwide one. This location -# should work for EL6/7 and all supported Fedoras. +: Unbundle CA cert rm -f src/Google/IO/cacerts.pem sed "s#dirname(__FILE__)\s*.\s*'/cacerts.pem'#'%{_sysconfdir}/pki/tls/certs/ca-bundle.crt'#" \ - -i src/Google/IO/Stream.php src/Google/IO/Curl.php + -i src/Google/IO/{Stream,Curl}.php -# Update examples' include path -sed -i 's#../src#%{_datadir}/php#' examples/*.php +: Update examples autoload require +sed "s#.*require.*autoload.*#require_once '%{phpdir}/Google/autoload.php';#" \ + -i examples/*.php %build @@ -88,33 +112,38 @@ sed -i 's#../src#%{_datadir}/php#' examples/*.php %install rm -rf %{buildroot} -mkdir -p %{buildroot}%{_datadir}/php -cp -rp src/* %{buildroot}%{_datadir}/php/ +mkdir -p %{buildroot}%{phpdir} +cp -rp src/* %{buildroot}%{phpdir}/ %check -# Skip tests requiring network access -sed -e 's/function testBatchRequest/function SKIP_testBatchRequest/' \ - -e 's/function testInvalidBatchRequest/function SKIP_testInvalidBatchRequest/' \ - -i tests/general/ApiBatchRequestTest.php +%if %{with_tests} +: Skip tests requiring network access +rm -f tests/general/ApiBatchRequestTest.php -%{_bindir}/phpunit . +: Run tests +%{_bindir}/phpunit -# Ensure unbundled CA cert is referenced +: Ensure unbundled CA cert is referenced grep '%{_sysconfdir}/pki/tls/certs/ca-bundle.crt' --quiet \ - %{buildroot}%{_datadir}/php/Google/IO/{Curl,Stream}.php + %{buildroot}%{phpdir}/Google/IO/{Curl,Stream}.php +%else +: Tests skipped +%endif %clean rm -rf %{buildroot} +%{!?_licensedir:%global license %%doc} + %files %defattr(-,root,root,-) -%{!?_licensedir:%global license %%doc} %license LICENSE -%doc *.md composer.json -%{_datadir}/php/Google +%doc *.md +%doc composer.json +%{phpdir}/Google %files examples %defattr(-,root,root,-) @@ -122,6 +151,12 @@ rm -rf %{buildroot} %changelog +* Fri May 22 2015 Shawn Iwinski - 1.1.4-1 +- Updated to 1.1.4 (BZ #1222260) +- Added spec license header +- Removed autoload patch +- Added option to build without tests + * Fri Jan 02 2015 Adam Williamson - 1.1.2-2 - update autoloader relocation patch to match latest upstream submission @@ -130,7 +165,7 @@ rm -rf %{buildroot} - relocate autoloader to make it work with systemwide installation * Sat Dec 20 2014 Adam Williamson - 1.0.6-0.3.beta -- use new %license directory +- use new %%license directory - add Packagist/Composer provide * Fri Nov 07 2014 Adam Williamson - 1.0.6-0.2.beta -- cgit