diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-11-26 14:52:15 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-11-26 14:52:15 +0100 |
commit | 44f736bbbabd589153a8f014d10d55f136fd66a3 (patch) | |
tree | 115a8dbf2c341bbd5948568a2c0e44f43c558a2a | |
parent | 58890f0efb46f634ad62547ae9cc5d35bbd95659 (diff) |
php-jsonlint: 1.4.0
-rw-r--r-- | php-jsonlint.spec | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/php-jsonlint.spec b/php-jsonlint.spec index fb0f115..a6536a4 100644 --- a/php-jsonlint.spec +++ b/php-jsonlint.spec @@ -13,18 +13,18 @@ %global github_owner Seldaek %global github_name jsonlint -%global github_version 1.3.1 -%global github_commit 863ae85c6d3ef60ca49cb12bd051c4a0648c40c4 +%global github_version 1.4.0 +%global github_commit 66834d3e3566bb5798db7294619388786ae99394 -# "php": ">=5.3.0" -%global php_min_ver 5.3.0 +# "php": "^5.3 || ^7.0" +%global php_min_ver 5.3 # Build using "--without tests" to disable tests %global with_tests %{?_without_tests:0}%{!?_without_tests:1} Name: php-%{github_name} Version: %{github_version} -Release: 3%{?dist} +Release: 1%{?dist} Summary: JSON Lint for PHP Group: Development/Libraries @@ -96,6 +96,12 @@ install -pm 0755 bin/jsonlint %{buildroot}%{_bindir}/ %{_bindir}/phpunit \ --bootstrap %{buildroot}%{_datadir}/php/Seld/JsonLint/autoload.php \ --verbose + +if which php70; then + php70 %{_bindir}/phpunit \ + --bootstrap %{buildroot}%{_datadir}/php/Seld/JsonLint/autoload.php \ + --verbose +fi %else : Tests skipped %endif @@ -112,6 +118,10 @@ install -pm 0755 bin/jsonlint %{buildroot}%{_bindir}/ %changelog +* Thu Nov 26 2015 Remi Collet <remi@fedoraproject.org> - 1.4.0-1 +- Updated to 1.4.0 +- run test suite with both PHP 5 and 7 when available + * Wed Oct 14 2015 Remi Collet <remi@fedoraproject.org> - 1.3.1-3 - add autoloader |