From eca92cc519de3709414bf63fb94cb44a6ce414f8 Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Tue, 2 Sep 2025 00:07:40 +0000 Subject: [PATCH] 24.03-lts-sp1 update libvirt to 11.7.0 --- Cloud/libvirt/11.7.0/24.03-lts-sp1/Dockerfile | 26 +++++++++++++++++++ Cloud/libvirt/README.md | 1 + Cloud/libvirt/doc/image-info.yml | 3 ++- Cloud/libvirt/meta.yml | 4 ++- 4 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 Cloud/libvirt/11.7.0/24.03-lts-sp1/Dockerfile diff --git a/Cloud/libvirt/11.7.0/24.03-lts-sp1/Dockerfile b/Cloud/libvirt/11.7.0/24.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..375e7264 --- /dev/null +++ b/Cloud/libvirt/11.7.0/24.03-lts-sp1/Dockerfile @@ -0,0 +1,26 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} +ARG VERSION=11.7.0 + +RUN dnf update -y \ + && dnf install -y gcc ninja-build meson libxml2-devel yajl-devel systemd-devel libcap-ng-devel libnl3-devel \ + wget xz libcurl-devel libssh2-devel gnutls-devel libxslt-devel pkgconf-pkg-config perl \ + glib2-devel libtirpc-devel libacl-devel audit-libs-devel libblkid-devel libbsd-devel device-mapper-devel \ + fuse3-devel libpciaccess-devel libselinux-devel libiscsi-devel librados2-devel librbd-devel \ + libpcap-devel bash-completion dmidecode iproute iscsi-initiator-utils kmod openvswitch \ + python3-docutils python3-pytest python3-black python3-flake8 iproute-tc \ + && dnf clean all + +WORKDIR /opt + +RUN wget https://download.libvirt.org/libvirt-${VERSION}.tar.xz \ + && tar -xvf libvirt-${VERSION}.tar.xz \ + && rm -f libvirt-${VERSION}.tar.xz + +WORKDIR /opt/libvirt-${VERSION} + +RUN meson setup build --prefix=/usr/local \ + && ninja -C build \ + && ninja -C build install + +CMD ["libvirtd", "--help"] \ No newline at end of file diff --git a/Cloud/libvirt/README.md b/Cloud/libvirt/README.md index 20f880f8..9039938e 100644 --- a/Cloud/libvirt/README.md +++ b/Cloud/libvirt/README.md @@ -22,6 +22,7 @@ The tag of each `libvirt` docker image is consist of the version of `libvirt` an | Tag | Currently | Architectures | |-----------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------|---------------| +|[11.7.0-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/libvirt/11.7.0/24.03-lts-sp1/Dockerfile) | libvirt 11.7.0 on openEuler 24.03-LTS-SP1 | amd64, arm64 | | [11.3.0-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/libvirt/11.3.0/24.03-lts-sp1/Dockerfile) | Libvirt 11.3.0 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Cloud/libvirt/doc/image-info.yml b/Cloud/libvirt/doc/image-info.yml index 4af2e6a0..3d8687a0 100644 --- a/Cloud/libvirt/doc/image-info.yml +++ b/Cloud/libvirt/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[11.7.0-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/libvirt/11.7.0/24.03-lts-sp1/Dockerfile) | libvirt 11.7.0 on openEuler 24.03-LTS-SP1 | amd64, arm64 | |[11.3.0-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/libvirt/11.3.0/24.03-lts-sp1/Dockerfile)| libvirt 11.3.0 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | @@ -39,4 +40,4 @@ dependency: - libxslt - libnl3 - libcap - - python + - python \ No newline at end of file diff --git a/Cloud/libvirt/meta.yml b/Cloud/libvirt/meta.yml index b17d1288..a1a9784a 100644 --- a/Cloud/libvirt/meta.yml +++ b/Cloud/libvirt/meta.yml @@ -2,4 +2,6 @@ path: 11.3.0/24.03-lts-sp1/Dockerfile 11.6.0-oe2403sp1: - path: 11.6.0/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 11.6.0/24.03-lts-sp1/Dockerfile +11.7.0-oe2403sp1: + path: 11.7.0/24.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee