diff options
Diffstat (limited to 'php-tecnickcom-tc-lib-pdf-encrypt')
| -rw-r--r-- | php-tecnickcom-tc-lib-pdf-encrypt/php-tecnickcom-tc-lib-pdf-encrypt.spec | 24 | 
1 files changed, 19 insertions, 5 deletions
| diff --git a/php-tecnickcom-tc-lib-pdf-encrypt/php-tecnickcom-tc-lib-pdf-encrypt.spec b/php-tecnickcom-tc-lib-pdf-encrypt/php-tecnickcom-tc-lib-pdf-encrypt.spec index 17a3d50..6c590d4 100644 --- a/php-tecnickcom-tc-lib-pdf-encrypt/php-tecnickcom-tc-lib-pdf-encrypt.spec +++ b/php-tecnickcom-tc-lib-pdf-encrypt/php-tecnickcom-tc-lib-pdf-encrypt.spec @@ -6,7 +6,7 @@  #  # Please, preserve the changelog entries  # -%global gh_commit    ef09ded22d3c8a6117f2aec02a5ceaf41d26bb1f +%global gh_commit    5a0b4a5bc65285467ef61ddd6f702f1e18f2164f  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  %global c_vendor     tecnickcom  %global gh_owner     tecnickcom @@ -15,7 +15,7 @@  %global with_tests   0%{!?_without_tests:1}  Name:           php-%{gh_owner}-%{gh_project} -Version:        1.4.0 +Version:        1.4.3  Release:        1%{?dist}  Summary:        PHP library to encrypt data for PDF @@ -90,11 +90,22 @@ date_default_timezone_set("UTC");  require '%{buildroot}%{php_project}/autoload.php';  EOF -php %{_bindir}/phpunit --verbose - +# remirepo:11 +run=0 +ret=0 +if which php56; then +   php56 %{_bindir}/phpunit || ret=1 +   run=1 +fi  if which php70; then -   php70 %{_bindir}/phpunit --verbose +   php70 %{_bindir}/phpunit || ret=1 +   run=1  fi +if [ $run -eq 0 ]; then +%{_bindir}/phpunit --verbose +# remirepo:2 +fi +exit $ret  %else  : Test suite disabled  %endif @@ -117,6 +128,9 @@ rm -rf %{buildroot}  %changelog +* Fri Sep  2 2016 Remi Collet <remi@fedoraproject.org> - 1.4.3-1 +- update to 1.4.3 +  * Tue Jun 14 2016 Remi Collet <remi@fedoraproject.org> - 1.4.0-1  - update to 1.4.0 (no change) | 
