diff options
| -rw-r--r-- | composer.json | 9 | ||||
| -rw-r--r-- | phpunit8.spec | 12 | 
2 files changed, 13 insertions, 8 deletions
diff --git a/composer.json b/composer.json index b4755b1..e5aad89 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,8 @@          }      ],      "support": { -        "issues": "https://github.com/sebastianbergmann/phpunit/issues" +        "issues": "https://github.com/sebastianbergmann/phpunit/issues", +        "security": "https://github.com/sebastianbergmann/phpunit/security/policy"      },      "prefer-stable": true,      "require": { @@ -54,9 +55,9 @@          "sort-packages": true      },      "suggest": { -        "phpunit/php-invoker": "^2.0.0", -        "ext-soap": "*", -        "ext-xdebug": "*" +        "phpunit/php-invoker": "To allow enforcing time limits", +        "ext-soap": "To be able to generate mocks based on WSDL files", +        "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"      },      "bin": [          "phpunit" diff --git a/phpunit8.spec b/phpunit8.spec index 5cc039f..341f046 100644 --- a/phpunit8.spec +++ b/phpunit8.spec @@ -8,10 +8,11 @@  # Please, preserve the changelog entries  # +# remirepo:2  # For compatibility with SCL  %undefine __brp_mangle_shebangs -%global gh_commit    7d1ff0e8c6b35db78ff13e3e05517d7cbf7aa32e +%global gh_commit    622d0186707f39a4ae71df3bcf42d759bb868854  #global gh_date      20150927  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  %global gh_owner     sebastianbergmann @@ -25,7 +26,7 @@  %global ver_major    8  %global ver_minor    5 -%global upstream_version 8.5.33 +%global upstream_version 8.5.34  #global upstream_prever  dev  Name:           %{pk_project}%{ver_major} @@ -203,7 +204,7 @@ Documentation: https://phpunit.readthedocs.io/  %prep  %setup -q -n %{gh_project}-%{gh_commit} -%patch0 -p0 -b .rpm +%patch -P0 -p0 -b .rpm  %build @@ -266,7 +267,7 @@ sed -e 's:@PATH@:%{buildroot}%{php_home}/%{ns_vendor}:' -i tests/bootstrap.php  sed -e 's:%{php_home}/%{ns_vendor}:%{buildroot}%{php_home}/%{ns_vendor}:' -i phpunit  ret=0 -for cmd in php php74 php80 php81 php82; do +for cmd in php php80 php81 php82 php83; do    if which $cmd; then       $cmd ./phpunit $OPT --verbose || ret=1    fi @@ -285,6 +286,9 @@ exit $ret  %changelog +* Tue Sep 19 2023 Remi Collet <remi@remirepo.net> - 8.5.34-1 +- update to 8.5.34 +  * Tue Feb 28 2023 Remi Collet <remi@remirepo.net> - 8.5.33-1  - update to 8.5.33  | 
