mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
bazel: remove bazeldnf and pinned rpms
This commit is contained in:
parent
5c19b2c27b
commit
4ca88cd779
3
.gitignore
vendored
3
.gitignore
vendored
@ -61,9 +61,6 @@ __pycache__/
|
|||||||
/bazel-*
|
/bazel-*
|
||||||
.bazeloverwriterc
|
.bazeloverwriterc
|
||||||
|
|
||||||
# bazeldnf
|
|
||||||
.bazeldnf/
|
|
||||||
|
|
||||||
# mkosi
|
# mkosi
|
||||||
.mkosi-tmp*
|
.mkosi-tmp*
|
||||||
|
|
||||||
|
@ -1,11 +1,7 @@
|
|||||||
load("@bazeldnf//:def.bzl", "bazeldnf")
|
|
||||||
|
|
||||||
exports_files([
|
exports_files([
|
||||||
"WORKSPACE.bazel",
|
"WORKSPACE.bazel",
|
||||||
])
|
])
|
||||||
|
|
||||||
bazeldnf(name = "bazeldnf")
|
|
||||||
|
|
||||||
alias(
|
alias(
|
||||||
name = "tidy",
|
name = "tidy",
|
||||||
actual = "//bazel/ci:tidy",
|
actual = "//bazel/ci:tidy",
|
||||||
|
@ -139,20 +139,6 @@ rules_proto_dependencies()
|
|||||||
|
|
||||||
rules_proto_toolchains()
|
rules_proto_toolchains()
|
||||||
|
|
||||||
# dnf / rpm toolchain
|
|
||||||
|
|
||||||
load("//bazel/toolchains:dnf_deps.bzl", "dnf_deps")
|
|
||||||
|
|
||||||
dnf_deps()
|
|
||||||
|
|
||||||
load("@bazeldnf//:deps.bzl", "bazeldnf_dependencies")
|
|
||||||
|
|
||||||
bazeldnf_dependencies()
|
|
||||||
|
|
||||||
load("//rpm:rpms.bzl", "rpms")
|
|
||||||
|
|
||||||
rpms()
|
|
||||||
|
|
||||||
# Buildifier
|
# Buildifier
|
||||||
load("//bazel/toolchains:buildifier_deps.bzl", "buildifier_deps")
|
load("//bazel/toolchains:buildifier_deps.bzl", "buildifier_deps")
|
||||||
|
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
"""bazeldnf is a Bazel extension to manage RPM packages for use within bazel"""
|
|
||||||
|
|
||||||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
||||||
|
|
||||||
def dnf_deps():
|
|
||||||
http_archive(
|
|
||||||
name = "bazeldnf",
|
|
||||||
sha256 = "b10513edd9cb57717f538a928922b57cf4ee96f0cc4e37312e805a354222abb4",
|
|
||||||
urls = [
|
|
||||||
"https://cdn.confidential.cloud/constellation/cas/sha256/b10513edd9cb57717f538a928922b57cf4ee96f0cc4e37312e805a354222abb4",
|
|
||||||
"https://github.com/malt3/bazeldnf/releases/download/v0.5.8-rc0-malt3/bazeldnf-v0.5.8-rc0-malt3.tar.gz",
|
|
||||||
],
|
|
||||||
type = "tar.gz",
|
|
||||||
)
|
|
933
rpm/BUILD.bazel
933
rpm/BUILD.bazel
@ -1,933 +0,0 @@
|
|||||||
load("@bazeldnf//:def.bzl", "bazeldnf")
|
|
||||||
load("@bazeldnf//:deps.bzl", "rpmtree", "tar2files")
|
|
||||||
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
||||||
|
|
||||||
cc_library(
|
|
||||||
name = "cryptsetup",
|
|
||||||
srcs = ["//rpm:cryptsetup-libs/usr/lib64"],
|
|
||||||
hdrs = ["//rpm:cryptsetup-libs/usr/include"],
|
|
||||||
linkstatic = 1,
|
|
||||||
strip_include_prefix = "/rpm/cryptsetup-libs/",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
cc_library(
|
|
||||||
name = "libvirt",
|
|
||||||
srcs = ["//rpm:libvirt-libs/usr/lib64"],
|
|
||||||
hdrs = ["//rpm:libvirt-libs/usr/include/libvirt"],
|
|
||||||
include_prefix = "libvirt",
|
|
||||||
linkstatic = 1,
|
|
||||||
strip_include_prefix = "/rpm/libvirt-libs/",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
bazeldnf(
|
|
||||||
name = "ldd-cryptsetup",
|
|
||||||
command = "ldd",
|
|
||||||
libs = [
|
|
||||||
"/usr/lib64/libcryptsetup.so.12",
|
|
||||||
],
|
|
||||||
rpmtree = ":cryptsetup-devel",
|
|
||||||
rulename = "cryptsetup-libs",
|
|
||||||
)
|
|
||||||
|
|
||||||
bazeldnf(
|
|
||||||
name = "ldd-libvirt",
|
|
||||||
command = "ldd",
|
|
||||||
libs = [
|
|
||||||
"/usr/lib64/libvirt-lxc.so.0",
|
|
||||||
"/usr/lib64/libvirt-qemu.so.0",
|
|
||||||
"/usr/lib64/libvirt.so.0",
|
|
||||||
"/usr/lib64/libkrb5support.so.0",
|
|
||||||
"/usr/lib64/libkeyutils.so.1",
|
|
||||||
"/usr/lib64/liblz4.so.1",
|
|
||||||
"/usr/lib64/libmount.so.1",
|
|
||||||
],
|
|
||||||
rpmtree = ":libvirt-devel",
|
|
||||||
rulename = "libvirt-libs",
|
|
||||||
)
|
|
||||||
|
|
||||||
bazeldnf(
|
|
||||||
name = "ldd-glibc",
|
|
||||||
command = "ldd",
|
|
||||||
libs = [
|
|
||||||
"/usr/lib64/ld-linux-x86-64.so.2",
|
|
||||||
],
|
|
||||||
rpmtree = ":glibc",
|
|
||||||
rulename = "ld-linux-x86-64-libs",
|
|
||||||
)
|
|
||||||
|
|
||||||
genrule(
|
|
||||||
name = "ld",
|
|
||||||
srcs = ["//rpm:ld-linux-x86-64-libs/usr/lib64"],
|
|
||||||
outs = ["ld-linux-x86-64.so.2"],
|
|
||||||
cmd = "cp $(location //rpm:ld-linux-x86-64-libs/usr/lib64) $@",
|
|
||||||
executable = 1,
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
rpmtree(
|
|
||||||
name = "containerized-libvirt",
|
|
||||||
rpms = [
|
|
||||||
"@SDL2-0__2.26.3-1.fc38.x86_64//rpm",
|
|
||||||
"@SDL2_image-0__2.6.3-1.fc38.x86_64//rpm",
|
|
||||||
"@adwaita-cursor-theme-0__44.0-1.fc38.x86_64//rpm",
|
|
||||||
"@adwaita-icon-theme-0__44.0-1.fc38.x86_64//rpm",
|
|
||||||
"@alsa-lib-0__1.2.9-1.fc38.x86_64//rpm",
|
|
||||||
"@alternatives-0__1.24-1.fc38.x86_64//rpm",
|
|
||||||
"@at-spi2-atk-0__2.48.3-1.fc38.x86_64//rpm",
|
|
||||||
"@at-spi2-core-0__2.48.3-1.fc38.x86_64//rpm",
|
|
||||||
"@atk-0__2.48.3-1.fc38.x86_64//rpm",
|
|
||||||
"@attr-0__2.5.1-6.fc38.x86_64//rpm",
|
|
||||||
"@audit-libs-0__3.1.1-1.fc38.x86_64//rpm",
|
|
||||||
"@authselect-0__1.4.2-2.fc38.x86_64//rpm",
|
|
||||||
"@authselect-libs-0__1.4.2-2.fc38.x86_64//rpm",
|
|
||||||
"@avahi-libs-0__0.8-22.fc38.x86_64//rpm",
|
|
||||||
"@basesystem-0__11-15.fc38.x86_64//rpm",
|
|
||||||
"@bash-0__5.2.15-3.fc38.x86_64//rpm",
|
|
||||||
"@boost-iostreams-0__1.78.0-11.fc38.x86_64//rpm",
|
|
||||||
"@boost-system-0__1.78.0-11.fc38.x86_64//rpm",
|
|
||||||
"@boost-thread-0__1.78.0-11.fc38.x86_64//rpm",
|
|
||||||
"@brlapi-0__0.8.4-10.fc38.x86_64//rpm",
|
|
||||||
"@bzip2-0__1.0.8-13.fc38.x86_64//rpm",
|
|
||||||
"@bzip2-libs-0__1.0.8-13.fc38.x86_64//rpm",
|
|
||||||
"@ca-certificates-0__2023.2.60-2.fc38.x86_64//rpm",
|
|
||||||
"@cairo-0__1.17.8-4.fc38.x86_64//rpm",
|
|
||||||
"@cairo-gobject-0__1.17.8-4.fc38.x86_64//rpm",
|
|
||||||
"@capstone-0__4.0.2-12.fc38.x86_64//rpm",
|
|
||||||
"@cdparanoia-libs-0__10.2-41.fc38.x86_64//rpm",
|
|
||||||
"@checkpolicy-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@colord-libs-0__1.4.6-4.fc38.x86_64//rpm",
|
|
||||||
"@coreutils-single-0__9.1-12.fc38.x86_64//rpm",
|
|
||||||
"@cracklib-0__2.9.7-31.fc38.x86_64//rpm",
|
|
||||||
"@crypto-policies-0__20230301-1.gita12f7b2.fc38.x86_64//rpm",
|
|
||||||
"@crypto-policies-scripts-0__20230301-1.gita12f7b2.fc38.x86_64//rpm",
|
|
||||||
"@cryptsetup-libs-0__2.6.1-1.fc38.x86_64//rpm",
|
|
||||||
"@cups-libs-1__2.4.4-1.fc38.x86_64//rpm",
|
|
||||||
"@curl-minimal-0__8.0.1-2.fc38.x86_64//rpm",
|
|
||||||
"@cyrus-sasl-0__2.1.28-9.fc38.x86_64//rpm",
|
|
||||||
"@cyrus-sasl-gssapi-0__2.1.28-9.fc38.x86_64//rpm",
|
|
||||||
"@cyrus-sasl-lib-0__2.1.28-9.fc38.x86_64//rpm",
|
|
||||||
"@daxctl-libs-0__77-1.fc38.x86_64//rpm",
|
|
||||||
"@dbus-1__1.14.8-1.fc38.x86_64//rpm",
|
|
||||||
"@dbus-broker-0__33-1.fc38.x86_64//rpm",
|
|
||||||
"@dbus-common-1__1.14.8-1.fc38.x86_64//rpm",
|
|
||||||
"@dbus-libs-1__1.14.8-1.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-0__1.02.189-2.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-event-0__1.02.189-2.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-event-libs-0__1.02.189-2.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-libs-0__1.02.189-2.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-multipath-libs-0__0.9.4-2.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-persistent-data-0__0.9.0-10.fc38.x86_64//rpm",
|
|
||||||
"@diffutils-0__3.9-1.fc38.x86_64//rpm",
|
|
||||||
"@dmidecode-1__3.4-3.fc38.x86_64//rpm",
|
|
||||||
"@dnsmasq-0__2.89-5.fc38.x86_64//rpm",
|
|
||||||
"@duktape-0__2.7.0-2.fc38.x86_64//rpm",
|
|
||||||
"@e2fsprogs-libs-0__1.46.5-4.fc38.x86_64//rpm",
|
|
||||||
"@ebtables-legacy-0__2.0.11-13.fc38.x86_64//rpm",
|
|
||||||
"@edk2-ovmf-0__20230301gitf80f052277c8-26.fc38.x86_64//rpm",
|
|
||||||
"@elfutils-default-yama-scope-0__0.189-2.fc38.x86_64//rpm",
|
|
||||||
"@elfutils-libelf-0__0.189-2.fc38.x86_64//rpm",
|
|
||||||
"@elfutils-libs-0__0.189-2.fc38.x86_64//rpm",
|
|
||||||
"@expat-0__2.5.0-2.fc38.x86_64//rpm",
|
|
||||||
"@fedora-gpg-keys-0__38-1.x86_64//rpm",
|
|
||||||
"@fedora-release-common-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-release-container-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-release-identity-basic-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-repos-0__38-1.x86_64//rpm",
|
|
||||||
"@filesystem-0__3.18-3.fc38.x86_64//rpm",
|
|
||||||
"@findutils-1__4.9.0-3.fc38.x86_64//rpm",
|
|
||||||
"@flac-libs-0__1.4.2-2.fc38.x86_64//rpm",
|
|
||||||
"@fmt-0__9.1.0-2.fc38.x86_64//rpm",
|
|
||||||
"@fontconfig-0__2.14.2-1.fc38.x86_64//rpm",
|
|
||||||
"@fonts-filesystem-1__2.0.5-11.fc38.x86_64//rpm",
|
|
||||||
"@freetype-0__2.13.0-2.fc38.x86_64//rpm",
|
|
||||||
"@fribidi-0__1.0.12-3.fc38.x86_64//rpm",
|
|
||||||
"@fuse-0__2.9.9-16.fc38.x86_64//rpm",
|
|
||||||
"@fuse-common-0__3.14.1-1.fc38.x86_64//rpm",
|
|
||||||
"@fuse-libs-0__2.9.9-16.fc38.x86_64//rpm",
|
|
||||||
"@fuse3-libs-0__3.14.1-1.fc38.x86_64//rpm",
|
|
||||||
"@gawk-0__5.1.1-5.fc38.x86_64//rpm",
|
|
||||||
"@gdbm-libs-1__1.23-3.fc38.x86_64//rpm",
|
|
||||||
"@gdk-pixbuf2-0__2.42.10-2.fc38.x86_64//rpm",
|
|
||||||
"@gdk-pixbuf2-modules-0__2.42.10-2.fc38.x86_64//rpm",
|
|
||||||
"@gettext-envsubst-0__0.21.1-2.fc38.x86_64//rpm",
|
|
||||||
"@gettext-libs-0__0.21.1-2.fc38.x86_64//rpm",
|
|
||||||
"@gettext-runtime-0__0.21.1-2.fc38.x86_64//rpm",
|
|
||||||
"@glib2-0__2.76.3-1.fc38.x86_64//rpm",
|
|
||||||
"@glibc-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibc-common-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibc-langpack-fa-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibmm2.4-0__2.66.6-1.fc38.x86_64//rpm",
|
|
||||||
"@glusterfs-0__11.0-2.fc38.x86_64//rpm",
|
|
||||||
"@glusterfs-cli-0__11.0-2.fc38.x86_64//rpm",
|
|
||||||
"@glusterfs-client-xlators-0__11.0-2.fc38.x86_64//rpm",
|
|
||||||
"@glusterfs-fuse-0__11.0-2.fc38.x86_64//rpm",
|
|
||||||
"@gmp-1__6.2.1-4.fc38.x86_64//rpm",
|
|
||||||
"@gnutls-0__3.8.0-2.fc38.x86_64//rpm",
|
|
||||||
"@gnutls-dane-0__3.8.0-2.fc38.x86_64//rpm",
|
|
||||||
"@gnutls-utils-0__3.8.0-2.fc38.x86_64//rpm",
|
|
||||||
"@google-noto-fonts-common-0__20230201-1.fc38.x86_64//rpm",
|
|
||||||
"@google-noto-sans-vf-fonts-0__20230201-1.fc38.x86_64//rpm",
|
|
||||||
"@gperftools-libs-0__2.9.1-5.fc38.x86_64//rpm",
|
|
||||||
"@graphene-0__1.10.6-5.fc38.x86_64//rpm",
|
|
||||||
"@graphite2-0__1.3.14-11.fc38.x86_64//rpm",
|
|
||||||
"@grep-0__3.8-3.fc38.x86_64//rpm",
|
|
||||||
"@groff-base-0__1.22.4-11.fc38.x86_64//rpm",
|
|
||||||
"@gsm-0__1.0.22-2.fc38.x86_64//rpm",
|
|
||||||
"@gssproxy-0__0.9.1-5.fc38.x86_64//rpm",
|
|
||||||
"@gstreamer1-0__1.22.3-2.fc38.x86_64//rpm",
|
|
||||||
"@gstreamer1-plugins-base-0__1.22.3-1.fc38.x86_64//rpm",
|
|
||||||
"@gtk-update-icon-cache-0__3.24.38-1.fc38.x86_64//rpm",
|
|
||||||
"@gtk3-0__3.24.38-1.fc38.x86_64//rpm",
|
|
||||||
"@gzip-0__1.12-3.fc38.x86_64//rpm",
|
|
||||||
"@harfbuzz-0__7.1.0-1.fc38.x86_64//rpm",
|
|
||||||
"@hicolor-icon-theme-0__0.17-15.fc38.x86_64//rpm",
|
|
||||||
"@highway-0__1.0.4-1.fc38.x86_64//rpm",
|
|
||||||
"@hwdata-0__0.371-1.fc38.x86_64//rpm",
|
|
||||||
"@iproute-0__6.1.0-1.fc38.x86_64//rpm",
|
|
||||||
"@iproute-tc-0__6.1.0-1.fc38.x86_64//rpm",
|
|
||||||
"@iptables-legacy-0__1.8.9-4.fc38.x86_64//rpm",
|
|
||||||
"@iptables-legacy-libs-0__1.8.9-4.fc38.x86_64//rpm",
|
|
||||||
"@iptables-libs-0__1.8.9-4.fc38.x86_64//rpm",
|
|
||||||
"@ipxe-roms-qemu-0__20220210-3.git64113751.fc38.x86_64//rpm",
|
|
||||||
"@iscsi-initiator-utils-0__6.2.1.4-10.git2a8f9d8.fc38.x86_64//rpm",
|
|
||||||
"@iscsi-initiator-utils-iscsiuio-0__6.2.1.4-10.git2a8f9d8.fc38.x86_64//rpm",
|
|
||||||
"@isns-utils-libs-0__0.101-6.fc38.x86_64//rpm",
|
|
||||||
"@iso-codes-0__4.13.0-1.fc38.x86_64//rpm",
|
|
||||||
"@jack-audio-connection-kit-0__1.9.22-1.fc38.x86_64//rpm",
|
|
||||||
"@jbigkit-libs-0__2.1-25.fc38.x86_64//rpm",
|
|
||||||
"@json-c-0__0.16-4.fc38.x86_64//rpm",
|
|
||||||
"@json-glib-0__1.6.6-4.fc38.x86_64//rpm",
|
|
||||||
"@kbd-0__2.5.1-5.fc38.x86_64//rpm",
|
|
||||||
"@kbd-legacy-0__2.5.1-5.fc38.x86_64//rpm",
|
|
||||||
"@kbd-misc-0__2.5.1-5.fc38.x86_64//rpm",
|
|
||||||
"@keyutils-0__1.6.1-6.fc38.x86_64//rpm",
|
|
||||||
"@keyutils-libs-0__1.6.1-6.fc38.x86_64//rpm",
|
|
||||||
"@kmod-0__30-4.fc38.x86_64//rpm",
|
|
||||||
"@kmod-libs-0__30-4.fc38.x86_64//rpm",
|
|
||||||
"@krb5-libs-0__1.20.1-8.fc38.x86_64//rpm",
|
|
||||||
"@lame-libs-0__3.100-14.fc38.x86_64//rpm",
|
|
||||||
"@langpacks-core-font-en-0__3.0-32.fc38.x86_64//rpm",
|
|
||||||
"@lcms2-0__2.15-1.fc38.x86_64//rpm",
|
|
||||||
"@libX11-0__1.8.4-1.fc38.x86_64//rpm",
|
|
||||||
"@libX11-common-0__1.8.4-1.fc38.x86_64//rpm",
|
|
||||||
"@libX11-xcb-0__1.8.4-1.fc38.x86_64//rpm",
|
|
||||||
"@libXau-0__1.0.11-2.fc38.x86_64//rpm",
|
|
||||||
"@libXcomposite-0__0.4.5-9.fc38.x86_64//rpm",
|
|
||||||
"@libXcursor-0__1.2.1-3.fc38.x86_64//rpm",
|
|
||||||
"@libXdamage-0__1.1.5-9.fc38.x86_64//rpm",
|
|
||||||
"@libXext-0__1.3.5-2.fc38.x86_64//rpm",
|
|
||||||
"@libXfixes-0__6.0.0-5.fc38.x86_64//rpm",
|
|
||||||
"@libXft-0__2.3.8-2.fc38.x86_64//rpm",
|
|
||||||
"@libXi-0__1.8.1-1.fc38.x86_64//rpm",
|
|
||||||
"@libXinerama-0__1.1.5-2.fc38.x86_64//rpm",
|
|
||||||
"@libXrandr-0__1.5.2-10.fc38.x86_64//rpm",
|
|
||||||
"@libXrender-0__0.9.11-2.fc38.x86_64//rpm",
|
|
||||||
"@libXtst-0__1.2.4-2.fc38.x86_64//rpm",
|
|
||||||
"@libXv-0__1.0.11-18.fc38.x86_64//rpm",
|
|
||||||
"@libXxf86vm-0__1.1.5-2.fc38.x86_64//rpm",
|
|
||||||
"@libacl-0__2.3.1-6.fc38.x86_64//rpm",
|
|
||||||
"@libaio-0__0.3.111-15.fc38.x86_64//rpm",
|
|
||||||
"@libarchive-0__3.6.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libargon2-0__20190702-2.fc38.x86_64//rpm",
|
|
||||||
"@libasyncns-0__0.8-24.fc38.x86_64//rpm",
|
|
||||||
"@libattr-0__2.5.1-6.fc38.x86_64//rpm",
|
|
||||||
"@libb2-0__0.98.1-8.fc38.x86_64//rpm",
|
|
||||||
"@libbasicobjects-0__0.1.1-53.fc38.x86_64//rpm",
|
|
||||||
"@libblkid-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libblkio-0__1.2.2-3.fc38.x86_64//rpm",
|
|
||||||
"@libbpf-2__1.1.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libbrotli-0__1.0.9-11.fc38.x86_64//rpm",
|
|
||||||
"@libcacard-3__2.8.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libcap-0__2.48-6.fc38.x86_64//rpm",
|
|
||||||
"@libcap-ng-0__0.8.3-5.fc38.x86_64//rpm",
|
|
||||||
"@libcloudproviders-0__0.3.1-7.fc38.x86_64//rpm",
|
|
||||||
"@libcollection-0__0.7.0-53.fc38.x86_64//rpm",
|
|
||||||
"@libcom_err-0__1.46.5-4.fc38.x86_64//rpm",
|
|
||||||
"@libconfig-0__1.7.3-5.fc38.x86_64//rpm",
|
|
||||||
"@libcurl-minimal-0__8.0.1-2.fc38.x86_64//rpm",
|
|
||||||
"@libdatrie-0__0.2.13-5.fc38.x86_64//rpm",
|
|
||||||
"@libdb-0__5.3.28-55.fc38.x86_64//rpm",
|
|
||||||
"@libdrm-0__2.4.114-2.fc38.x86_64//rpm",
|
|
||||||
"@libeconf-0__0.4.0-5.fc38.x86_64//rpm",
|
|
||||||
"@libedit-0__3.1-45.20221030cvs.fc38.x86_64//rpm",
|
|
||||||
"@libepoxy-0__1.5.10-3.fc38.x86_64//rpm",
|
|
||||||
"@libevent-0__2.1.12-8.fc38.x86_64//rpm",
|
|
||||||
"@libfdisk-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libfdt-0__1.6.1-7.fc38.x86_64//rpm",
|
|
||||||
"@libffado-0__2.4.7-1.fc38.x86_64//rpm",
|
|
||||||
"@libffi-0__3.4.4-2.fc38.x86_64//rpm",
|
|
||||||
"@libgcc-0__13.1.1-2.fc38.x86_64//rpm",
|
|
||||||
"@libgcrypt-0__1.10.2-1.fc38.x86_64//rpm",
|
|
||||||
"@libgfapi0-0__11.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libgfrpc0-0__11.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libgfxdr0-0__11.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libglusterfs0-0__11.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libglvnd-1__1.6.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libglvnd-egl-1__1.6.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libglvnd-glx-1__1.6.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libgomp-0__13.1.1-2.fc38.x86_64//rpm",
|
|
||||||
"@libgpg-error-0__1.47-1.fc38.x86_64//rpm",
|
|
||||||
"@libgudev-0__237-4.fc38.x86_64//rpm",
|
|
||||||
"@libgusb-0__0.4.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libibverbs-0__44.0-3.fc38.x86_64//rpm",
|
|
||||||
"@libicu-0__72.1-2.fc38.x86_64//rpm",
|
|
||||||
"@libidn2-0__2.3.4-2.fc38.x86_64//rpm",
|
|
||||||
"@libiec61883-0__1.2.0-31.fc38.x86_64//rpm",
|
|
||||||
"@libini_config-0__1.3.1-53.fc38.x86_64//rpm",
|
|
||||||
"@libiscsi-0__1.19.0-7.fc38.x86_64//rpm",
|
|
||||||
"@libjpeg-turbo-0__2.1.4-2.fc38.x86_64//rpm",
|
|
||||||
"@libjxl-1__0.7.0-6.fc38.x86_64//rpm",
|
|
||||||
"@libmnl-0__1.0.5-2.fc38.x86_64//rpm",
|
|
||||||
"@libmount-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libnetfilter_conntrack-0__1.0.8-7.fc38.x86_64//rpm",
|
|
||||||
"@libnfnetlink-0__1.0.1-23.fc38.x86_64//rpm",
|
|
||||||
"@libnfs-0__4.0.0-8.fc38.x86_64//rpm",
|
|
||||||
"@libnfsidmap-1__2.6.3-0.fc38.x86_64//rpm",
|
|
||||||
"@libnghttp2-0__1.52.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libnl3-0__3.7.0-3.fc38.x86_64//rpm",
|
|
||||||
"@libnsl2-0__2.0.0-5.fc38.x86_64//rpm",
|
|
||||||
"@libogg-2__1.3.5-5.fc38.x86_64//rpm",
|
|
||||||
"@libpath_utils-0__0.2.1-53.fc38.x86_64//rpm",
|
|
||||||
"@libpcap-14__1.10.4-1.fc38.x86_64//rpm",
|
|
||||||
"@libpciaccess-0__0.16-8.fc38.x86_64//rpm",
|
|
||||||
"@libpmem-0__1.12.1-3.fc38.x86_64//rpm",
|
|
||||||
"@libpmemobj-0__1.12.1-3.fc38.x86_64//rpm",
|
|
||||||
"@libpng-2__1.6.37-14.fc38.x86_64//rpm",
|
|
||||||
"@libpsl-0__0.21.2-2.fc38.x86_64//rpm",
|
|
||||||
"@libpwquality-0__1.4.5-3.fc38.x86_64//rpm",
|
|
||||||
"@librados2-2__17.2.6-3.fc38.x86_64//rpm",
|
|
||||||
"@libraw1394-0__2.1.2-17.fc38.x86_64//rpm",
|
|
||||||
"@librbd1-2__17.2.6-3.fc38.x86_64//rpm",
|
|
||||||
"@librdmacm-0__44.0-3.fc38.x86_64//rpm",
|
|
||||||
"@libref_array-0__0.1.5-53.fc38.x86_64//rpm",
|
|
||||||
"@libsamplerate-0__0.2.2-4.fc38.x86_64//rpm",
|
|
||||||
"@libseccomp-0__2.5.3-4.fc38.x86_64//rpm",
|
|
||||||
"@libselinux-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libselinux-utils-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libsemanage-0__3.5-2.fc38.x86_64//rpm",
|
|
||||||
"@libsepol-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libsigc__plus____plus__20-0__2.10.8-3.fc38.x86_64//rpm",
|
|
||||||
"@libsigsegv-0__2.14-4.fc38.x86_64//rpm",
|
|
||||||
"@libslirp-0__4.7.0-3.fc38.x86_64//rpm",
|
|
||||||
"@libsmartcols-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libsndfile-0__1.1.0-6.fc38.x86_64//rpm",
|
|
||||||
"@libsoup3-0__3.4.2-2.fc38.x86_64//rpm",
|
|
||||||
"@libssh-0__0.10.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libssh-config-0__0.10.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libssh2-0__1.10.0-7.fc38.x86_64//rpm",
|
|
||||||
"@libstdc__plus____plus__-0__13.1.1-2.fc38.x86_64//rpm",
|
|
||||||
"@libstemmer-0__2.2.0-5.fc38.x86_64//rpm",
|
|
||||||
"@libtasn1-0__4.19.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libthai-0__0.1.29-4.fc38.x86_64//rpm",
|
|
||||||
"@libtheora-1__1.1.1-33.fc38.x86_64//rpm",
|
|
||||||
"@libtiff-0__4.4.0-5.fc38.x86_64//rpm",
|
|
||||||
"@libtirpc-0__1.3.3-1.rc1.fc38.x86_64//rpm",
|
|
||||||
"@libtpms-0__0.9.6-1.fc38.x86_64//rpm",
|
|
||||||
"@libtracker-sparql-0__3.5.3-1.fc38.x86_64//rpm",
|
|
||||||
"@libunistring-0__1.1-3.fc38.x86_64//rpm",
|
|
||||||
"@libunistring1.0-0__1.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libunwind-0__1.6.2-7.fc38.x86_64//rpm",
|
|
||||||
"@liburing-0__2.3-2.fc38.x86_64//rpm",
|
|
||||||
"@libusb1-0__1.0.26-2.fc38.x86_64//rpm",
|
|
||||||
"@libutempter-0__1.2.1-8.fc38.x86_64//rpm",
|
|
||||||
"@libuuid-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libva-0__2.18.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libverto-0__0.3.2-5.fc38.x86_64//rpm",
|
|
||||||
"@libverto-libevent-0__0.3.2-5.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-client-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-config-network-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-interface-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-network-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-nodedev-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-nwfilter-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-qemu-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-secret-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-core-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-disk-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-gluster-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-iscsi-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-iscsi-direct-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-logical-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-mpath-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-rbd-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-scsi-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-driver-storage-zfs-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-daemon-kvm-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-libs-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvisual-1__0.4.1-1.fc38.x86_64//rpm",
|
|
||||||
"@libvorbis-1__1.3.7-7.fc38.x86_64//rpm",
|
|
||||||
"@libwayland-client-0__1.22.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libwayland-cursor-0__1.22.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libwayland-egl-0__1.22.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libwayland-server-0__1.22.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libwebp-0__1.3.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libwsman1-0__2.7.1-10.fc38.x86_64//rpm",
|
|
||||||
"@libxcb-0__1.13.1-11.fc38.x86_64//rpm",
|
|
||||||
"@libxcrypt-0__4.4.35-1.fc38.x86_64//rpm",
|
|
||||||
"@libxkbcommon-0__1.5.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libxml2-0__2.10.4-1.fc38.x86_64//rpm",
|
|
||||||
"@libxml__plus____plus__-0__2.42.2-2.fc38.x86_64//rpm",
|
|
||||||
"@libxshmfence-0__1.3-12.fc38.x86_64//rpm",
|
|
||||||
"@libzstd-0__1.5.5-1.fc38.x86_64//rpm",
|
|
||||||
"@linux-atm-libs-0__2.5.1-34.fc38.x86_64//rpm",
|
|
||||||
"@llvm-libs-0__16.0.5-1.fc38.x86_64//rpm",
|
|
||||||
"@lm_sensors-libs-0__3.6.0-13.fc38.x86_64//rpm",
|
|
||||||
"@lttng-ust-0__2.13.5-2.fc38.x86_64//rpm",
|
|
||||||
"@lua-libs-0__5.4.4-9.fc38.x86_64//rpm",
|
|
||||||
"@lvm2-0__2.03.18-2.fc38.x86_64//rpm",
|
|
||||||
"@lvm2-libs-0__2.03.18-2.fc38.x86_64//rpm",
|
|
||||||
"@lz4-libs-0__1.9.4-2.fc38.x86_64//rpm",
|
|
||||||
"@lzo-0__2.10-8.fc38.x86_64//rpm",
|
|
||||||
"@lzop-0__1.04-10.fc38.x86_64//rpm",
|
|
||||||
"@mdevctl-0__1.2.0-3.fc38.x86_64//rpm",
|
|
||||||
"@mesa-dri-drivers-0__23.1.2-1.fc38.x86_64//rpm",
|
|
||||||
"@mesa-filesystem-0__23.1.2-1.fc38.x86_64//rpm",
|
|
||||||
"@mesa-libEGL-0__23.1.2-1.fc38.x86_64//rpm",
|
|
||||||
"@mesa-libGL-0__23.1.2-1.fc38.x86_64//rpm",
|
|
||||||
"@mesa-libgbm-0__23.1.2-1.fc38.x86_64//rpm",
|
|
||||||
"@mesa-libglapi-0__23.1.2-1.fc38.x86_64//rpm",
|
|
||||||
"@mpdecimal-0__2.5.1-6.fc38.x86_64//rpm",
|
|
||||||
"@mpfr-0__4.1.1-3.fc38.x86_64//rpm",
|
|
||||||
"@mpg123-libs-0__1.31.3-1.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-base-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-libs-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@ndctl-libs-0__77-1.fc38.x86_64//rpm",
|
|
||||||
"@nettle-0__3.8-3.fc38.x86_64//rpm",
|
|
||||||
"@nfs-utils-1__2.6.3-0.fc38.x86_64//rpm",
|
|
||||||
"@nspr-0__4.35.0-7.fc38.x86_64//rpm",
|
|
||||||
"@nss-0__3.90.0-1.fc38.x86_64//rpm",
|
|
||||||
"@nss-softokn-0__3.90.0-1.fc38.x86_64//rpm",
|
|
||||||
"@nss-softokn-freebl-0__3.90.0-1.fc38.x86_64//rpm",
|
|
||||||
"@nss-sysinit-0__3.90.0-1.fc38.x86_64//rpm",
|
|
||||||
"@nss-util-0__3.90.0-1.fc38.x86_64//rpm",
|
|
||||||
"@numactl-libs-0__2.0.16-2.fc38.x86_64//rpm",
|
|
||||||
"@numad-0__0.5-38.20150602git.fc38.x86_64//rpm",
|
|
||||||
"@openldap-0__2.6.4-1.fc38.x86_64//rpm",
|
|
||||||
"@openssl-libs-1__3.0.9-1.fc38.x86_64//rpm",
|
|
||||||
"@opus-0__1.3.1-12.fc38.x86_64//rpm",
|
|
||||||
"@orc-0__0.4.33-2.fc38.x86_64//rpm",
|
|
||||||
"@p11-kit-0__0.24.1-6.fc38.x86_64//rpm",
|
|
||||||
"@p11-kit-trust-0__0.24.1-6.fc38.x86_64//rpm",
|
|
||||||
"@pam-0__1.5.2-16.fc38.x86_64//rpm",
|
|
||||||
"@pam-libs-0__1.5.2-16.fc38.x86_64//rpm",
|
|
||||||
"@pango-0__1.50.14-1.fc38.x86_64//rpm",
|
|
||||||
"@parted-0__3.5-11.fc38.x86_64//rpm",
|
|
||||||
"@pcre2-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pcre2-syntax-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pcsc-lite-libs-0__1.9.9-3.fc38.x86_64//rpm",
|
|
||||||
"@perl-Carp-0__1.52-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-Class-Struct-0__0.66-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-DynaLoader-0__1.52-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-Encode-4__3.19-493.fc38.x86_64//rpm",
|
|
||||||
"@perl-Errno-0__1.36-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-Exporter-0__5.77-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-Fcntl-0__1.15-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-File-Basename-0__2.85-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-File-Path-0__2.18-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-File-Temp-1__0.231.100-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-File-stat-0__1.12-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-Getopt-Long-1__2.54-2.fc38.x86_64//rpm",
|
|
||||||
"@perl-Getopt-Std-0__1.13-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-HTTP-Tiny-0__0.082-2.fc38.x86_64//rpm",
|
|
||||||
"@perl-IO-0__1.50-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-IPC-Open3-0__1.22-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-MIME-Base64-0__3.16-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-POSIX-0__2.03-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-PathTools-0__3.84-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-Pod-Escapes-1__1.07-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-Pod-Perldoc-0__3.28.01-491.fc38.x86_64//rpm",
|
|
||||||
"@perl-Pod-Simple-1__3.43-491.fc38.x86_64//rpm",
|
|
||||||
"@perl-Pod-Usage-4__2.03-4.fc38.x86_64//rpm",
|
|
||||||
"@perl-Scalar-List-Utils-5__1.63-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-SelectSaver-0__1.02-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-Socket-4__2.036-2.fc38.x86_64//rpm",
|
|
||||||
"@perl-Storable-1__3.26-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-Symbol-0__1.09-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-Term-ANSIColor-0__5.01-491.fc38.x86_64//rpm",
|
|
||||||
"@perl-Term-Cap-0__1.18-1.fc38.x86_64//rpm",
|
|
||||||
"@perl-Text-ParseWords-0__3.31-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-Text-Tabs__plus__Wrap-0__2023.0511-1.fc38.x86_64//rpm",
|
|
||||||
"@perl-Time-Local-2__1.300-490.fc38.x86_64//rpm",
|
|
||||||
"@perl-constant-0__1.33-491.fc38.x86_64//rpm",
|
|
||||||
"@perl-if-0__0.61.000-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-interpreter-4__5.36.1-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-libs-4__5.36.1-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-locale-0__1.10-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-mro-0__1.26-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-overload-0__1.35-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-overloading-0__0.02-497.fc38.x86_64//rpm",
|
|
||||||
"@perl-parent-1__0.241-1.fc38.x86_64//rpm",
|
|
||||||
"@perl-podlators-1__5.01-2.fc38.x86_64//rpm",
|
|
||||||
"@perl-vars-0__1.05-497.fc38.x86_64//rpm",
|
|
||||||
"@pixman-0__0.42.2-1.fc38.x86_64//rpm",
|
|
||||||
"@policycoreutils-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@policycoreutils-python-utils-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@polkit-0__122-3.fc38.1.x86_64//rpm",
|
|
||||||
"@polkit-libs-0__122-3.fc38.1.x86_64//rpm",
|
|
||||||
"@polkit-pkla-compat-0__0.1-23.fc38.x86_64//rpm",
|
|
||||||
"@popt-0__1.19-2.fc38.x86_64//rpm",
|
|
||||||
"@protobuf-c-0__1.4.1-4.fc38.x86_64//rpm",
|
|
||||||
"@psmisc-0__23.6-2.fc38.x86_64//rpm",
|
|
||||||
"@publicsuffix-list-dafsa-0__20230318-1.fc38.x86_64//rpm",
|
|
||||||
"@pulseaudio-libs-0__16.1-4.fc38.x86_64//rpm",
|
|
||||||
"@python-pip-wheel-0__22.3.1-2.fc38.x86_64//rpm",
|
|
||||||
"@python-setuptools-wheel-0__65.5.1-2.fc38.x86_64//rpm",
|
|
||||||
"@python3-0__3.11.3-2.fc38.x86_64//rpm",
|
|
||||||
"@python3-audit-0__3.1.1-1.fc38.x86_64//rpm",
|
|
||||||
"@python3-distro-0__1.8.0-2.fc38.x86_64//rpm",
|
|
||||||
"@python3-libs-0__3.11.3-2.fc38.x86_64//rpm",
|
|
||||||
"@python3-libselinux-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@python3-libsemanage-0__3.5-2.fc38.x86_64//rpm",
|
|
||||||
"@python3-policycoreutils-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@python3-setools-0__4.4.2-1.fc38.x86_64//rpm",
|
|
||||||
"@python3-setuptools-0__65.5.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-audio-alsa-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-audio-dbus-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-audio-jack-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-audio-oss-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-audio-pa-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-audio-sdl-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-audio-spice-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-block-blkio-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-block-curl-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-block-dmg-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-block-gluster-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-block-iscsi-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-block-nfs-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-block-rbd-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-block-ssh-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-char-baum-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-char-spice-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-common-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-qxl-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-vhost-user-gpu-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-virtio-gpu-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-virtio-gpu-ccw-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-virtio-gpu-gl-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-virtio-gpu-pci-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-virtio-gpu-pci-gl-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-virtio-vga-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-display-virtio-vga-gl-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-usb-host-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-usb-redirect-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-device-usb-smartcard-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-img-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-kvm-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-pr-helper-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-system-x86-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-system-x86-core-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-ui-curses-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-ui-egl-headless-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-ui-gtk-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-ui-opengl-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-ui-sdl-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-ui-spice-app-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@qemu-ui-spice-core-2__7.2.1-2.fc38.x86_64//rpm",
|
|
||||||
"@quota-1__4.09-2.fc38.x86_64//rpm",
|
|
||||||
"@quota-nls-1__4.09-2.fc38.x86_64//rpm",
|
|
||||||
"@readline-0__8.2-3.fc38.x86_64//rpm",
|
|
||||||
"@rpcbind-0__1.2.6-4.rc2.fc38.x86_64//rpm",
|
|
||||||
"@rpm-0__4.18.1-3.fc38.x86_64//rpm",
|
|
||||||
"@rpm-libs-0__4.18.1-3.fc38.x86_64//rpm",
|
|
||||||
"@rpm-plugin-selinux-0__4.18.1-3.fc38.x86_64//rpm",
|
|
||||||
"@rpm-sequoia-0__1.4.0-3.fc38.x86_64//rpm",
|
|
||||||
"@seabios-bin-0__1.16.2-1.fc38.x86_64//rpm",
|
|
||||||
"@seavgabios-bin-0__1.16.2-1.fc38.x86_64//rpm",
|
|
||||||
"@sed-0__4.8-12.fc38.x86_64//rpm",
|
|
||||||
"@selinux-policy-0__38.15-1.fc38.x86_64//rpm",
|
|
||||||
"@selinux-policy-minimum-0__38.15-1.fc38.x86_64//rpm",
|
|
||||||
"@setup-0__2.14.3-2.fc38.x86_64//rpm",
|
|
||||||
"@sgabios-bin-1__0.20180715git-10.fc38.x86_64//rpm",
|
|
||||||
"@shadow-utils-2__4.13-6.fc38.x86_64//rpm",
|
|
||||||
"@shared-mime-info-0__2.2-3.fc38.x86_64//rpm",
|
|
||||||
"@snappy-0__1.1.9-7.fc38.x86_64//rpm",
|
|
||||||
"@spice-server-0__0.15.1-2.fc38.x86_64//rpm",
|
|
||||||
"@sqlite-libs-0__3.40.1-2.fc38.x86_64//rpm",
|
|
||||||
"@swtpm-0__0.8.0-3.fc38.x86_64//rpm",
|
|
||||||
"@swtpm-libs-0__0.8.0-3.fc38.x86_64//rpm",
|
|
||||||
"@swtpm-tools-0__0.8.0-3.fc38.x86_64//rpm",
|
|
||||||
"@systemd-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@systemd-container-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@systemd-libs-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@systemd-pam-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@systemd-udev-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@trousers-0__0.3.15-8.fc38.x86_64//rpm",
|
|
||||||
"@trousers-lib-0__0.3.15-8.fc38.x86_64//rpm",
|
|
||||||
"@tzdata-0__2023c-1.fc38.x86_64//rpm",
|
|
||||||
"@unbound-libs-0__1.17.1-2.fc38.x86_64//rpm",
|
|
||||||
"@usbredir-0__0.13.0-2.fc38.x86_64//rpm",
|
|
||||||
"@userspace-rcu-0__0.13.2-2.fc38.x86_64//rpm",
|
|
||||||
"@util-linux-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@util-linux-core-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@virglrenderer-0__0.10.4-2.20230104git88b9fe3b.fc38.x86_64//rpm",
|
|
||||||
"@virtiofsd-0__1.5.1-1.fc38.x86_64//rpm",
|
|
||||||
"@vte-profile-0__0.72.2-1.fc38.x86_64//rpm",
|
|
||||||
"@vte291-0__0.72.2-1.fc38.x86_64//rpm",
|
|
||||||
"@which-0__2.21-39.fc38.x86_64//rpm",
|
|
||||||
"@xen-libs-0__4.17.1-2.fc38.x86_64//rpm",
|
|
||||||
"@xen-licenses-0__4.17.1-2.fc38.x86_64//rpm",
|
|
||||||
"@xkeyboard-config-0__2.38-1.fc38.x86_64//rpm",
|
|
||||||
"@xml-common-0__0.6.3-60.fc38.x86_64//rpm",
|
|
||||||
"@xprop-0__1.2.5-3.fc38.x86_64//rpm",
|
|
||||||
"@xz-0__5.4.1-1.fc38.x86_64//rpm",
|
|
||||||
"@xz-libs-0__5.4.1-1.fc38.x86_64//rpm",
|
|
||||||
"@yajl-0__2.1.0-20.fc38.x86_64//rpm",
|
|
||||||
"@zfs-fuse-0__0.7.2.2-24.fc38.x86_64//rpm",
|
|
||||||
"@zlib-0__1.2.13-3.fc38.x86_64//rpm",
|
|
||||||
],
|
|
||||||
symlinks = {
|
|
||||||
"/usr/sbin/ip6tables": "/usr/sbin/ip6tables-legacy",
|
|
||||||
"/usr/sbin/ip6tables-save": "/usr/sbin/ip6tables-legacy-save",
|
|
||||||
"/usr/sbin/ip6tables-save-restore": "/usr/sbin/ip6tables-legacy-restore",
|
|
||||||
"/usr/sbin/iptables": "/usr/sbin/iptables-legacy",
|
|
||||||
"/usr/sbin/iptables-restore": "/usr/sbin/iptables-legacy-restore",
|
|
||||||
"/usr/sbin/iptables-save": "/usr/sbin/iptables-legacy-save",
|
|
||||||
"/var/lock": "/run/lock",
|
|
||||||
},
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
rpmtree(
|
|
||||||
name = "cryptsetup-devel",
|
|
||||||
rpms = [
|
|
||||||
"@alternatives-0__1.24-1.fc38.x86_64//rpm",
|
|
||||||
"@audit-libs-0__3.1.1-1.fc38.x86_64//rpm",
|
|
||||||
"@basesystem-0__11-15.fc38.x86_64//rpm",
|
|
||||||
"@bash-0__5.2.15-3.fc38.x86_64//rpm",
|
|
||||||
"@bzip2-libs-0__1.0.8-13.fc38.x86_64//rpm",
|
|
||||||
"@ca-certificates-0__2023.2.60-2.fc38.x86_64//rpm",
|
|
||||||
"@cmake-filesystem-0__3.26.4-4.fc38.x86_64//rpm",
|
|
||||||
"@coreutils-0__9.1-12.fc38.x86_64//rpm",
|
|
||||||
"@coreutils-common-0__9.1-12.fc38.x86_64//rpm",
|
|
||||||
"@crypto-policies-0__20230301-1.gita12f7b2.fc38.x86_64//rpm",
|
|
||||||
"@cryptsetup-devel-0__2.6.1-1.fc38.x86_64//rpm",
|
|
||||||
"@cryptsetup-libs-0__2.6.1-1.fc38.x86_64//rpm",
|
|
||||||
"@dbus-1__1.14.8-1.fc38.x86_64//rpm",
|
|
||||||
"@dbus-broker-0__33-1.fc38.x86_64//rpm",
|
|
||||||
"@dbus-common-1__1.14.8-1.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-0__1.02.189-2.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-devel-0__1.02.189-2.fc38.x86_64//rpm",
|
|
||||||
"@device-mapper-libs-0__1.02.189-2.fc38.x86_64//rpm",
|
|
||||||
"@expat-0__2.5.0-2.fc38.x86_64//rpm",
|
|
||||||
"@fedora-gpg-keys-0__38-1.x86_64//rpm",
|
|
||||||
"@fedora-release-common-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-release-container-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-release-identity-container-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-repos-0__38-1.x86_64//rpm",
|
|
||||||
"@filesystem-0__3.18-3.fc38.x86_64//rpm",
|
|
||||||
"@glibc-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibc-common-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibc-minimal-langpack-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@gmp-1__6.2.1-4.fc38.x86_64//rpm",
|
|
||||||
"@grep-0__3.8-3.fc38.x86_64//rpm",
|
|
||||||
"@json-c-0__0.16-4.fc38.x86_64//rpm",
|
|
||||||
"@json-c-devel-0__0.16-4.fc38.x86_64//rpm",
|
|
||||||
"@kmod-libs-0__30-4.fc38.x86_64//rpm",
|
|
||||||
"@libacl-0__2.3.1-6.fc38.x86_64//rpm",
|
|
||||||
"@libargon2-0__20190702-2.fc38.x86_64//rpm",
|
|
||||||
"@libargon2-devel-0__20190702-2.fc38.x86_64//rpm",
|
|
||||||
"@libattr-0__2.5.1-6.fc38.x86_64//rpm",
|
|
||||||
"@libblkid-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libblkid-devel-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libcap-0__2.48-6.fc38.x86_64//rpm",
|
|
||||||
"@libcap-ng-0__0.8.3-5.fc38.x86_64//rpm",
|
|
||||||
"@libeconf-0__0.4.0-5.fc38.x86_64//rpm",
|
|
||||||
"@libfdisk-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libffi-0__3.4.4-2.fc38.x86_64//rpm",
|
|
||||||
"@libgcc-0__13.1.1-2.fc38.x86_64//rpm",
|
|
||||||
"@libmount-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libpkgconf-0__1.8.0-6.fc38.x86_64//rpm",
|
|
||||||
"@libseccomp-0__2.5.3-4.fc38.x86_64//rpm",
|
|
||||||
"@libselinux-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libselinux-devel-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libsemanage-0__3.5-2.fc38.x86_64//rpm",
|
|
||||||
"@libsepol-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libsepol-devel-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libsmartcols-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libtasn1-0__4.19.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libuuid-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libuuid-devel-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libxcrypt-0__4.4.35-1.fc38.x86_64//rpm",
|
|
||||||
"@libzstd-0__1.5.5-1.fc38.x86_64//rpm",
|
|
||||||
"@lz4-libs-0__1.9.4-2.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-base-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-libs-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@openssl-libs-1__3.0.9-1.fc38.x86_64//rpm",
|
|
||||||
"@openssl1.1-1__1.1.1q-4.fc38.x86_64//rpm",
|
|
||||||
"@openssl1.1-devel-1__1.1.1q-4.fc38.x86_64//rpm",
|
|
||||||
"@p11-kit-0__0.24.1-6.fc38.x86_64//rpm",
|
|
||||||
"@p11-kit-trust-0__0.24.1-6.fc38.x86_64//rpm",
|
|
||||||
"@pam-libs-0__1.5.2-16.fc38.x86_64//rpm",
|
|
||||||
"@pcre2-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pcre2-devel-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pcre2-syntax-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pcre2-utf16-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pcre2-utf32-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pkgconf-0__1.8.0-6.fc38.x86_64//rpm",
|
|
||||||
"@pkgconf-m4-0__1.8.0-6.fc38.x86_64//rpm",
|
|
||||||
"@pkgconf-pkg-config-0__1.8.0-6.fc38.x86_64//rpm",
|
|
||||||
"@sed-0__4.8-12.fc38.x86_64//rpm",
|
|
||||||
"@setup-0__2.14.3-2.fc38.x86_64//rpm",
|
|
||||||
"@shadow-utils-2__4.13-6.fc38.x86_64//rpm",
|
|
||||||
"@systemd-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@systemd-devel-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@systemd-libs-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@systemd-pam-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@tzdata-0__2023c-1.fc38.x86_64//rpm",
|
|
||||||
"@util-linux-core-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@xz-libs-0__5.4.1-1.fc38.x86_64//rpm",
|
|
||||||
"@zlib-0__1.2.13-3.fc38.x86_64//rpm",
|
|
||||||
],
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
rpmtree(
|
|
||||||
name = "glibc",
|
|
||||||
rpms = [
|
|
||||||
"@basesystem-0__11-15.fc38.x86_64//rpm",
|
|
||||||
"@bash-0__5.2.15-3.fc38.x86_64//rpm",
|
|
||||||
"@fedora-gpg-keys-0__38-1.x86_64//rpm",
|
|
||||||
"@fedora-release-common-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-release-container-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-release-identity-basic-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-repos-0__38-1.x86_64//rpm",
|
|
||||||
"@filesystem-0__3.18-3.fc38.x86_64//rpm",
|
|
||||||
"@glibc-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibc-common-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibc-langpack-ga-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@libgcc-0__13.1.1-2.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-base-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-libs-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@setup-0__2.14.3-2.fc38.x86_64//rpm",
|
|
||||||
"@tzdata-0__2023c-1.fc38.x86_64//rpm",
|
|
||||||
],
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
rpmtree(
|
|
||||||
name = "libvirt-devel",
|
|
||||||
rpms = [
|
|
||||||
"@alternatives-0__1.24-1.fc38.x86_64//rpm",
|
|
||||||
"@audit-libs-0__3.1.1-1.fc38.x86_64//rpm",
|
|
||||||
"@authselect-0__1.4.2-2.fc38.x86_64//rpm",
|
|
||||||
"@authselect-libs-0__1.4.2-2.fc38.x86_64//rpm",
|
|
||||||
"@basesystem-0__11-15.fc38.x86_64//rpm",
|
|
||||||
"@bash-0__5.2.15-3.fc38.x86_64//rpm",
|
|
||||||
"@bzip2-libs-0__1.0.8-13.fc38.x86_64//rpm",
|
|
||||||
"@ca-certificates-0__2023.2.60-2.fc38.x86_64//rpm",
|
|
||||||
"@coreutils-single-0__9.1-12.fc38.x86_64//rpm",
|
|
||||||
"@cracklib-0__2.9.7-31.fc38.x86_64//rpm",
|
|
||||||
"@crypto-policies-0__20230301-1.gita12f7b2.fc38.x86_64//rpm",
|
|
||||||
"@cyrus-sasl-0__2.1.28-9.fc38.x86_64//rpm",
|
|
||||||
"@cyrus-sasl-gssapi-0__2.1.28-9.fc38.x86_64//rpm",
|
|
||||||
"@cyrus-sasl-lib-0__2.1.28-9.fc38.x86_64//rpm",
|
|
||||||
"@fedora-gpg-keys-0__38-1.x86_64//rpm",
|
|
||||||
"@fedora-release-common-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-release-container-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-release-identity-basic-0__38-36.x86_64//rpm",
|
|
||||||
"@fedora-repos-0__38-1.x86_64//rpm",
|
|
||||||
"@filesystem-0__3.18-3.fc38.x86_64//rpm",
|
|
||||||
"@gawk-0__5.1.1-5.fc38.x86_64//rpm",
|
|
||||||
"@gdbm-libs-1__1.23-3.fc38.x86_64//rpm",
|
|
||||||
"@glib2-0__2.76.3-1.fc38.x86_64//rpm",
|
|
||||||
"@glibc-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibc-common-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@glibc-langpack-sl-0__2.37-4.fc38.x86_64//rpm",
|
|
||||||
"@gmp-1__6.2.1-4.fc38.x86_64//rpm",
|
|
||||||
"@gnutls-0__3.8.0-2.fc38.x86_64//rpm",
|
|
||||||
"@grep-0__3.8-3.fc38.x86_64//rpm",
|
|
||||||
"@gzip-0__1.12-3.fc38.x86_64//rpm",
|
|
||||||
"@keyutils-libs-0__1.6.1-6.fc38.x86_64//rpm",
|
|
||||||
"@krb5-libs-0__1.20.1-8.fc38.x86_64//rpm",
|
|
||||||
"@libacl-0__2.3.1-6.fc38.x86_64//rpm",
|
|
||||||
"@libattr-0__2.5.1-6.fc38.x86_64//rpm",
|
|
||||||
"@libblkid-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libcap-0__2.48-6.fc38.x86_64//rpm",
|
|
||||||
"@libcap-ng-0__0.8.3-5.fc38.x86_64//rpm",
|
|
||||||
"@libcom_err-0__1.46.5-4.fc38.x86_64//rpm",
|
|
||||||
"@libcurl-minimal-0__8.0.1-2.fc38.x86_64//rpm",
|
|
||||||
"@libdb-0__5.3.28-55.fc38.x86_64//rpm",
|
|
||||||
"@libeconf-0__0.4.0-5.fc38.x86_64//rpm",
|
|
||||||
"@libevent-0__2.1.12-8.fc38.x86_64//rpm",
|
|
||||||
"@libfdisk-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libffi-0__3.4.4-2.fc38.x86_64//rpm",
|
|
||||||
"@libgcc-0__13.1.1-2.fc38.x86_64//rpm",
|
|
||||||
"@libidn2-0__2.3.4-2.fc38.x86_64//rpm",
|
|
||||||
"@libmount-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libnghttp2-0__1.52.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libnl3-0__3.7.0-3.fc38.x86_64//rpm",
|
|
||||||
"@libnsl2-0__2.0.0-5.fc38.x86_64//rpm",
|
|
||||||
"@libpkgconf-0__1.8.0-6.fc38.x86_64//rpm",
|
|
||||||
"@libpwquality-0__1.4.5-3.fc38.x86_64//rpm",
|
|
||||||
"@libselinux-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libsemanage-0__3.5-2.fc38.x86_64//rpm",
|
|
||||||
"@libsepol-0__3.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libsigsegv-0__2.14-4.fc38.x86_64//rpm",
|
|
||||||
"@libsmartcols-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libssh-0__0.10.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libssh-config-0__0.10.5-1.fc38.x86_64//rpm",
|
|
||||||
"@libssh2-0__1.10.0-7.fc38.x86_64//rpm",
|
|
||||||
"@libtasn1-0__4.19.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libtirpc-0__1.3.3-1.rc1.fc38.x86_64//rpm",
|
|
||||||
"@libunistring-0__1.1-3.fc38.x86_64//rpm",
|
|
||||||
"@libunistring1.0-0__1.0-1.fc38.x86_64//rpm",
|
|
||||||
"@libutempter-0__1.2.1-8.fc38.x86_64//rpm",
|
|
||||||
"@libuuid-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@libverto-0__0.3.2-5.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-devel-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libvirt-libs-0__8.10.0-2.fc38.x86_64//rpm",
|
|
||||||
"@libwsman1-0__2.7.1-10.fc38.x86_64//rpm",
|
|
||||||
"@libxcrypt-0__4.4.35-1.fc38.x86_64//rpm",
|
|
||||||
"@libxml2-0__2.10.4-1.fc38.x86_64//rpm",
|
|
||||||
"@libzstd-0__1.5.5-1.fc38.x86_64//rpm",
|
|
||||||
"@lz4-libs-0__1.9.4-2.fc38.x86_64//rpm",
|
|
||||||
"@mpfr-0__4.1.1-3.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-base-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@ncurses-libs-0__6.4-3.20230114.fc38.x86_64//rpm",
|
|
||||||
"@nettle-0__3.8-3.fc38.x86_64//rpm",
|
|
||||||
"@numactl-libs-0__2.0.16-2.fc38.x86_64//rpm",
|
|
||||||
"@openldap-0__2.6.4-1.fc38.x86_64//rpm",
|
|
||||||
"@openssl-libs-1__3.0.9-1.fc38.x86_64//rpm",
|
|
||||||
"@p11-kit-0__0.24.1-6.fc38.x86_64//rpm",
|
|
||||||
"@p11-kit-trust-0__0.24.1-6.fc38.x86_64//rpm",
|
|
||||||
"@pam-0__1.5.2-16.fc38.x86_64//rpm",
|
|
||||||
"@pam-libs-0__1.5.2-16.fc38.x86_64//rpm",
|
|
||||||
"@pcre2-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pcre2-syntax-0__10.42-1.fc38.1.x86_64//rpm",
|
|
||||||
"@pkgconf-0__1.8.0-6.fc38.x86_64//rpm",
|
|
||||||
"@pkgconf-m4-0__1.8.0-6.fc38.x86_64//rpm",
|
|
||||||
"@pkgconf-pkg-config-0__1.8.0-6.fc38.x86_64//rpm",
|
|
||||||
"@popt-0__1.19-2.fc38.x86_64//rpm",
|
|
||||||
"@readline-0__8.2-3.fc38.x86_64//rpm",
|
|
||||||
"@sed-0__4.8-12.fc38.x86_64//rpm",
|
|
||||||
"@setup-0__2.14.3-2.fc38.x86_64//rpm",
|
|
||||||
"@shadow-utils-2__4.13-6.fc38.x86_64//rpm",
|
|
||||||
"@systemd-libs-0__253.5-1.fc38.x86_64//rpm",
|
|
||||||
"@tzdata-0__2023c-1.fc38.x86_64//rpm",
|
|
||||||
"@util-linux-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@util-linux-core-0__2.38.1-4.fc38.x86_64//rpm",
|
|
||||||
"@xz-libs-0__5.4.1-1.fc38.x86_64//rpm",
|
|
||||||
"@yajl-0__2.1.0-20.fc38.x86_64//rpm",
|
|
||||||
"@zlib-0__1.2.13-3.fc38.x86_64//rpm",
|
|
||||||
],
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
tar2files(
|
|
||||||
name = "cryptsetup-libs",
|
|
||||||
files = {
|
|
||||||
"/usr/include": ["libcryptsetup.h"],
|
|
||||||
"/usr/lib64": [
|
|
||||||
"ld-linux-x86-64.so.2",
|
|
||||||
"libargon2.so.1",
|
|
||||||
"libblkid.so.1.1.0",
|
|
||||||
"libc.so.6",
|
|
||||||
"libcrypto.so.3.0.9",
|
|
||||||
"libcryptsetup.so.12.9.0",
|
|
||||||
"libdevmapper.so.1.02",
|
|
||||||
"libjson-c.so.5.2.0",
|
|
||||||
"libm.so.6",
|
|
||||||
"libselinux.so.1",
|
|
||||||
"libssl.so.3.0.9",
|
|
||||||
"libudev.so.1.7.6",
|
|
||||||
"libuuid.so.1.3.0",
|
|
||||||
"libz.so.1.2.13",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
tar = ":cryptsetup-devel",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
tar2files(
|
|
||||||
name = "ld-linux-x86-64-libs",
|
|
||||||
files = {"/usr/lib64": ["ld-linux-x86-64.so.2"]},
|
|
||||||
tar = ":glibc",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
tar2files(
|
|
||||||
name = "libvirt-libs",
|
|
||||||
files = {
|
|
||||||
"/usr/include/libvirt": [
|
|
||||||
"libvirt-admin.h",
|
|
||||||
"libvirt-common.h",
|
|
||||||
"libvirt-domain-checkpoint.h",
|
|
||||||
"libvirt-domain-snapshot.h",
|
|
||||||
"libvirt-domain.h",
|
|
||||||
"libvirt-event.h",
|
|
||||||
"libvirt-host.h",
|
|
||||||
"libvirt-interface.h",
|
|
||||||
"libvirt-lxc.h",
|
|
||||||
"libvirt-network.h",
|
|
||||||
"libvirt-nodedev.h",
|
|
||||||
"libvirt-nwfilter.h",
|
|
||||||
"libvirt-qemu.h",
|
|
||||||
"libvirt-secret.h",
|
|
||||||
"libvirt-storage.h",
|
|
||||||
"libvirt-stream.h",
|
|
||||||
"libvirt.h",
|
|
||||||
"virterror.h",
|
|
||||||
],
|
|
||||||
"/usr/lib64": [
|
|
||||||
"ld-linux-x86-64.so.2",
|
|
||||||
"libacl.so.1.1.2301",
|
|
||||||
"libattr.so.1.1.2501",
|
|
||||||
"libaudit.so.1.0.0",
|
|
||||||
"libblkid.so.1.1.0",
|
|
||||||
"libc.so.6",
|
|
||||||
"libcap-ng.so.0.0.0",
|
|
||||||
"libcom_err.so.2.1",
|
|
||||||
"libcrypt.so.2.0.0",
|
|
||||||
"libcrypto.so.3.0.9",
|
|
||||||
"libcurl.so.4.8.0",
|
|
||||||
"libffi.so.8.1.2",
|
|
||||||
"libgcc_s-13-20230511.so.1",
|
|
||||||
"libgio-2.0.so.0.7600.3",
|
|
||||||
"libglib-2.0.so.0.7600.3",
|
|
||||||
"libgmodule-2.0.so.0.7600.3",
|
|
||||||
"libgmp.so.10.4.1",
|
|
||||||
"libgnutls.so.30.35.0",
|
|
||||||
"libgobject-2.0.so.0.7600.3",
|
|
||||||
"libgssapi_krb5.so.2.2",
|
|
||||||
"libhogweed.so.6.5",
|
|
||||||
"libidn2.so.0.3.8",
|
|
||||||
"libk5crypto.so.3.1",
|
|
||||||
"libkeyutils.so.1.9",
|
|
||||||
"libkrb5.so.3.3",
|
|
||||||
"libkrb5support.so.0.1",
|
|
||||||
"liblz4.so.1.9.4",
|
|
||||||
"liblzma.so.5.4.1",
|
|
||||||
"libmount.so.1.1.0",
|
|
||||||
"libnettle.so.8.5",
|
|
||||||
"libnghttp2.so.14.24.1",
|
|
||||||
"libnl-3.so.200.26.0",
|
|
||||||
"libnuma.so.1.0.0",
|
|
||||||
"libp11-kit.so.0.3.0",
|
|
||||||
"libpcre2-8.so.0.11.2",
|
|
||||||
"libsasl2.so.3.0.0",
|
|
||||||
"libselinux.so.1",
|
|
||||||
"libssh.so.4.9.5",
|
|
||||||
"libssh2.so.1.0.1",
|
|
||||||
"libssl.so.3.0.9",
|
|
||||||
"libtasn1.so.6.6.3",
|
|
||||||
"libtirpc.so.3.0.0",
|
|
||||||
"libunistring.so.5.0.0",
|
|
||||||
"libvirt-lxc.so.0.8010.0",
|
|
||||||
"libvirt-qemu.so.0.8010.0",
|
|
||||||
"libvirt.so.0.8010.0",
|
|
||||||
"libwsman.so.1.0.0",
|
|
||||||
"libwsman_client.so.5.0.0",
|
|
||||||
"libwsman_curl_client_transport.so.1.0.0",
|
|
||||||
"libxml2.so.2.10.4",
|
|
||||||
"libyajl.so.2.1.0",
|
|
||||||
"libz.so.1.2.13",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
tar = ":libvirt-devel",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
@ -1,7 +0,0 @@
|
|||||||
repositories:
|
|
||||||
- arch: x86_64
|
|
||||||
metalink: https://mirrors.fedoraproject.org/metalink?repo=fedora-38&arch=x86_64
|
|
||||||
name: 38-x86_64-primary-repo
|
|
||||||
- arch: x86_64
|
|
||||||
metalink: https://mirrors.fedoraproject.org/metalink?repo=updates-released-f38&arch=x86_64
|
|
||||||
name: 38-x86_64-update-repo
|
|
3879
rpm/rpms.bzl
3879
rpm/rpms.bzl
File diff suppressed because it is too large
Load Diff
@ -1,7 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
rm -f rpm/repo.yaml
|
|
||||||
bazel run //:bazeldnf -- init \
|
|
||||||
--fc 38 \
|
|
||||||
--arch x86_64 \
|
|
||||||
--output rpm/repo.yaml
|
|
@ -1,49 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -exuo pipefail
|
|
||||||
shopt -s inherit_errexit
|
|
||||||
|
|
||||||
bazel run //:bazeldnf -- fetch \
|
|
||||||
--repofile rpm/repo.yaml
|
|
||||||
bazel run //:bazeldnf -- rpmtree \
|
|
||||||
--workspace WORKSPACE.bazel \
|
|
||||||
--to-macro rpm/rpms.bzl%rpms \
|
|
||||||
--buildfile rpm/BUILD.bazel \
|
|
||||||
--repofile rpm/repo.yaml \
|
|
||||||
--name cryptsetup-devel \
|
|
||||||
cryptsetup-devel
|
|
||||||
bazel run //:bazeldnf -- rpmtree \
|
|
||||||
--workspace WORKSPACE.bazel \
|
|
||||||
--to-macro rpm/rpms.bzl%rpms \
|
|
||||||
--buildfile rpm/BUILD.bazel \
|
|
||||||
--repofile rpm/repo.yaml \
|
|
||||||
--name glibc \
|
|
||||||
glibc
|
|
||||||
bazel run //:bazeldnf -- rpmtree \
|
|
||||||
--workspace WORKSPACE.bazel \
|
|
||||||
--to-macro rpm/rpms.bzl%rpms \
|
|
||||||
--buildfile rpm/BUILD.bazel \
|
|
||||||
--repofile rpm/repo.yaml \
|
|
||||||
--name libvirt-devel \
|
|
||||||
libvirt-devel
|
|
||||||
bazel run //:bazeldnf -- rpmtree \
|
|
||||||
--workspace WORKSPACE.bazel \
|
|
||||||
--to-macro rpm/rpms.bzl%rpms \
|
|
||||||
--buildfile rpm/BUILD.bazel \
|
|
||||||
--repofile rpm/repo.yaml \
|
|
||||||
--name containerized-libvirt \
|
|
||||||
libvirt-daemon-config-network \
|
|
||||||
libvirt-daemon-kvm \
|
|
||||||
qemu-kvm \
|
|
||||||
swtpm \
|
|
||||||
swtpm-tools \
|
|
||||||
iptables-legacy \
|
|
||||||
dnsmasq \
|
|
||||||
libvirt-client
|
|
||||||
bazel run //:bazeldnf -- prune \
|
|
||||||
--workspace WORKSPACE.bazel \
|
|
||||||
--to-macro rpm/rpms.bzl%rpms \
|
|
||||||
--buildfile rpm/BUILD.bazel
|
|
||||||
bazel run //rpm:ldd-cryptsetup
|
|
||||||
bazel run //rpm:ldd-libvirt
|
|
||||||
bazel run //rpm:ldd-glibc
|
|
Loading…
Reference in New Issue
Block a user