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