public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/libvirt] rawhide: Update to 12.6.0 release
Date: Mon, 03 Aug 2026 11:39:07 GMT [thread overview]
Message-ID: <178575714782.1.17244594212413300239.rpms-libvirt-5cea3a2df1a4@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/libvirt
Branch : rawhide
Commit : 5cea3a2df1a4cc632847f17b752ade5e58981b03
Author : Daniel P. Berrangé <berrange@redhat.com>
Date : 2026-08-03T12:32:15+01:00
Stats : +26/-5 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/libvirt/c/5cea3a2df1a4cc632847f17b752ade5e58981b03?branch=rawhide
Log:
Update to 12.6.0 release
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
diff --git a/libvirt.spec b/libvirt.spec
index ab61a81..ac3ae4a 100644
--- a/libvirt.spec
+++ b/libvirt.spec
@@ -31,7 +31,10 @@
%define arches_numad %{arches_x86} %{power64} aarch64
%define arches_ch x86_64 aarch64
-# The hypervisor drivers that run in libvirtd
+# The monolithic libvirtd
+%define with_libvirtd 0%{!?_without_libvirtd:1}
+
+# The hypervisor drivers that run in monolithic libvirtd, or a modular daemon
%define with_lxc 0%{!?_without_lxc:1}
%define with_libxl 0%{!?_without_libxl:1}
%define with_vbox 0%{!?_without_vbox:1}
@@ -293,8 +296,8 @@
Summary: Library providing a simple virtualization API
Name: libvirt
-Version: 12.5.0
-Release: 2%{?dist}
+Version: 12.6.0
+Release: 1%{?dist}
License: GPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND OFL-1.1
URL: https://libvirt.org/
@@ -303,7 +306,11 @@ URL: https://libvirt.org/
%endif
Source: https://download.libvirt.org/%{?mainturl}libvirt-%{version}.tar.xz
+%if %{with_libvirtd}
Requires: libvirt-daemon = %{version}-%{release}
+%else
+Obsoletes: libvirt-daemon < %(version)-%(release)
+%endif
Requires: libvirt-daemon-config-network = %{version}-%{release}
Requires: libvirt-daemon-config-nwfilter = %{version}-%{release}
%if %{with_libxl}
@@ -1180,6 +1187,12 @@ echo "This RPM requires either Fedora >= %{min_fedora} or RHEL >= %{min_rhel}"
exit 1
%endif
+%if %{with_libvirtd}
+ %define arg_libvirtd -Dlibvirtd=enabled
+%else
+ %define arg_libvirtd -Dlibvirtd=disabled
+%endif
+
%if %{with_qemu}
%define arg_qemu -Ddriver_qemu=enabled
%else
@@ -1363,6 +1376,7 @@ export SOURCE_DATE_EPOCH=$(stat --printf='%Y' %{_specdir}/libvirt.spec)
-Dsasl=enabled \
-Dpolkit=enabled \
-Ddriver_libvirtd=enabled \
+ %{?arg_libvirtd} \
-Ddriver_remote=enabled \
-Ddriver_test=enabled \
%{?arg_esx} \
@@ -2074,6 +2088,7 @@ exit 0
%doc AUTHORS.rst NEWS.rst README.rst
%doc libvirt-docs/*
+ %if %{with_libvirtd}
%files daemon
%{_unitdir}/libvirtd.service
%{_unitdir}/libvirtd.socket
@@ -2090,6 +2105,7 @@ exit 0
%{_datadir}/augeas/lenses/tests/test_libvirtd.aug
%attr(0755, root, root) %{_sbindir}/libvirtd
%{_mandir}/man8/libvirtd.8*
+ %endif
%files daemon-common
%{_unitdir}/virt-guest-shutdown.target
@@ -2699,11 +2715,16 @@ exit 0
%{mingw64_mandir}/man7/virkey*.7*
%endif
-
%changelog
+* Mon Aug 3 2026 Daniel P. Berrangé <berrange@redhat.com> - 12.6.0-1
+- Update to 12.6.0
+
* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 12.5.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
+* Wed Jul 1 2026 Daniel P. Berrangé <berrange@redhat.com> - 12.5.0-1
+- Update to 12.5.0
+
* Mon Jun 01 2026 Cole Robinson <crobinso@redhat.com> - 12.4.0-1
- Rebase to version 12.4.0
diff --git a/sources b/sources
index a452085..bfcc854 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (libvirt-12.5.0.tar.xz) = 6143244abe8c8fd1e9087cf7723e0d6998b4e0f602a3b4ca218ad05b5e9b6faed6e4968119eb91341fb5f29c2c43bc076ab1b8e84191945b1d8c62f1f1a8e509
+SHA512 (libvirt-12.6.0.tar.xz) = 3cb1b17a16b476d97a774652f5f9eb4e2715705b32b508985fec2f0b8253c3fcbe8cb07cbddb4fb2c4b555ada033a9287aba2bb85e6caade362e9565bd3cfe00
reply other threads:[~2026-08-03 11:39 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178575714782.1.17244594212413300239.rpms-libvirt-5cea3a2df1a4@fedoraproject.org \
--to=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox