update to 3.0.1

sources from git snapshot
This commit is contained in:
Remi Collet 2020-06-16 08:28:36 +02:00
commit e58f69ae86
4 changed files with 43 additions and 10 deletions

View file

@ -7,7 +7,7 @@
# Please, preserve the changelog entries
#
%global bootstrap 0
%global gh_commit 7579d5a1ba7f3ac11c80004d205877911315ae7a
%global gh_commit 62f696ad0d140e0e513e69eaafdebb674d622b4c
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner sebastianbergmann
%global gh_project php-invoker
@ -21,19 +21,20 @@
%global ns_project Invoker
%if %{bootstrap}
%global with_tests %{?_with_tests:1}%{!?_with_tests:0}
%global with_tests 0%{?_with_tests:1}
%else
%global with_tests %{?_without_tests:0}%{!?_without_tests:1}
%global with_tests 0%{!?_without_tests:1}
%endif
Name: php-%{pk_vendor}-%{pk_project}%{major}
Version: 3.0.0
Version: 3.0.1
Release: 1%{?dist}
Summary: Invoke callables with a timeout
License: BSD
URL: https://github.com/%{gh_owner}/%{gh_project}
Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz
Source0: %{name}-%{version}-%{gh_short}.tgz
Source1: makesrc.sh
BuildArch: noarch
BuildRequires: php(language) >= 7.3
@ -43,8 +44,7 @@ BuildRequires: php-fedora-autoloader-devel
# "ext-pcntl": "*"
# "phpunit/phpunit": "^9.0"
BuildRequires: php-pcntl
# TODO test suite passes with v8, switch to v9 when available
BuildRequires: phpunit8
BuildRequires: phpunit9
%endif
# From composer.json, require
@ -89,10 +89,10 @@ mkdir vendor
: Run upstream test suite
ret=0
for cmd in php php73 php74; do
for cmd in php php73 php74 php80; do
if which $cmd; then
$cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \
%{_bindir}/phpunit8 --verbose || ret=1
%{_bindir}/phpunit9 --verbose || ret=1
fi
done
exit $ret
@ -108,6 +108,10 @@ exit $ret
%changelog
* Tue Jun 16 2020 Remi Collet <remi@remirepo.net> - 3.0.1-1
- update to 3.0.1
- sources from git snapshot
* Fri Feb 7 2020 Remi Collet <remi@remirepo.net> - 3.0.0-1
- update to 3.0.0
- raise dependency on PHP 7.3