Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
be1daab614 |
4 changed files with 13 additions and 120 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -4,7 +4,3 @@ clog
|
|||
/php-doctrine-instantiator-1.1.0-185b886.tgz
|
||||
/php-doctrine-instantiator-1.2.0-a2c5901.tgz
|
||||
/php-doctrine-instantiator-1.3.0-ae466f7.tgz
|
||||
/php-doctrine-instantiator-1.3.1-f350df0.tgz
|
||||
/php-doctrine-instantiator-1.4.0-d56bf61.tgz
|
||||
/php-doctrine-instantiator-1.4.1-10dcfce.tgz
|
||||
/php-doctrine-instantiator-1.5.0-0a0fa97.tgz
|
||||
|
|
|
|||
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
"name": "doctrine/instantiator",
|
||||
"description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
|
||||
"type": "library",
|
||||
"license": "MIT",
|
||||
"homepage": "https://www.doctrine-project.org/projects/instantiator.html",
|
||||
"keywords": [
|
||||
"instantiate",
|
||||
"constructor"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Marco Pivetta",
|
||||
"email": "ocramius@gmail.com",
|
||||
"homepage": "https://ocramius.github.io/"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": "^7.1 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"ext-phar": "*",
|
||||
"ext-pdo": "*",
|
||||
"doctrine/coding-standard": "^8.0",
|
||||
"phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
|
||||
"phpstan/phpstan": "^0.12",
|
||||
"phpstan/phpstan-phpunit": "^0.12",
|
||||
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-0": {
|
||||
"DoctrineTest\\InstantiatorPerformance\\": "tests",
|
||||
"DoctrineTest\\InstantiatorTest\\": "tests",
|
||||
"DoctrineTest\\InstantiatorTestAsset\\": "tests"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# remirepo/fedora spec file for php-doctrine-instantiator
|
||||
#
|
||||
# Copyright (c) 2014-2023 Remi Collet
|
||||
# Copyright (c) 2014-2019 Remi Collet
|
||||
# License: CC-BY-SA
|
||||
# http://creativecommons.org/licenses/by-sa/4.0/
|
||||
#
|
||||
|
|
@ -9,11 +9,10 @@
|
|||
|
||||
# bootstrap needed when rebuilding PHPUnit for new major version
|
||||
%global bootstrap 0
|
||||
%global gh_commit 0a0fa9780f5d4e507415a065172d26a98d02047b
|
||||
%global gh_commit ae466f726242e637cebdd526a7d991b9433bacf1
|
||||
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
|
||||
%global gh_owner doctrine
|
||||
%global gh_project instantiator
|
||||
%global major %nil
|
||||
%if %{bootstrap}
|
||||
%global with_tests 0%{?_with_tests:1}
|
||||
%else
|
||||
|
|
@ -21,8 +20,9 @@
|
|||
%endif
|
||||
|
||||
Name: php-doctrine-instantiator
|
||||
Version: 1.5.0
|
||||
Release: 8%{?dist}
|
||||
Release: 1%{?dist}
|
||||
%global major %nil
|
||||
Version: 1.3.0
|
||||
Summary: Instantiate objects in PHP without invoking their constructors
|
||||
|
||||
License: MIT
|
||||
|
|
@ -38,12 +38,11 @@ BuildRequires: php-phar
|
|||
BuildRequires: php-pdo
|
||||
BuildRequires: php-reflection
|
||||
BuildRequires: php-spl
|
||||
%global phpunit %{_bindir}/phpunit9
|
||||
BuildRequires: %{phpunit}
|
||||
BuildRequires: phpunit6
|
||||
%endif
|
||||
|
||||
# From composer.json
|
||||
# "php": "^7.1 || ^8.0"
|
||||
# "php": "^7.1"
|
||||
Requires: php(language) >= 7.1
|
||||
# From phpcompatinfo report for version 1.1.0
|
||||
Requires: php-reflection
|
||||
|
|
@ -88,18 +87,14 @@ mkdir vendor
|
|||
tests
|
||||
cat << 'EOF' | tee -a vendor/autoload.php
|
||||
require "%{buildroot}%{_datadir}/php/Doctrine/Instantiator/autoload.php";
|
||||
Fedora\Autoloader\Autoload::addPsr0('DoctrineTest\\InstantiatorPerformance\\', dirname(__DIR__).'/tests');
|
||||
Fedora\Autoloader\Autoload::addPsr0('DoctrineTest\\InstantiatorTest\\', dirname(__DIR__).'/tests');
|
||||
Fedora\Autoloader\Autoload::addPsr0('DoctrineTest\\InstantiatorTestAsset\\', dirname(__DIR__).'/tests');
|
||||
EOF
|
||||
|
||||
: Run test suite
|
||||
ret=0
|
||||
for cmdarg in "php %{phpunit}" php80 php81 php82; do
|
||||
if which $cmdarg; then
|
||||
set $cmdarg
|
||||
$1 -d auto_prepend_file=vendor/autoload.php \
|
||||
${2:-%{_bindir}/phpunit9} \
|
||||
for cmd in php php71 php72 php73 php74; do
|
||||
if which $cmd; then
|
||||
$cmd -d include_path=".:%{buildroot}%{_datadir}/php:%{_datadir}/php" \
|
||||
%{_bindir}/phpunit6 \
|
||||
--verbose || ret=1
|
||||
fi
|
||||
done
|
||||
|
|
@ -117,65 +112,9 @@ exit $ret
|
|||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Jan 3 2023 Remi Collet <remi@remirepo.net> - 1.5.0-1
|
||||
- update to 1.5.0
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Mar 3 2022 Remi Collet <remi@remirepo.net> - 1.4.1-1
|
||||
- update to 1.4.1
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Nov 12 2020 Remi Collet <remi@remirepo.net> - 1.4.0-1
|
||||
- update to 1.4.0 (no change)
|
||||
- switch to phpunit9
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jun 2 2020 Remi Collet <remi@remirepo.net> - 1.3.1-1
|
||||
- update to 1.3.1 (no change)
|
||||
- switch to phpunit8
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Nov 13 2019 Remi Collet <remi@remirepo.net> - 1.3.0-1
|
||||
- update to 1.3.0
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Mar 25 2019 Remi Collet <remi@remirepo.net> - 1.2.0-1
|
||||
- update to 1.2.0
|
||||
|
||||
|
|
@ -218,4 +157,4 @@ exit $ret
|
|||
- update to 1.0.3
|
||||
|
||||
* Mon Aug 25 2014 Remi Collet <remi@fedoraproject.org> - 1.0.2-1
|
||||
- initial package, version 1.0.2
|
||||
- initial package, version 1.0.2
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (php-doctrine-instantiator-1.5.0-0a0fa97.tgz) = 0ec9c5ea6a72fcbbd1752196de849c6530a09d95c7b86bed45b67639db39d1130f03c3bf6cfa373ed063298223c995a16fe219e09d849b5ce55a64ba7817062f
|
||||
SHA512 (php-doctrine-instantiator-1.3.0-ae466f7.tgz) = 880ae286ea0895f1ccc96f0fd8756f50bd8c4dfce35ec331aa3158250cd1168366e877dd32a8c849a0aeabc495465de1d8e5a880ba49f62811f21dd17f334424
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue