From 5dab2931f415ff07bf546ff8e9202456572c84cd Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Mon, 8 May 2023 16:30:44 -0400 Subject: [PATCH 01/18] migrated to SPDX license --- babeltrace.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/babeltrace.spec b/babeltrace.spec index 4d29d7e..cd6fec5 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,8 +1,8 @@ Name: babeltrace Version: 1.5.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format -License: MIT and GPLv2 +License: MIT AND GPL-2.0-only URL: https://www.efficios.com/babeltrace Source0: https://www.efficios.com/files/%{name}/%{name}-%{version}.tar.bz2 Source1: https://www.efficios.com/files/%{name}/%{name}-%{version}.tar.bz2.asc @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Mon May 08 2023 Michael Jeanson - 1.5.11-3 +- migrated to SPDX license + * Wed Jan 18 2023 Fedora Release Engineering - 1.5.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From ea53e33a2e5d2e71aa455ec1b1e89707961c0a3a Mon Sep 17 00:00:00 2001 From: Michal Kolar Date: Wed, 31 May 2023 10:31:44 +0000 Subject: [PATCH 02/18] fix tmt plan setup, "how: beakerlib" is no longer supported --- plans/ci.fmf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plans/ci.fmf b/plans/ci.fmf index 1ad2c12..3fd3ab7 100644 --- a/plans/ci.fmf +++ b/plans/ci.fmf @@ -1,6 +1,5 @@ summary: CI Gating Plan discover: how: fmf - directory: tests execute: - how: beakerlib + how: tmt From 5b368fd7e1b48e17b009d5ec5cb80e99a7bdc218 Mon Sep 17 00:00:00 2001 From: Keith Seitz Date: Tue, 30 May 2023 11:19:26 -0700 Subject: [PATCH 03/18] Update missing SPDX licenses According to Fedora Licensing Guidelines, the License: field should now "[enumerate] all licenses covering any code or other material contained in the corresponding binary RPM." Furthermore, "no further analysis as to the 'effective' license should be done." This list of licenses need not include files which "do not end up being compiled or otherwise included in the binary package. Common examples of this are Autoconf scripts and non-bundled test files." Fossology lists the following licenses for this package: 1. MIT Used throughout. Keep. 2. LicenseRef-scancode-fsf-unlimited-no-warranty Makefile.in's and aclocal.m4. Omit. 3. GPL-2.0-only Used in tests/. Omit. 4. GPL-2.0-or-later Used in m4/ and config/. Omit. 5. GPL-3.0-or-later Used in conifg/, m4/, tests/, and the bison-generated parser in formats/ctf/metadata/ctf-parser.[ch]. Keep. [See Bison-exception-2.2 below.] 6. LicenseRef-scancode-autoconf-simple-exception-2.0 Used in aclocal.m4 and config/. Omit. 7. LicenseRef-scancode-autoconf-macro-exception Used only in m4/. Omit. 8. FSFULLR Used in m4/ and aclocal.m4. Omit. 9. FSFAP Used only in m4/. Omit. 10. LicenseRef-scancode-free-unknown In bindings/python/setup.py.in: false identification. Clearly MIT. In config/. Omit. 11. Libtool-exception Used in config/, m4/, and configure. Omit. 12. LGPL-2.1-only From include/babeltrace/list.h. Keep. 13. GPL-1.0-or-later From tests/bin/*/*.in: [False identification.] Omit. 14. LicenseRef-scancode-autoconf-simple-exception Used only in config/. Omit. 15. FSFUL Used in m4/ and configure. Omit. 16. Bison-exception-2.2 See #5. Keep. 17. BSD-4-Clause-UC From */crc32.[ch]. Keep. 18. BSD-2-Clause From tests/utils/tap. Omit. 19. X11 From config/install-sh. Omit. 20. LicenseRef-scancode-public-domain From config/install-sh. Omit. 21. LGPL-2.0-only From tests/ctf-traces/suceed/*/dummystream. Omit. AND together all the keeps EXCEPT Bison-exception-2.2/GPL-3.0-or-later. OR those. [I am not even going to pretend that this is absolutely accurate, but it is closer to the reality of it.] --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index cd6fec5..808b513 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -2,7 +2,7 @@ Name: babeltrace Version: 1.5.11 Release: 3%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format -License: MIT AND GPL-2.0-only +License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace Source0: https://www.efficios.com/files/%{name}/%{name}-%{version}.tar.bz2 Source1: https://www.efficios.com/files/%{name}/%{name}-%{version}.tar.bz2.asc @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Mon May 30 2023 Keith Seitz +- Update license expression. + * Mon May 08 2023 Michael Jeanson - 1.5.11-3 - migrated to SPDX license From 8d0b25860bfc4fb609753f2662d9580616453703 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 13 Jun 2023 20:31:58 +0200 Subject: [PATCH 04/18] Rebuilt for Python 3.12 --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 808b513..fd1ec22 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Tue Jun 13 2023 Python Maint - 1.5.11-4 +- Rebuilt for Python 3.12 + * Mon May 30 2023 Keith Seitz - Update license expression. From bf4107fd35646e755cf14ace17c04ca41fdb0bc7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jul 2023 14:18:45 +0000 Subject: [PATCH 05/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index fd1ec22..186841f 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Wed Jul 19 2023 Fedora Release Engineering - 1.5.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Tue Jun 13 2023 Python Maint - 1.5.11-4 - Rebuilt for Python 3.12 From 13f72944b92d88e3a3ad0338c26b8e7ba84e8925 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jan 2024 14:06:01 +0000 Subject: [PATCH 06/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 186841f..382841c 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Fri Jan 19 2024 Fedora Release Engineering - 1.5.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Wed Jul 19 2023 Fedora Release Engineering - 1.5.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From a7e6f15e9e04b2d773075456fa51c327579d6bf7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 23 Jan 2024 00:03:19 +0000 Subject: [PATCH 07/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 382841c..479b030 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Tue Jan 23 2024 Fedora Release Engineering - 1.5.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jan 19 2024 Fedora Release Engineering - 1.5.11-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From c897f1f709679271a19586d5dd346dde98b9f3a7 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 7 Jun 2024 08:38:11 +0200 Subject: [PATCH 08/18] Rebuilt for Python 3.13 --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 479b030..0a5bb91 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Fri Jun 07 2024 Python Maint - 1.5.11-8 +- Rebuilt for Python 3.13 + * Tue Jan 23 2024 Fedora Release Engineering - 1.5.11-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 89cc49b5bea88b66e8087d48b8f984e476382aab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 17 Jul 2024 18:00:41 +0000 Subject: [PATCH 09/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 0a5bb91..47e24cd 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Wed Jul 17 2024 Fedora Release Engineering - 1.5.11-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Fri Jun 07 2024 Python Maint - 1.5.11-8 - Rebuilt for Python 3.13 From c377dc7ece7a2dc00163ad3d8bb58e9beadbe64d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 12:11:45 +0000 Subject: [PATCH 10/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 47e24cd..eba80d2 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Thu Jan 16 2025 Fedora Release Engineering - 1.5.11-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Wed Jul 17 2024 Fedora Release Engineering - 1.5.11-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 5c0bc059b13705a9fdd17b9d64058c1afa9b3c69 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 2 Jun 2025 20:10:19 +0200 Subject: [PATCH 11/18] Rebuilt for Python 3.14 --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index eba80d2..93d96c5 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Mon Jun 02 2025 Python Maint - 1.5.11-11 +- Rebuilt for Python 3.14 + * Thu Jan 16 2025 Fedora Release Engineering - 1.5.11-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From d3e4ab1a2d103bab4b0135654fb088b6607179e8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 17:32:52 +0000 Subject: [PATCH 12/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 93d96c5..98d3800 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Wed Jul 23 2025 Fedora Release Engineering - 1.5.11-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Mon Jun 02 2025 Python Maint - 1.5.11-11 - Rebuilt for Python 3.14 From b94ab8c19309dc25ebc734ef2974aab09abb4dce Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 12:39:19 +0200 Subject: [PATCH 13/18] Rebuilt for Python 3.14.0rc2 bytecode --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 98d3800..5f538fa 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Fri Aug 15 2025 Python Maint - 1.5.11-13 +- Rebuilt for Python 3.14.0rc2 bytecode + * Wed Jul 23 2025 Fedora Release Engineering - 1.5.11-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From cb9c7af41ffe72e2ba7218ad49a21da56d558185 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Tue, 26 Aug 2025 15:27:12 -0400 Subject: [PATCH 14/18] Fix gating test --- tests/Regression/testsuite/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Regression/testsuite/runtest.sh b/tests/Regression/testsuite/runtest.sh index a032b89..0ae6a3a 100755 --- a/tests/Regression/testsuite/runtest.sh +++ b/tests/Regression/testsuite/runtest.sh @@ -41,7 +41,7 @@ rlJournalStart rlRun "dnf --nobest builddep -y *src.rpm" rlRun "rpm --define='_topdir $TMP' -Uvh *src.rpm" rlRun "rpmbuild --define='_topdir $TMP' -bc SPECS/${PACKAGE}.spec" - rlRun "pushd BUILD/${PACKAGE}-*" + rlRun "pushd BUILD/${PACKAGE}-*-build/${PACKAGE}-*" rlPhaseEnd rlPhaseStartTest From 741ff76747dfb10cdf689c7307d43f139c17724f Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Tue, 26 Aug 2025 15:28:03 -0400 Subject: [PATCH 15/18] New release with test fix --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 5f538fa..749768c 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Tue Aug 26 2025 Kienan Stewart - 1.5.11-14 +- Fix regression in gating test + * Fri Aug 15 2025 Python Maint - 1.5.11-13 - Rebuilt for Python 3.14.0rc2 bytecode From 5bd9c987b9906c24db042f3750ecbf11b5e11ff2 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 12:08:16 +0200 Subject: [PATCH 16/18] Rebuilt for Python 3.14.0rc3 bytecode --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 749768c..3af581d 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Fri Sep 19 2025 Python Maint - 1.5.11-15 +- Rebuilt for Python 3.14.0rc3 bytecode + * Tue Aug 26 2025 Kienan Stewart - 1.5.11-14 - Fix regression in gating test From ec9fef3124af9d35b4896cb725119ad281d2701c Mon Sep 17 00:00:00 2001 From: Michal Kolar Date: Mon, 8 Dec 2025 18:52:26 +0000 Subject: [PATCH 17/18] update gating.yaml file --- gating.yaml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/gating.yaml b/gating.yaml index ce3cdc1..a1a0c2c 100644 --- a/gating.yaml +++ b/gating.yaml @@ -7,13 +7,8 @@ rules: - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} --- !Policy product_versions: - - rhel-8 + - rhel-* decision_context: osci_compose_gate rules: - - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional} ---- !Policy -product_versions: - - rhel-9 -decision_context: osci_compose_gate -rules: - - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional} + - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.gate-build-fast-lane.functional} + - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.gate-build-slow-lane.functional} From 11a1dc16e16c7e53fab829247d41f17698bb0087 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 16 Jan 2026 04:14:55 +0000 Subject: [PATCH 18/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- babeltrace.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babeltrace.spec b/babeltrace.spec index 3af581d..e7712d4 100644 --- a/babeltrace.spec +++ b/babeltrace.spec @@ -1,6 +1,6 @@ Name: babeltrace Version: 1.5.11 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace @@ -117,6 +117,9 @@ rm -f %{buildroot}/%{_pkgdocdir}/std-ext-lib.txt %changelog +* Fri Jan 16 2026 Fedora Release Engineering - 1.5.11-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Sep 19 2025 Python Maint - 1.5.11-15 - Rebuilt for Python 3.14.0rc3 bytecode