summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-04-26 18:16:54 +0200
committerRemi Collet <remi@remirepo.net>2018-04-26 18:16:54 +0200
commit98ccd2477124bc08a1f4491f2af188f90e57b6d9 (patch)
tree9dee7d69762d5527a239e3acf8dca2061041d112
parent0a438ea6cfb449635ada2f91153f19f06a84027b (diff)
v2.8.1
-rw-r--r--php-zendframework-zend-cache.spec15
1 files changed, 12 insertions, 3 deletions
diff --git a/php-zendframework-zend-cache.spec b/php-zendframework-zend-cache.spec
index 281fd2c..978087f 100644
--- a/php-zendframework-zend-cache.spec
+++ b/php-zendframework-zend-cache.spec
@@ -7,7 +7,7 @@
# Please, preserve the changelog entries
#
%global bootstrap 0
-%global gh_commit e57717839e040227133f1df8d158a05f85a7be6c
+%global gh_commit 13c517d6a2e446fe16c6f42e702f4d6ef724024b
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner zendframework
%global gh_project zend-cache
@@ -20,7 +20,7 @@
%endif
Name: php-%{gh_owner}-%{gh_project}
-Version: 2.8.0
+Version: 2.8.1
Release: 1%{?dist}
Summary: Zend Framework %{library} component
@@ -103,9 +103,9 @@ Suggests: php-pecl(apcu)
Suggests: php-dba
Suggests: php-pecl(memcache)
Suggests: php-pecl(memcached)
-Suggests: php-pecl(mongo)
Suggests: php-pecl(redis)
Suggests: php-xcache
+Suggests: php-composer(mongodb/mongodb)
%endif
%endif
# From phpcompatinfo report for version 2.5.2
@@ -148,6 +148,9 @@ cat << 'EOF' | tee autoload.php
require_once __DIR__ . '/%{library}/patternPluginManagerPolyfill.php';
require_once '%{php_home}/Psr/Cache/autoload.php';
require_once '%{php_home}/Psr/SimpleCache/autoload.php';
+if (file_exists('%{php_home}/MongoDB/autoload.php')) {
+ require_once '%{php_home}/MongoDB/autoload.php';
+}
EOF
@@ -206,6 +209,12 @@ exit $ret
%changelog
+* Thu Apr 26 2018 Remi Collet <remi@remirepo.net> - 2.8.1-1
+- update to 2.8.1
+
+* Thu Apr 26 2018 Remi Collet <remi@remirepo.net> - 2.8.0-3
+- add optional dependency on mongodb/mongodb
+
* Thu Apr 26 2018 Remi Collet <remi@remirepo.net> - 2.8.0-1
- update to 2.8.0
- raise dependency on PHP 5.6