Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc68b5bdd0 | ||
|
|
108af103ab | ||
|
|
418eaf73bd | ||
|
|
16194eb227 |
3 changed files with 28 additions and 13 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -14,3 +14,5 @@
|
||||||
/php-swaggest-json-diff-3.10.4-f4e5117.tgz
|
/php-swaggest-json-diff-3.10.4-f4e5117.tgz
|
||||||
/php-swaggest-json-diff-3.10.5-17bfc66.tgz
|
/php-swaggest-json-diff-3.10.5-17bfc66.tgz
|
||||||
/php-swaggest-json-diff-3.11.0-c55d38a.tgz
|
/php-swaggest-json-diff-3.11.0-c55d38a.tgz
|
||||||
|
/php-swaggest-json-diff-3.12.0-d17d237.tgz
|
||||||
|
/php-swaggest-json-diff-3.12.1-7ebc4ea.tgz
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
# remirepo/fedora spec file for php-swaggest-json-diff
|
# remirepo/fedora spec file for php-swaggest-json-diff
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019-2024 Remi Collet
|
# SPDX-FileCopyrightText: Copyright 2019-2025 Remi Collet
|
||||||
# License: CC-BY-SA-4.0
|
# SPDX-License-Identifier: CECILL-2.1
|
||||||
# http://creativecommons.org/licenses/by-sa/4.0/
|
# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
|
||||||
#
|
#
|
||||||
# Please, preserve the changelog entries
|
# Please, preserve the changelog entries
|
||||||
#
|
#
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
%bcond_without tests
|
%bcond_without tests
|
||||||
|
|
||||||
# Github
|
# Github
|
||||||
%global gh_commit c55d38a3cb372753b5d5ee4c9b7d8470e486e6a5
|
%global gh_commit 7ebc4eab95bcc73916433964c266588d09b35052
|
||||||
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
|
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
|
||||||
%global gh_owner swaggest
|
%global gh_owner swaggest
|
||||||
%global gh_project json-diff
|
%global gh_project json-diff
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
%global major %nil
|
%global major %nil
|
||||||
|
|
||||||
Name: php-%{pk_vendor}-%{pk_project}%{major}
|
Name: php-%{pk_vendor}-%{pk_project}%{major}
|
||||||
Version: 3.11.0
|
Version: 3.12.1
|
||||||
Release: 2%{?gh_date?%{gh_date}git%{gh_short}}%{?dist}
|
Release: 2%{?gh_date?%{gh_date}git%{gh_short}}%{?dist}
|
||||||
Summary: JSON diff/rearrange/patch/pointer library for PHP
|
Summary: JSON diff/rearrange/patch/pointer library for PHP
|
||||||
|
|
||||||
|
|
@ -34,23 +34,23 @@ Source1: makesrc.sh
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
|
BuildRequires: php(language) >= 7.1
|
||||||
BuildRequires: php-json
|
BuildRequires: php-json
|
||||||
# For tests, from composer.json "require-dev": {
|
# For tests, from composer.json "require-dev": {
|
||||||
# "phpunit/phpunit": "4.8.37"
|
# "phpunit/phpunit": "4.8.37"
|
||||||
BuildRequires: phpunit9
|
BuildRequires: phpunit9
|
||||||
%global phpunit %{_bindir}/phpunit9
|
%global phpunit %{_bindir}/phpunit9
|
||||||
BuildRequires: php-filter
|
|
||||||
BuildRequires: php-pcre
|
|
||||||
# For autoloader
|
# For autoloader
|
||||||
BuildRequires: php-fedora-autoloader-devel
|
BuildRequires: php-fedora-autoloader-devel
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# From composer.json, "require": {
|
# From composer.json, "require": {
|
||||||
# "ext-json": "*"
|
# "ext-json": "*",
|
||||||
|
# "php": ">=7.1"
|
||||||
|
Requires: php(language) >= 7.1
|
||||||
Requires: php-json
|
Requires: php-json
|
||||||
# From phpcompatinfo report for 3.7.0
|
# From phpcompatinfo report for 3.12.1
|
||||||
Requires: php-filter
|
# only filter, json and pcre
|
||||||
Requires: php-pcre
|
|
||||||
# For generated autoloader
|
# For generated autoloader
|
||||||
Requires: php-composer(fedora/autoloader)
|
Requires: php-composer(fedora/autoloader)
|
||||||
|
|
||||||
|
|
@ -96,7 +96,7 @@ class PHPUnit_Framework_TestCase extends \PHPUnit\Framework\Testcase {
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
ret=0
|
ret=0
|
||||||
for cmd in php php81 php82 php83; do
|
for cmd in php php81 php82 php83 php84; do
|
||||||
if which $cmd; then
|
if which $cmd; then
|
||||||
$cmd %{phpunit} --no-coverage || ret=1
|
$cmd %{phpunit} --no-coverage || ret=1
|
||||||
fi
|
fi
|
||||||
|
|
@ -117,6 +117,19 @@ exit $ret
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Mar 10 2025 Remi Collet <remi@remirepo.net> - 3.12.1-1
|
||||||
|
- update to 3.12.1
|
||||||
|
|
||||||
|
* Tue Mar 4 2025 Remi Collet <remi@remirepo.net> - 3.12.0-1
|
||||||
|
- update to 3.12.0
|
||||||
|
- re-license spec file to CECILL-2.1
|
||||||
|
|
||||||
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.0-2
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.0-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (php-swaggest-json-diff-3.11.0-c55d38a.tgz) = 21c061f2e66031bea85e7ca1125f2b5af30d213a25a9387a967554e39e80fa88ea87af51d5908a101634dccf7a43447260565d8603ede46300c60c0635a068ef
|
SHA512 (php-swaggest-json-diff-3.12.1-7ebc4ea.tgz) = ae848bb3683898dddee0212cbf74bafdaf4558913ba8be97ccff5773e5de98e4102bedeb4bfc479b9c6b94ba9d4df99ffa2f9ff7fd13fb7fd773fc30887a2c94
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue