]> xenbits.xensource.com Git - libvirt.git/commitdiff
ci: Refresh contents
authorAndrea Bolognani <abologna@redhat.com>
Tue, 4 May 2021 08:39:31 +0000 (10:39 +0200)
committerAndrea Bolognani <abologna@redhat.com>
Wed, 5 May 2021 11:25:14 +0000 (13:25 +0200)
Notable changes:

  * the CentOS Stream 8 container is now using a proper base
    image instead of starting from a CentOS 8 image and then
    adding the CentOS Stream 8 repositories on top;

  * distributions that have a perl-base package are now using
    that one instead of the regular perl package, which
    contains a bunch of features we don't need, resulting in
    smaller containers.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
31 files changed:
ci/cirrus/freebsd-12.vars
ci/cirrus/freebsd-current.vars
ci/cirrus/macos-11.vars
ci/containers/centos-8.Dockerfile
ci/containers/centos-stream-8.Dockerfile
ci/containers/debian-10-cross-aarch64.Dockerfile
ci/containers/debian-10-cross-armv6l.Dockerfile
ci/containers/debian-10-cross-armv7l.Dockerfile
ci/containers/debian-10-cross-i686.Dockerfile
ci/containers/debian-10-cross-mips.Dockerfile
ci/containers/debian-10-cross-mips64el.Dockerfile
ci/containers/debian-10-cross-mipsel.Dockerfile
ci/containers/debian-10-cross-ppc64le.Dockerfile
ci/containers/debian-10-cross-s390x.Dockerfile
ci/containers/debian-10.Dockerfile
ci/containers/debian-sid-cross-aarch64.Dockerfile
ci/containers/debian-sid-cross-armv6l.Dockerfile
ci/containers/debian-sid-cross-armv7l.Dockerfile
ci/containers/debian-sid-cross-i686.Dockerfile
ci/containers/debian-sid-cross-mips64el.Dockerfile
ci/containers/debian-sid-cross-mipsel.Dockerfile
ci/containers/debian-sid-cross-ppc64le.Dockerfile
ci/containers/debian-sid-cross-s390x.Dockerfile
ci/containers/debian-sid.Dockerfile
ci/containers/fedora-33.Dockerfile
ci/containers/fedora-rawhide-cross-mingw32.Dockerfile
ci/containers/fedora-rawhide-cross-mingw64.Dockerfile
ci/containers/fedora-rawhide.Dockerfile
ci/containers/opensuse-leap-152.Dockerfile
ci/containers/ubuntu-1804.Dockerfile
ci/containers/ubuntu-2004.Dockerfile

index 7bd875176edd07e17e9437ee5cd8ba47c4575c71..40a19b57730087361bf290673974bcacea2f25ce 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool variables freebsd-12 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 PACKAGING_COMMAND='pkg'
 CCACHE='/usr/local/bin/ccache'
index 0f5b704a7b8d682fdfcae22cec61eb4dfaed2451..e4de22b302b67497ba142a964014463fe0bd94b1 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool variables freebsd-current libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 PACKAGING_COMMAND='pkg'
 CCACHE='/usr/local/bin/ccache'
index 8965338456040e16cd374c9a8cd48b9d076d033f..a723cdf927c0da09fa273a08af3b54f0e2b24153 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool variables macos-11 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 PACKAGING_COMMAND='brew'
 CCACHE='/usr/local/bin/ccache'
index 0c7292b8d245e090cc14410525d48618ce5e43d2..9358e69b0c268b028ef5625674436cc4e880c69b 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile centos-8 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/centos:8
 
index 3bc66775eb5676840ee863c968ff87c0105b070d..3355374e67b66c9a5e54620832a938b1b81d46f2 100644 (file)
@@ -1,14 +1,12 @@
 # THIS FILE WAS AUTO-GENERATED
 #
-#  $ lcitool dockerfile centos-stream libvirt
+#  $ lcitool dockerfile centos-stream-8 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
-FROM docker.io/library/centos:8
+FROM quay.io/centos/centos:stream8
 
-RUN dnf install -y centos-release-stream && \
-    dnf install -y centos-stream-release && \
-    dnf update -y && \
+RUN dnf update -y && \
     dnf install 'dnf-command(config-manager)' -y && \
     dnf config-manager --set-enabled -y powertools && \
     dnf install -y centos-release-advanced-virtualization && \
index e006dcc68b098768a194c67c3a2f83c59288243a..7d10b93d06ea60806639d3b40fd64c2c8b734284 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross aarch64 debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index abc3ef52dbadfccdced68731d72dd754088da07d..25057ea993355f9ee9c104b2790087d8f7aaf169 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross armv6l debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 2e9bedf6148e3c15a32a6e3b2c174f2ffd17c8fb..ef880ac0fed37963fceb544801c1e8951ffe0983 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross armv7l debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 4b88d751bdef23a750e5db47506f9fcc1be67933..5826866c2d0dfb52c767f9bfaa2874e765d7dc9d 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross i686 debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index dbdc9c57a80a38e7adc735a48594d43a6ee8acae..aaa2df47a861f8e63e82bd49c13315a1ceae0c27 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross mips debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 37044e296d093a48fc60d62a6cd9d1b8f72989a4..d3f25791a39753dea6b27952ea4b1bdb767e40ab 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross mips64el debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 3587f52374e3f9e1b355a6318e0a5f633e197128..cc9142aa72e20fdfd7e4e7ada86b92bd712ea735 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross mipsel debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index e8699d896b2f28e10ad312a24d3799ea5049d52a..ce68bbb19f9696f928d529d6e864fd47bccbe072 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross ppc64le debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index b31b5fd051011da258721c7a8967dc064d136d99..773f04933fb695ce907be8ed5e3e655408ef3899 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross s390x debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index d4ab8196c2e9f170d1b72aaecb3e0c4584c78fa3..119a77bb0950ebc1d086c360b59bc5bdd8b384bd 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile debian-10 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:10-slim
 
