diff options
Diffstat (limited to 'php-sabre-event5.spec')
-rw-r--r-- | php-sabre-event5.spec | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/php-sabre-event5.spec b/php-sabre-event5.spec index 322ae73..48ed8d0 100644 --- a/php-sabre-event5.spec +++ b/php-sabre-event5.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-sabre-event5 # -# Copyright (c) 2013-2019 Remi Collet +# Copyright (c) 2013-2020 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit d00a17507af0e7544cfe17096372f5d733e3b276 +%global gh_commit a37c73e535ddab02bd892f4bdab4867f9778cbea %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sabre-io %global gh_project event @@ -23,7 +23,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Summary: Lightweight library for event-based programming -Version: 5.1.0 +Version: 5.1.1 Release: 1%{?dist} URL: http://sabre.io/event @@ -37,14 +37,21 @@ BuildRequires: php(language) >= 7.1 BuildRequires: php-spl # From composer.json, "require-dev": { # "friendsofphp/php-cs-fixer": "~2.16.1", -# "phpunit/phpunit" : "^7 || ^8" +# "phpstan/phpstan": "^0.12", +# "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.0" +%if 0%{?fedora} >= 31 || 0%{?rhel} >= 9 +BuildRequires: phpunit9 +%global phpunit %{_bindir}/phpunit9 +%else BuildRequires: phpunit8 +%global phpunit %{_bindir}/phpunit8 +%endif # Autoloader BuildRequires: php-composer(fedora/autoloader) %endif # From composer.json, "require": { -# "php": "^7.1" +# "php": "^7.1|^8.0" Requires: php(language) >= 7.1 # From phpcompatinfo report for version 5.0.2 Requires: php-spl @@ -97,9 +104,10 @@ cp -pr lib %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}%{major} %if %{with_tests} : Run upstream test suite against installed library ret=0 -for cmd in php php72 php73 php74; do - if which $cmd; then - $cmd %{_bindir}/phpunit8 \ +for cmdarg in "php %{phpunit}" "php72 %{_bindir}/phpunit8" php73 php74 php80; do + if which $cmdarg; then + set $cmdarg + $1 ${2:-%{_bindir}/phpunit9} \ --bootstrap=%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}%{major}/autoload.php \ --configuration tests/phpunit.xml \ --verbose || ret=1 @@ -112,6 +120,7 @@ exit $ret %files +# remirepo:1 %{!?_licensedir:%global license %%doc} %license LICENSE %doc *md @@ -121,6 +130,10 @@ exit $ret %changelog +* Mon Sep 21 2020 Remi Collet <remi@remirepo.net> - 5.1.1-1 +- update to 5.1.1 +- switch to phpunit9 + * Sat Feb 1 2020 Remi Collet <remi@remirepo.net> - 5.1.0-1 - update to 5.1.0 - raise dependency on PHP 7.1 |