Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dbd17da656 | ||
|
|
3b11601ae4 | ||
|
|
07b65fe436 |
3 changed files with 17 additions and 14 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +1,4 @@
|
||||||
clog
|
clog
|
||||||
/php-webmozart-assert-1.11.0-11cb2199493b2f8a3b53e7f19068fc6aac760991.tar.gz
|
/php-webmozart-assert-1.11.0-11cb2199493b2f8a3b53e7f19068fc6aac760991.tar.gz
|
||||||
|
/php-webmozart-assert-1.12.0-541057574806f942c94662b817a50f63f7345360.tar.gz
|
||||||
|
/php-webmozart-assert-1.12.1-9be6926d8b485f55b9229203f962b51ed377ba68.tar.gz
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#
|
#
|
||||||
# Fedora spec file for php-webmozart-assert
|
# Fedora spec file for php-webmozart-assert
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2020 Shawn Iwinski <shawn@iwin.ski>
|
# Copyright (c) 2016-2025 Shawn Iwinski <shawn@iwin.ski>
|
||||||
#
|
#
|
||||||
# License: MIT
|
# License: MIT
|
||||||
# http://opensource.org/licenses/MIT
|
# http://opensource.org/licenses/MIT
|
||||||
|
|
@ -13,8 +13,8 @@
|
||||||
%global bootstrap 0
|
%global bootstrap 0
|
||||||
%global github_owner webmozart
|
%global github_owner webmozart
|
||||||
%global github_name assert
|
%global github_name assert
|
||||||
%global github_version 1.11.0
|
%global github_version 1.12.1
|
||||||
%global github_commit 11cb2199493b2f8a3b53e7f19068fc6aac760991
|
%global github_commit 9be6926d8b485f55b9229203f962b51ed377ba68
|
||||||
|
|
||||||
%global composer_vendor webmozart
|
%global composer_vendor webmozart
|
||||||
%global composer_project assert
|
%global composer_project assert
|
||||||
|
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
Name: php-%{composer_vendor}-%{composer_project}
|
Name: php-%{composer_vendor}-%{composer_project}
|
||||||
Version: %{github_version}
|
Version: %{github_version}
|
||||||
Release: 7%{?github_release}%{?dist}
|
Release: 1%{?github_release}%{?dist}
|
||||||
Summary: Assertions to validate method input/output with nice error messages
|
Summary: Assertions to validate method input/output with nice error messages
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
|
|
@ -57,12 +57,8 @@ BuildRequires: php(language) >= %{php_min_ver}
|
||||||
BuildRequires: php-ctype
|
BuildRequires: php-ctype
|
||||||
BuildRequires: %{phpunit_require}
|
BuildRequires: %{phpunit_require}
|
||||||
## phpcompatinfo (computed from version 1.7.0)
|
## phpcompatinfo (computed from version 1.7.0)
|
||||||
BuildRequires: php-filter
|
|
||||||
BuildRequires: php-mbstring
|
BuildRequires: php-mbstring
|
||||||
BuildRequires: php-pcre
|
|
||||||
BuildRequires: php-reflection
|
|
||||||
BuildRequires: php-simplexml
|
BuildRequires: php-simplexml
|
||||||
BuildRequires: php-spl
|
|
||||||
## Autoloader
|
## Autoloader
|
||||||
BuildRequires: php-composer(fedora/autoloader)
|
BuildRequires: php-composer(fedora/autoloader)
|
||||||
%endif
|
%endif
|
||||||
|
|
@ -71,10 +67,7 @@ BuildRequires: php-composer(fedora/autoloader)
|
||||||
Requires: php(language) >= %{php_min_ver}
|
Requires: php(language) >= %{php_min_ver}
|
||||||
Requires: php-ctype
|
Requires: php-ctype
|
||||||
# phpcompatinfo (computed from version 1.7.0)
|
# phpcompatinfo (computed from version 1.7.0)
|
||||||
Requires: php-filter
|
|
||||||
Requires: php-mbstring
|
Requires: php-mbstring
|
||||||
Requires: php-pcre
|
|
||||||
Requires: php-spl
|
|
||||||
# Autoloader
|
# Autoloader
|
||||||
Requires: php-composer(fedora/autoloader)
|
Requires: php-composer(fedora/autoloader)
|
||||||
|
|
||||||
|
|
@ -126,7 +119,7 @@ BOOTSTRAP
|
||||||
: Upstream tests
|
: Upstream tests
|
||||||
RETURN_CODE=0
|
RETURN_CODE=0
|
||||||
PHPUNIT=$(which %{phpunit_exec})
|
PHPUNIT=$(which %{phpunit_exec})
|
||||||
for PHP_EXEC in php74 php80 php81 php82; do
|
for PHP_EXEC in php81 php82 php83 php84 php85; do
|
||||||
if [ -z "$PHP_EXEC" ] || which $PHP_EXEC; then
|
if [ -z "$PHP_EXEC" ] || which $PHP_EXEC; then
|
||||||
$PHP_EXEC \
|
$PHP_EXEC \
|
||||||
-d auto_prepend_file=%{buildroot}%{phpdir}/Webmozart/Assert/autoload.php \
|
-d auto_prepend_file=%{buildroot}%{phpdir}/Webmozart/Assert/autoload.php \
|
||||||
|
|
@ -142,7 +135,6 @@ exit $RETURN_CODE
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{!?_licensedir:%global license %%doc}
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc *.md
|
%doc *.md
|
||||||
%doc composer.json
|
%doc composer.json
|
||||||
|
|
@ -151,6 +143,15 @@ exit $RETURN_CODE
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 30 2025 Remi Collet <remi@remirepo.net> - 1.12.1-1
|
||||||
|
- update to 1.12.1 (no change)
|
||||||
|
|
||||||
|
* Tue Oct 21 2025 Remi Collet <remi@remirepo.net> - 1.12.0-1
|
||||||
|
- update to 1.12.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-7
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (php-webmozart-assert-1.11.0-11cb2199493b2f8a3b53e7f19068fc6aac760991.tar.gz) = 3af0223d5aeb72b4f83acb22b2b347176a4fc404f109e00ce6caa740908a3fbe0f00179c652b9a58930b8a4a55722bf4a4a77bbc70a098fc2ff6cc0e316a0c05
|
SHA512 (php-webmozart-assert-1.12.1-9be6926d8b485f55b9229203f962b51ed377ba68.tar.gz) = 1d8732643dd50272fbce65adee8fb6511f034021ad9d14e40d437dbb181368934cf4f5f552ae41e4e48a99cd23d570070d00d64a7702eefb578e1cbd38253edc
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue