From 05bcb2aeee51ef83869f3b77504fbe63e2e266cf Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 3 Feb 2023 13:32:22 +0100 Subject: update to 6.0.0 raise dependency on PHP 8.1 rename to php-sebastian-environment6 move to /usr/share/php/SebastianBergmann/Environment6 --- composer.json | 10 +++++----- php-sebastian-environment6.spec | 35 +++++++++++++++++++++-------------- 2 files changed, 26 insertions(+), 19 deletions(-) diff --git a/composer.json b/composer.json index d50dcfd..fdff87a 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "sebastian/environment", "description": "Provides functionality to handle HHVM/PHP environments", "keywords": ["environment","hhvm","xdebug"], - "homepage": "http://www.github.com/sebastianbergmann/environment", + "homepage": "https://github.com/sebastianbergmann/environment", "license": "BSD-3-Clause", "authors": [ { @@ -12,17 +12,17 @@ ], "config": { "platform": { - "php": "7.3.0" + "php": "8.1.0" }, "optimize-autoloader": true, "sort-packages": true }, "prefer-stable": true, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "suggest": { "ext-posix": "*" @@ -34,7 +34,7 @@ }, "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-main": "6.0-dev" } } } diff --git a/php-sebastian-environment6.spec b/php-sebastian-environment6.spec index 37f858f..dbb0f3e 100644 --- a/php-sebastian-environment6.spec +++ b/php-sebastian-environment6.spec @@ -1,4 +1,4 @@ -# remirepo/fedora spec file for php-sebastian-environment5 +# remirepo/fedora spec file for php-sebastian-environment6 # # Copyright (c) 2014-2023 Remi Collet # License: CC-BY-SA-4.0 @@ -7,10 +7,11 @@ # Please, preserve the changelog entries # -%bcond_without tests +# disabled until phpunit10 available +%bcond_with tests # Sources -%global gh_commit 830c43a844f1f8d5b7a1f6d6076b784454d8b7ed +%global gh_commit b6f3694c6386c7959915a0037652e0c40f6f69cc %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann %global gh_project environment @@ -18,13 +19,13 @@ %global pk_vendor sebastian %global pk_project %{gh_project} # Namespace -%global major 5 +%global major 6 %global php_home %{_datadir}/php %global ns_vendor SebastianBergmann %global ns_project Environment Name: php-%{pk_vendor}-%{pk_project}%{major} -Version: 5.1.5 +Version: 6.0.0 Release: 1%{?dist} Summary: Handle HHVM/PHP environments, version %{major} @@ -35,21 +36,21 @@ Source1: makesrc.sh BuildArch: noarch -BuildRequires: php(language) >= 7.3 +BuildRequires: php(language) >= 8.1 BuildRequires: php-pcre BuildRequires: php-posix # Autoloader -BuildRequires: php-fedora-autoloader-devel >= 1.0.0 +BuildRequires: php-fedora-autoloader-devel %if %{with tests} # from composer.json, "require-dev": { -# "phpunit/phpunit": "^9.3" -BuildRequires: phpunit9 >= 9.3 +# "phpunit/phpunit": "^10.0" +BuildRequires: phpunit10 %endif # from composer.json, "require": { -# "php": ">=7.3" -Requires: php(language) >= 7.3 -# From phpcompatinfo report for 4.0.1 +# "php": ">=8.1" +Requires: php(language) >= 8.1 +# From phpcompatinfo report for 6.0.0 Requires: php-pcre Requires: php-posix # Autoloader @@ -87,11 +88,11 @@ touch vendor/autoload.php : Run tests ret=0 -for cmd in php php74 php80 php81; do +for cmd in php php81 php82; do if which $cmd; then $cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \ -d pcov.enabled=1 \ - %{_bindir}/phpunit9 --verbose || ret=1 + %{_bindir}/phpunit10 --verbose || ret=1 fi done exit $ret @@ -108,6 +109,12 @@ exit $ret %changelog +* Fri Feb 3 2023 Remi Collet - 6.0.0-1 +- update to 6.0.0 +- raise dependency on PHP 8.1 +- rename to php-sebastian-environment6 +- move to /usr/share/php/SebastianBergmann/Environment6 + * Fri Feb 3 2023 Remi Collet - 5.1.5-1 - update to 5.1.5 -- cgit