Compare commits

..

13 commits

Author SHA1 Message Date
Remi Collet
d43b6eef38 update to 1.24.0
use doctrine/instantiator v2 only with PHP 8.4+
raise dependency on PHP 8.2
2026-01-12 09:46:09 +01:00
Fedora Release Engineering
1df7abefca Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 05:26:08 +00:00
Remi Collet
4e02ea1a8d update to 1.22.0
re-license spec file to CECILL-2.1
2025-04-30 07:36:54 +02:00
Fedora Release Engineering
df1895cef5 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-18 09:32:04 +00:00
Remi Collet
3c40a08813 v1.20.0 2024-11-21 07:52:46 +01:00
Fedora Release Engineering
93cf3baba8 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-19 07:18:22 +00:00
Remi Collet
ddfae1a5a8 v1.19.0 2024-02-29 15:21:31 +01:00
Fedora Release Engineering
9372692846 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-25 23:04:16 +00:00
Fedora Release Engineering
a7682f1622 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-21 21:16:56 +00:00
Remi Collet
674ec85357 1.18.0 sources 2023-12-08 08:20:16 +01:00
Remi Collet
2f6298279a update to 1.18.0
run test suite with phpunit8, phpunit9 and phpunit10
2023-12-08 08:14:24 +01:00
Remi Collet
1ba1a3b24e disable phpspec tests 2023-09-27 16:33:17 +02:00
Fedora Release Engineering
6910895e60 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-21 04:57:27 +00:00
3 changed files with 101 additions and 50 deletions

4
.gitignore vendored
View file

@ -31,3 +31,7 @@ clog
/php-phpspec-prophecy-1.16.0-be8cac5.tgz
/php-phpspec-prophecy-1.17.0-15873c6.tgz
/php-phpspec-prophecy-1.18.0-d4f454f.tgz
/php-phpspec-prophecy-1.19.0-67a759e.tgz
/php-phpspec-prophecy-1.20.0-a0165c6.tgz
/php-phpspec-prophecy-1.22.0-35f1adb.tgz
/php-phpspec-prophecy-1.24.0-a24f1bd.tgz

View file

