diff options
Diffstat (limited to 'php-myclabs-php-enum.spec')
-rw-r--r-- | php-myclabs-php-enum.spec | 66 |
1 files changed, 49 insertions, 17 deletions
diff --git a/php-myclabs-php-enum.spec b/php-myclabs-php-enum.spec index 0048941..dfa2399 100644 --- a/php-myclabs-php-enum.spec +++ b/php-myclabs-php-enum.spec @@ -1,12 +1,12 @@ # remirepo/fedora spec file for php-myclabs-php-enum # -# Copyright (c) 2017-2020 Remi Collet -# License: CC-BY-SA -# http://creativecommons.org/licenses/by-sa/4.0/ +# SPDX-FileCopyrightText: Copyright 2017-2025 Remi Collet +# SPDX-License-Identifier: CECILL-2.1 +# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt # # Please, preserve the changelog entries # -%global gh_commit aef7b9f343a677744d7410485a60fe16c46ca1ed +%global gh_commit e7be26966b7398204a234f8673fdad5ac6277802 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner myclabs %global gh_project php-enum @@ -17,10 +17,11 @@ %global ns_vendor MyCLabs %global ns_project Enum %global php_home %{_datadir}/php -%global with_tests 0%{!?_without_tests:1} + +%bcond_without tests Name: php-%{pk_vendor}-%{pk_project} -Version: 1.7.5 +Version: 1.8.5 Release: 1%{?dist} Summary: PHP Enum implementation @@ -31,26 +32,26 @@ Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch -%if %{with_tests} +%if %{with tests} # For tests -BuildRequires: php(language) >= 7.1 +BuildRequires: php(language) >= 7.3 BuildRequires: php-reflection BuildRequires: php-json BuildRequires: php-spl # From composer.json, "require-dev": { -# "phpunit/phpunit": "^7", +# "phpunit/phpunit": "^9.5", # "squizlabs/php_codesniffer": "1.*" -# "vimeo/psalm": "^3.8" -%global phpunit %{_bindir}/phpunit7 -BuildRequires: %{phpunit} +# "vimeo/psalm": "^4.6.2 || ^5.2" +%global phpunit %{_bindir}/phpunit9 +BuildRequires: phpunit9 >= 9.5 # Required by autoloader BuildRequires: php-composer(fedora/autoloader) %endif # From composer.json, "require": { -# "php": ">=7.1", +# "php": "^7.3 || ^8.0", # "ext-json": "*" -Requires: php(language) >= 7.1 +Requires: php(language) >= 7.3 Requires: php-json # From phpcompatinfo report for version 1.6.1 Requires: php-reflection @@ -70,11 +71,14 @@ Autoloader: %{php_home}/%{ns_vendor}/%{ns_project}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} +mv stubs/Stringable.php src/ + cat << 'EOF' | tee src/autoload.php <?php /* Autoloader for %{name} and its dependencies */ require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; \Fedora\Autoloader\Autoload::addPsr4('%{ns_vendor}\\%{ns_project}\\', __DIR__); +require_once __DIR__ . '/Stringable.php'; EOF @@ -89,7 +93,7 @@ cp -pr src %{buildroot}%{php_home}/%{ns_vendor}/%{ns_project} %check -%if %{with_tests} +%if %{with tests} mkdir vendor cat << 'EOF' | tee tests/autoload.php <?php @@ -99,10 +103,10 @@ require __DIR__ . '/bootstrap.php'; EOF ret=0 -for cmd in "php %{phpunit}" php71 php72 php73 php74; do +for cmd in "php %{phpunit}" php81 php82 php83 php84; do if which $cmd; then set $cmd - $1 ${2:-%{_bindir}/phpunit6} --verbose --bootstrap tests/autoload.php || ret=1 + $1 ${2:-%{_bindir}/phpunit9} --verbose --bootstrap tests/autoload.php || ret=1 fi done exit $ret @@ -112,6 +116,7 @@ exit $ret %files +# remirepo:1 %{!?_licensedir:%global license %%doc} %license LICENSE %doc composer.json @@ -121,6 +126,33 @@ exit $ret %changelog +* Tue Jan 14 2025 Remi Collet <remi@remirepo.net> - 1.8.5-1 +- update to 1.8.5 +- re-license spec file to CECILL-2.1 + +* Thu Aug 4 2022 Remi Collet <remi@remirepo.net> - 1.8.4-1 +- update to 1.8.4 + +* Mon Jul 5 2021 Remi Collet <remi@remirepo.net> - 1.8.3-1 +- update to 1.8.3 + +* Mon Jul 5 2021 Remi Collet <remi@remirepo.net> - 1.8.2-1 +- update to 1.8.2 + +* Tue Jun 29 2021 Remi Collet <remi@remirepo.net> - 1.8.1-1 +- update to 1.8.1 + +* Tue Feb 16 2021 Remi Collet <remi@remirepo.net> - 1.8.0-1 +- update to 1.8.0 +- raise dependency on PHP 7.3 +- switch to phpunit9 + +* Mon Nov 16 2020 Remi Collet <remi@remirepo.net> - 1.7.7-1 +- update to 1.7.7 + +* Fri Feb 14 2020 Remi Collet <remi@remirepo.net> - 1.7.6-1 +- update to 1.7.6 + * Fri Feb 14 2020 Remi Collet <remi@remirepo.net> - 1.7.5-1 - update to 1.7.5 |