From 20637344f3c76d5c9bbd69b7c5f7e8142194db66 Mon Sep 17 00:00:00 2001 From: Vladik Romanovsky Date: Tue, 27 Apr 2021 12:47:06 -0400 Subject: [PATCH 1/5] virt-launcher will actively check for newly created domains during the start So far waitForDomainUUID reacted to libvirt events. In some cases, an empty domain object could be received which would prevent the virt-launcher from terminating when not running domains has been detected. This patch will not consider domain objects without UUID. It will also actively query for new domains. Co-authored-by: David Vossel Signed-off-by: Vladik Romanovsky --- cmd/virt-launcher/virt-launcher.go | 34 ++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/cmd/virt-launcher/virt-launcher.go b/cmd/virt-launcher/virt-launcher.go index ab69510a8d85..62cc033f4a85 100644 --- a/cmd/virt-launcher/virt-launcher.go +++ b/cmd/virt-launcher/virt-launcher.go @@ -218,24 +218,40 @@ func initializeDirs(virtShareDir string, } } +func detectDomainWithUUID(domainManager virtwrap.DomainManager) *api.Domain { + domains, err := domainManager.ListAllDomains() + if err != nil { + log.Log.Reason(err).Errorf("failed to list domains when detecting UUID") + return nil + } + for _, domain := range domains { + if domain.Spec.UUID != "" { + return domain + } + } + return nil +} + func waitForDomainUUID(timeout time.Duration, events chan watch.Event, stop chan struct{}, domainManager virtwrap.DomainManager) *api.Domain { ticker := time.NewTicker(timeout).C checkEarlyExit := time.NewTicker(time.Second * 2).C + domainCheckTicker := time.NewTicker(time.Second * 10).C for { select { case <-ticker: panic(fmt.Errorf("timed out waiting for domain to be defined")) - case e := <-events: - if e.Object != nil && e.Type == watch.Added { - domain := e.Object.(*api.Domain) - log.Log.Infof("Detected domain with UUID %s", domain.Spec.UUID) + case <-domainCheckTicker: + log.Log.V(3).Infof("Periodically checking for domain with UUID") + domain := detectDomainWithUUID(domainManager) + if domain != nil { + return domain + } + case <-events: + log.Log.V(3).Infof("Checking for domain with UUID due to incoming libvirt event") + domain := detectDomainWithUUID(domainManager) + if domain != nil { return domain - } else if e.Type == watch.Modified { - domain, ok := e.Object.(*api.Domain) - if ok && domain.ObjectMeta.DeletionTimestamp != nil { - return nil - } } case <-stop: return nil From bcf9ee1c1bfc82e3b8ce0cbe8897d38b8e743ad6 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Tue, 6 Apr 2021 17:25:00 +0200 Subject: [PATCH 2/5] tests: Bump memory size for 3 sockets VMI Guest OS memory usage apparently goes up with socket count, and with the current version of QEMU we can already see that 64M is barely enough to run this test successfully: it's enough to run a bunch of times in a row to encounter a failure. Let's increase the VMI's memory size to 80M to ensure the test succeeds consistently. Signed-off-by: Andrea Bolognani --- tests/vmi_configuration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vmi_configuration_test.go b/tests/vmi_configuration_test.go index ee4967ffd2a6..73d984c5c6eb 100644 --- a/tests/vmi_configuration_test.go +++ b/tests/vmi_configuration_test.go @@ -299,7 +299,7 @@ var _ = Describe("[sig-compute]Configurations", func() { } vmi.Spec.Domain.Resources = v1.ResourceRequirements{ Requests: kubev1.ResourceList{ - kubev1.ResourceMemory: resource.MustParse("64M"), + kubev1.ResourceMemory: resource.MustParse("80M"), }, } From b7a9128ae9e212621a303af44408f00f186001a9 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Tue, 13 Apr 2021 17:46:29 +0200 Subject: [PATCH 3/5] tests: Fix migration test We add a number of disks before adding the network interface, which means that we can't simply replace vmi.Spec.Domain.Devices outright or the VM will only get the network interface and no other device. Signed-off-by: Andrea Bolognani --- tests/migration_test.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/migration_test.go b/tests/migration_test.go index 2b4ad0cde030..2bc736608cc6 100644 --- a/tests/migration_test.go +++ b/tests/migration_test.go @@ -1823,9 +1823,12 @@ var _ = Describe("[Serial][rfe_id:393][crit:high][vendor:cnv-qe@redhat.com][leve } tests.AddLabelDownwardAPIVolume(vmi, downwardAPIName) - vmi.Spec.Domain.Devices = v1.Devices{Interfaces: []v1.Interface{{Name: "default", Tag: "testnic", + vmi.Spec.Domain.Devices.Interfaces = []v1.Interface{{Name: "default", Tag: "testnic", InterfaceBindingMethod: v1.InterfaceBindingMethod{ - Masquerade: &v1.InterfaceMasquerade{}}}}} + Masquerade: &v1.InterfaceMasquerade{}}}} + + Expect(len(vmi.Spec.Domain.Devices.Disks)).To(Equal(6)) + Expect(len(vmi.Spec.Domain.Devices.Interfaces)).To(Equal(1)) vmi = runVMIAndExpectLaunch(vmi, 180) From e8f8b50755c5071f590b34880d048c48882e41b4 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Fri, 30 Apr 2021 18:09:25 +0200 Subject: [PATCH 4/5] rpm: Update packages Signed-off-by: Andrea Bolognani --- WORKSPACE | 106 ++++++++++++++++++++++++++++++++---------------- rpm/BUILD.bazel | 20 ++++----- 2 files changed, 80 insertions(+), 46 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 78990197de4d..c45a8af21dd4 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -4641,32 +4641,46 @@ rpm( ) rpm( - name = "librados2-2__14.2.19-1.fc32.aarch64", - sha256 = "26263038f74702e5953c7b7d55e7014d5abe04d0c10e0fe402ac9cbee86e6704", - urls = ["https://storage.googleapis.com/builddeps/26263038f74702e5953c7b7d55e7014d5abe04d0c10e0fe402ac9cbee86e6704"], + name = "librados2-2__14.2.20-1.fc32.aarch64", + sha256 = "9e5416ea8d0041b484fc1efbe89ff171af83ba839ea68ba9513ae9aa121d404d", + urls = [ + "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/aarch64/Packages/l/librados2-14.2.20-1.fc32.aarch64.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora/linux/updates/32/Everything/aarch64/Packages/l/librados2-14.2.20-1.fc32.aarch64.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/aarch64/Packages/l/librados2-14.2.20-1.fc32.aarch64.rpm", + "https://mirror.netsite.dk/fedora/linux/updates/32/Everything/aarch64/Packages/l/librados2-14.2.20-1.fc32.aarch64.rpm", + ], ) rpm( - name = "librados2-2__14.2.19-1.fc32.x86_64", - sha256 = "48db23b80f3f6a67f8c23c28afb328bdbfdfd34c7f55c954aad4e3393f8c64ec", + name = "librados2-2__14.2.20-1.fc32.x86_64", + sha256 = "8ab581213b9d1cb02b37ec77c70fd5d08e89ad2d8c216d5255739128d944758d", urls = [ - "https://ftp.icm.edu.pl/pub/Linux/fedora/linux/updates/32/Everything/x86_64/Packages/l/librados2-14.2.19-1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/48db23b80f3f6a67f8c23c28afb328bdbfdfd34c7f55c954aad4e3393f8c64ec", + "https://ftp.lysator.liu.se/pub/fedora/linux/updates/32/Everything/x86_64/Packages/l/librados2-14.2.20-1.fc32.x86_64.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora/linux/updates/32/Everything/x86_64/Packages/l/librados2-14.2.20-1.fc32.x86_64.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/x86_64/Packages/l/librados2-14.2.20-1.fc32.x86_64.rpm", + "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/x86_64/Packages/l/librados2-14.2.20-1.fc32.x86_64.rpm", ], ) rpm( - name = "librbd1-2__14.2.19-1.fc32.aarch64", - sha256 = "08129be72048180d3b01e8648042dc58c66bf7964cbf937b2091bd2c532dfe8a", - urls = ["https://storage.googleapis.com/builddeps/08129be72048180d3b01e8648042dc58c66bf7964cbf937b2091bd2c532dfe8a"], + name = "librbd1-2__14.2.20-1.fc32.aarch64", + sha256 = "6099c564c766ee0211e659dce4604102a48996b4198218ff91bd7bc580b2818d", + urls = [ + "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/aarch64/Packages/l/librbd1-14.2.20-1.fc32.aarch64.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora/linux/updates/32/Everything/aarch64/Packages/l/librbd1-14.2.20-1.fc32.aarch64.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/aarch64/Packages/l/librbd1-14.2.20-1.fc32.aarch64.rpm", + "https://mirror.netsite.dk/fedora/linux/updates/32/Everything/aarch64/Packages/l/librbd1-14.2.20-1.fc32.aarch64.rpm", + ], ) rpm( - name = "librbd1-2__14.2.19-1.fc32.x86_64", - sha256 = "d4e463edc54435be16d587c717195106b85d4733c235ea4b2c4bb5ad7132cc1e", + name = "librbd1-2__14.2.20-1.fc32.x86_64", + sha256 = "c2129e0d7b785934783442c299d5e9693eca6cc525be0ab04346007046af197e", urls = [ - "https://ftp.icm.edu.pl/pub/Linux/fedora/linux/updates/32/Everything/x86_64/Packages/l/librbd1-14.2.19-1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/d4e463edc54435be16d587c717195106b85d4733c235ea4b2c4bb5ad7132cc1e", + "https://ftp.lysator.liu.se/pub/fedora/linux/updates/32/Everything/x86_64/Packages/l/librbd1-14.2.20-1.fc32.x86_64.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora/linux/updates/32/Everything/x86_64/Packages/l/librbd1-14.2.20-1.fc32.x86_64.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/x86_64/Packages/l/librbd1-14.2.20-1.fc32.x86_64.rpm", + "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/x86_64/Packages/l/librbd1-14.2.20-1.fc32.x86_64.rpm", ], ) @@ -6369,49 +6383,69 @@ rpm( ) rpm( - name = "nginx-1__1.18.0-1.fc32.aarch64", - sha256 = "7b7af1ab63b72128d187626a7f18f704f2fa5bd31f5b00c598543c7595ccc04f", - urls = ["https://storage.googleapis.com/builddeps/7b7af1ab63b72128d187626a7f18f704f2fa5bd31f5b00c598543c7595ccc04f"], + name = "nginx-1__1.20.0-2.fc32.aarch64", + sha256 = "dc5d325af1c543017603d7359057578793b755b444d6babce3214e3290e6a12b", + urls = [ + "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-1.20.0-2.fc32.aarch64.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-1.20.0-2.fc32.aarch64.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-1.20.0-2.fc32.aarch64.rpm", + "https://mirror.netsite.dk/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-1.20.0-2.fc32.aarch64.rpm", + ], ) rpm( - name = "nginx-1__1.18.0-1.fc32.ppc64le", - sha256 = "2f707111d2d0db5e29b3a767cb020a97d7e533f874778675bdabebc4b7e95de1", + name = "nginx-1__1.20.0-2.fc32.ppc64le", + sha256 = "eddd9ae6827c089c47e95cfdeac6c0b4bb9eb29e3d001d9ad246989b201b913c", urls = [ - "https://ftp.icm.edu.pl/pub/Linux/dist/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-1.18.0-1.fc32.ppc64le.rpm", - "https://storage.googleapis.com/builddeps/2f707111d2d0db5e29b3a767cb020a97d7e533f874778675bdabebc4b7e95de1", + "https://mirror.yandex.ru/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-1.20.0-2.fc32.ppc64le.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-1.20.0-2.fc32.ppc64le.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-1.20.0-2.fc32.ppc64le.rpm", + "https://fr2.rpmfind.net/linux/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-1.20.0-2.fc32.ppc64le.rpm", ], ) rpm( - name = "nginx-1__1.18.0-1.fc32.x86_64", - sha256 = "b31bb2d93bffcd0429aeda63d55906b3db7d3621cea21513f8d57a1b0abbd408", - urls = ["https://storage.googleapis.com/builddeps/b31bb2d93bffcd0429aeda63d55906b3db7d3621cea21513f8d57a1b0abbd408"], + name = "nginx-1__1.20.0-2.fc32.x86_64", + sha256 = "e372048f4c81be8f67d1d93b92a4fec4e8a76786336c0c022472d92f21d6474d", + urls = [ + "https://ftp.lysator.liu.se/pub/fedora/linux/updates/32/Everything/x86_64/Packages/n/nginx-1.20.0-2.fc32.x86_64.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora/linux/updates/32/Everything/x86_64/Packages/n/nginx-1.20.0-2.fc32.x86_64.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/x86_64/Packages/n/nginx-1.20.0-2.fc32.x86_64.rpm", + "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/x86_64/Packages/n/nginx-1.20.0-2.fc32.x86_64.rpm", + ], ) rpm( - name = "nginx-filesystem-1__1.18.0-1.fc32.aarch64", - sha256 = "7bf90b5aecb556664c3e8e16d88804b756ebc67350ee0f5b6d86d8187cb35221", + name = "nginx-filesystem-1__1.20.0-2.fc32.aarch64", + sha256 = "5681c48f58996de37de65fd46b0f90146e33ffbba039b708d55a770196cc7028", urls = [ - "https://ftp.yz.yamagata-u.ac.jp/pub/linux/fedora-projects/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-filesystem-1.18.0-1.fc32.noarch.rpm", - "https://nrt.edge.kernel.org/fedora-buffet/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-filesystem-1.18.0-1.fc32.noarch.rpm", - "https://storage.googleapis.com/builddeps/7bf90b5aecb556664c3e8e16d88804b756ebc67350ee0f5b6d86d8187cb35221", + "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://mirror.netsite.dk/fedora/linux/updates/32/Everything/aarch64/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", ], ) rpm( - name = "nginx-filesystem-1__1.18.0-1.fc32.ppc64le", - sha256 = "7bf90b5aecb556664c3e8e16d88804b756ebc67350ee0f5b6d86d8187cb35221", + name = "nginx-filesystem-1__1.20.0-2.fc32.ppc64le", + sha256 = "5681c48f58996de37de65fd46b0f90146e33ffbba039b708d55a770196cc7028", urls = [ - "https://ftp.icm.edu.pl/pub/Linux/dist/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-filesystem-1.18.0-1.fc32.noarch.rpm", - "https://storage.googleapis.com/builddeps/7bf90b5aecb556664c3e8e16d88804b756ebc67350ee0f5b6d86d8187cb35221", + "https://mirror.yandex.ru/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://fr2.rpmfind.net/linux/fedora-secondary/updates/32/Everything/ppc64le/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", ], ) rpm( - name = "nginx-filesystem-1__1.18.0-1.fc32.x86_64", - sha256 = "7bf90b5aecb556664c3e8e16d88804b756ebc67350ee0f5b6d86d8187cb35221", - urls = ["https://storage.googleapis.com/builddeps/7bf90b5aecb556664c3e8e16d88804b756ebc67350ee0f5b6d86d8187cb35221"], + name = "nginx-filesystem-1__1.20.0-2.fc32.x86_64", + sha256 = "5681c48f58996de37de65fd46b0f90146e33ffbba039b708d55a770196cc7028", + urls = [ + "https://ftp.lysator.liu.se/pub/fedora/linux/updates/32/Everything/x86_64/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora/linux/updates/32/Everything/x86_64/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/x86_64/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/x86_64/Packages/n/nginx-filesystem-1.20.0-2.fc32.noarch.rpm", + ], ) rpm( diff --git a/rpm/BUILD.bazel b/rpm/BUILD.bazel index f7d3ede3034b..08aef683ab86 100644 --- a/rpm/BUILD.bazel +++ b/rpm/BUILD.bazel @@ -145,8 +145,8 @@ rpmtree( "@libpcap-14__1.10.0-1.fc32.aarch64//rpm", "@libpng-2__1.6.37-3.fc32.aarch64//rpm", "@libpwquality-0__1.4.4-1.fc32.aarch64//rpm", - "@librados2-2__14.2.19-1.fc32.aarch64//rpm", - "@librbd1-2__14.2.19-1.fc32.aarch64//rpm", + "@librados2-2__14.2.20-1.fc32.aarch64//rpm", + "@librbd1-2__14.2.20-1.fc32.aarch64//rpm", "@librdmacm-0__33.0-2.fc32.aarch64//rpm", "@libref_array-0__0.1.5-44.fc32.aarch64//rpm", "@libseccomp-0__2.5.0-3.fc32.aarch64//rpm", @@ -434,8 +434,8 @@ rpmtree( "@libpmem-0__1.8-2.fc32.x86_64//rpm", "@libpng-2__1.6.37-3.fc32.x86_64//rpm", "@libpwquality-0__1.4.4-1.fc32.x86_64//rpm", - "@librados2-2__14.2.19-1.fc32.x86_64//rpm", - "@librbd1-2__14.2.19-1.fc32.x86_64//rpm", + "@librados2-2__14.2.20-1.fc32.x86_64//rpm", + "@librbd1-2__14.2.20-1.fc32.x86_64//rpm", "@librdmacm-0__33.0-2.fc32.x86_64//rpm", "@libref_array-0__0.1.5-44.fc32.x86_64//rpm", "@libseccomp-0__2.5.0-3.fc32.x86_64//rpm", @@ -959,8 +959,8 @@ rpmtree( "@ncurses-base-0__6.1-15.20191109.fc32.aarch64//rpm", "@ncurses-libs-0__6.1-15.20191109.fc32.aarch64//rpm", "@nettle-0__3.5.1-5.fc32.aarch64//rpm", - "@nginx-1__1.18.0-1.fc32.aarch64//rpm", - "@nginx-filesystem-1__1.18.0-1.fc32.aarch64//rpm", + "@nginx-1__1.20.0-2.fc32.aarch64//rpm", + "@nginx-filesystem-1__1.20.0-2.fc32.aarch64//rpm", "@nginx-mimetypes-0__2.1.48-7.fc32.aarch64//rpm", "@nmap-ncat-2__7.80-4.fc32.aarch64//rpm", "@openssl-1__1.1.1k-1.fc32.aarch64//rpm", @@ -1137,8 +1137,8 @@ rpmtree( "@ncurses-base-0__6.1-15.20191109.fc32.ppc64le//rpm", "@ncurses-libs-0__6.1-15.20191109.fc32.ppc64le//rpm", "@nettle-0__3.5.1-5.fc32.ppc64le//rpm", - "@nginx-1__1.18.0-1.fc32.ppc64le//rpm", - "@nginx-filesystem-1__1.18.0-1.fc32.ppc64le//rpm", + "@nginx-1__1.20.0-2.fc32.ppc64le//rpm", + "@nginx-filesystem-1__1.20.0-2.fc32.ppc64le//rpm", "@nginx-mimetypes-0__2.1.48-7.fc32.ppc64le//rpm", "@nmap-ncat-2__7.80-4.fc32.ppc64le//rpm", "@openssl-1__1.1.1k-1.fc32.ppc64le//rpm", @@ -1319,8 +1319,8 @@ rpmtree( "@ncurses-base-0__6.1-15.20191109.fc32.x86_64//rpm", "@ncurses-libs-0__6.1-15.20191109.fc32.x86_64//rpm", "@nettle-0__3.5.1-5.fc32.x86_64//rpm", - "@nginx-1__1.18.0-1.fc32.x86_64//rpm", - "@nginx-filesystem-1__1.18.0-1.fc32.x86_64//rpm", + "@nginx-1__1.20.0-2.fc32.x86_64//rpm", + "@nginx-filesystem-1__1.20.0-2.fc32.x86_64//rpm", "@nginx-mimetypes-0__2.1.48-7.fc32.x86_64//rpm", "@nmap-ncat-2__7.80-4.fc32.x86_64//rpm", "@openssl-1__1.1.1k-1.fc32.x86_64//rpm", From 47a2592114fe5a87861eae225457b5c8e1c3ab68 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Fri, 26 Mar 2021 17:22:08 +0100 Subject: [PATCH 5/5] rpm: Update libvirt and QEMU Specifically: libvirt 6.6.0-13.1 -> 7.0.0-12 QEMU 5.1.0-18 -> 5.2.0-15 SeaBIOS remains at 1.14.0-1. Note that, in order to keep aarch64 cross-builds working, a few additional packages have had to be explicitly added to the libvirt-devel bazeldnf targets - namely keyutils-libs, krb5-libs and libmount. This should not be needed, and I'm not sure what component would have to be modified so that such hacks are no longer necessary, but it's consistent with what was done in https://github.com/kubevirt/kubevirt/pull/5456 when aarch64 cross-builds were introduced. Signed-off-by: Andrea Bolognani --- WORKSPACE | 740 +++++++++++++++++++++++++++++++++-------------- hack/rpm-deps.sh | 21 +- repo.yaml | 16 +- rpm/BUILD.bazel | 155 +++++----- 4 files changed, 634 insertions(+), 298 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index c45a8af21dd4..60230ef4bb66 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -876,6 +876,28 @@ rpm( ], ) +rpm( + name = "checkpolicy-0__3.0-3.fc32.aarch64", + sha256 = "ad6f711174c59ffb9116d792068cc8fd0585b46eb5d9bf18a3c9937727b9a379", + urls = [ + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/c/checkpolicy-3.0-3.fc32.aarch64.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/c/checkpolicy-3.0-3.fc32.aarch64.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/c/checkpolicy-3.0-3.fc32.aarch64.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/c/checkpolicy-3.0-3.fc32.aarch64.rpm", + ], +) + +rpm( + name = "checkpolicy-0__3.0-3.fc32.x86_64", + sha256 = "703fb5ca1651bb72d8ab58576ce3d78c9479cbb2e78ff8666ae3a3d1cd9bb0da", + urls = [ + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/c/checkpolicy-3.0-3.fc32.x86_64.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/c/checkpolicy-3.0-3.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/c/checkpolicy-3.0-3.fc32.x86_64.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/c/checkpolicy-3.0-3.fc32.x86_64.rpm", + ], +) + rpm( name = "coreutils-single-0__8.32-4.fc32.2.aarch64", sha256 = "dd887703ae5bd046631e57095f1fa421a121d09880cbd173d58dc82411b8544b", @@ -1234,29 +1256,6 @@ rpm( ], ) -rpm( - name = "dbus-libs-1__1.12.20-1.fc32.aarch64", - sha256 = "7217f6d16b753a414ddc532617649ddbb1ccf8f599280a4ca2f543d9abe8504f", - urls = [ - "https://nrt.edge.kernel.org/fedora-buffet/fedora/linux/updates/32/Everything/aarch64/Packages/d/dbus-libs-1.12.20-1.fc32.aarch64.rpm", - "https://ftp.yz.yamagata-u.ac.jp/pub/linux/fedora-projects/fedora/linux/updates/32/Everything/aarch64/Packages/d/dbus-libs-1.12.20-1.fc32.aarch64.rpm", - "https://mirrors.tuna.tsinghua.edu.cn/fedora/updates/32/Everything/aarch64/Packages/d/dbus-libs-1.12.20-1.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/7217f6d16b753a414ddc532617649ddbb1ccf8f599280a4ca2f543d9abe8504f", - ], -) - -rpm( - name = "dbus-libs-1__1.12.20-1.fc32.x86_64", - sha256 = "a967348d3ee8b4db1405921ff8bef14d3bcb3d04f4b3c67f6821cc65ec612fef", - urls = [ - "https://mirror.dogado.de/fedora/linux/updates/32/Everything/x86_64/Packages/d/dbus-libs-1.12.20-1.fc32.x86_64.rpm", - "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/updates/32/Everything/x86_64/Packages/d/dbus-libs-1.12.20-1.fc32.x86_64.rpm", - "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/d/dbus-libs-1.12.20-1.fc32.x86_64.rpm", - "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/d/dbus-libs-1.12.20-1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/a967348d3ee8b4db1405921ff8bef14d3bcb3d04f4b3c67f6821cc65ec612fef", - ], -) - rpm( name = "dejavu-sans-fonts-0__2.37-8.fc32.x86_64", sha256 = "f22e2fb4cbe5ffe60879f3801db3b4afe7898bdeaf16246aab76520c613dfb36", @@ -3424,18 +3423,6 @@ rpm( ], ) -rpm( - name = "libcacard-3__2.7.0-4.fc32.x86_64", - sha256 = "a10a03a79cea36cf52f23120cf9fb040d289dd269903ab606f404cfee65cc429", - urls = [ - "https://ftp-stud.hs-esslingen.de/pub/fedora/linux/releases/32/Everything/x86_64/os/Packages/l/libcacard-2.7.0-4.fc32.x86_64.rpm", - "https://ftp.wrz.de/pub/fedora/linux/releases/32/Everything/x86_64/os/Packages/l/libcacard-2.7.0-4.fc32.x86_64.rpm", - "https://ftp.plusline.net/fedora/linux/releases/32/Everything/x86_64/os/Packages/l/libcacard-2.7.0-4.fc32.x86_64.rpm", - "https://mirror.23media.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/l/libcacard-2.7.0-4.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/a10a03a79cea36cf52f23120cf9fb040d289dd269903ab606f404cfee65cc429", - ], -) - rpm( name = "libcap-0__2.26-7.fc32.aarch64", sha256 = "0a2eadd29cc53df942d3f0acc016b281efa4347fc2e9de1d7b8b61d9c5f0d894", @@ -4014,30 +4001,6 @@ rpm( ], ) -rpm( - name = "libibumad-0__33.0-2.fc32.aarch64", - sha256 = "88db85adad938f6e5932c6574b4e8d92897562e40f0cc553214ea13708c29d48", - urls = [ - "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/l/libibumad-33.0-2.fc32.aarch64.rpm", - "https://mirror.yandex.ru/fedora/linux/updates/32/Everything/aarch64/Packages/l/libibumad-33.0-2.fc32.aarch64.rpm", - "https://mirror.dst.ca/fedora/updates/32/Everything/aarch64/Packages/l/libibumad-33.0-2.fc32.aarch64.rpm", - "https://ewr.edge.kernel.org/fedora-buffet/fedora/linux/updates/32/Everything/aarch64/Packages/l/libibumad-33.0-2.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/88db85adad938f6e5932c6574b4e8d92897562e40f0cc553214ea13708c29d48", - ], -) - -rpm( - name = "libibumad-0__33.0-2.fc32.x86_64", - sha256 = "908129592ec5dad190681d655cdce69bd255bbcdd4dede3bdea42d9f76ee94b5", - urls = [ - "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/l/libibumad-33.0-2.fc32.x86_64.rpm", - "https://ftp.acc.umu.se/mirror/fedora/linux/updates/32/Everything/x86_64/Packages/l/libibumad-33.0-2.fc32.x86_64.rpm", - "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/x86_64/Packages/l/libibumad-33.0-2.fc32.x86_64.rpm", - "https://ftp.icm.edu.pl/pub/Linux/fedora/linux/updates/32/Everything/x86_64/Packages/l/libibumad-33.0-2.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/908129592ec5dad190681d655cdce69bd255bbcdd4dede3bdea42d9f76ee94b5", - ], -) - rpm( name = "libibverbs-0__33.0-2.fc32.aarch64", sha256 = "b98d83016c9746eb5e7b94e7d4fd40187de0dbd4355d01dcdd36c0b7e4c5b324", @@ -5251,6 +5214,28 @@ rpm( ], ) +rpm( + name = "libtpms-0__0.7.7-0.20210302gitfd5bd3fb1d.fc32.aarch64", + sha256 = "0434c4ac983350c721f7aca1c1932d97610e6d26da48499c89068d777a557d39", + urls = [ + "https://mirror.23media.com/fedora/linux/updates/32/Everything/aarch64/Packages/l/libtpms-0.7.7-0.20210302gitfd5bd3fb1d.fc32.aarch64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/aarch64/Packages/l/libtpms-0.7.7-0.20210302gitfd5bd3fb1d.fc32.aarch64.rpm", + "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/l/libtpms-0.7.7-0.20210302gitfd5bd3fb1d.fc32.aarch64.rpm", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/aarch64/Packages/l/libtpms-0.7.7-0.20210302gitfd5bd3fb1d.fc32.aarch64.rpm", + ], +) + +rpm( + name = "libtpms-0__0.7.7-0.20210302gitfd5bd3fb1d.fc32.x86_64", + sha256 = "8deef9482fe7c7fa97f44396481b3c47d0a650948affbbdaa0e2f0f47e65903c", + urls = [ + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/l/libtpms-0.7.7-0.20210302gitfd5bd3fb1d.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/l/libtpms-0.7.7-0.20210302gitfd5bd3fb1d.fc32.x86_64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/l/libtpms-0.7.7-0.20210302gitfd5bd3fb1d.fc32.x86_64.rpm", + "https://fedora.ip-connect.info/linux/updates/32/Everything/x86_64/Packages/l/libtpms-0.7.7-0.20210302gitfd5bd3fb1d.fc32.x86_64.rpm", + ], +) + rpm( name = "libunistring-0__0.9.10-7.fc32.aarch64", sha256 = "2d7ad38e86f5109c732a32bf9bea612c4c674aba6ad4cca2d211d826edc7fd6f", @@ -5488,129 +5473,87 @@ rpm( ) rpm( - name = "libvirt-bash-completion-0__6.6.0-13.1.fc32.aarch64", - sha256 = "dd7505b8cf9b7d71371444bd95ce04e6ff8381c4d2070594bc74f0904cbd29f0", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-aarch64/02081437-libvirt/libvirt-bash-completion-6.6.0-13.1.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/dd7505b8cf9b7d71371444bd95ce04e6ff8381c4d2070594bc74f0904cbd29f0", - ], + name = "libvirt-bash-completion-0__7.0.0-12.fc32.aarch64", + sha256 = "804cf3f136cd05283f56ef5f1a606b013e43b8bb43d48df8f436b83fe78ef8b6", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-aarch64/02116091-libvirt/libvirt-bash-completion-7.0.0-12.fc32.aarch64.rpm"], ) rpm( - name = "libvirt-bash-completion-0__6.6.0-13.1.fc32.x86_64", - sha256 = "d8e5accd3e8123d286617455fa7eb5aeaf9212a2f56afbd95034daa44428341c", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-x86_64/02081437-libvirt/libvirt-bash-completion-6.6.0-13.1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/d8e5accd3e8123d286617455fa7eb5aeaf9212a2f56afbd95034daa44428341c", - ], + name = "libvirt-bash-completion-0__7.0.0-12.fc32.x86_64", + sha256 = "b3f501741bab94b412ebc8b359c29a9f2213e11ec110bbf57a131aff52fd6ef2", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-x86_64/02116091-libvirt/libvirt-bash-completion-7.0.0-12.fc32.x86_64.rpm"], ) rpm( - name = "libvirt-client-0__6.6.0-13.1.fc32.aarch64", - sha256 = "7353ea9a5bf297af88c840110dd495a55b136e90d709b574542bc113e74b56e9", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-aarch64/02081437-libvirt/libvirt-client-6.6.0-13.1.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/7353ea9a5bf297af88c840110dd495a55b136e90d709b574542bc113e74b56e9", - ], + name = "libvirt-client-0__7.0.0-12.fc32.aarch64", + sha256 = "a1666f035f7efab04a51a3782884c1fdfd1cb3e036db8ebb39fbdecb88f5645c", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-aarch64/02116091-libvirt/libvirt-client-7.0.0-12.fc32.aarch64.rpm"], ) rpm( - name = "libvirt-client-0__6.6.0-13.1.fc32.x86_64", - sha256 = "4b795e4eca9d0c8decc0a1468406ee75a720b8f68d272cc1042008f944fcc9ec", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-x86_64/02081437-libvirt/libvirt-client-6.6.0-13.1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/4b795e4eca9d0c8decc0a1468406ee75a720b8f68d272cc1042008f944fcc9ec", - ], + name = "libvirt-client-0__7.0.0-12.fc32.x86_64", + sha256 = "9ea2e9893c9180fa31f2a0b91c6eaef3a12804c261224ad5150cd20e27292acc", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-x86_64/02116091-libvirt/libvirt-client-7.0.0-12.fc32.x86_64.rpm"], ) rpm( - name = "libvirt-daemon-0__6.6.0-13.1.fc32.aarch64", - sha256 = "1298d9ae62b4787cb58ce4c2c71c7f1a0b9583d362e4dd26f7a4520f9267da1a", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-aarch64/02081437-libvirt/libvirt-daemon-6.6.0-13.1.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/1298d9ae62b4787cb58ce4c2c71c7f1a0b9583d362e4dd26f7a4520f9267da1a", - ], + name = "libvirt-daemon-0__7.0.0-12.fc32.aarch64", + sha256 = "ccb5939f97bcfa66887c46aeb79e6469d3be20bf41e7d68b5abcdd6520343882", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-aarch64/02116091-libvirt/libvirt-daemon-7.0.0-12.fc32.aarch64.rpm"], ) rpm( - name = "libvirt-daemon-0__6.6.0-13.1.fc32.x86_64", - sha256 = "cd910eea81b31a953c81bee3ffb739a93328f9ef79077c118ffb45fd8a80feb0", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-x86_64/02081437-libvirt/libvirt-daemon-6.6.0-13.1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/cd910eea81b31a953c81bee3ffb739a93328f9ef79077c118ffb45fd8a80feb0", - ], + name = "libvirt-daemon-0__7.0.0-12.fc32.x86_64", + sha256 = "2657470eabb741afa7ffffd0fd7b74bf2ed12bed0517874060b2e2d28c107986", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-x86_64/02116091-libvirt/libvirt-daemon-7.0.0-12.fc32.x86_64.rpm"], ) rpm( - name = "libvirt-daemon-driver-qemu-0__6.6.0-13.1.fc32.aarch64", - sha256 = "06f6aab9b1170cb757cff8db814d534ec1ac94a69f4be1fb5f60fc7948d7e8f5", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-aarch64/02081437-libvirt/libvirt-daemon-driver-qemu-6.6.0-13.1.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/06f6aab9b1170cb757cff8db814d534ec1ac94a69f4be1fb5f60fc7948d7e8f5", - ], + name = "libvirt-daemon-driver-qemu-0__7.0.0-12.fc32.aarch64", + sha256 = "1a6160b0e50f951908185c7a9cbb4a0f252a4aae9cdaa014f576c5493f27fdec", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-aarch64/02116091-libvirt/libvirt-daemon-driver-qemu-7.0.0-12.fc32.aarch64.rpm"], ) rpm( - name = "libvirt-daemon-driver-qemu-0__6.6.0-13.1.fc32.x86_64", - sha256 = "630f4a28f561e835a84680f4e601ac0aa6372d4946c999ed324a1647466f75f0", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-x86_64/02081437-libvirt/libvirt-daemon-driver-qemu-6.6.0-13.1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/630f4a28f561e835a84680f4e601ac0aa6372d4946c999ed324a1647466f75f0", - ], + name = "libvirt-daemon-driver-qemu-0__7.0.0-12.fc32.x86_64", + sha256 = "66a9dfaa290d4114a1b249043d1d02e8f19893dd055e6abf485447b61e1a5384", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-x86_64/02116091-libvirt/libvirt-daemon-driver-qemu-7.0.0-12.fc32.x86_64.rpm"], ) rpm( - name = "libvirt-daemon-driver-storage-core-0__6.6.0-13.1.fc32.aarch64", - sha256 = "40d37d0f297621971565b3ed1d78324a52f9cfde86259c298b025a3bb2ba37ad", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-aarch64/02081437-libvirt/libvirt-daemon-driver-storage-core-6.6.0-13.1.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/40d37d0f297621971565b3ed1d78324a52f9cfde86259c298b025a3bb2ba37ad", - ], + name = "libvirt-daemon-driver-storage-core-0__7.0.0-12.fc32.aarch64", + sha256 = "34eae408e80a06515ac04256fdbb1b591804542e38a0fab44e58e188bb19ede3", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-aarch64/02116091-libvirt/libvirt-daemon-driver-storage-core-7.0.0-12.fc32.aarch64.rpm"], ) rpm( - name = "libvirt-daemon-driver-storage-core-0__6.6.0-13.1.fc32.x86_64", - sha256 = "af8959a9e3b48c6bf3dfe45e056304aa221bc339c28870302442d1a4d4caa4b5", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-x86_64/02081437-libvirt/libvirt-daemon-driver-storage-core-6.6.0-13.1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/af8959a9e3b48c6bf3dfe45e056304aa221bc339c28870302442d1a4d4caa4b5", - ], + name = "libvirt-daemon-driver-storage-core-0__7.0.0-12.fc32.x86_64", + sha256 = "97235287c96aaa375ad7b0154bd7b0351f6adb2a8d989b805ce62eec8d6b1073", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-x86_64/02116091-libvirt/libvirt-daemon-driver-storage-core-7.0.0-12.fc32.x86_64.rpm"], ) rpm( - name = "libvirt-devel-0__6.6.0-13.1.fc32.aarch64", - sha256 = "23ddc5cc5a669a589bf0ae4dc65af45e6f4a183522b1b8e6098a81faba107d2a", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-aarch64/02081437-libvirt/libvirt-devel-6.6.0-13.1.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/23ddc5cc5a669a589bf0ae4dc65af45e6f4a183522b1b8e6098a81faba107d2a", - ], + name = "libvirt-devel-0__7.0.0-12.fc32.aarch64", + sha256 = "eab4911332e62d44cbbdaafba3a7c756be6d45ab68d186d2b15fa6f0da547f1b", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-aarch64/02116091-libvirt/libvirt-devel-7.0.0-12.fc32.aarch64.rpm"], ) rpm( - name = "libvirt-devel-0__6.6.0-13.1.fc32.x86_64", - sha256 = "5b1c5ffb1071ca8a5994b4d9e3fb742756d8b4777ca8e579ea2739fe9e53a922", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-x86_64/02081437-libvirt/libvirt-devel-6.6.0-13.1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/5b1c5ffb1071ca8a5994b4d9e3fb742756d8b4777ca8e579ea2739fe9e53a922", - ], + name = "libvirt-devel-0__7.0.0-12.fc32.x86_64", + sha256 = "1aa01815a6f9e94bc23b3a3014345fb3a3abc0d0f89e607268baab95de264823", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-x86_64/02116091-libvirt/libvirt-devel-7.0.0-12.fc32.x86_64.rpm"], ) rpm( - name = "libvirt-libs-0__6.6.0-13.1.fc32.aarch64", - sha256 = "75f719c7251178fd75deadc8f36b27c59ae15f728895c1b627326ae90d84e022", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-aarch64/02081437-libvirt/libvirt-libs-6.6.0-13.1.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/75f719c7251178fd75deadc8f36b27c59ae15f728895c1b627326ae90d84e022", - ], + name = "libvirt-libs-0__7.0.0-12.fc32.aarch64", + sha256 = "42da6eb3bf7c2c3bddf5e1184c7fcba8bc40da42072c817fe51ff14e005577a6", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-aarch64/02116091-libvirt/libvirt-libs-7.0.0-12.fc32.aarch64.rpm"], ) rpm( - name = "libvirt-libs-0__6.6.0-13.1.fc32.x86_64", - sha256 = "9bdfcb6e94794bc1fa90b15a9a004013c4669f0b06b3ab926b05cb3e5d7bfed6", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-x86_64/02081437-libvirt/libvirt-libs-6.6.0-13.1.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/9bdfcb6e94794bc1fa90b15a9a004013c4669f0b06b3ab926b05cb3e5d7bfed6", - ], + name = "libvirt-libs-0__7.0.0-12.fc32.x86_64", + sha256 = "0cff0aa7af597987bed2654d7145da48c5cf70927c5bf4000170baf9908db93a", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-x86_64/02116091-libvirt/libvirt-libs-7.0.0-12.fc32.x86_64.rpm"], ) rpm( @@ -8441,6 +8384,28 @@ rpm( ], ) +rpm( + name = "policycoreutils-python-utils-0__3.0-2.fc32.aarch64", + sha256 = "3cd56dea57c00e2c4a9d5aac69a1e843ebef581ba76dde9d9878082fa1215485", + urls = [ + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/policycoreutils-python-utils-3.0-2.fc32.noarch.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/policycoreutils-python-utils-3.0-2.fc32.noarch.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/policycoreutils-python-utils-3.0-2.fc32.noarch.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/policycoreutils-python-utils-3.0-2.fc32.noarch.rpm", + ], +) + +rpm( + name = "policycoreutils-python-utils-0__3.0-2.fc32.x86_64", + sha256 = "3cd56dea57c00e2c4a9d5aac69a1e843ebef581ba76dde9d9878082fa1215485", + urls = [ + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/policycoreutils-python-utils-3.0-2.fc32.noarch.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/policycoreutils-python-utils-3.0-2.fc32.noarch.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/policycoreutils-python-utils-3.0-2.fc32.noarch.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/policycoreutils-python-utils-3.0-2.fc32.noarch.rpm", + ], +) + rpm( name = "polkit-0__0.116-7.fc32.aarch64", sha256 = "056227b8324dbabe392ac9b3e8a28ae7fa1b630f5d06cc156e687b988a49c6bd", @@ -8659,6 +8624,94 @@ rpm( ], ) +rpm( + name = "python3-audit-0__3.0.1-2.fc32.aarch64", + sha256 = "f71aaf8361ed54021ec46a486844d75d209da81dcf9805ee2759bf37a930f728", + urls = [ + "https://mirror.23media.com/fedora/linux/updates/32/Everything/aarch64/Packages/p/python3-audit-3.0.1-2.fc32.aarch64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/aarch64/Packages/p/python3-audit-3.0.1-2.fc32.aarch64.rpm", + "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/p/python3-audit-3.0.1-2.fc32.aarch64.rpm", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/aarch64/Packages/p/python3-audit-3.0.1-2.fc32.aarch64.rpm", + ], +) + +rpm( + name = "python3-audit-0__3.0.1-2.fc32.x86_64", + sha256 = "21594d86b6e6b069267b83fec2d190ea261fd594eee7c37f18916227de84f0ba", + urls = [ + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/p/python3-audit-3.0.1-2.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/p/python3-audit-3.0.1-2.fc32.x86_64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/p/python3-audit-3.0.1-2.fc32.x86_64.rpm", + "https://fedora.ip-connect.info/linux/updates/32/Everything/x86_64/Packages/p/python3-audit-3.0.1-2.fc32.x86_64.rpm", + ], +) + +rpm( + name = "python3-cffi-0__1.14.0-1.fc32.aarch64", + sha256 = "844ee747d24d934104398be60747b407d19c8106ead11b06fe92fcc62bd765fc", + urls = [ + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-cffi-1.14.0-1.fc32.aarch64.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-cffi-1.14.0-1.fc32.aarch64.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-cffi-1.14.0-1.fc32.aarch64.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-cffi-1.14.0-1.fc32.aarch64.rpm", + ], +) + +rpm( + name = "python3-cffi-0__1.14.0-1.fc32.x86_64", + sha256 = "7124f9fedc862e3bab80f05b804b6c9580603ce3155727e888646d4d4f5ddc50", + urls = [ + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-cffi-1.14.0-1.fc32.x86_64.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-cffi-1.14.0-1.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-cffi-1.14.0-1.fc32.x86_64.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-cffi-1.14.0-1.fc32.x86_64.rpm", + ], +) + +rpm( + name = "python3-cryptography-0__2.8-3.fc32.aarch64", + sha256 = "bbf9571bf10df55a90e73b372da33b6ac54fad5778cea58064b7b57dcbb17180", + urls = [ + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-cryptography-2.8-3.fc32.aarch64.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-cryptography-2.8-3.fc32.aarch64.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-cryptography-2.8-3.fc32.aarch64.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-cryptography-2.8-3.fc32.aarch64.rpm", + ], +) + +rpm( + name = "python3-cryptography-0__2.8-3.fc32.x86_64", + sha256 = "bb8942d19e594c0f4ca181bd58796bd5d3cb681c3f17cd2ec2654c3afe28e39a", + urls = [ + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-cryptography-2.8-3.fc32.x86_64.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-cryptography-2.8-3.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-cryptography-2.8-3.fc32.x86_64.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-cryptography-2.8-3.fc32.x86_64.rpm", + ], +) + +rpm( + name = "python3-idna-0__2.8-6.fc32.aarch64", + sha256 = "61c51596cc97f35177efe8dc5e2ca52d8fd528570f33c184497f419259b73c90", + urls = [ + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-idna-2.8-6.fc32.noarch.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-idna-2.8-6.fc32.noarch.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-idna-2.8-6.fc32.noarch.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-idna-2.8-6.fc32.noarch.rpm", + ], +) + +rpm( + name = "python3-idna-0__2.8-6.fc32.x86_64", + sha256 = "61c51596cc97f35177efe8dc5e2ca52d8fd528570f33c184497f419259b73c90", + urls = [ + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-idna-2.8-6.fc32.noarch.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-idna-2.8-6.fc32.noarch.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-idna-2.8-6.fc32.noarch.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-idna-2.8-6.fc32.noarch.rpm", + ], +) + rpm( name = "python3-libs-0__3.8.9-1.fc32.aarch64", sha256 = "bb370faa22e155a3fb498800fb5a158a1dca359c9fa9191b905ef2125848593f", @@ -8684,170 +8737,307 @@ rpm( ) rpm( - name = "qemu-img-15__5.1.0-18.fc32.aarch64", - sha256 = "dcd85ba852d6b58ec7f4c9355ae0f302a033352fe0f80d24ba3dbbdae4ed0023", + name = "python3-libselinux-0__3.0-5.fc32.aarch64", + sha256 = "99cf82c23c9aa1303dde95472a020c763a8ff0af58c78b57ced7c3a2b286da08", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/01890581-qemu-kvm/qemu-img-5.1.0-18.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/dcd85ba852d6b58ec7f4c9355ae0f302a033352fe0f80d24ba3dbbdae4ed0023", + "https://mirror.23media.com/fedora/linux/updates/32/Everything/aarch64/Packages/p/python3-libselinux-3.0-5.fc32.aarch64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/aarch64/Packages/p/python3-libselinux-3.0-5.fc32.aarch64.rpm", + "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/p/python3-libselinux-3.0-5.fc32.aarch64.rpm", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/aarch64/Packages/p/python3-libselinux-3.0-5.fc32.aarch64.rpm", ], ) rpm( - name = "qemu-img-15__5.1.0-18.fc32.x86_64", - sha256 = "92e84606ca802240fab3ee8fcdec40c42ee7131b3203208b4be4d7f984cf6423", + name = "python3-libselinux-0__3.0-5.fc32.x86_64", + sha256 = "a5f9e91fbcf28dc4bfebcf8894b63758134044a6909b3b6061fd7c9f1b72cf39", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-img-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/92e84606ca802240fab3ee8fcdec40c42ee7131b3203208b4be4d7f984cf6423", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/p/python3-libselinux-3.0-5.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/p/python3-libselinux-3.0-5.fc32.x86_64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/p/python3-libselinux-3.0-5.fc32.x86_64.rpm", + "https://fedora.ip-connect.info/linux/updates/32/Everything/x86_64/Packages/p/python3-libselinux-3.0-5.fc32.x86_64.rpm", ], ) rpm( - name = "qemu-img-2__4.2.1-1.fc32.ppc64le", - sha256 = "0681f4b8590f0747f17d580e5b0812bf03a03a3b7dcdeb5ec142b97a56c2689a", + name = "python3-libsemanage-0__3.0-3.fc32.aarch64", + sha256 = "eded265cff5d22b89a955570eba030643d6730dd5987c2efed3110ef74cd0254", urls = [ - "https://ftp-stud.hs-esslingen.de/pub/fedora-secondary/updates/32/Everything/ppc64le/Packages/q/qemu-img-4.2.1-1.fc32.ppc64le.rpm", - "https://ftp.icm.edu.pl/pub/Linux/dist/fedora-secondary/updates/32/Everything/ppc64le/Packages/q/qemu-img-4.2.1-1.fc32.ppc64le.rpm", - "https://mirrors.dotsrc.org/fedora-buffet/fedora-secondary/updates/32/Everything/ppc64le/Packages/q/qemu-img-4.2.1-1.fc32.ppc64le.rpm", - "https://mirror.yandex.ru/fedora-secondary/updates/32/Everything/ppc64le/Packages/q/qemu-img-4.2.1-1.fc32.ppc64le.rpm", - "https://storage.googleapis.com/builddeps/0681f4b8590f0747f17d580e5b0812bf03a03a3b7dcdeb5ec142b97a56c2689a", + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-libsemanage-3.0-3.fc32.aarch64.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-libsemanage-3.0-3.fc32.aarch64.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-libsemanage-3.0-3.fc32.aarch64.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-libsemanage-3.0-3.fc32.aarch64.rpm", ], ) rpm( - name = "qemu-kvm-15__5.1.0-18.fc32.aarch64", - sha256 = "801d154be0dad6d33b0d6a6229004e370eee1f1e1a587ef784aaaf50c3ab704c", + name = "python3-libsemanage-0__3.0-3.fc32.x86_64", + sha256 = "55bafcdf9c31b1456af3bf584bfe7ac745a03f4decd17197ea97b498d68b3b82", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/01890581-qemu-kvm/qemu-kvm-5.1.0-18.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/801d154be0dad6d33b0d6a6229004e370eee1f1e1a587ef784aaaf50c3ab704c", + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-libsemanage-3.0-3.fc32.x86_64.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-libsemanage-3.0-3.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-libsemanage-3.0-3.fc32.x86_64.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-libsemanage-3.0-3.fc32.x86_64.rpm", ], ) rpm( - name = "qemu-kvm-15__5.1.0-18.fc32.x86_64", - sha256 = "e655dddabc8fa8c64a2afbb670058d011a16397a7905c2b33978f40e7717ab9b", + name = "python3-ply-0__3.11-7.fc32.aarch64", + sha256 = "f6203a41ed91197bb770a38a101d977f0f56de86ccc5a71cee9c0e198f26bcbc", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-kvm-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/e655dddabc8fa8c64a2afbb670058d011a16397a7905c2b33978f40e7717ab9b", + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-ply-3.11-7.fc32.noarch.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-ply-3.11-7.fc32.noarch.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-ply-3.11-7.fc32.noarch.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-ply-3.11-7.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-block-curl-15__5.1.0-18.fc32.aarch64", - sha256 = "2dbee3a596855b76e791318a2fc01c0f35118952a7b835ad5d8dae045db54a2a", + name = "python3-ply-0__3.11-7.fc32.x86_64", + sha256 = "f6203a41ed91197bb770a38a101d977f0f56de86ccc5a71cee9c0e198f26bcbc", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/01890581-qemu-kvm/qemu-kvm-block-curl-5.1.0-18.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/2dbee3a596855b76e791318a2fc01c0f35118952a7b835ad5d8dae045db54a2a", + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-ply-3.11-7.fc32.noarch.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-ply-3.11-7.fc32.noarch.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-ply-3.11-7.fc32.noarch.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-ply-3.11-7.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-block-curl-15__5.1.0-18.fc32.x86_64", - sha256 = "2378aebaef7afbc384cc6f7552af1f119e1fd8edee64d0840b45352642efaa0d", + name = "python3-policycoreutils-0__3.0-2.fc32.aarch64", + sha256 = "15f2fc89b7bd39dcd3f6f8db30f56b76b65df311d7ad9852d498fbbc5c7d2aa2", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-kvm-block-curl-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/2378aebaef7afbc384cc6f7552af1f119e1fd8edee64d0840b45352642efaa0d", + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-policycoreutils-3.0-2.fc32.noarch.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-policycoreutils-3.0-2.fc32.noarch.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-policycoreutils-3.0-2.fc32.noarch.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-policycoreutils-3.0-2.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-block-gluster-15__5.1.0-18.fc32.x86_64", - sha256 = "f982f376d68ec75cd72ce7c7174e5e5251d0de2f2006472d278a3397c8a93fe2", + name = "python3-policycoreutils-0__3.0-2.fc32.x86_64", + sha256 = "15f2fc89b7bd39dcd3f6f8db30f56b76b65df311d7ad9852d498fbbc5c7d2aa2", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-kvm-block-gluster-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/f982f376d68ec75cd72ce7c7174e5e5251d0de2f2006472d278a3397c8a93fe2", + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-policycoreutils-3.0-2.fc32.noarch.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-policycoreutils-3.0-2.fc32.noarch.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-policycoreutils-3.0-2.fc32.noarch.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-policycoreutils-3.0-2.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-block-iscsi-15__5.1.0-18.fc32.aarch64", - sha256 = "dc7c9bf848a4ed3c223edd2e5da9c4744ae9a18136e73e625d782f5f28653fe6", + name = "python3-pycparser-0__2.19-2.fc32.aarch64", + sha256 = "a0b87b2dc3c5f536e94d6a4f3563a621dfbc067a62c3d1fe69bdb70c3cecec57", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/01890581-qemu-kvm/qemu-kvm-block-iscsi-5.1.0-18.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/dc7c9bf848a4ed3c223edd2e5da9c4744ae9a18136e73e625d782f5f28653fe6", + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-pycparser-2.19-2.fc32.noarch.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-pycparser-2.19-2.fc32.noarch.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-pycparser-2.19-2.fc32.noarch.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-pycparser-2.19-2.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-block-iscsi-15__5.1.0-18.fc32.x86_64", - sha256 = "fb9a193820329f8a82959d02778a00a2aebb6060914ca47916f9766643164672", + name = "python3-pycparser-0__2.19-2.fc32.x86_64", + sha256 = "a0b87b2dc3c5f536e94d6a4f3563a621dfbc067a62c3d1fe69bdb70c3cecec57", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-kvm-block-iscsi-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/fb9a193820329f8a82959d02778a00a2aebb6060914ca47916f9766643164672", + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-pycparser-2.19-2.fc32.noarch.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-pycparser-2.19-2.fc32.noarch.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-pycparser-2.19-2.fc32.noarch.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-pycparser-2.19-2.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-block-rbd-15__5.1.0-18.fc32.aarch64", - sha256 = "70d11cf8a376ce35463ffe1983a09b5378c957daac39011194dfbf2c9a682502", + name = "python3-setools-0__4.3.0-1.fc32.aarch64", + sha256 = "82d2eaad75cf45da9773298344dcbbaebb4da5b67526a6c43bc67d3f84d98616", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/01890581-qemu-kvm/qemu-kvm-block-rbd-5.1.0-18.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/70d11cf8a376ce35463ffe1983a09b5378c957daac39011194dfbf2c9a682502", + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-setools-4.3.0-1.fc32.aarch64.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-setools-4.3.0-1.fc32.aarch64.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-setools-4.3.0-1.fc32.aarch64.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-setools-4.3.0-1.fc32.aarch64.rpm", ], ) rpm( - name = "qemu-kvm-block-rbd-15__5.1.0-18.fc32.x86_64", - sha256 = "56123ff97720288ff94ef73ff5639bc70c32310e5106a72cd51c6f5003a23d82", + name = "python3-setools-0__4.3.0-1.fc32.x86_64", + sha256 = "6f5f53b66f7c3bf6958f6f163788583265ff0360188620c3b0f7ddedeac3d1f4", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-kvm-block-rbd-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/56123ff97720288ff94ef73ff5639bc70c32310e5106a72cd51c6f5003a23d82", + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-setools-4.3.0-1.fc32.x86_64.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-setools-4.3.0-1.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-setools-4.3.0-1.fc32.x86_64.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-setools-4.3.0-1.fc32.x86_64.rpm", ], ) rpm( - name = "qemu-kvm-block-ssh-15__5.1.0-18.fc32.aarch64", - sha256 = "2e0909ea5a8d7a72c93a393bd45ba0cec20c0b08339a81159503a07f9f8db5c1", + name = "python3-setuptools-0__41.6.0-2.fc32.aarch64", + sha256 = "724cca9919bb7b0183b030aca216d4d51de70bf35c2cc5e8325a21a52ca15ceb", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/01890581-qemu-kvm/qemu-kvm-block-ssh-5.1.0-18.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/2e0909ea5a8d7a72c93a393bd45ba0cec20c0b08339a81159503a07f9f8db5c1", + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-setuptools-41.6.0-2.fc32.noarch.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-setuptools-41.6.0-2.fc32.noarch.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-setuptools-41.6.0-2.fc32.noarch.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-setuptools-41.6.0-2.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-block-ssh-15__5.1.0-18.fc32.x86_64", - sha256 = "4fb227e77d3aff12725b04f6348a32ad9abd8c447020f11e4734caad18a702a5", + name = "python3-setuptools-0__41.6.0-2.fc32.x86_64", + sha256 = "724cca9919bb7b0183b030aca216d4d51de70bf35c2cc5e8325a21a52ca15ceb", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-kvm-block-ssh-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/4fb227e77d3aff12725b04f6348a32ad9abd8c447020f11e4734caad18a702a5", + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-setuptools-41.6.0-2.fc32.noarch.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-setuptools-41.6.0-2.fc32.noarch.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-setuptools-41.6.0-2.fc32.noarch.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-setuptools-41.6.0-2.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-common-15__5.1.0-18.fc32.aarch64", - sha256 = "2b0a35352383bd043d79dcbdd781693b3b1f47354ec3330ac93e2c2075cc5fc9", + name = "python3-six-0__1.14.0-2.fc32.aarch64", + sha256 = "02654432f3853c9ae39c7601b5b0606c9d5eb5eef1d95e3e6f0074501842941f", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/01890581-qemu-kvm/qemu-kvm-common-5.1.0-18.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/2b0a35352383bd043d79dcbdd781693b3b1f47354ec3330ac93e2c2075cc5fc9", + "https://mirror.23media.com/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-six-1.14.0-2.fc32.noarch.rpm", + "https://mirror.init7.net/fedora/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-six-1.14.0-2.fc32.noarch.rpm", + "https://fedora.cu.be/linux/releases/32/Everything/aarch64/os/Packages/p/python3-six-1.14.0-2.fc32.noarch.rpm", + "https://mirror.yandex.ru/fedora/linux/releases/32/Everything/aarch64/os/Packages/p/python3-six-1.14.0-2.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-common-15__5.1.0-18.fc32.x86_64", - sha256 = "3ba3330400f5a267141e906378410c99a0a4702e27fce25653db78d9bbbe056a", + name = "python3-six-0__1.14.0-2.fc32.x86_64", + sha256 = "02654432f3853c9ae39c7601b5b0606c9d5eb5eef1d95e3e6f0074501842941f", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-kvm-common-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/3ba3330400f5a267141e906378410c99a0a4702e27fce25653db78d9bbbe056a", + "https://ftp.acc.umu.se/mirror/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-six-1.14.0-2.fc32.noarch.rpm", + "https://mirror.serverion.com/fedora/releases/32/Everything/x86_64/os/Packages/p/python3-six-1.14.0-2.fc32.noarch.rpm", + "https://ftp.fau.de/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-six-1.14.0-2.fc32.noarch.rpm", + "https://mirror.vpsnet.com/fedora/linux/releases/32/Everything/x86_64/os/Packages/p/python3-six-1.14.0-2.fc32.noarch.rpm", ], ) rpm( - name = "qemu-kvm-core-15__5.1.0-18.fc32.aarch64", - sha256 = "548ae9fc6cce92118015d6d38121866bbb94511cb997e8351316748680de1d1b", - urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/01890581-qemu-kvm/qemu-kvm-core-5.1.0-18.fc32.aarch64.rpm", - "https://storage.googleapis.com/builddeps/548ae9fc6cce92118015d6d38121866bbb94511cb997e8351316748680de1d1b", - ], + name = "qemu-img-15__5.2.0-15.fc32.aarch64", + sha256 = "75adc58ea9e74b82390fcfaeb6bf400575037336d1e4ebdcc7a3368bee7538b4", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/02142033-qemu-kvm/qemu-img-5.2.0-15.fc32.aarch64.rpm"], +) + +rpm( + name = "qemu-img-15__5.2.0-15.fc32.x86_64", + sha256 = "4fec360d3d6ed31de0beaea40d4cdaa266ade9985c3d4fc8f2e0d13ee76a1e03", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-img-5.2.0-15.fc32.x86_64.rpm"], ) rpm( - name = "qemu-kvm-core-15__5.1.0-18.fc32.x86_64", - sha256 = "b70030acb6a9be539a60cad4d3f4f0dd3143868d265f73a04a5d6fa3deeded1b", + name = "qemu-img-2__4.2.1-1.fc32.ppc64le", + sha256 = "0681f4b8590f0747f17d580e5b0812bf03a03a3b7dcdeb5ec142b97a56c2689a", urls = [ - "https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/01890581-qemu-kvm/qemu-kvm-core-5.1.0-18.fc32.x86_64.rpm", - "https://storage.googleapis.com/builddeps/b70030acb6a9be539a60cad4d3f4f0dd3143868d265f73a04a5d6fa3deeded1b", + "https://ftp-stud.hs-esslingen.de/pub/fedora-secondary/updates/32/Everything/ppc64le/Packages/q/qemu-img-4.2.1-1.fc32.ppc64le.rpm", + "https://ftp.icm.edu.pl/pub/Linux/dist/fedora-secondary/updates/32/Everything/ppc64le/Packages/q/qemu-img-4.2.1-1.fc32.ppc64le.rpm", + "https://mirrors.dotsrc.org/fedora-buffet/fedora-secondary/updates/32/Everything/ppc64le/Packages/q/qemu-img-4.2.1-1.fc32.ppc64le.rpm", + "https://mirror.yandex.ru/fedora-secondary/updates/32/Everything/ppc64le/Packages/q/qemu-img-4.2.1-1.fc32.ppc64le.rpm", + "https://storage.googleapis.com/builddeps/0681f4b8590f0747f17d580e5b0812bf03a03a3b7dcdeb5ec142b97a56c2689a", ], ) +rpm( + name = "qemu-kvm-15__5.2.0-15.fc32.aarch64", + sha256 = "aeba0c475bd87481829575055f58c91f669b35448e7c7793ca83db000e87cd67", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/02142033-qemu-kvm/qemu-kvm-5.2.0-15.fc32.aarch64.rpm"], +) + +rpm( + name = "qemu-kvm-15__5.2.0-15.fc32.x86_64", + sha256 = "d13a7b9808c7ae59722bab3ff9816c5f41dd8ae56577dd49bdf39322ca052122", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-block-curl-15__5.2.0-15.fc32.aarch64", + sha256 = "f2379b07ef3d79342a7996371f404a398c4a2e78f3b8e6719d8127c111417c81", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/02142033-qemu-kvm/qemu-kvm-block-curl-5.2.0-15.fc32.aarch64.rpm"], +) + +rpm( + name = "qemu-kvm-block-curl-15__5.2.0-15.fc32.x86_64", + sha256 = "9fd8642b52052c1c76d6f7b49f4c5b23f0e5f8e2c4861a20946ecfd5181b9359", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-block-curl-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-block-gluster-15__5.2.0-15.fc32.x86_64", + sha256 = "c4112d1c898e80d11c5abffc32557998ebe9cc4912d8712bf06c9dc2765952d9", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-block-gluster-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-block-iscsi-15__5.2.0-15.fc32.aarch64", + sha256 = "c10bd25ee2d3c1af3411f47b202b3f27f4aa5182a2f86ecd39772faa2525b700", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/02142033-qemu-kvm/qemu-kvm-block-iscsi-5.2.0-15.fc32.aarch64.rpm"], +) + +rpm( + name = "qemu-kvm-block-iscsi-15__5.2.0-15.fc32.x86_64", + sha256 = "210a14ed48c536254a01cdd7a1b6197e45ed873c5362eefbb791e39f79700b11", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-block-iscsi-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-block-rbd-15__5.2.0-15.fc32.aarch64", + sha256 = "678471f14c4332f902ebc06da0939523c95cccb860d2efe8f06f4311bdbc44de", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/02142033-qemu-kvm/qemu-kvm-block-rbd-5.2.0-15.fc32.aarch64.rpm"], +) + +rpm( + name = "qemu-kvm-block-rbd-15__5.2.0-15.fc32.x86_64", + sha256 = "a2422acc981f4778809c91c5506a7c290e77ec46407fb0335b17ba190692eacd", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-block-rbd-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-block-ssh-15__5.2.0-15.fc32.aarch64", + sha256 = "c2bc1d86b64bc24fe441256f123618966cd816ee56d302d69d4be405cd25eff8", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/02142033-qemu-kvm/qemu-kvm-block-ssh-5.2.0-15.fc32.aarch64.rpm"], +) + +rpm( + name = "qemu-kvm-block-ssh-15__5.2.0-15.fc32.x86_64", + sha256 = "649253c31d09e9264aa8d453153796f3381c22ababfb6e8e53ecc80e01f8be8b", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-block-ssh-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-common-15__5.2.0-15.fc32.aarch64", + sha256 = "c1fbbdcd522caa14f739ded634e605d6e046cd56d58e0daa8f662f9fed0ff50a", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/02142033-qemu-kvm/qemu-kvm-common-5.2.0-15.fc32.aarch64.rpm"], +) + +rpm( + name = "qemu-kvm-common-15__5.2.0-15.fc32.x86_64", + sha256 = "702f72282b5c87029ea4ff4a2b6ce7a5923f19892c3be15d3c2f84f4f5db1f42", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-common-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-core-15__5.2.0-15.fc32.aarch64", + sha256 = "56e3f24555a17e24736049fe833f1dd3b6dc64b67bd6d0385a919964d9925f1b", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/02142033-qemu-kvm/qemu-kvm-core-5.2.0-15.fc32.aarch64.rpm"], +) + +rpm( + name = "qemu-kvm-core-15__5.2.0-15.fc32.x86_64", + sha256 = "a926bb3f328a4ff72f0d8367328c785fc3a1827001f668e8599bdea6f4df1bb8", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-core-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-ui-opengl-15__5.2.0-15.fc32.x86_64", + sha256 = "d4d8f22373bb83575f484cb2e1e28fecf2c829bef00bae2f246f68d566d75036", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-ui-opengl-5.2.0-15.fc32.x86_64.rpm"], +) + +rpm( + name = "qemu-kvm-ui-spice-15__5.2.0-15.fc32.x86_64", + sha256 = "ff9206be699c8d4ce699588178809bf09ffe2d8642c84feb60b91eb0c7f462b2", + urls = ["https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/02142033-qemu-kvm/qemu-kvm-ui-spice-5.2.0-15.fc32.x86_64.rpm"], +) + rpm( name = "qrencode-libs-0__4.0.2-5.fc32.aarch64", sha256 = "3d6ec574fe2c612bcc45395f7ee87c68f45016f005c6d7aeee6b37897f41b8d2", @@ -9455,6 +9645,72 @@ rpm( ], ) +rpm( + name = "swtpm-0__0.5.2-0.20201226gite59c0c1.fc32.aarch64", + sha256 = "fdb5d54e2337a3c4227fb8a72c55dc9ee8c9e850e81f11c31c3b2f86cc2f1c3f", + urls = [ + "https://mirror.23media.com/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + ], +) + +rpm( + name = "swtpm-0__0.5.2-0.20201226gite59c0c1.fc32.x86_64", + sha256 = "56ec2b4489f6e8108f6613267058a9350d577c1c5359d9437e593a79194e2197", + urls = [ + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://fedora.ip-connect.info/linux/updates/32/Everything/x86_64/Packages/s/swtpm-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + ], +) + +rpm( + name = "swtpm-libs-0__0.5.2-0.20201226gite59c0c1.fc32.aarch64", + sha256 = "e2a9d7b9a828ea729acc00f75e648259253a2c8c279f4130a67f664e10680f42", + urls = [ + "https://mirror.23media.com/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-libs-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-libs-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-libs-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-libs-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + ], +) + +rpm( + name = "swtpm-libs-0__0.5.2-0.20201226gite59c0c1.fc32.x86_64", + sha256 = "56c95dad2db8fa41691863e8425cb2c66a38061dd47fa98eca0d3f5377578c59", + urls = [ + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-libs-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-libs-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-libs-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://fedora.ip-connect.info/linux/updates/32/Everything/x86_64/Packages/s/swtpm-libs-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + ], +) + +rpm( + name = "swtpm-tools-0__0.5.2-0.20201226gite59c0c1.fc32.aarch64", + sha256 = "c6225b9b4e00a2d957f61a8539f30269625bed51794c50fdb053471549d39ef0", + urls = [ + "https://mirror.23media.com/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-tools-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-tools-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-tools-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/aarch64/Packages/s/swtpm-tools-0.5.2-0.20201226gite59c0c1.fc32.aarch64.rpm", + ], +) + +rpm( + name = "swtpm-tools-0__0.5.2-0.20201226gite59c0c1.fc32.x86_64", + sha256 = "5ee19ec49088e2e26918281ecc1abf89142e4072d7c24d5ebc670312d09e5d12", + urls = [ + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-tools-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-tools-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/s/swtpm-tools-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + "https://fedora.ip-connect.info/linux/updates/32/Everything/x86_64/Packages/s/swtpm-tools-0.5.2-0.20201226gite59c0c1.fc32.x86_64.rpm", + ], +) + rpm( name = "systemd-0__245.9-1.fc32.aarch64", sha256 = "46dbd6dd0bb0c9fc6d5136c98616981d6ecbd1fa47c3e7a0fb38b4cb319429e5", @@ -9647,6 +9903,50 @@ rpm( ], ) +rpm( + name = "trousers-0__0.3.13-15.fc32.aarch64", + sha256 = "265ed9294e1c2ddb819e906dbb4b97b92fda5c0a032eb59de95e7e548fc6cdb7", + urls = [ + "https://mirror.23media.com/fedora/linux/updates/32/Everything/aarch64/Packages/t/trousers-0.3.13-15.fc32.aarch64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/aarch64/Packages/t/trousers-0.3.13-15.fc32.aarch64.rpm", + "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/t/trousers-0.3.13-15.fc32.aarch64.rpm", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/aarch64/Packages/t/trousers-0.3.13-15.fc32.aarch64.rpm", + ], +) + +rpm( + name = "trousers-0__0.3.13-15.fc32.x86_64", + sha256 = "4c1f241c759906e057d16be07747e14a658e5946ec519fb83959e411d4dd66a1", + urls = [ + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/t/trousers-0.3.13-15.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/t/trousers-0.3.13-15.fc32.x86_64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/t/trousers-0.3.13-15.fc32.x86_64.rpm", + "https://fedora.ip-connect.info/linux/updates/32/Everything/x86_64/Packages/t/trousers-0.3.13-15.fc32.x86_64.rpm", + ], +) + +rpm( + name = "trousers-lib-0__0.3.13-15.fc32.aarch64", + sha256 = "72be29109ba9d467bca37c32a800232c26d549083c8141b98c0b993c06cab2d6", + urls = [ + "https://mirror.23media.com/fedora/linux/updates/32/Everything/aarch64/Packages/t/trousers-lib-0.3.13-15.fc32.aarch64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/aarch64/Packages/t/trousers-lib-0.3.13-15.fc32.aarch64.rpm", + "https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux/updates/32/Everything/aarch64/Packages/t/trousers-lib-0.3.13-15.fc32.aarch64.rpm", + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/aarch64/Packages/t/trousers-lib-0.3.13-15.fc32.aarch64.rpm", + ], +) + +rpm( + name = "trousers-lib-0__0.3.13-15.fc32.x86_64", + sha256 = "f509ff97b7769fcb8cef3210a77ee847f8855b55d5e2039ed9bbf8ccd900e8cc", + urls = [ + "https://mirror.karneval.cz/pub/linux/fedora/linux/updates/32/Everything/x86_64/Packages/t/trousers-lib-0.3.13-15.fc32.x86_64.rpm", + "https://ftp.fau.de/fedora/linux/updates/32/Everything/x86_64/Packages/t/trousers-lib-0.3.13-15.fc32.x86_64.rpm", + "https://ftp.halifax.rwth-aachen.de/fedora/linux/updates/32/Everything/x86_64/Packages/t/trousers-lib-0.3.13-15.fc32.x86_64.rpm", + "https://fedora.ip-connect.info/linux/updates/32/Everything/x86_64/Packages/t/trousers-lib-0.3.13-15.fc32.x86_64.rpm", + ], +) + rpm( name = "tzdata-0__2021a-1.fc32.aarch64", sha256 = "f8dbb263b4b844d3d0ef4b93d7502a78384759d07987e6ab678cc565122595b8", diff --git a/hack/rpm-deps.sh b/hack/rpm-deps.sh index 81e7efa3d59c..e09981ade483 100755 --- a/hack/rpm-deps.sh +++ b/hack/rpm-deps.sh @@ -5,9 +5,9 @@ set -ex source hack/common.sh source hack/config.sh -LIBVIRT_VERSION=0:6.6.0-13.1 +LIBVIRT_VERSION=0:7.0.0-12 SEABIOS_VERSION=0:1.14.0-1 -QEMU_VERSION=15:5.1.0-18 +QEMU_VERSION=15:5.2.0-15 # Define some base packages to avoid dependency flipping # since some dependencies can be satisfied by multiple packages @@ -60,11 +60,24 @@ bazel run \ # create a rpmtree for libvirt-devel. libvirt-devel is needed for compilation and unit-testing. bazel run \ --config=${ARCHITECTURE} \ - //:bazeldnf -- rpmtree --public --name libvirt-devel_x86_64 $basesystem libvirt-devel-${LIBVIRT_VERSION} lz4-libs + //:bazeldnf -- rpmtree --public --name libvirt-devel_x86_64 \ + $basesystem \ + libvirt-devel-${LIBVIRT_VERSION} \ + keyutils-libs \ + krb5-libs \ + libmount \ + lz4-libs bazel run \ --config=${ARCHITECTURE} \ - //:bazeldnf -- rpmtree --public --arch=aarch64 --name libvirt-devel_aarch64 $basesystem libvirt-devel-${LIBVIRT_VERSION} lz4-libs + //:bazeldnf -- rpmtree --public --arch=aarch64 --name libvirt-devel_aarch64 \ + $basesystem \ + libvirt-devel-${LIBVIRT_VERSION} \ + keyutils-libs \ + krb5-libs \ + libmount \ + lz4-libs + # create a rpmtree for virt-launcher and virt-handler. This is the OS for our node-components. bazel run \ --config=${ARCHITECTURE} \ diff --git a/repo.yaml b/repo.yaml index 3ec8ba05ae57..8adcaab914e6 100644 --- a/repo.yaml +++ b/repo.yaml @@ -24,25 +24,25 @@ repositories: name: 32-aarch64-update-repo gpgkey: https://src.fedoraproject.org/rpms/fedora-repos/raw/main/f/RPM-GPG-KEY-fedora-32-primary - arch: x86_64 - baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-x86_64/ + baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-x86_64/ name: kubevirt/libvirt-copr-x86_64 - gpgkey: https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/pubkey.gpg + gpgkey: https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/pubkey.gpg - arch: x86_64 - baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-x86_64/ + baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-x86_64/ name: kubevirt/qemu-copr-x86_64 - gpgkey: https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/pubkey.gpg + gpgkey: https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/pubkey.gpg - arch: x86_64 baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/seabios-1.14.0-1.el8/fedora-32-x86_64/ name: kubevirt/seabios-copr-x86_64 gpgkey: https://download.copr.fedorainfracloud.org/results/@kubevirt/seabios-1.14.0-1.el8/pubkey.gpg - arch: aarch64 - baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-6.6.0-13.1.el8_3/fedora-32-aarch64/ + baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/fedora-32-aarch64/ name: kubevirt/libvirt-copr-aarch64 - gpgkey: https://copr-be.cloud.fedoraproject.org/results/%40kubevirt/libvirt-6.6.0-13.1.el8_3/pubkey.gpg + gpgkey: https://download.copr.fedorainfracloud.org/results/@kubevirt/libvirt-7.0.0-12.el8/pubkey.gpg - arch: aarch64 - baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.1.0-18.el8/fedora-32-aarch64/ + baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/fedora-32-aarch64/ name: kubevirt/qemu-copr-aarch64 - gpgkey: https://copr-be.cloud.fedoraproject.org/results/%40kubevirt/qemu-5.1.0-18.el8/pubkey.gpg + gpgkey: https://download.copr.fedorainfracloud.org/results/@kubevirt/qemu-5.2.0-15.el8/pubkey.gpg - arch: aarch64 baseurl: https://download.copr.fedorainfracloud.org/results/@kubevirt/seabios-1.14.0-1.el8/fedora-32-aarch64/ name: kubevirt/seabios-copr-aarch64 diff --git a/rpm/BUILD.bazel b/rpm/BUILD.bazel index 08aef683ab86..65281eb33cc1 100644 --- a/rpm/BUILD.bazel +++ b/rpm/BUILD.bazel @@ -9,7 +9,10 @@ bazeldnf( "/usr/lib64/libvirt-qemu.so.0", "/usr/lib64/libvirt.so.0", "/usr/lib64/libgcrypt.so.20", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", ], rpmtree = ":libvirt-devel_x86_64", rulename = "libvirt-libs_x86_64", @@ -23,7 +26,10 @@ bazeldnf( "/usr/lib64/libvirt-qemu.so.0", "/usr/lib64/libvirt.so.0", "/usr/lib64/libgcrypt.so.20", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", ], rpmtree = ":libvirt-devel_aarch64", rulename = "libvirt-libs_aarch64", @@ -46,6 +52,7 @@ rpmtree( "@bzip2-0__1.0.8-2.fc32.aarch64//rpm", "@bzip2-libs-0__1.0.8-2.fc32.aarch64//rpm", "@ca-certificates-0__2020.2.41-1.1.fc32.aarch64//rpm", + "@checkpolicy-0__3.0-3.fc32.aarch64//rpm", "@coreutils-single-0__8.32-4.fc32.2.aarch64//rpm", "@cracklib-0__2.9.6-22.fc32.aarch64//rpm", "@crypto-policies-0__20200619-1.git781bbd4.fc32.aarch64//rpm", @@ -57,7 +64,6 @@ rpmtree( "@dbus-1__1.12.20-1.fc32.aarch64//rpm", "@dbus-broker-0__27-2.fc32.aarch64//rpm", "@dbus-common-1__1.12.20-1.fc32.aarch64//rpm", - "@dbus-libs-1__1.12.20-1.fc32.aarch64//rpm", "@device-mapper-0__1.02.171-1.fc32.aarch64//rpm", "@device-mapper-libs-0__1.02.171-1.fc32.aarch64//rpm", "@device-mapper-multipath-libs-0__0.8.2-4.fc32.aarch64//rpm", @@ -127,7 +133,6 @@ rpmtree( "@libgcrypt-0__1.8.5-3.fc32.aarch64//rpm", "@libgomp-0__10.2.1-9.fc32.aarch64//rpm", "@libgpg-error-0__1.36-3.fc32.aarch64//rpm", - "@libibumad-0__33.0-2.fc32.aarch64//rpm", "@libibverbs-0__33.0-2.fc32.aarch64//rpm", "@libidn2-0__2.3.0-2.fc32.aarch64//rpm", "@libini_config-0__1.3.1-44.fc32.aarch64//rpm", @@ -163,6 +168,7 @@ rpmtree( "@libtasn1-0__4.16.0-1.fc32.aarch64//rpm", "@libtextstyle-0__0.21-1.fc32.aarch64//rpm", "@libtirpc-0__1.2.6-1.rc4.fc32.aarch64//rpm", + "@libtpms-0__0.7.7-0.20210302gitfd5bd3fb1d.fc32.aarch64//rpm", "@libunistring-0__0.9.10-7.fc32.aarch64//rpm", "@libusal-0__1.1.11-44.fc32.aarch64//rpm", "@libusbx-0__1.0.24-2.fc32.aarch64//rpm", @@ -170,12 +176,12 @@ rpmtree( "@libuuid-0__2.35.2-1.fc32.aarch64//rpm", "@libverto-0__0.3.0-9.fc32.aarch64//rpm", "@libverto-libev-0__0.3.0-9.fc32.aarch64//rpm", - "@libvirt-bash-completion-0__6.6.0-13.1.fc32.aarch64//rpm", - "@libvirt-client-0__6.6.0-13.1.fc32.aarch64//rpm", - "@libvirt-daemon-0__6.6.0-13.1.fc32.aarch64//rpm", - "@libvirt-daemon-driver-qemu-0__6.6.0-13.1.fc32.aarch64//rpm", - "@libvirt-daemon-driver-storage-core-0__6.6.0-13.1.fc32.aarch64//rpm", - "@libvirt-libs-0__6.6.0-13.1.fc32.aarch64//rpm", + "@libvirt-bash-completion-0__7.0.0-12.fc32.aarch64//rpm", + "@libvirt-client-0__7.0.0-12.fc32.aarch64//rpm", + "@libvirt-daemon-0__7.0.0-12.fc32.aarch64//rpm", + "@libvirt-daemon-driver-qemu-0__7.0.0-12.fc32.aarch64//rpm", + "@libvirt-daemon-driver-storage-core-0__7.0.0-12.fc32.aarch64//rpm", + "@libvirt-libs-0__7.0.0-12.fc32.aarch64//rpm", "@libwsman1-0__2.6.8-12.fc32.aarch64//rpm", "@libxcrypt-0__4.4.19-1.fc32.aarch64//rpm", "@libxkbcommon-0__0.10.0-2.fc32.aarch64//rpm", @@ -216,6 +222,7 @@ rpmtree( "@pcre2-syntax-0__10.36-4.fc32.aarch64//rpm", "@pixman-0__0.40.0-1.fc32.aarch64//rpm", "@policycoreutils-0__3.0-2.fc32.aarch64//rpm", + "@policycoreutils-python-utils-0__3.0-2.fc32.aarch64//rpm", "@polkit-0__0.116-7.fc32.aarch64//rpm", "@polkit-libs-0__0.116-7.fc32.aarch64//rpm", "@polkit-pkla-compat-0__0.1-16.fc32.aarch64//rpm", @@ -225,15 +232,27 @@ rpmtree( "@python-pip-wheel-0__19.3.1-4.fc32.aarch64//rpm", "@python-setuptools-wheel-0__41.6.0-2.fc32.aarch64//rpm", "@python3-0__3.8.9-1.fc32.aarch64//rpm", + "@python3-audit-0__3.0.1-2.fc32.aarch64//rpm", + "@python3-cffi-0__1.14.0-1.fc32.aarch64//rpm", + "@python3-cryptography-0__2.8-3.fc32.aarch64//rpm", + "@python3-idna-0__2.8-6.fc32.aarch64//rpm", "@python3-libs-0__3.8.9-1.fc32.aarch64//rpm", - "@qemu-img-15__5.1.0-18.fc32.aarch64//rpm", - "@qemu-kvm-15__5.1.0-18.fc32.aarch64//rpm", - "@qemu-kvm-block-curl-15__5.1.0-18.fc32.aarch64//rpm", - "@qemu-kvm-block-iscsi-15__5.1.0-18.fc32.aarch64//rpm", - "@qemu-kvm-block-rbd-15__5.1.0-18.fc32.aarch64//rpm", - "@qemu-kvm-block-ssh-15__5.1.0-18.fc32.aarch64//rpm", - "@qemu-kvm-common-15__5.1.0-18.fc32.aarch64//rpm", - "@qemu-kvm-core-15__5.1.0-18.fc32.aarch64//rpm", + "@python3-libselinux-0__3.0-5.fc32.aarch64//rpm", + "@python3-libsemanage-0__3.0-3.fc32.aarch64//rpm", + "@python3-ply-0__3.11-7.fc32.aarch64//rpm", + "@python3-policycoreutils-0__3.0-2.fc32.aarch64//rpm", + "@python3-pycparser-0__2.19-2.fc32.aarch64//rpm", + "@python3-setools-0__4.3.0-1.fc32.aarch64//rpm", + "@python3-setuptools-0__41.6.0-2.fc32.aarch64//rpm", + "@python3-six-0__1.14.0-2.fc32.aarch64//rpm", + "@qemu-img-15__5.2.0-15.fc32.aarch64//rpm", + "@qemu-kvm-15__5.2.0-15.fc32.aarch64//rpm", + "@qemu-kvm-block-curl-15__5.2.0-15.fc32.aarch64//rpm", + "@qemu-kvm-block-iscsi-15__5.2.0-15.fc32.aarch64//rpm", + "@qemu-kvm-block-rbd-15__5.2.0-15.fc32.aarch64//rpm", + "@qemu-kvm-block-ssh-15__5.2.0-15.fc32.aarch64//rpm", + "@qemu-kvm-common-15__5.2.0-15.fc32.aarch64//rpm", + "@qemu-kvm-core-15__5.2.0-15.fc32.aarch64//rpm", "@qrencode-libs-0__4.0.2-5.fc32.aarch64//rpm", "@quota-1__4.05-10.fc32.aarch64//rpm", "@quota-nls-1__4.05-10.fc32.aarch64//rpm", @@ -250,12 +269,17 @@ rpmtree( "@shadow-utils-2__4.8.1-3.fc32.aarch64//rpm", "@snappy-0__1.1.8-2.fc32.aarch64//rpm", "@sqlite-libs-0__3.34.0-1.fc32.aarch64//rpm", + "@swtpm-0__0.5.2-0.20201226gite59c0c1.fc32.aarch64//rpm", + "@swtpm-libs-0__0.5.2-0.20201226gite59c0c1.fc32.aarch64//rpm", + "@swtpm-tools-0__0.5.2-0.20201226gite59c0c1.fc32.aarch64//rpm", "@systemd-0__245.9-1.fc32.aarch64//rpm", "@systemd-container-0__245.9-1.fc32.aarch64//rpm", "@systemd-libs-0__245.9-1.fc32.aarch64//rpm", "@systemd-pam-0__245.9-1.fc32.aarch64//rpm", "@systemd-rpm-macros-0__245.9-1.fc32.aarch64//rpm", "@tar-2__1.32-5.fc32.aarch64//rpm", + "@trousers-0__0.3.13-15.fc32.aarch64//rpm", + "@trousers-lib-0__0.3.13-15.fc32.aarch64//rpm", "@tzdata-0__2021a-1.fc32.aarch64//rpm", "@unbound-libs-0__1.10.1-1.fc32.aarch64//rpm", "@userspace-rcu-0__0.11.1-3.fc32.aarch64//rpm", @@ -294,6 +318,7 @@ rpmtree( "@ca-certificates-0__2020.2.41-1.1.fc32.x86_64//rpm", "@cairo-0__1.16.0-8.fc32.x86_64//rpm", "@cdparanoia-libs-0__10.2-31.fc32.x86_64//rpm", + "@checkpolicy-0__3.0-3.fc32.x86_64//rpm", "@coreutils-single-0__8.32-4.fc32.2.x86_64//rpm", "@cracklib-0__2.9.6-22.fc32.x86_64//rpm", "@crypto-policies-0__20200619-1.git781bbd4.fc32.x86_64//rpm", @@ -305,7 +330,6 @@ rpmtree( "@dbus-1__1.12.20-1.fc32.x86_64//rpm", "@dbus-broker-0__27-2.fc32.x86_64//rpm", "@dbus-common-1__1.12.20-1.fc32.x86_64//rpm", - "@dbus-libs-1__1.12.20-1.fc32.x86_64//rpm", "@dejavu-sans-fonts-0__2.37-8.fc32.x86_64//rpm", "@device-mapper-0__1.02.171-1.fc32.x86_64//rpm", "@device-mapper-libs-0__1.02.171-1.fc32.x86_64//rpm", @@ -388,7 +412,6 @@ rpmtree( "@libattr-0__2.4.48-8.fc32.x86_64//rpm", "@libbasicobjects-0__0.1.1-44.fc32.x86_64//rpm", "@libblkid-0__2.35.2-1.fc32.x86_64//rpm", - "@libcacard-3__2.7.0-4.fc32.x86_64//rpm", "@libcap-0__2.26-7.fc32.x86_64//rpm", "@libcap-ng-0__0.7.11-1.fc32.x86_64//rpm", "@libcollection-0__0.7.0-44.fc32.x86_64//rpm", @@ -412,7 +435,6 @@ rpmtree( "@libglvnd-glx-1__1.3.2-1.fc32.x86_64//rpm", "@libgomp-0__10.2.1-9.fc32.x86_64//rpm", "@libgpg-error-0__1.36-3.fc32.x86_64//rpm", - "@libibumad-0__33.0-2.fc32.x86_64//rpm", "@libibverbs-0__33.0-2.fc32.x86_64//rpm", "@libidn2-0__2.3.0-2.fc32.x86_64//rpm", "@libini_config-0__1.3.1-44.fc32.x86_64//rpm", @@ -454,6 +476,7 @@ rpmtree( "@libthai-0__0.1.28-4.fc32.x86_64//rpm", "@libtheora-1__1.1.1-25.fc32.x86_64//rpm", "@libtirpc-0__1.2.6-1.rc4.fc32.x86_64//rpm", + "@libtpms-0__0.7.7-0.20210302gitfd5bd3fb1d.fc32.x86_64//rpm", "@libunistring-0__0.9.10-7.fc32.x86_64//rpm", "@libusal-0__1.1.11-44.fc32.x86_64//rpm", "@libusbx-0__1.0.24-2.fc32.x86_64//rpm", @@ -461,12 +484,12 @@ rpmtree( "@libuuid-0__2.35.2-1.fc32.x86_64//rpm", "@libverto-0__0.3.0-9.fc32.x86_64//rpm", "@libverto-libev-0__0.3.0-9.fc32.x86_64//rpm", - "@libvirt-bash-completion-0__6.6.0-13.1.fc32.x86_64//rpm", - "@libvirt-client-0__6.6.0-13.1.fc32.x86_64//rpm", - "@libvirt-daemon-0__6.6.0-13.1.fc32.x86_64//rpm", - "@libvirt-daemon-driver-qemu-0__6.6.0-13.1.fc32.x86_64//rpm", - "@libvirt-daemon-driver-storage-core-0__6.6.0-13.1.fc32.x86_64//rpm", - "@libvirt-libs-0__6.6.0-13.1.fc32.x86_64//rpm", + "@libvirt-bash-completion-0__7.0.0-12.fc32.x86_64//rpm", + "@libvirt-client-0__7.0.0-12.fc32.x86_64//rpm", + "@libvirt-daemon-0__7.0.0-12.fc32.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__7.0.0-12.fc32.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__7.0.0-12.fc32.x86_64//rpm", + "@libvirt-libs-0__7.0.0-12.fc32.x86_64//rpm", "@libvisual-1__0.4.0-28.fc32.x86_64//rpm", "@libvorbis-1__1.3.6-6.fc32.x86_64//rpm", "@libwayland-client-0__1.18.0-1.fc32.x86_64//rpm", @@ -525,6 +548,7 @@ rpmtree( "@pcre2-syntax-0__10.36-4.fc32.x86_64//rpm", "@pixman-0__0.40.0-1.fc32.x86_64//rpm", "@policycoreutils-0__3.0-2.fc32.x86_64//rpm", + "@policycoreutils-python-utils-0__3.0-2.fc32.x86_64//rpm", "@polkit-0__0.116-7.fc32.x86_64//rpm", "@polkit-libs-0__0.116-7.fc32.x86_64//rpm", "@polkit-pkla-compat-0__0.1-16.fc32.x86_64//rpm", @@ -534,16 +558,30 @@ rpmtree( "@python-pip-wheel-0__19.3.1-4.fc32.x86_64//rpm", "@python-setuptools-wheel-0__41.6.0-2.fc32.x86_64//rpm", "@python3-0__3.8.9-1.fc32.x86_64//rpm", + "@python3-audit-0__3.0.1-2.fc32.x86_64//rpm", + "@python3-cffi-0__1.14.0-1.fc32.x86_64//rpm", + "@python3-cryptography-0__2.8-3.fc32.x86_64//rpm", + "@python3-idna-0__2.8-6.fc32.x86_64//rpm", "@python3-libs-0__3.8.9-1.fc32.x86_64//rpm", - "@qemu-img-15__5.1.0-18.fc32.x86_64//rpm", - "@qemu-kvm-15__5.1.0-18.fc32.x86_64//rpm", - "@qemu-kvm-block-curl-15__5.1.0-18.fc32.x86_64//rpm", - "@qemu-kvm-block-gluster-15__5.1.0-18.fc32.x86_64//rpm", - "@qemu-kvm-block-iscsi-15__5.1.0-18.fc32.x86_64//rpm", - "@qemu-kvm-block-rbd-15__5.1.0-18.fc32.x86_64//rpm", - "@qemu-kvm-block-ssh-15__5.1.0-18.fc32.x86_64//rpm", - "@qemu-kvm-common-15__5.1.0-18.fc32.x86_64//rpm", - "@qemu-kvm-core-15__5.1.0-18.fc32.x86_64//rpm", + "@python3-libselinux-0__3.0-5.fc32.x86_64//rpm", + "@python3-libsemanage-0__3.0-3.fc32.x86_64//rpm", + "@python3-ply-0__3.11-7.fc32.x86_64//rpm", + "@python3-policycoreutils-0__3.0-2.fc32.x86_64//rpm", + "@python3-pycparser-0__2.19-2.fc32.x86_64//rpm", + "@python3-setools-0__4.3.0-1.fc32.x86_64//rpm", + "@python3-setuptools-0__41.6.0-2.fc32.x86_64//rpm", + "@python3-six-0__1.14.0-2.fc32.x86_64//rpm", + "@qemu-img-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-block-curl-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-block-gluster-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-block-iscsi-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-block-rbd-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-block-ssh-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-common-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-core-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-ui-opengl-15__5.2.0-15.fc32.x86_64//rpm", + "@qemu-kvm-ui-spice-15__5.2.0-15.fc32.x86_64//rpm", "@qrencode-libs-0__4.0.2-5.fc32.x86_64//rpm", "@quota-1__4.05-10.fc32.x86_64//rpm", "@quota-nls-1__4.05-10.fc32.x86_64//rpm", @@ -565,12 +603,17 @@ rpmtree( "@snappy-0__1.1.8-2.fc32.x86_64//rpm", "@spice-server-0__0.14.3-1.fc32.x86_64//rpm", "@sqlite-libs-0__3.34.0-1.fc32.x86_64//rpm", + "@swtpm-0__0.5.2-0.20201226gite59c0c1.fc32.x86_64//rpm", + "@swtpm-libs-0__0.5.2-0.20201226gite59c0c1.fc32.x86_64//rpm", + "@swtpm-tools-0__0.5.2-0.20201226gite59c0c1.fc32.x86_64//rpm", "@systemd-0__245.9-1.fc32.x86_64//rpm", "@systemd-container-0__245.9-1.fc32.x86_64//rpm", "@systemd-libs-0__245.9-1.fc32.x86_64//rpm", "@systemd-pam-0__245.9-1.fc32.x86_64//rpm", "@systemd-rpm-macros-0__245.9-1.fc32.x86_64//rpm", "@tar-2__1.32-5.fc32.x86_64//rpm", + "@trousers-0__0.3.13-15.fc32.x86_64//rpm", + "@trousers-lib-0__0.3.13-15.fc32.x86_64//rpm", "@tzdata-0__2021a-1.fc32.x86_64//rpm", "@unbound-libs-0__1.10.1-1.fc32.x86_64//rpm", "@usbredir-0__0.9.0-1.fc32.x86_64//rpm", @@ -612,7 +655,6 @@ rpmtree( "@dbus-1__1.12.20-1.fc32.aarch64//rpm", "@dbus-broker-0__27-2.fc32.aarch64//rpm", "@dbus-common-1__1.12.20-1.fc32.aarch64//rpm", - "@dbus-libs-1__1.12.20-1.fc32.aarch64//rpm", "@device-mapper-0__1.02.171-1.fc32.aarch64//rpm", "@device-mapper-libs-0__1.02.171-1.fc32.aarch64//rpm", "@elfutils-default-yama-scope-0__0.183-1.fc32.aarch64//rpm", @@ -679,8 +721,8 @@ rpmtree( "@libutempter-0__1.1.6-18.fc32.aarch64//rpm", "@libuuid-0__2.35.2-1.fc32.aarch64//rpm", "@libverto-0__0.3.0-9.fc32.aarch64//rpm", - "@libvirt-devel-0__6.6.0-13.1.fc32.aarch64//rpm", - "@libvirt-libs-0__6.6.0-13.1.fc32.aarch64//rpm", + "@libvirt-devel-0__7.0.0-12.fc32.aarch64//rpm", + "@libvirt-libs-0__7.0.0-12.fc32.aarch64//rpm", "@libwsman1-0__2.6.8-12.fc32.aarch64//rpm", "@libxcrypt-0__4.4.19-1.fc32.aarch64//rpm", "@libxml2-0__2.9.10-8.fc32.aarch64//rpm", @@ -742,7 +784,6 @@ rpmtree( "@dbus-1__1.12.20-1.fc32.x86_64//rpm", "@dbus-broker-0__27-2.fc32.x86_64//rpm", "@dbus-common-1__1.12.20-1.fc32.x86_64//rpm", - "@dbus-libs-1__1.12.20-1.fc32.x86_64//rpm", "@device-mapper-0__1.02.171-1.fc32.x86_64//rpm", "@device-mapper-libs-0__1.02.171-1.fc32.x86_64//rpm", "@elfutils-default-yama-scope-0__0.183-1.fc32.x86_64//rpm", @@ -809,8 +850,8 @@ rpmtree( "@libutempter-0__1.1.6-18.fc32.x86_64//rpm", "@libuuid-0__2.35.2-1.fc32.x86_64//rpm", "@libverto-0__0.3.0-9.fc32.x86_64//rpm", - "@libvirt-devel-0__6.6.0-13.1.fc32.x86_64//rpm", - "@libvirt-libs-0__6.6.0-13.1.fc32.x86_64//rpm", + "@libvirt-devel-0__7.0.0-12.fc32.x86_64//rpm", + "@libvirt-libs-0__7.0.0-12.fc32.x86_64//rpm", "@libwsman1-0__2.6.8-12.fc32.x86_64//rpm", "@libxcrypt-0__4.4.19-1.fc32.x86_64//rpm", "@libxml2-0__2.9.10-8.fc32.x86_64//rpm", @@ -1007,7 +1048,7 @@ rpmtree( "@perl-threads-1__2.22-442.fc32.aarch64//rpm", "@perl-threads-shared-0__1.60-441.fc32.aarch64//rpm", "@procps-ng-0__3.3.16-2.fc32.aarch64//rpm", - "@qemu-img-15__5.1.0-18.fc32.aarch64//rpm", + "@qemu-img-15__5.2.0-15.fc32.aarch64//rpm", "@qrencode-libs-0__4.0.2-5.fc32.aarch64//rpm", "@rdma-core-0__33.0-2.fc32.aarch64//rpm", "@readline-0__8.0-4.fc32.aarch64//rpm", @@ -1367,7 +1408,7 @@ rpmtree( "@perl-threads-1__2.22-442.fc32.x86_64//rpm", "@perl-threads-shared-0__1.60-441.fc32.x86_64//rpm", "@procps-ng-0__3.3.16-2.fc32.x86_64//rpm", - "@qemu-img-15__5.1.0-18.fc32.x86_64//rpm", + "@qemu-img-15__5.2.0-15.fc32.x86_64//rpm", "@qrencode-libs-0__4.0.2-5.fc32.x86_64//rpm", "@rdma-core-0__33.0-2.fc32.x86_64//rpm", "@readline-0__8.0-4.fc32.x86_64//rpm", @@ -1438,9 +1479,6 @@ tar2files( "libcrypto.so.1.1.1k", "libcurl.so.4", "libcurl.so.4.6.0", - "libdbus-1.so.3", - "libdbus-1.so.3.19.13", - "libdevmapper.so.1.02", "libdl-2.31.so", "libdl.so.2", "libffi.so.6", @@ -1491,8 +1529,6 @@ tar2files( "libnghttp2.so.14.20.0", "libnl-3.so.200", "libnl-3.so.200.26.0", - "libnl-route-3.so.200", - "libnl-route-3.so.200.26.0", "libnuma.so.1", "libnuma.so.1.0.0", "libp11-kit.so.0", @@ -1516,24 +1552,20 @@ tar2files( "libssh2.so.1.0.1", "libssl.so.1.1", "libssl.so.1.1.1k", - "libsystemd.so.0", - "libsystemd.so.0.28.0", "libtasn1.so.6", "libtasn1.so.6.6.0", "libtirpc.so.3", "libtirpc.so.3.0.0", - "libudev.so.1", - "libudev.so.1.6.17", "libunistring.so.2", "libunistring.so.2.1.0", "libutil-2.31.so", "libutil.so.1", "libvirt-lxc.so.0", - "libvirt-lxc.so.0.6006.0", + "libvirt-lxc.so.0.7000.0", "libvirt-qemu.so.0", - "libvirt-qemu.so.0.6006.0", + "libvirt-qemu.so.0.7000.0", "libvirt.so.0", - "libvirt.so.0.6006.0", + "libvirt.so.0.7000.0", "libwsman.so.1", "libwsman.so.1.0.0", "libwsman_client.so.4", @@ -1596,9 +1628,6 @@ tar2files( "libcrypto.so.1.1.1k", "libcurl.so.4", "libcurl.so.4.6.0", - "libdbus-1.so.3", - "libdbus-1.so.3.19.13", - "libdevmapper.so.1.02", "libdl-2.31.so", "libdl.so.2", "libffi.so.6", @@ -1649,8 +1678,6 @@ tar2files( "libnghttp2.so.14.20.0", "libnl-3.so.200", "libnl-3.so.200.26.0", - "libnl-route-3.so.200", - "libnl-route-3.so.200.26.0", "libnuma.so.1", "libnuma.so.1.0.0", "libp11-kit.so.0", @@ -1674,24 +1701,20 @@ tar2files( "libssh2.so.1.0.1", "libssl.so.1.1", "libssl.so.1.1.1k", - "libsystemd.so.0", - "libsystemd.so.0.28.0", "libtasn1.so.6", "libtasn1.so.6.6.0", "libtirpc.so.3", "libtirpc.so.3.0.0", - "libudev.so.1", - "libudev.so.1.6.17", "libunistring.so.2", "libunistring.so.2.1.0", "libutil-2.31.so", "libutil.so.1", "libvirt-lxc.so.0", - "libvirt-lxc.so.0.6006.0", + "libvirt-lxc.so.0.7000.0", "libvirt-qemu.so.0", - "libvirt-qemu.so.0.6006.0", + "libvirt-qemu.so.0.7000.0", "libvirt.so.0", - "libvirt.so.0.6006.0", + "libvirt.so.0.7000.0", "libwsman.so.1", "libwsman.so.1.0.0", "libwsman_client.so.4",