[Pkg-libvirt-commits] [Git][libvirt-team/libvirt-python][debian/sid] 2 commits: New upstream version 11.9.0
Pino Toscano (@pino)
gitlab at salsa.debian.org
Wed Nov 5 07:00:01 GMT 2025
Pino Toscano pushed to branch debian/sid at Libvirt Packaging Team / libvirt-python
Commits:
1016052f by Pino Toscano at 2025-11-05T07:56:51+01:00
New upstream version 11.9.0
- - - - -
97b00fda by Pino Toscano at 2025-11-05T07:57:05+01:00
Update upstream source from tag 'upstream/11.9.0'
Update to upstream version '11.9.0'
with Debian dir 9dd4ade95ec6744a83fee18bff30e00430ae5d47
- - - - -
7 changed files:
- AUTHORS
- ChangeLog
- PKG-INFO
- VERSION
- debian/changelog
- examples/consolecallback.py
- libvirt-python.spec
Changes:
=====================================
AUTHORS
=====================================
@@ -59,6 +59,7 @@ The individual contributors are
Lei Li <lilei at linux.vnet.ibm.com>
Lukas Billy <lbilly at redhat.com>
Luyao Huang <lhuang at redhat.com>
+ Marc Hartmayer <mhartmay at linux.ibm.com>
Marc Hartmayer <mhartmay at linux.vnet.ibm.com>
Marcelo Cerri <mhcerri at linux.vnet.ibm.com>
Marian Neagul <marian at info.uvt.ro>
=====================================
ChangeLog
=====================================
@@ -1,3 +1,28 @@
+ 2025- 10- 6 Michal Privoznik <mprivozn at redhat.com>
+
+ ci: refresh with 'lcitool manifest'
+ This drops Fedora 40 and introduces Fedora 42 and drops
+ deprecated setting of env vars in dockerfiles.
+
+
+
+ 2025- 10- 2 Marc Hartmayer <mhartmay at linux.ibm.com>
+
+ examples/consolecallback.py: Use hex-encoding for `^]`
+ Use hex encoding for ^] to prevent potential rendering issues in web browsers
+ when viewing the file on GitLab.
+
+ While at it, make the file an executable as a Shebang line is present.
+
+ Suggested-by: Dawson Rosell <dawson.rosell at ibm.com>
+ Reviewed-by: Boris Fiuczynski <fiuczy at linux.ibm.com>
+
+
+ 2025- 10- 1 Jiri Denemark <jdenemar at redhat.com>
+
+ Post-release version bump to 11.9.0
+
+
2025- 9- 11 Jiri Denemark <jdenemar at redhat.com>
spec: Set dist_name when creating a distribution tarball
=====================================
PKG-INFO
=====================================
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: libvirt-python
-Version: 11.8.0
+Version: 11.9.0
Summary: The libvirt virtualization API python binding
Home-page: http://www.libvirt.org
Maintainer: Libvirt Maintainers
=====================================
VERSION
=====================================
@@ -1 +1 @@
-11.8.0
+11.9.0
=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+libvirt-python (11.9.0-1~1.gbp1abe36) UNRELEASED; urgency=medium
+
+ ** SNAPSHOT build @1abe3650506317b54d226bb1b2590f1737faeb9b **
+
+ * New upstream version 11.9.0
+
+ -- Pino Toscano <pino at debian.org> Wed, 05 Nov 2025 07:57:04 +0100
+
libvirt-python (11.8.0-1) unstable; urgency=medium
* d/watch: allow libvirt_python as possible tarball naming
=====================================
examples/consolecallback.py
=====================================
@@ -53,7 +53,7 @@ def check_console(console: Console) -> bool:
def stdin_callback(watch: int, fd: int, events: int, console: Console) -> None:
readbuf = os.read(fd, 1024)
- if readbuf.startswith(b"
"):
+ if readbuf.startswith(b"\x1d"):
console.run_console = False
return
if console.stream:
=====================================
libvirt-python.spec
=====================================
@@ -16,7 +16,7 @@
Summary: The libvirt virtualization API python3 binding
Name: libvirt-python
-Version: 11.8.0
+Version: 11.9.0
Release: 1%{?dist}
Source0: https://libvirt.org/sources/python/%{dist_name}-%{version}.tar.gz
Url: https://libvirt.org
View it on GitLab: https://salsa.debian.org/libvirt-team/libvirt-python/-/compare/4ce30ea0e6fed6fb686862d52a4247ea5662d65a...97b00fdad506098f52d9e9a4fd5da57d48e578a3
--
View it on GitLab: https://salsa.debian.org/libvirt-team/libvirt-python/-/compare/4ce30ea0e6fed6fb686862d52a4247ea5662d65a...97b00fdad506098f52d9e9a4fd5da57d48e578a3
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-libvirt-commits/attachments/20251105/77a9e944/attachment-0001.htm>
More information about the Pkg-libvirt-commits
mailing list