diff options
| author | Remi Collet <remi@remirepo.net> | 2017-08-04 09:49:20 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2017-08-04 09:49:20 +0200 | 
| commit | 78ae96c50fd2aba97ed9031164e7b3b64ffa1d4a (patch) | |
| tree | 68aa712cf3e63118572240713442ff5664aaaba2 | |
| parent | ab8876e851caf4fe0e24c983083c9e0c84436adb (diff) | |
v3.2.1zend-loader
| -rw-r--r-- | .gitignore | 7 | ||||
| -rw-r--r-- | php-zendframework-zend-crypt.spec | 26 | 
2 files changed, 17 insertions, 16 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1ab5c4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/php-zendframework-zend-crypt.spec b/php-zendframework-zend-crypt.spec index 3d52848..3597ad7 100644 --- a/php-zendframework-zend-crypt.spec +++ b/php-zendframework-zend-crypt.spec @@ -7,7 +7,7 @@  # Please, preserve the changelog entries  #  %global bootstrap    0 -%global gh_commit    274cdcb77a2165d6aff36b606e9d1c687ba9386c +%global gh_commit    514cef5556bac069e36c2cbded40e529b86bb3f2  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  %global gh_owner     zendframework  %global gh_project   zend-crypt @@ -20,7 +20,7 @@  %endif  Name:           php-%{gh_owner}-%{gh_project} -Version:        3.2.0 +Version:        3.2.1  Release:        1%{?dist}  Summary:        Zend Framework %{library} component @@ -150,21 +150,12 @@ Zend\Loader\AutoloaderFactory::factory(array(  require_once '%{php_home}/Zend/autoload.php';  EOF -# remirepo:11 -run=0  ret=0 -if which php56; then -   php56 %{_bindir}/phpunit || ret=1 -   run=1 -fi -if which php71; then -   php71 %{_bindir}/phpunit || ret=1 -   run=1 -fi -if [ $run -eq 0 ]; then -%{_bindir}/phpunit --verbose -# remirepo:2 -fi +for cmd in php php56 php71 php72; do +  if which $cmd; then +    $cmd %{_bindir}/phpunit --verbose || ret=1 +  fi +done  exit $ret  %else  : Test suite disabled @@ -186,6 +177,9 @@ rm -rf %{buildroot}  %changelog +* Fri Aug  4 2017 Remi Collet <remi@remirepo.net> - 3.2.1-1 +- Update to 3.2.1 +  * Wed Dec  7 2016 Remi Collet <remi@fedoraproject.org> - 3.2.0-1  - update to 3.2.0  | 