@@ -75,7 +75,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 514f42a83e174a27718359c620249534987710fc..736414b1791be6525216a447c57c2eb6d2e8cded 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross aarch64 debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 592c485f64c1f0bd20e4dae9287fdeb20d108024..b4304a7f32aef93cc0e46e320bdd138688fa3370 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross armv6l debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index f4e9829961ac0d3182ecfe25f8a2fa5fe1296c5a..e4db402bc96a19c198789b761e9e91cdbe29c135 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross armv7l debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 500e306f8b4f027f5941e264ed11f9495017bd72..983cd2a33644a668840b0a531c592b254a3dfa17 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross i686 debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 1ed444d9d3f9b269733050768868199916c78fa9..e568b46d6074430ed72c0fdd85560ec2e47339bd 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross mips64el debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index e30e1cf808d7229d440e2440853448651a0da551..cf24c09244f73ceaf940b26db83df7d8616e6372 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross mipsel debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 430cd1176c0cb1c0e61115c6f1a3dc942f00ade6..40be4130afdbe6a39d0821f6d90adb79629d3bad 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross ppc64le debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 716002dbaa9c17f1132864fd2511579b57aca72f..e0b7dff94abad8228964cc2da2ac61ddc93ee696 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross s390x debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 011b76671567cdc4652a16fad804052649488096..454d726465eb09dfea838f200a7c721ddc6f9c63 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile debian-sid libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/debian:sid-slim
 
@@ -76,7 +76,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 2885eafbb0d5ca069aeef049259315bf73831031..aed94d1256b64e0c40838d42492f82dcf6b0ad11 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile fedora-33 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM registry.fedoraproject.org/fedora:33
 
@@ -79,7 +79,7 @@ exec "$@"' > /usr/bin/nosync && \
         numad \
         parted \
         parted-devel \
-        perl \
+        perl-base \
         pkgconfig \
         polkit \
         python3 \
index 139e0b145c542755ab91c6d429b17741af45bd4d..93a57b3277e6c4447809d77a030227179b72727a 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross mingw32 fedora-rawhide libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM registry.fedoraproject.org/fedora:rawhide
 
@@ -47,7 +47,7 @@ exec "$@"' > /usr/bin/nosync && \
         ninja-build \
         numad \
         parted \
-        perl \
+        perl-base \
         polkit \
         python3 \
         python3-docutils \
index b24049f87929eba9fae1c69a7f16fe2888cff0c9..ed16d75479c18cdf75248125bfbe48a6eae96558 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile --cross mingw64 fedora-rawhide libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM registry.fedoraproject.org/fedora:rawhide
 
@@ -47,7 +47,7 @@ exec "$@"' > /usr/bin/nosync && \
         ninja-build \
         numad \
         parted \
-        perl \
+        perl-base \
         polkit \
         python3 \
         python3-docutils \
index 1f0abb7288e2ae53f0183421e5cd92a0d4a1e9b1..79bacbcc9560f73dd2e8c33ec9fede30048f615d 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile fedora-rawhide libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM registry.fedoraproject.org/fedora:rawhide
 
@@ -80,7 +80,7 @@ exec "$@"' > /usr/bin/nosync && \
         numad \
         parted \
         parted-devel \
-        perl \
+        perl-base \
         pkgconfig \
         polkit \
         python3 \
index 6b566412928f3de3335ae4774738fe4a85894e33..b5f7e5f54ef71087af4dc6c656ed8d0b0a50c5e0 100644 (file)
@@ -1,8 +1,8 @@
 # THIS FILE WAS AUTO-GENERATED
 #
-#  $ lcitool dockerfile opensuse-152 libvirt
+#  $ lcitool dockerfile opensuse-leap-152 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM registry.opensuse.org/opensuse/leap:15.2
 
@@ -68,7 +68,7 @@ RUN zypper update -y && \
            open-iscsi \
            parted \
            parted-devel \
-           perl \
+           perl-base \
            pkgconfig \
            polkit \
            python3-base \
index c6c3ef5823dde15c3014bbd66761bf958c6f6c70..5e4a2e0b8fec4ee4f38f4278b092b95e6aa9044f 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile ubuntu-1804 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/ubuntu:18.04
 
@@ -76,7 +76,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \
index 78df341dca62f9b12c7e6604afab43b7fb7e0e82..0e2790f03f9324582971bcdf3b0f5a2100261230 100644 (file)
@@ -2,7 +2,7 @@
 #
 #  $ lcitool dockerfile ubuntu-2004 libvirt
 #
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
+# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
 
 FROM docker.io/library/ubuntu:20.04
 
@@ -76,7 +76,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
             numad \
             open-iscsi \
             parted \
-            perl \
+            perl-base \
             pkgconf \
             policykit-1 \
             python3 \