Compare commits

...

10 Commits

Author SHA1 Message Date
Ondrej Mejzlik 1afbcdcc76 update plans 2024-06-10 16:41:35 +02:00
Jaroslav Škarvada 1579077013 Added recently approved SPDX exception rrdtool-floss-exception-2.0
Resolves: RHEL-38985
2024-05-28 13:23:10 +02:00
Jaroslav Škarvada caa12bda08 Converted license to SPDX 2024-01-24 16:37:15 +01:00
Jaroslav Škarvada 508fac5285 Fixed FTBFS with GCC 14 2024-01-22 18:19:00 +01:00
Fedora Release Engineering 486b9e47b6 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-22 12:03:03 +00:00
Mamoru TASAKA cc5c2286c7 Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.3 2024-01-03 23:24:35 +09:00
Fedora Release Engineering 76f479e105 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-21 17:08:01 +00:00
Jitka Plesnikova ed76832db7 Perl 5.38 rebuild 2023-07-11 16:06:48 +02:00
Python Maint 71e0e4eaf6 Rebuilt for Python 3.12 2023-06-13 20:52:11 +02:00
Ondrej Mejzlik 0006f92a78 Adding fmf plans and gating 2023-05-09 10:28:52 +02:00
6 changed files with 1604 additions and 2 deletions

1
.fmf/version Normal file
View File

@ -0,0 +1 @@
1

1
ci.fmf Normal file
View File

@ -0,0 +1 @@
resultsdb-testcase: separate

25
gating.yaml Normal file
View File

@ -0,0 +1,25 @@
--- !Policy
product_versions:
- fedora-*
decision_context: bodhi_update_push_testing
subject_type: koji_build
rules:
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/tier1-public.functional}
#Rawhide
--- !Policy
product_versions:
- fedora-*
decision_context: bodhi_update_push_stable
subject_type: koji_build
rules:
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/tier1-public.functional}
#gating rhel
--- !Policy
product_versions:
- rhel-*
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/tier1-public.functional}
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/tier1-internal.functional}

36
plans.fmf Normal file
View File

@ -0,0 +1,36 @@
/tier1-internal:
plan:
import:
url: https://src.fedoraproject.org/tests/rrdtool.git
name: /plans/tier1/internal
/tier1-public:
plan:
import:
url: https://src.fedoraproject.org/tests/rrdtool.git
name: /plans/tier1/public
/tier2-tier3-internal:
plan:
import:
url: https://src.fedoraproject.org/tests/rrdtool.git
name: /plans/tier2-tier3/internal
/tier2-tier3-public:
plan:
import:
url: https://src.fedoraproject.org/tests/rrdtool.git
name: /plans/tier2-tier3/public
/others-internal:
plan:
import:
url: https://src.fedoraproject.org/tests/rrdtool.git
name: /plans/others/internal
/others-public:
plan:
import:
url: https://src.fedoraproject.org/tests/rrdtool.git
name: /plans/others/public

File diff suppressed because it is too large Load Diff

View File

@ -18,8 +18,9 @@
Summary: Round Robin Database Tool to store and display time-series data
Name: rrdtool
Version: 1.8.0
Release: 9%{?dist}
License: GPLv2+ with exceptions
Release: 17%{?dist}
# gd license in php bindings isn't by default built-in
License: gpl-1.0-or-later AND gpl-2.0-or-later AND gpl-2.0-or-later WITH rrdtool-floss-exception-2.0 AND mit AND lgpl-2.0-or-later AND lgpl-2.1-or-later AND bsd-source-code AND snprintf AND bsd-3-clause AND gpl-2.0-only AND licenseref-fedora-public-domain AND gtkbook
URL: https://oss.oetiker.ch/rrdtool/
Source0: https://github.com/oetiker/rrdtool-1.x/releases/download/v%{version}/%{name}-%{version}.tar.gz
Source1: php4-%{svnrev}.tar.gz
@ -33,6 +34,9 @@ Patch4: rrdtool-1.4.8-php-ppc-fix.patch
# https://github.com/oetiker/rrdtool-1.x/commit/e59f703
Patch5: rrdtool-1.8.0-BUILD_DATE-fix.patch
Patch6: rrdtool-configure-c99.patch
# gcc-14 fix
# https://github.com/oetiker/rrdtool-1.x/commit/b76e3c578f1e9f582e9c28f50d82b1f569602075
Patch7: rrdtool-1.8.0-const-argv.patch
BuildRequires: make
BuildRequires: gcc-c++
@ -182,6 +186,7 @@ The %{name}-lua package includes RRDtool bindings for Lua.
%patch4 -p1 -b .php-ppc-fix
%patch5 -p1 -b .BUILD_DATE-fix
%patch6 -p1 -b .configure-c99
%patch7 -p1 -b .const-argv
# Fix to find correct python dir on lib64
perl -pi -e 's|get_python_lib\(0,0,prefix|get_python_lib\(1,0,prefix|g' \
@ -410,6 +415,31 @@ LD_LIBRARY_PATH=%{buildroot}%{_libdir} php -n \
%endif
%changelog
* Mon May 27 2024 Jaroslav Škarvada <jskarvad@redhat.com> - 1.8.0-17
- Added recently approved SPDX exception rrdtool-floss-exception-2.0
Resolves: RHEL-38985
* Wed Jan 24 2024 Jaroslav Škarvada <jskarvad@redhat.com> - 1.8.0-16
- Converted license to SPDX
* Mon Jan 22 2024 Jaroslav Škarvada <jskarvad@redhat.com> - 1.8.0-15
- Fixed FTBFS with GCC 14
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Wed Jan 03 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.8.0-13
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.3
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1.8.0-11
- Perl 5.38 rebuild
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 1.8.0-10
- Rebuilt for Python 3.12
* Mon Apr 17 2023 Florian Weimer <fweimer@redhat.com> - 1.8.0-9
- Backport upstream patch to fix C99 issue in configure script