Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-libvirt-python for
openSUSE:Factory checked in at 2024-01-21 23:07:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-libvirt-python (Old)
and /work/SRC/openSUSE:Factory/.python-libvirt-python.new.16006 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-libvirt-python"
Sun Jan 21 23:07:38 2024 rev:76 rq:1139514 version:10.0.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-libvirt-python/python-libvirt-python.changes
2023-12-09 22:50:16.705069617 +0100
+++
/work/SRC/openSUSE:Factory/.python-libvirt-python.new.16006/python-libvirt-python.changes
2024-01-21 23:07:50.100365379 +0100
@@ -1,0 +2,8 @@
+Tue Jan 16 19:36:20 UTC 2024 - James Fehlig <[email protected]>
+
+- Update to 10.0.0
+ - Add all new APIs and constants in libvirt 10.0.0
+ - jsc#PED-3226, jsc#PED-3279, jsc#PED-4931, jsc#PED-5432,
+ jsc#PED-6851
+
+-------------------------------------------------------------------
Old:
----
libvirt-python-9.10.0.tar.gz
New:
----
libvirt-python-10.0.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-libvirt-python.spec ++++++
--- /var/tmp/diff_new_pack.kRlsgp/_old 2024-01-21 23:07:50.712387689 +0100
+++ /var/tmp/diff_new_pack.kRlsgp/_new 2024-01-21 23:07:50.716387835 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-libvirt-python
#
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
%{?sle15_python_module_pythons}
Name: python-libvirt-python
URL: https://libvirt.org/
-Version: 9.10.0
+Version: 10.0.0
Release: 0
Summary: Library providing a virtualization API
License: LGPL-2.1-or-later
++++++ _service ++++++
--- /var/tmp/diff_new_pack.kRlsgp/_old 2024-01-21 23:07:50.740388710 +0100
+++ /var/tmp/diff_new_pack.kRlsgp/_new 2024-01-21 23:07:50.740388710 +0100
@@ -1,7 +1,7 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="filename">libvirt-python</param>
- <param name="revision">v9.10.0</param>
+ <param name="revision">v10.0.0</param>
<param name="scm">git</param>
<param name="submodules">disable</param>
<param name="url">https://gitlab.com/libvirt/libvirt-python.git</param>
++++++ libvirt-python-9.10.0.tar.gz -> libvirt-python-10.0.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/.gitlab-ci.yml
new/libvirt-python-10.0.0/.gitlab-ci.yml
--- old/libvirt-python-9.10.0/.gitlab-ci.yml 2023-11-01 10:43:20.000000000
+0100
+++ new/libvirt-python-10.0.0/.gitlab-ci.yml 2024-01-08 11:56:20.000000000
+0100
@@ -26,8 +26,9 @@
- ninja -C build install
- popd
- $PYTHON -m build
- - $PYTHON -m pip ${PIP_INSTALL:-install} dist/libvirt_python*.whl
- - $PYTHON -m pytest tests
+ - $PYTHON -m venv test-venv --system-site-packages --symlinks
+ - test-venv/bin/python -m pip install dist/libvirt_python*.whl
+ - test-venv/bin/python -m pytest tests
- if test -x /usr/bin/rpmbuild && test "$RPM" != "skip" ;
then
unset CFLAGS ;
@@ -50,8 +51,9 @@
- export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"
- export CFLAGS="-Werror"
- $PYTHON -m build
- - $PYTHON -m pip ${PIP_INSTALL:-install} dist/libvirt_python*.whl
- - $PYTHON -m pytest tests
+ - $PYTHON -m venv test-venv --system-site-packages --symlinks
+ - test-venv/bin/python -m pip install dist/libvirt_python*.whl
+ - test-venv/bin/python -m pytest tests
- if test -x /usr/bin/rpmbuild && test "$RPM" != "skip" ;
then
unset CFLAGS ;
@@ -75,8 +77,9 @@
stage: sanity_checks
script:
- *git_build_vars
- - $PYTHON -m pip ${PIP_INSTALL:-install} dist/libvirt_python*.whl
- - LIBVIRT_API_COVERAGE=1 $PYTHON -m pytest tests
+ - $PYTHON -m venv test-venv --system-site-packages --symlinks
+ - test-venv/bin/python -m pip install dist/libvirt_python*.whl
+ - LIBVIRT_API_COVERAGE=1 test-venv/bin/python -m pytest tests
allow_failure: true
api_coverage_prebuilt_env:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/VERSION
new/libvirt-python-10.0.0/VERSION
--- old/libvirt-python-9.10.0/VERSION 2023-11-01 10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/VERSION 2024-01-08 11:56:20.000000000 +0100
@@ -1 +1 @@
-9.10.0
+10.0.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/ci/buildenv/centos-stream-8.sh
new/libvirt-python-10.0.0/ci/buildenv/centos-stream-8.sh
--- old/libvirt-python-9.10.0/ci/buildenv/centos-stream-8.sh 2023-11-01
10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/buildenv/centos-stream-8.sh 2024-01-08
11:56:20.000000000 +0100
@@ -41,7 +41,6 @@
python3-pytest \
python3-setuptools \
python3-wheel \
- rpcgen \
rpm-build
rpm -qa | sort > /packages.txt
mkdir -p /usr/libexec/ccache-wrappers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/ci/buildenv/debian-10.sh
new/libvirt-python-10.0.0/ci/buildenv/debian-10.sh
--- old/libvirt-python-9.10.0/ci/buildenv/debian-10.sh 2023-11-01
10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/buildenv/debian-10.sh 1970-01-01
01:00:00.000000000 +0100
@@ -1,38 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-# $ lcitool manifest ci/manifest.yml
-#
-# https://gitlab.com/libvirt/libvirt-ci
-
-function install_buildenv() {
- export DEBIAN_FRONTEND=noninteractive
- apt-get update
- apt-get dist-upgrade -y
- apt-get install --no-install-recommends -y \
- ca-certificates \
- ccache \
- gcc \
- git \
- libvirt-dev \
- locales \
- pkgconf \
- python3 \
- python3-dev \
- python3-lxml \
- python3-pip \
- python3-pytest \
- python3-setuptools \
- python3-venv \
- python3-wheel
- sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen
- dpkg-reconfigure locales
- dpkg-query --showformat '${Package}_${Version}_${Architecture}\n' --show >
/packages.txt
- mkdir -p /usr/libexec/ccache-wrappers
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
- /usr/bin/pip3 install build
-}
-
-export CCACHE_WRAPPERSDIR="/usr/libexec/ccache-wrappers"
-export LANG="en_US.UTF-8"
-export PYTHON="/usr/bin/python3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/ci/buildenv/debian-12.sh
new/libvirt-python-10.0.0/ci/buildenv/debian-12.sh
--- old/libvirt-python-9.10.0/ci/buildenv/debian-12.sh 1970-01-01
01:00:00.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/buildenv/debian-12.sh 2024-01-08
11:56:20.000000000 +0100
@@ -0,0 +1,37 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+# $ lcitool manifest ci/manifest.yml
+#
+# https://gitlab.com/libvirt/libvirt-ci
+
+function install_buildenv() {
+ export DEBIAN_FRONTEND=noninteractive
+ apt-get update
+ apt-get dist-upgrade -y
+ apt-get install --no-install-recommends -y \
+ ca-certificates \
+ ccache \
+ gcc \
+ git \
+ libvirt-dev \
+ locales \
+ pkgconf \
+ python3 \
+ python3-build \
+ python3-dev \
+ python3-lxml \
+ python3-pip \
+ python3-pytest \
+ python3-setuptools \
+ python3-venv
+ sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen
+ dpkg-reconfigure locales
+ dpkg-query --showformat '${Package}_${Version}_${Architecture}\n' --show >
/packages.txt
+ mkdir -p /usr/libexec/ccache-wrappers
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+}
+
+export CCACHE_WRAPPERSDIR="/usr/libexec/ccache-wrappers"
+export LANG="en_US.UTF-8"
+export PYTHON="/usr/bin/python3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/ci/buildenv/fedora-37.sh
new/libvirt-python-10.0.0/ci/buildenv/fedora-37.sh
--- old/libvirt-python-9.10.0/ci/buildenv/fedora-37.sh 2023-11-01
10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/buildenv/fedora-37.sh 1970-01-01
01:00:00.000000000 +0100
@@ -1,33 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-# $ lcitool manifest ci/manifest.yml
-#
-# https://gitlab.com/libvirt/libvirt-ci
-
-function install_buildenv() {
- dnf update -y
- dnf install -y \
- ca-certificates \
- ccache \
- gcc \
- git \
- glibc-langpack-en \
- libvirt-devel \
- pkgconfig \
- python3 \
- python3-build \
- python3-devel \
- python3-lxml \
- python3-pip \
- python3-pytest \
- python3-setuptools \
- rpm-build
- rpm -qa | sort > /packages.txt
- mkdir -p /usr/libexec/ccache-wrappers
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
-}
-
-export CCACHE_WRAPPERSDIR="/usr/libexec/ccache-wrappers"
-export LANG="en_US.UTF-8"
-export PYTHON="/usr/bin/python3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/ci/buildenv/fedora-39.sh
new/libvirt-python-10.0.0/ci/buildenv/fedora-39.sh
--- old/libvirt-python-9.10.0/ci/buildenv/fedora-39.sh 1970-01-01
01:00:00.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/buildenv/fedora-39.sh 2024-01-08
11:56:20.000000000 +0100
@@ -0,0 +1,33 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+# $ lcitool manifest ci/manifest.yml
+#
+# https://gitlab.com/libvirt/libvirt-ci
+
+function install_buildenv() {
+ dnf update -y
+ dnf install -y \
+ ca-certificates \
+ ccache \
+ gcc \
+ git \
+ glibc-langpack-en \
+ libvirt-devel \
+ pkgconfig \
+ python3 \
+ python3-build \
+ python3-devel \
+ python3-lxml \
+ python3-pip \
+ python3-pytest \
+ python3-setuptools \
+ rpm-build
+ rpm -qa | sort > /packages.txt
+ mkdir -p /usr/libexec/ccache-wrappers
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+}
+
+export CCACHE_WRAPPERSDIR="/usr/libexec/ccache-wrappers"
+export LANG="en_US.UTF-8"
+export PYTHON="/usr/bin/python3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/libvirt-python-9.10.0/ci/containers/centos-stream-8.Dockerfile
new/libvirt-python-10.0.0/ci/containers/centos-stream-8.Dockerfile
--- old/libvirt-python-9.10.0/ci/containers/centos-stream-8.Dockerfile
2023-11-01 10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/containers/centos-stream-8.Dockerfile
2024-01-08 11:56:20.000000000 +0100
@@ -42,7 +42,6 @@
python3-pytest \
python3-setuptools \
python3-wheel \
- rpcgen \
rpm-build && \
dnf autoremove -y && \
dnf clean all -y && \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/libvirt-python-9.10.0/ci/containers/debian-10.Dockerfile
new/libvirt-python-10.0.0/ci/containers/debian-10.Dockerfile
--- old/libvirt-python-9.10.0/ci/containers/debian-10.Dockerfile
2023-11-01 10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/containers/debian-10.Dockerfile
1970-01-01 01:00:00.000000000 +0100
@@ -1,42 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-# $ lcitool manifest ci/manifest.yml
-#
-# https://gitlab.com/libvirt/libvirt-ci
-
-FROM docker.io/library/debian:10-slim
-
-RUN export DEBIAN_FRONTEND=noninteractive && \
- apt-get update && \
- apt-get install -y eatmydata && \
- eatmydata apt-get dist-upgrade -y && \
- eatmydata apt-get install --no-install-recommends -y \
- ca-certificates \
- ccache \
- gcc \
- git \
- libvirt-dev \
- locales \
- pkgconf \
- python3 \
- python3-dev \
- python3-lxml \
- python3-pip \
- python3-pytest \
- python3-setuptools \
- python3-venv \
- python3-wheel && \
- eatmydata apt-get autoremove -y && \
- eatmydata apt-get autoclean -y && \
- sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen && \
- dpkg-reconfigure locales && \
- dpkg-query --showformat '${Package}_${Version}_${Architecture}\n' --show >
/packages.txt && \
- mkdir -p /usr/libexec/ccache-wrappers && \
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
-
-RUN /usr/bin/pip3 install build
-
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
-ENV LANG "en_US.UTF-8"
-ENV PYTHON "/usr/bin/python3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/libvirt-python-9.10.0/ci/containers/debian-12.Dockerfile
new/libvirt-python-10.0.0/ci/containers/debian-12.Dockerfile
--- old/libvirt-python-9.10.0/ci/containers/debian-12.Dockerfile
1970-01-01 01:00:00.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/containers/debian-12.Dockerfile
2024-01-08 11:56:20.000000000 +0100
@@ -0,0 +1,40 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+# $ lcitool manifest ci/manifest.yml
+#
+# https://gitlab.com/libvirt/libvirt-ci
+
+FROM docker.io/library/debian:12-slim
+
+RUN export DEBIAN_FRONTEND=noninteractive && \
+ apt-get update && \
+ apt-get install -y eatmydata && \
+ eatmydata apt-get dist-upgrade -y && \
+ eatmydata apt-get install --no-install-recommends -y \
+ ca-certificates \
+ ccache \
+ gcc \
+ git \
+ libvirt-dev \
+ locales \
+ pkgconf \
+ python3 \
+ python3-build \
+ python3-dev \
+ python3-lxml \
+ python3-pip \
+ python3-pytest \
+ python3-setuptools \
+ python3-venv && \
+ eatmydata apt-get autoremove -y && \
+ eatmydata apt-get autoclean -y && \
+ sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen && \
+ dpkg-reconfigure locales && \
+ dpkg-query --showformat '${Package}_${Version}_${Architecture}\n' --show >
/packages.txt && \
+ mkdir -p /usr/libexec/ccache-wrappers && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
+ENV LANG "en_US.UTF-8"
+ENV PYTHON "/usr/bin/python3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/libvirt-python-9.10.0/ci/containers/fedora-37.Dockerfile
new/libvirt-python-10.0.0/ci/containers/fedora-37.Dockerfile
--- old/libvirt-python-9.10.0/ci/containers/fedora-37.Dockerfile
2023-11-01 10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/containers/fedora-37.Dockerfile
1970-01-01 01:00:00.000000000 +0100
@@ -1,45 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-# $ lcitool manifest ci/manifest.yml
-#
-# https://gitlab.com/libvirt/libvirt-ci
-
-FROM registry.fedoraproject.org/fedora:37
-
-RUN dnf install -y nosync && \
- printf '#!/bin/sh\n\
-if test -d /usr/lib64\n\
-then\n\
- export LD_PRELOAD=/usr/lib64/nosync/nosync.so\n\
-else\n\
- export LD_PRELOAD=/usr/lib/nosync/nosync.so\n\
-fi\n\
-exec "$@"\n' > /usr/bin/nosync && \
- chmod +x /usr/bin/nosync && \
- nosync dnf update -y && \
- nosync dnf install -y \
- ca-certificates \
- ccache \
- gcc \
- git \
- glibc-langpack-en \
- libvirt-devel \
- pkgconfig \
- python3 \
- python3-build \
- python3-devel \
- python3-lxml \
- python3-pip \
- python3-pytest \
- python3-setuptools \
- rpm-build && \
- nosync dnf autoremove -y && \
- nosync dnf clean all -y && \
- rpm -qa | sort > /packages.txt && \
- mkdir -p /usr/libexec/ccache-wrappers && \
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
-
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
-ENV LANG "en_US.UTF-8"
-ENV PYTHON "/usr/bin/python3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/libvirt-python-9.10.0/ci/containers/fedora-39.Dockerfile
new/libvirt-python-10.0.0/ci/containers/fedora-39.Dockerfile
--- old/libvirt-python-9.10.0/ci/containers/fedora-39.Dockerfile
1970-01-01 01:00:00.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/containers/fedora-39.Dockerfile
2024-01-08 11:56:20.000000000 +0100
@@ -0,0 +1,45 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+# $ lcitool manifest ci/manifest.yml
+#
+# https://gitlab.com/libvirt/libvirt-ci
+
+FROM registry.fedoraproject.org/fedora:39
+
+RUN dnf install -y nosync && \
+ printf '#!/bin/sh\n\
+if test -d /usr/lib64\n\
+then\n\
+ export LD_PRELOAD=/usr/lib64/nosync/nosync.so\n\
+else\n\
+ export LD_PRELOAD=/usr/lib/nosync/nosync.so\n\
+fi\n\
+exec "$@"\n' > /usr/bin/nosync && \
+ chmod +x /usr/bin/nosync && \
+ nosync dnf update -y && \
+ nosync dnf install -y \
+ ca-certificates \
+ ccache \
+ gcc \
+ git \
+ glibc-langpack-en \
+ libvirt-devel \
+ pkgconfig \
+ python3 \
+ python3-build \
+ python3-devel \
+ python3-lxml \
+ python3-pip \
+ python3-pytest \
+ python3-setuptools \
+ rpm-build && \
+ nosync dnf autoremove -y && \
+ nosync dnf clean all -y && \
+ rpm -qa | sort > /packages.txt && \
+ mkdir -p /usr/libexec/ccache-wrappers && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
+ENV LANG "en_US.UTF-8"
+ENV PYTHON "/usr/bin/python3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/ci/gitlab/builds.yml
new/libvirt-python-10.0.0/ci/gitlab/builds.yml
--- old/libvirt-python-9.10.0/ci/gitlab/builds.yml 2023-11-01
10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/gitlab/builds.yml 2024-01-08
11:56:20.000000000 +0100
@@ -87,22 +87,22 @@
- libvirt-python-rpms
-x86_64-debian-10-prebuilt-env:
+x86_64-debian-12-prebuilt-env:
extends: .native_build_job_prebuilt_env
needs:
- - job: x86_64-debian-10-container
+ - job: x86_64-debian-12-container
optional: true
allow_failure: false
variables:
- NAME: debian-10
+ NAME: debian-12
-x86_64-debian-10-local-env:
+x86_64-debian-12-local-env:
extends: .native_build_job_local_env
needs: []
allow_failure: false
variables:
- IMAGE: docker.io/library/debian:10-slim
- NAME: debian-10
+ IMAGE: docker.io/library/debian:12-slim
+ NAME: debian-12
x86_64-debian-sid-prebuilt-env:
@@ -113,7 +113,6 @@
allow_failure: true
variables:
NAME: debian-sid
- PIP_INSTALL: install --break-system-packages
x86_64-debian-sid-local-env:
extends: .native_build_job_local_env
@@ -122,55 +121,54 @@
variables:
IMAGE: docker.io/library/debian:sid-slim
NAME: debian-sid
- PIP_INSTALL: install --break-system-packages
-x86_64-fedora-37-prebuilt-env:
+x86_64-fedora-38-prebuilt-env:
extends: .native_build_job_prebuilt_env
needs:
- - job: x86_64-fedora-37-container
+ - job: x86_64-fedora-38-container
optional: true
allow_failure: false
variables:
- NAME: fedora-37
+ NAME: fedora-38
artifacts:
expire_in: 1 hour
paths:
- libvirt-python-rpms
-x86_64-fedora-37-local-env:
+x86_64-fedora-38-local-env:
extends: .native_build_job_local_env
needs: []
allow_failure: false
variables:
- IMAGE: registry.fedoraproject.org/fedora:37
- NAME: fedora-37
+ IMAGE: registry.fedoraproject.org/fedora:38
+ NAME: fedora-38
artifacts:
expire_in: 1 hour
paths:
- libvirt-python-rpms
-x86_64-fedora-38-prebuilt-env:
+x86_64-fedora-39-prebuilt-env:
extends: .native_build_job_prebuilt_env
needs:
- - job: x86_64-fedora-38-container
+ - job: x86_64-fedora-39-container
optional: true
allow_failure: false
variables:
- NAME: fedora-38
+ NAME: fedora-39
artifacts:
expire_in: 1 hour
paths:
- libvirt-python-rpms
-x86_64-fedora-38-local-env:
+x86_64-fedora-39-local-env:
extends: .native_build_job_local_env
needs: []
allow_failure: false
variables:
- IMAGE: registry.fedoraproject.org/fedora:38
- NAME: fedora-38
+ IMAGE: registry.fedoraproject.org/fedora:39
+ NAME: fedora-39
artifacts:
expire_in: 1 hour
paths:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/ci/gitlab/containers.yml
new/libvirt-python-10.0.0/ci/gitlab/containers.yml
--- old/libvirt-python-9.10.0/ci/gitlab/containers.yml 2023-11-01
10:43:20.000000000 +0100
+++ new/libvirt-python-10.0.0/ci/gitlab/containers.yml 2024-01-08
11:56:20.000000000 +0100
@@ -21,11 +21,11 @@
NAME: centos-stream-9
-x86_64-debian-10-container:
+x86_64-debian-12-container:
extends: .container_job
allow_failure: false
variables:
- NAME: debian-10
+ NAME: debian-12
x86_64-debian-sid-container:
@@ -35,18 +35,18 @@
NAME: debian-sid
-x86_64-fedora-37-container:
+x86_64-fedora-38-container:
extends: .container_job
allow_failure: false
variables:
- NAME: fedora-37
+ NAME: fedora-38
-x86_64-fedora-38-container:
+x86_64-fedora-39-container:
extends: .container_job
allow_failure: false
variables:
- NAME: fedora-38
+ NAME: fedora-39
x86_64-fedora-rawhide-container:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libvirt-python-9.10.0/ci/manifest.yml
new/libvirt-python-10.0.0/ci/manifest.yml
--- old/libvirt-python-9.10.0/ci/manifest.yml 2023-11-01 10:43:20.000000000
+0100
+++ new/libvirt-python-10.0.0/ci/manifest.yml 2024-01-08 11:56:20.000000000
+0100
@@ -38,16 +38,14 @@
paths:
- libvirt-python-rpms
- debian-10: x86_64
+ debian-12: x86_64
debian-sid:
jobs:
- arch: x86_64
allow-failure: true
- variables:
- PIP_INSTALL: install --break-system-packages
- fedora-37:
+ fedora-38:
jobs:
- arch: x86_64
artifacts:
@@ -55,7 +53,7 @@
paths:
- libvirt-python-rpms
- fedora-38:
+ fedora-39:
jobs:
- arch: x86_64
artifacts: