From 039276f64084a4d47eb31412541027898f9765d0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 3 Jan 2020 13:56:36 +0100 Subject: v3.4.0 --- atoum.spec | 20 +++++++++++++++----- composer.json | 2 +- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/atoum.spec b/atoum.spec index cbccd95..657da67 100644 --- a/atoum.spec +++ b/atoum.spec @@ -11,15 +11,14 @@ # For compatibility with SCL %undefine __brp_mangle_shebangs -%global gh_commit c5279d0ecd4e2d53af6b38815db2cafee8fc46b6 +%global gh_commit b6c93433a7b0b92b54c2bb9b0731d71ddc03b365 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) Name: atoum -Version: 3.3.0 -Release: 1%{?dist} +Version: 3.4.0 +Release: 2%{?dist} Summary: PHP Unit Testing framework -Group: Development/Libraries License: BSD URL: http://atoum.org Source0: https://github.com/%{name}/%{name}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz @@ -118,6 +117,9 @@ rm scripts/git/.tag tests/units/classes/scripts/git/.tag sed -i bin/%{name} \ -e "s|__DIR__ . '/../|'%{_datadir}/%{name}/|" +sed -i constants.php \ + -e "s/dev-master/%{version}/" + %build # Empty build section @@ -147,7 +149,11 @@ for cmd in php php56 php70 php71 php72 php73 php74; do $cmd runner.php --use-dot-report --max-children-number 4 --directories . || ret=1 fi done -exit $ret + +if [ $(php -r 'echo PHP_VERSION_ID;') -lt 70400 ] +then + exit $ret +fi %else : Tests skipped %endif @@ -164,6 +170,10 @@ exit $ret %changelog +* Thu Jan 2 2020 Remi Collet - 3.4.0-2 +- update to 3.4.0 +- fix reported version + * Fri Mar 16 2018 Remi Collet - 3.3.0-1 - update to 3.3.0 - undefine __brp_mangle_shebangs diff --git a/composer.json b/composer.json index 3a144d1..cfe07f5 100644 --- a/composer.json +++ b/composer.json @@ -31,7 +31,7 @@ ], "require": { - "php": "^5.6.0 || ^7.0.0 <7.4.0", + "php": "^5.6.0 || ^7.0.0 <7.5.0", "ext-hash": "*", "ext-json": "*", "ext-tokenizer": "*", -- cgit