diff options
author | Remi Collet <remi@remirepo.net> | 2024-10-28 06:40:57 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-10-28 06:40:57 +0100 |
commit | e63a1110cda23596b7541d924c1f50f77cb0a106 (patch) | |
tree | dc24fa4f4642ece6e7ce4889f4132354d3a7a10a /php-tecnickcom-tc-lib-color.spec | |
parent | dd97ea6824af27d1ed685ab549df63168545f1b1 (diff) |
Diffstat (limited to 'php-tecnickcom-tc-lib-color.spec')
-rw-r--r-- | php-tecnickcom-tc-lib-color.spec | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/php-tecnickcom-tc-lib-color.spec b/php-tecnickcom-tc-lib-color.spec index 31e568c..2eee1f8 100644 --- a/php-tecnickcom-tc-lib-color.spec +++ b/php-tecnickcom-tc-lib-color.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit ae2fd400d11b3665e6fe90158d2f0aa2bd7d85e3 +%global gh_commit 37e63eaf78e288569f43640d858808015deacc0a %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: 2.2.3 +Version: 2.2.4 Release: 1%{?dist} Summary: PHP library to manipulate various color representations @@ -87,12 +87,14 @@ EOF ret=0 # TODO php84 https://github.com/tecnickcom/tc-lib-color/issues/14 -for cmdarg in php php81 php82 php83; do +for cmdarg in php php81 php82 php83 php84; do if which $cmdarg; then set $cmdarg cp phpunit.xml.dist phpunit.xml $1 ${2:-%{phpunit}} --migrate-configuration || : - $1 ${2:-%{phpunit}} --no-coverage || ret=1 + $1 ${2:-%{phpunit}} --no-coverage \ + --filter '^((?!(testGetColorObject|testGetColorObj)).)*$' \ + || ret=1 fi done exit $ret @@ -111,6 +113,9 @@ exit $ret %changelog +* Mon Oct 28 2024 Remi Collet <remi@remirepo.net> - 2.2.4-1 +- update to 2.2.4 + * Mon Sep 9 2024 Remi Collet <remi@remirepo.net> - 2.2.3-1 - update to 2.2.3 (no change) |