@ -1,12 +1,12 @@
# remirepo/fedora spec file for php-phpspec-prophecy
#
# Copyright (c) 2015-2023 Remi Collet
# License: CC-BY-SA-4.0
# http://creativecommons.org/licenses/by-sa/4.0/
# SPDX-FileCopyrightText: Copyright 2015-2026 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 d4f454f7e1193933f04e6500de3e79191648ed0c
%global gh_commit a24f1bda2d00a03877f7f99d9e6b150baf543f6d
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner phpspec
%global gh_project prophecy
@ -15,8 +15,8 @@
%bcond_with phpspec
Name: php-phpspec-prophecy
Version: 1.18.0
Release: 1%{?dist}
Version: 1.24.0
Release: 2%{?dist}
Summary: Highly opinionated mocking framework for PHP
License: MIT
@ -25,41 +25,40 @@ Source0: %{name}-%{version}-%{gh_short}.tgz
Source2: makesrc.sh
BuildArch: noarch
BuildRequires: php(language) >= 7.2
BuildRequires: php(language) >= 8.2
%if %{with tests}
BuildRequires: (php-composer(phpdocumentor/reflection-docblock) >= 5.2 with php-composer(phpdocumentor/reflection-docblock) < 6)
BuildRequires: (php-composer(sebastian/comparator) >= 3.0 with php-composer(sebastian/comparator) < 6)
BuildRequires: (php-composer(sebastian/recursion-context) >= 3.0 with php-composer(sebastian/recursion-context) < 6)
BuildRequires: (php-composer(sebastian/comparator) >= 3.0 with php-composer(sebastian/comparator) < 8)
BuildRequires: (php-composer(sebastian/recursion-context) >= 3.0 with php-composer(sebastian/recursion-context) < 8)
BuildRequires: (php-composer(doctrine/instantiator) >= 1.2 with php-composer(doctrine/instantiator) < 3)
# from composer.json, "require-dev": {
# "phpspec/phpspec": "^6.0 || ^7.0"
# "phpstan/phpstan": "^1.9",
# "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0"
# "friendsofphp/php-cs-fixer": "^3.88",
# "phpspec/phpspec": "^6.0 || ^7.0 || ^8.0",
# "phpstan/phpstan": "^2.1.13",
# "phpunit/phpunit": "^11.0 || ^12.0"
%if %{with phpspec}
BuildRequires: php-composer(phpspec/phpspec) >= 6.0
%endif
BuildRequires: phpunit8
BuildRequires: phpunit9
BuildRequires: phpunit10
BuildRequires: phpunit11
BuildRequires: phpunit12
%endif
# Autoloader
BuildRequires: php-fedora-autoloader-devel
# from composer.json, "requires": {
# "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.*",
# "php": "8.2.* || 8.3.* || 8.4.*",
# "phpdocumentor/reflection-docblock": "^5.2",
# "sebastian/comparator": "^3.0 || ^4.0 || ^5.0",
# "sebastian/comparator": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
# "doctrine/instantiator": "^1.2 || ^2.0",
# "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0"
Requires: php(language) >= 7.2
# "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
# "symfony/deprecation-contracts": "^2.5 || ^3.1"
Requires: php(language) >= 8.2
Requires: (php-composer(phpdocumentor/reflection-docblock) >= 5.2 with php-composer(phpdocumentor/reflection-docblock) < 6)
Requires: (php-composer(sebastian/comparator) >= 3.0 with php-composer(sebastian/comparator) < 6)
Requires: (php-composer(sebastian/recursion-context) >= 3.0 with php-composer(sebastian/recursion-context) < 6)
Requires: (php-composer(sebastian/comparator) >= 3.0 with php-composer(sebastian/comparator) < 8)
Requires: (php-composer(sebastian/recursion-context) >= 3.0 with php-composer(sebastian/recursion-context) < 8)
Requires: (php-composer(doctrine/instantiator) >= 1.2 with php-composer(doctrine/instantiator) < 3)
# From phpcompatinfo report for version 1.11.0
Requires: php-pcre
Requires: php-reflection
Requires: php-spl
# only pcre, reflection and spl
# Autoloader
Requires: php-composer(fedora/autoloader)
@ -82,7 +81,7 @@ to be used inside any testing framework out there with minimal effort.
phpab --template fedora --output src/Prophecy/autoload.php src
cat << 'EOF' | tee -a src/Prophecy/autoload.php
if (PHP_VERSION_ID > 80100) {
if (PHP_VERSION_ID > 80400) {
$inst = [
'%{_datadir}/php/Doctrine/Instantiator2/autoload.php',
'%{_datadir}/php/Doctrine/Instantiator/autoload.php',
@ -95,22 +94,35 @@ if (PHP_VERSION_ID > 80100) {
'%{_datadir}/php/phpDocumentor/Reflection/DocBlock5/autoload.php',
]);
if (!class_exists('SebastianBergmann\\Comparator\\Comparator')) { // v2 from phpunit, v1 from phpspec
\Fedora\Autoloader\Dependencies::required([
[
'%{_datadir}/php/SebastianBergmann/Comparator5/autoload.php',
'%{_datadir}/php/SebastianBergmann/Comparator4/autoload.php',
'%{_datadir}/php/SebastianBergmann/Comparator3/autoload.php',
],
]);
$inst = [
'%{_datadir}/php/SebastianBergmann/Comparator6/autoload.php',
'%{_datadir}/php/SebastianBergmann/Comparator5/autoload.php',
'%{_datadir}/php/SebastianBergmann/Comparator4/autoload.php',
'%{_datadir}/php/SebastianBergmann/Comparator3/autoload.php',
];
if (PHP_VERSION_ID > 80300) {
array_unshift($inst, '%{_datadir}/php/SebastianBergmann/Comparator7/autoload.php');
}
\Fedora\Autoloader\Dependencies::required([$inst]);
}
if (!class_exists('SebastianBergmann\\RecursionContext\\Context')) { // v2 from phpunit, v1 from phpspec
\Fedora\Autoloader\Dependencies::required([
[
$inst = [
'%{_datadir}/php/SebastianBergmann/RecursionContext6/autoload.php',
'%{_datadir}/php/SebastianBergmann/RecursionContext5/autoload.php',
'%{_datadir}/php/SebastianBergmann/RecursionContext4/autoload.php',
'%{_datadir}/php/SebastianBergmann/RecursionContext3/autoload.php',
],
]);
];
if (PHP_VERSION_ID > 80300) {
array_unshift($inst, '%{_datadir}/php/SebastianBergmann/RecursionContext7/autoload.php');
}
\Fedora\Autoloader\Dependencies::required([$inst]);
}
// from https://github.com/symfony/deprecation-contracts
if (!function_exists('trigger_deprecation')) {
function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): void
{
@trigger_error(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USER_DEPRECATED);
}
}
EOF
@ -139,24 +151,22 @@ phpspec --version
%endif
ret=0
# ignore it_can_not_double_an_enum on all version. Not ready
for cmd in php php81 php82 php83; do
for cmd in php php82 php83 php84 php85; do
if which $cmd; then
%if %{with phpspec}
$cmd -d auto_prepend_file=vendor/autoload.php \
%{_bindir}/phpspec run --format pretty --verbose --no-ansi || ret=1
%endif
$cmd -d auto_prepend_file=vendor/autoload.php \
%{_bindir}/phpunit8 \
|| ret=1
$cmd -d auto_prepend_file=vendor/autoload.php \
%{_bindir}/phpunit9 \
|| ret=1
$cmd -d auto_prepend_file=vendor/autoload.php \
%{_bindir}/phpunit10 \
%{_bindir}/phpunit11 \
|| ret=1
fi
done
if [ -x %{_bindir}/phpunit12 ]; then
for cmd in php php83 php84 php85; do
if which $cmd; then
$cmd -d auto_prepend_file=vendor/autoload.php \
%{_bindir}/phpunit12 \
|| ret=1
fi
done
fi
exit $ret
%else
: Test suite disabled
@ -171,11 +181,48 @@ exit $ret
%changelog
* Mon Jan 12 2026 Remi Collet <remi@remirepo.net> - 1.24.0-2
- update to 1.24.0
- use doctrine/instantiator v2 only with PHP 8.4+
- raise dependency on PHP 8.2
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Wed Apr 30 2025 Remi Collet <remi@remirepo.net> - 1.22.0-1
- update to 1.22.0
- re-license spec file to CECILL-2.1
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.20.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Thu Nov 21 2024 Remi Collet <remi@remirepo.net> - 1.20.0-1
- update to 1.20.0
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Thu Feb 29 2024 Remi Collet <remi@remirepo.net> - 1.19.0-1
- update to 1.19.0
- allow doctrine/instantiator 6
- allow sebastian/recursion-context 6
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Fri Dec 8 2023 Remi Collet <remi@remirepo.net> - 1.18.0-1
- update to 1.18.0
- run test suite with phpunit8, phpunit9 and phpunit10
* Wed Sep 27 2023 Remi Collet <remi@remirepo.net> - 1.17.0-4
- disable phpspec tests
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.17.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Fri Feb 3 2023 Remi Collet <remi@remirepo.net> - 1.17.0-2
- fix autoloader

View file

@ -1 +1 @@
SHA512 (php-phpspec-prophecy-1.18.0-d4f454f.tgz) = 17445b49b7c3177d367d4ccfdddcf66b888d203e08b46eeeadf84d8cd5c3eb5aa4a845575e3670b72cdc951e16614bddb539f12f799113f1b8f3a14c256a8b90
SHA512 (php-phpspec-prophecy-1.24.0-a24f1bd.tgz) = 1fb41f8835788bb06c4ec0ae67460f80370d0466a0036368ce5822750a3544ba306a3660011b95b127276695027cd099bcd85259e4d1faeff36caa11dd4610de