From a459a647b02e682ece0614516490424b23e42851 Mon Sep 17 00:00:00 2001 From: Karsten Hopp Date: Thu, 23 Mar 2017 20:36:11 +0100 Subject: [PATCH] add files from stg --- create-modulemd.sh | 141 ++++ package.list | 430 +++++++++++ shared-userspace.yaml | 1694 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 2265 insertions(+) create mode 100755 create-modulemd.sh create mode 100644 package.list create mode 100644 shared-userspace.yaml diff --git a/create-modulemd.sh b/create-modulemd.sh new file mode 100755 index 0000000..ddc42e1 --- /dev/null +++ b/create-modulemd.sh @@ -0,0 +1,141 @@ +#!/bin/bash +# +#TODO: output api +# +# Walkthrough: +# - get a list of srpm package names that are included in BRT +# - loop until ".end" got entered: +# - read newpackage from stdin +# - check if newpackage is in srpms list > next loop +# - check if newpackage is in module rpm list > next loop +# - get build deps from newpackage +# - loop over build deps: +# - check if build dep is in srpms list > next loop +# - check if build dep is in module rpm list > next loop +# - otherwise add build dep to module rpm list +# and output modulemd snipped with rpm name and rationale + + +## #get a list of build deps from a certain binary rpm: +## repoquery --disablerepo=Dropbox --releasever 26 --requires --recursive --resolve --qf "%{SOURCERPM}" vim-minimal | sort -n | uniq + +binaryrpm="" +modulerpms=() +modulerpmsfile=`mktemp` +moduleapifile=`mktemp` +moduleprofilefile=`mktemp` + + +debug() { + echo "$@" 1>&2 +# return +} + +#usage: containsElement "blaha" "${array[@]}" +containsElement () { + local e + for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done + return 1 +} + +gather_modulemd_rpms() { + if [ "${1}" != "" ]; then + echo " ${1}:" >> $modulerpmsfile + echo " rationale: ${@:2}" >> $modulerpmsfile + echo " ref: f26" >> $modulerpmsfile + fi +} + +gather_profile() { + if [ "${1}" != "" ]; then + echo " - ${1}" >> $moduleprofilefile + fi +} + +gather_api() { + if [ "${1}" != "" ]; then + echo " - ${1}" >> $moduleapifile + fi +} + + +# "acl at attr audit babeltrace basesystem bash bc binutils byacc ...." +srpms=(`echo 'rpm -qp --qf "%{SOURCERPM}\n" /srv/groups/modularity/repos/base-runtime/26/*.rpm | sed -e "s/-[^-]*-[^-]*.base_runtime_master_20170308145737.src.rpm$//"| sort -n | uniq' | ssh fedorapeople.org 2>/dev/null`) + +for binaryrpm in $*; do + # make sure it is the name of an srpm: + binaryrpm_srpm=`repoquery --releasever 26 -q --qf "%{SOURCERPM}" $binaryrpm 2>/dev/null | tail -1 | sed -e "s/-[^-]*-[^-]*.src.rpm//"` + if [ "$binaryrpm_srpm" == "" ]; then + debug "no source rpm found for $binaryrpm" + continue + fi + binaryrpm=$binaryrpm_srpm + if containsElement "$binaryrpm" "${srpms[@]}" -eq 1 ; then + debug "$binaryrpm is already in BRT" + continue + fi + + if containsElement "$binaryrpm" "${modulerpms[@]}" -eq 1 ; then + debug "$binaryrpm is already in the list of deps for this module" + continue + fi + modulerpms+=($binaryrpm) + gather_profile $binaryrpm + gather_api $binaryrpm + gather_modulemd_rpms $binaryrpm "Component for shared userspace." + deps=`repoquery --enablerepo=fedora-source --releasever 26 --archlist=src -q --requires --recursive $binaryrpm 2>/dev/null | sed -e "s/ .*$//"` + #debug "deps: $deps" + for dep in $deps; do + sdep=`repoquery --releasever 26 -q --qf "%{SOURCERPM}" --whatprovides $dep 2>/dev/null | tail -1 | sed -e "s/-[^-]*-[^-]*.src.rpm//"` + #debug "dep: x${sdep}x" + if containsElement "$sdep" "${srpms[@]}" -eq 1 ; then + debug "$sdep is already in BRT" + continue + fi + + if containsElement "$sdep" "${modulerpms[@]}" -eq 1 ; then + debug "$sdep is already in the list of deps for this module" + continue + fi + modulerpms+=($sdep) + gather_profile $sdep + gather_modulemd_rpms $sdep "Requirement for ${binaryrpm}." + done +done +echo ${modulerpms[@]} + +cat << EOT +document: modulemd +version: 1 +data: + summary: Shared Userspace Module + description: A module that contains libraries, binaries, etc + that are shared between all other modules. + license: + module: [ MIT ] + dependencies: + buildrequires: + base_runtime: master + requires: + base_runtime: master + references: + community: https://fedoraproject.org/wiki/Modularity + documentation: https://fedoraproject.org/wiki/Fedora_Packaging_Guidelines_for_Modules + tracker: https://taiga.fedorainfracloud.org/project/modularity + profiles: + default: + rpms: +EOT +cat $moduleprofilefile +cat << EOT + api: + rpms: +EOT +cat $moduleapifile +cat << EOT + components: + rpms: +EOT +cat $modulerpmsfile + +rm -f $moduleprofilefile $moduleapifile $modulerpmsfile diff --git a/package.list b/package.list new file mode 100644 index 0000000..b79b751 --- /dev/null +++ b/package.list @@ -0,0 +1,430 @@ +alsa-lib alsa-lib +elfutils-libelf elfutils +glibc glibc +glibc-utils glibc +gtk2 gtk2 +hesiod hesiod +krb5-libs krb5 +libgcc gcc +libstdc++ gcc +libtbbmalloc_proxy tbb +libtbbmalloc tbb +libusb libusb +libvirt-client libvirt +libxml2 libxml2 +libxslt libxslt +mesa-libGL mesa +mesa-libGLU mesa-libGLU +motif motif +pam pam +SDL SDL +acl acl +atomic atomic +atomic-devmode atomic-devmode +attr attr +audit-libs audit +audit-libs-python audit +authconfig authconfig +avahi-libs avahi +basesystem basesystem +bash bash +bash-completion bash-completion +bind-libs bind +bind-libs-lite bind +bind-license bind +bind-utils bind +biosdevname biosdevname +boost-iostreams boost +boost-program-options boost +boost-random boost +boost-regex boost +boost-system boost +boost-thread boost +bridge-utils bridge-utils +bzip2 bzip2 +bzip2-libs bzip2 +ca-certificates ca-certificates +c-ares c-ares +ceph-common ceph +checkpolicy checkpolicy +chkconfig chkconfig +chrony chrony +cloud-init cloud-init +cloud-utils-growpart cloud-utils +cockpit-bridge cockpit +cockpit-docker cockpit +cockpit-ostree cockpit +cockpit-system cockpit +conntrack-tools conntrack-tools +container-selinux docker +coreutils coreutils +cpio cpio +cracklib cracklib +cracklib-dicts cracklib +criu criu +cronie cronie +cronie-anacron cronie +crontabs crontabs +cryptsetup cryptsetup +cryptsetup-libs cryptsetup +cups-libs cups +curl curl +cyrus-sasl-gssapi cyrus-sasl +cyrus-sasl-lib cyrus-sasl +dbus dbus +dbus-glib dbus +dbus-libs dbus +dbus-python dbus-python +device-mapper lvm2 +device-mapper-event lvm2 +device-mapper-event-libs lvm2 +device-mapper-libs lvm2 +device-mapper-multipath device-mapper-multipath +device-mapper-multipath-libs device-mapper-multipath +device-mapper-persistent-data device-mapper-persistent-data +dhclient dhcp +dhcp-common dhcp +dhcp-libs dhcp +diffutils diffutils +dmidecode dmidecode +dnsmasq dnsmasq +docker docker +docker-client docker-client +docker-client-latest docker-latest +docker-common docker +docker-latest docker-latest +docker-lvm-plugin not found +docker-novolume-plugin docker +dracut dracut +dracut-network dracut +e2fsprogs e2fsprogs +e2fsprogs-libs e2fsprogs +efibootmgr efibootmgr +efivar-libs efivar +elfutils-libelf elfutils +elfutils-libs elfutils +etcd etcd +ethtool ethtool +expat expat +fcgi fcgi +file file +file-libs file +filesystem filesystem +findutils findutils +fipscheck fipscheck +fipscheck-lib fipscheck +flannel flannel +freetype freetype +fuse fuse +fuse-libs fuse +gawk gawk +gdbm gdbm +GeoIP GeoIP +gettext gettext +gettext-libs gettext +glib2 glib2 +glibc glibc +glibc-common glibc +glib-networking glib-networking +glusterfs glusterfs +glusterfs-client-xlators glusterfs +glusterfs-fuse glusterfs +glusterfs-libs glusterfs +gmp gmp +gnupg2 gnupg2 +gnutls gnutls +gobject-introspection gobject-introspection +gomtree gomtree +gperftools-libs gperftools +gpgme gpgme +grep grep +groff-base groff +grub2 grub2 +grub2-efi grub2 +grub2-tools grub2 +grubby grubby +gsettings-desktop-schemas gsettings-desktop-schemas +gssproxy gssproxy +gzip gzip +hardlink hardlink +hostname hostname +info texinfo +initscripts initscripts +iproute iproute +iptables iptables +iptables-services iptables +iputils iputils +irqbalance irqbalance +iscsi-initiator-utils iscsi-initiator-utils +iscsi-initiator-utils-iscsiuio iscsi-initiator-utils +jansson jansson +json-glib json-glib +kernel kernel +kexec-tools kexec-tools +keyutils keyutils +keyutils-libs keyutils +kmod kmod +kmod-libs kmod +kpartx device-mapper-multipath +krb5-libs krb5 +kubernetes-client kubernetes +kubernetes-node kubernetes +less less +libacl acl +libaio libaio +libarchive libarchive +libassuan libassuan +libattr attr +libbabeltrace babeltrace +libbasicobjects ding-libs +libblkid util-linux +libcap libcap +libcap-ng libcap-ng +libcephfs1 ceph +libcgroup libcgroup +libcollection ding-libs +libcom_err e2fsprogs +libcroco libcroco +libcurl curl +libdb libdb +libdb-utils libdb +libdhash ding-libs +libedit libedit +libevent libevent +libffi libffi +libgcc gcc +libgcrypt libgcrypt +libgomp gcc +libgpg-error libgpg-error +libgudev1 libgudev +libicu icu +libidn libidn +libini_config ding-libs +libipa_hbac sssd +libldb libldb +libmnl libmnl +libmodman libmodman +libmount util-linux +libndp libndp +libnetfilter_conntrack libnetfilter_conntrack +libnetfilter_cthelper libnetfilter_cthelper +libnetfilter_cttimeout libnetfilter_cttimeout +libnetfilter_queue libnetfilter_queue +libnfnetlink libnfnetlink +libnfsidmap libnfsidmap +libnl libnl3 +libnl3 libnl3 +libpath_utils ding-libs +libpcap libpcap +libproxy libproxy +libpwquality libpwquality +librados2 ceph +librbd1 ceph +libref_array ding-libs +librepo librepo +libreport-filesystem libreport +librgw2 ceph +libseccomp libseccomp +libselinux libselinux +libselinux-python libselinux +libselinux-utils libselinux +libsemanage libsemanage +libsemanage-python libsemanage +libsepol libsepol +libsmbclient samba +libsolv libsolv +libsoup libsoup +libss e2fsprogs +libssh2 libssh2 +libsss_autofs sssd +libsss_idmap sssd +libsss_nss_idmap sssd +libsss_sudo sssd +libstdc++ gcc +libtalloc libtalloc +libtasn1 libtasn1 +libtdb libtdb +libtevent libtevent +libtirpc libtirpc +libunistring libunistring +libunwind libunwind +libuser libuser +libutempter libutempter +libuuid util-linux +libverto libverto +libverto-tevent libverto +libwbclient samba +libxml2 libxml2 +libxml2-python libxml2 +libyaml libyaml +linux-firmware linux-firmware +logrotate logrotate +lttng-ust lttng-ust +lua lua +lvm2 lvm2 +lvm2-libs lvm2 +lzo lzo +m2crypto m2crypto +make make +mdadm mdadm +mokutil mokutil +mozjs17 mozjs17 +nano nano +ncurses ncurses +ncurses-base ncurses +ncurses-libs ncurses +nettle nettle +net-tools net-tools +NetworkManager NetworkManager +NetworkManager-libnm NetworkManager +newt newt +newt-python newt +nfs-utils nfs-utils +nmap-ncat nmap +nspr nspr +nss nss +nss-altfiles nss-altfiles +nss-softokn nss-softokn +nss-softokn-freebl nss-softokn +nss-sysinit nss +nss-tools nss +nss-util nss-util +numactl-libs numactl +oci-register-machine oci-register-machine +oci-systemd-hook oci-systemd-hook +openldap openldap +openssh openssh +openssh-clients openssh +openssh-server openssh +openssl openssl +openssl-libs openssl +os-prober os-prober +ostree ostree +ostree-grub2 ostree +p11-kit p11-kit +p11-kit-trust p11-kit +pam pam +passwd passwd +pciutils-libs pciutils +pcre pcre +pinentry pinentry +pkgconfig pkgconfig +policycoreutils policycoreutils +policycoreutils-python policycoreutils +polkit polkit +polkit-pkla-compat polkit-pkla-compat +popt popt +ppp ppp +procps-ng procps-ng +protobuf-c protobuf-c +pth pth +pygobject3-base python-gobject-base +pygpgme pygpgme +pyliblzma pyliblzma +python python +python-backports python-backports +python-backports-ssl_match_hostname python-backports-ssl_match_hostname +python-cephfs ceph +python-chardet python-chardet +python-configobj python3-configobj +python-dateutil python3-dateutil +python-decorator python3-decorator +python-dmidecode python-dmidecode +python-docker-py python-docker-py +python-docker-pycreds python3-docker-pycreds +python-ethtool python-ethtool +python-iniparse python3-iniparse +python-ipaddress python-ipaddress +python-IPy python-IPy +python-jsonpatch python-jsonpatch +python-jsonpointer python-jsonpointer +python-libs python +python-perf kernel +python-prettytable python-prettytable +python-pycurl python-pycurl +python-pyudev python3-pyudev +python-rados ceph +python-rbd ceph +python-requests python-requests +python-rhsm python-rhsm +python-rhsm-certificates python-rhsm +python-setuptools python3-setuptools +python-six python-six +python-slip python-slip +python-slip-dbus python-slip +python-sssdconfig python3-sssdconfig +python-urlgrabber python-urlgrabber +python-urllib3 python-urllib3 +python-websocket-client python-websocket-client +pyxattr pyxattr +PyYAML PyYAML +qrencode-libs qrencode +quota quota +quota-nls quota +readline readline +rpcbind rpcbind +rpm rpm +rpm-build-libs rpm +rpm-libs rpm +rpm-python rpm +rsync rsync +runc runc +samba-client-libs samba +samba-common samba +sed sed +selinux-policy selinux-policy +selinux-policy-targeted selinux-policy +setools-console setools +setools-libs setools +setup setup +sg3_utils sg3_utils +sg3_utils-libs sg3_utils +shadow-utils shadow-utils +shared-mime-info shared-mime-info +shim shim-signed +skopeo skopeo +skopeo-containers skopeo +slang slang +snappy snappy +socat socat +sqlite sqlite +sssd sssd +sssd-ad sssd +sssd-client sssd +sssd-common sssd +sssd-common-pac sssd +sssd-ipa sssd +sssd-krb5 sssd +sssd-krb5-common sssd +sssd-ldap sssd +sssd-proxy sssd +subscription-manager subscription-manager +subscription-manager-plugin-container subscription-manager +subscription-manager-plugin-ostree subscription-manager +sudo sudo +systemd systemd +systemd-libs systemd +systemd-sysv systemd +tar tar +tcp_wrappers tcp_wrappers +tcp_wrappers-libs tcp_wrappers +tmux tmux +trousers trousers +tuned tuned +tuned-profiles-atomic tuned +tzdata tzdata +usermode usermode +userspace-rcu userspace-rcu +ustr ustr +util-linux util-linux +vim-minimal vim +virt-what virt-what +which which +wpa_supplicant wpa_supplicant +xfsprogs xfsprogs +xz xz +xz-libs xz +yajl yajl +yum yum +yum-metadata-parser yum-metadata-parser +zlib zlib diff --git a/shared-userspace.yaml b/shared-userspace.yaml new file mode 100644 index 0000000..850abfd --- /dev/null +++ b/shared-userspace.yaml @@ -0,0 +1,1694 @@ +document: modulemd +version: 1 +data: + summary: Shared Userspace Module + description: A module that contains libraries, binaries, etc + that are shared between all other modules. + license: + module: [ MIT ] + dependencies: + buildrequires: + base-runtime: master + requires: + base-runtime: master + references: + community: https://fedoraproject.org/wiki/Modularity + documentation: https://fedoraproject.org/wiki/Fedora_Packaging_Guidelines_for_Modules + tracker: https://taiga.fedorainfracloud.org/project/modularity + profiles: + default: + rpms: + - alsa-lib + - autoconf + - automake + - doxygen + - gtk2 + - cups + - gtk-doc + - atk + - cairo + - gdk-pixbuf2 + - pango + - libXcomposite + - libXcursor + - libXdamage + - libXfixes + - libXi + - libXinerama + - libXrandr + - libXrender + - hesiod + - libusb + - libusbx + - libvirt + - qemu + - augeas + - avahi + - ceph + - dnsmasq + - ebtables + - fuse + - git + - glusterfs + - iscsi-initiator-utils + - libnl3 + - libpciaccess + - libssh + - openwsman + - libxslt + - netcf + - nfs-utils + - numactl + - numad + - parted + - perl + - polkit + - python2 + - qt + - radvd + - sanlock + - scrub + - sheepdog + - systemtap + - wireshark + - xen + - xhtml1-dtds + - yajl + - mesa + - bison + - clang + - libXext + - libXmu + - libXxf86vm + - libclc + - libdrm + - libglvnd + - libomxil-bellagio + - libva + - libvdpau + - libxshmfence + - llvm + - imake + - opencl-filesystem + - valgrind + - wayland + - python-mako + - vulkan + - xorg-x11-proto-devel + - mesa-libGLU + - motif + - libXft + - libXp + - libXt + - libjpeg-turbo + - xorg-x11-xbitmaps + - SDL + - arts + - audiofile + - esound + - libX11 + - nas + - pulseaudio + - atomic + - go-compilers + - golang-github-cpuguy83-go-md2man + - ostree + - policycoreutils + - PyYAML + - python-dateutil + - dbus-python + - python-docker + - pygobject3 + - python-requests + - atomic-devmode + - authconfig + - intltool + - bash-completion + - bind + - GeoIP + - docbook-style-xsl + - mariadb + - postgresql + - python-ply + - biosdevname + - pciutils + - boost + - icu + - mpich + - openmpi + - bridge-utils + - sysfsutils + - c-ares + - checkpolicy + - chrony + - libedit + - pps-tools + - cloud-init + - iproute + - python-configobj + - python-httpretty + - python-jinja2 + - python-jsonpatch + - python-mock + - python-nose + - python-oauthlib + - python-prettytable + - pyserial + - python-unittest2 + - cloud-utils + - cockpit + - glib-networking + - golang + - pcp + - json-glib + - xmlto + - conntrack-tools + - libmnl + - libnetfilter_conntrack + - libnetfilter_cthelper + - libnetfilter_cttimeout + - libnetfilter_queue + - libnfnetlink + - container-selinux + - selinux-policy + - criu + - asciidoc + - libnet + - protobuf-c + - protobuf + - dbus-glib + - chrpath + - device-mapper-multipath + - libaio + - device-mapper-persistent-data + - dhcp + - bind99 + - dmidecode + - docker + - btrfs-progs + - cmake + - godep + - docker-client + - apache-commons-compress + - bouncycastle-pkix + - glassfish-annotation-api + - glassfish-hk2 + - glassfish-jax-rs-api + - glassfish-jaxb-api + - jackson-annotations + - jackson-core + - jackson-databind + - jackson-dataformat-yaml + - jackson-datatypes-collections + - jackson-jaxrs-providers + - jackson-module-jaxb-annotations + - jersey + - jnr-unixsocket + - javapackages-tools + - maven-surefire + - maven-source-plugin + - sonatype-oss-parent + - docker-latest + - efibootmgr + - efivar + - etcd + - golang-github-akrennmair-gopcap + - golang-github-bgentry-speakeasy + - golang-github-boltdb-bolt + - golang-github-cheggaaa-pb + - golang-github-cockroachdb-cmux + - golang-github-coreos-go-semver + - golang-github-coreos-go-systemd + - golang-github-coreos-pkg + - golang-github-dustin-go-humanize + - golang-github-ghodss-yaml + - golang-googlecode-gogoprotobuf + - golang-github-golang-groupcache + - golang-googlecode-goprotobuf + - golang-github-google-btree + - golang-github-grpc-ecosystem-grpc-gateway + - golang-github-jonboulle-clockwork + - golang-github-kr-pty + - golang-github-olekukonko-tablewriter + - golang-github-prometheus-client_golang + - golang-github-prometheus-procfs + - golang-github-spacejam-loghisto + - golang-github-spf13-cobra + - golang-github-spf13-pflag + - golang-github-ugorji-go + - golang-github-urfave-cli + - golang-github-xiang90-probing + - golang-googlecode-go-crypto + - golang-googlecode-net + - golang-github-grpc-grpc-go + - ethtool + - fcgi + - fipscheck + - flannel + - golang-github-aws-aws-sdk-go + - golang-github-coreos-go-iptables + - golang-github-golang-glog + - golang-github-gorilla-mux + - golang-github-vishvananda-netlink + - golang-googlecode-goauth2 + - golang-googlecode-google-api-client + - gomtree + - gperftools + - libunwind + - perl-generators + - grubby + - gsettings-desktop-schemas + - gssproxy + - ding-libs + - hardlink + - hostname + - initscripts + - iputils + - docbook-utils + - perl-SGMLSpm + - irqbalance + - jansson + - python-sphinx + - kexec-tools + - snappy + - kubernetes + - go-bindata + - rsync + - libcgroup + - libevent + - sssd + - check + - cifs-utils + - diffstat + - http-parser + - cmocka + - libldb + - libnfsidmap + - samba + - libtalloc + - libtdb + - libtevent + - nss_wrapper + - uid_wrapper + - libmodman + - libndp + - libproxy + - kf5-kconfig + - webkitgtk4 + - NetworkManager + - js + - libreport + - desktop-file-utils + - gtk3 + - json-c + - libtar + - newt + - satyr + - xmlrpc-c + - libsoup + - vala + - libtirpc + - libuser + - fakeroot + - linuxdoc-tools + - libyaml + - logrotate + - lttng-ust + - userspace-rcu + - m2crypto + - python2-typing + - swig + - mdadm + - mokutil + - gnu-efi + - mozjs17 + - autoconf213 + - perl-Getopt-Long + - nano + - net-tools + - bluez + - nmap + - dos2unix + - pygtk2 + - nss-altfiles + - oci-register-machine + - golang-github-godbus-dbus + - golang-gopkg-yaml + - oci-systemd-hook + - openssh + - perl-podlators + - tcp_wrappers + - xorg-x11-xauth + - passwd + - pinentry + - gcr + - libsecret + - pkgconfig + - polkit-pkla-compat + - ppp + - compat-openssl10 + - pyliblzma + - python-backports + - python-backports-ssl_match_hostname + - python-chardet + - python-dmidecode + - python-docker-py + - pytest + - python-coverage + - python-flake8 + - python-ipaddress + - python-pytest-cov + - python-websocket-client + - python-docker-pycreds + - python-ethtool + - python-IPy + - python-rhsm + - python-slip + - python-urlgrabber + - python-pycurl + - pyxattr + - quota + - rpcbind + - runc + - golang-github-Sirupsen-logrus + - golang-github-docker-go-units + - golang-github-opencontainers-runtime-spec + - golang-github-seccomp-libseccomp-golang + - golang-github-syndtr-gocapability + - setools + - qt5-qtbase + - sg3_utils + - shared-mime-info + - perl-XML-Parser + - shim-signed + - pesign + - shim + - skopeo + - slang + - oniguruma + - socat + - subscription-manager + - GConf2 + - libnotify + - redhat-lsb + - rarian + - sudo + - sendmail + - tmux + - trousers + - tuned + - usermode + - libSM + - startup-notification + - virt-what + - wpa_supplicant + - xfsprogs + - yum + - python-pygpgme + - python-iniparse + - yum-metadata-parser + api: + rpms: + - alsa-lib + - gtk2 + - hesiod + - libusb + - libvirt + - mesa + - mesa-libGLU + - motif + - SDL + - atomic + - atomic-devmode + - authconfig + - bash-completion + - bind + - biosdevname + - boost + - bridge-utils + - c-ares + - checkpolicy + - chrony + - cloud-init + - cloud-utils + - cockpit + - conntrack-tools + - container-selinux + - criu + - dbus-glib + - device-mapper-multipath + - device-mapper-persistent-data + - dhcp + - dmidecode + - docker + - docker-client + - docker-latest + - efibootmgr + - etcd + - ethtool + - fcgi + - fipscheck + - flannel + - gomtree + - gperftools + - grubby + - gsettings-desktop-schemas + - gssproxy + - hardlink + - hostname + - initscripts + - iputils + - irqbalance + - jansson + - kexec-tools + - kubernetes + - libcgroup + - libevent + - sssd + - libmodman + - libndp + - libproxy + - libreport + - libsoup + - libtirpc + - libuser + - libyaml + - logrotate + - lttng-ust + - m2crypto + - mdadm + - mokutil + - mozjs17 + - nano + - net-tools + - nmap + - nss-altfiles + - oci-register-machine + - oci-systemd-hook + - openssh + - passwd + - pinentry + - pkgconfig + - polkit-pkla-compat + - ppp + - pyliblzma + - python-backports + - python-backports-ssl_match_hostname + - python-chardet + - python-dmidecode + - python-docker-py + - python-ethtool + - python-IPy + - python-rhsm + - python-slip + - python-urlgrabber + - pyxattr + - quota + - rpcbind + - runc + - setools + - sg3_utils + - shared-mime-info + - shim-signed + - skopeo + - slang + - socat + - subscription-manager + - sudo + - tmux + - trousers + - tuned + - usermode + - virt-what + - wpa_supplicant + - xfsprogs + - yum + components: + rpms: + alsa-lib: + rationale: Component for shared userspace. + ref: f26 + autoconf: + rationale: Requirement for alsa-lib. + ref: f26 + automake: + rationale: Requirement for alsa-lib. + ref: f26 + doxygen: + rationale: Requirement for alsa-lib. + ref: f26 + gtk2: + rationale: Component for shared userspace. + ref: f26 + cups: + rationale: Requirement for gtk2. + ref: f26 + gtk-doc: + rationale: Requirement for gtk2. + ref: f26 + atk: + rationale: Requirement for gtk2. + ref: f26 + cairo: + rationale: Requirement for gtk2. + ref: f26 + gdk-pixbuf2: + rationale: Requirement for gtk2. + ref: f26 + pango: + rationale: Requirement for gtk2. + ref: f26 + libXcomposite: + rationale: Requirement for gtk2. + ref: f26 + libXcursor: + rationale: Requirement for gtk2. + ref: f26 + libXdamage: + rationale: Requirement for gtk2. + ref: f26 + libXfixes: + rationale: Requirement for gtk2. + ref: f26 + libXi: + rationale: Requirement for gtk2. + ref: f26 + libXinerama: + rationale: Requirement for gtk2. + ref: f26 + libXrandr: + rationale: Requirement for gtk2. + ref: f26 + libXrender: + rationale: Requirement for gtk2. + ref: f26 + hesiod: + rationale: Component for shared userspace. + ref: f26 + libusb: + rationale: Component for shared userspace. + ref: f26 + libusbx: + rationale: Requirement for libusb. + ref: f26 + libvirt: + rationale: Component for shared userspace. + ref: f26 + qemu: + rationale: Requirement for libvirt. + ref: f26 + augeas: + rationale: Requirement for libvirt. + ref: f26 + avahi: + rationale: Requirement for libvirt. + ref: f26 + ceph: + rationale: Requirement for libvirt. + ref: f26 + dnsmasq: + rationale: Requirement for libvirt. + ref: f26 + ebtables: + rationale: Requirement for libvirt. + ref: f26 + fuse: + rationale: Requirement for libvirt. + ref: f26 + git: + rationale: Requirement for libvirt. + ref: f26 + glusterfs: + rationale: Requirement for libvirt. + ref: f26 + iscsi-initiator-utils: + rationale: Requirement for libvirt. + ref: f26 + libnl3: + rationale: Requirement for libvirt. + ref: f26 + libpciaccess: + rationale: Requirement for libvirt. + ref: f26 + libssh: + rationale: Requirement for libvirt. + ref: f26 + openwsman: + rationale: Requirement for libvirt. + ref: f26 + libxslt: + rationale: Requirement for libvirt. + ref: f26 + netcf: + rationale: Requirement for libvirt. + ref: f26 + nfs-utils: + rationale: Requirement for libvirt. + ref: f26 + numactl: + rationale: Requirement for libvirt. + ref: f26 + numad: + rationale: Requirement for libvirt. + ref: f26 + parted: + rationale: Requirement for libvirt. + ref: f26 + perl: + rationale: Requirement for libvirt. + ref: f26 + polkit: + rationale: Requirement for libvirt. + ref: f26 + python2: + rationale: Requirement for libvirt. + ref: f26 + qt: + rationale: Requirement for libvirt. + ref: f26 + radvd: + rationale: Requirement for libvirt. + ref: f26 + sanlock: + rationale: Requirement for libvirt. + ref: f26 + scrub: + rationale: Requirement for libvirt. + ref: f26 + sheepdog: + rationale: Requirement for libvirt. + ref: f26 + systemtap: + rationale: Requirement for libvirt. + ref: f26 + wireshark: + rationale: Requirement for libvirt. + ref: f26 + xen: + rationale: Requirement for libvirt. + ref: f26 + xhtml1-dtds: + rationale: Requirement for libvirt. + ref: f26 + yajl: + rationale: Requirement for libvirt. + ref: f26 + mesa: + rationale: Component for shared userspace. + ref: f26 + bison: + rationale: Requirement for mesa. + ref: f26 + clang: + rationale: Requirement for mesa. + ref: f26 + libXext: + rationale: Requirement for mesa. + ref: f26 + libXmu: + rationale: Requirement for mesa. + ref: f26 + libXxf86vm: + rationale: Requirement for mesa. + ref: f26 + libclc: + rationale: Requirement for mesa. + ref: f26 + libdrm: + rationale: Requirement for mesa. + ref: f26 + libglvnd: + rationale: Requirement for mesa. + ref: f26 + libomxil-bellagio: + rationale: Requirement for mesa. + ref: f26 + libva: + rationale: Requirement for mesa. + ref: f26 + libvdpau: + rationale: Requirement for mesa. + ref: f26 + libxshmfence: + rationale: Requirement for mesa. + ref: f26 + llvm: + rationale: Requirement for mesa. + ref: f26 + imake: + rationale: Requirement for mesa. + ref: f26 + opencl-filesystem: + rationale: Requirement for mesa. + ref: f26 + valgrind: + rationale: Requirement for mesa. + ref: f26 + wayland: + rationale: Requirement for mesa. + ref: f26 + python-mako: + rationale: Requirement for mesa. + ref: f26 + vulkan: + rationale: Requirement for mesa. + ref: f26 + xorg-x11-proto-devel: + rationale: Requirement for mesa. + ref: f26 + mesa-libGLU: + rationale: Component for shared userspace. + ref: f26 + motif: + rationale: Component for shared userspace. + ref: f26 + libXft: + rationale: Requirement for motif. + ref: f26 + libXp: + rationale: Requirement for motif. + ref: f26 + libXt: + rationale: Requirement for motif. + ref: f26 + libjpeg-turbo: + rationale: Requirement for motif. + ref: f26 + xorg-x11-xbitmaps: + rationale: Requirement for motif. + ref: f26 + SDL: + rationale: Component for shared userspace. + ref: f26 + arts: + rationale: Requirement for SDL. + ref: f26 + audiofile: + rationale: Requirement for SDL. + ref: f26 + esound: + rationale: Requirement for SDL. + ref: f26 + libX11: + rationale: Requirement for SDL. + ref: f26 + nas: + rationale: Requirement for SDL. + ref: f26 + pulseaudio: + rationale: Requirement for SDL. + ref: f26 + atomic: + rationale: Component for shared userspace. + ref: f26 + go-compilers: + rationale: Requirement for atomic. + ref: f26 + golang-github-cpuguy83-go-md2man: + rationale: Requirement for atomic. + ref: f26 + ostree: + rationale: Requirement for atomic. + ref: f26 + policycoreutils: + rationale: Requirement for atomic. + ref: f26 + PyYAML: + rationale: Requirement for atomic. + ref: f26 + python-dateutil: + rationale: Requirement for atomic. + ref: f26 + dbus-python: + rationale: Requirement for atomic. + ref: f26 + python-docker: + rationale: Requirement for atomic. + ref: f26 + pygobject3: + rationale: Requirement for atomic. + ref: f26 + python-requests: + rationale: Requirement for atomic. + ref: f26 + atomic-devmode: + rationale: Component for shared userspace. + ref: f26 + authconfig: + rationale: Component for shared userspace. + ref: f26 + intltool: + rationale: Requirement for authconfig. + ref: f26 + bash-completion: + rationale: Component for shared userspace. + ref: f26 + bind: + rationale: Component for shared userspace. + ref: f26 + GeoIP: + rationale: Requirement for bind. + ref: f26 + docbook-style-xsl: + rationale: Requirement for bind. + ref: f26 + mariadb: + rationale: Requirement for bind. + ref: f26 + postgresql: + rationale: Requirement for bind. + ref: f26 + python-ply: + rationale: Requirement for bind. + ref: f26 + biosdevname: + rationale: Component for shared userspace. + ref: f26 + pciutils: + rationale: Requirement for biosdevname. + ref: f26 + boost: + rationale: Component for shared userspace. + ref: f26 + icu: + rationale: Requirement for boost. + ref: f26 + mpich: + rationale: Requirement for boost. + ref: f26 + openmpi: + rationale: Requirement for boost. + ref: f26 + bridge-utils: + rationale: Component for shared userspace. + ref: f26 + sysfsutils: + rationale: Requirement for bridge-utils. + ref: f26 + c-ares: + rationale: Component for shared userspace. + ref: f26 + checkpolicy: + rationale: Component for shared userspace. + ref: f26 + chrony: + rationale: Component for shared userspace. + ref: f26 + libedit: + rationale: Requirement for chrony. + ref: f26 + pps-tools: + rationale: Requirement for chrony. + ref: f26 + cloud-init: + rationale: Component for shared userspace. + ref: f26 + iproute: + rationale: Requirement for cloud-init. + ref: f26 + python-configobj: + rationale: Requirement for cloud-init. + ref: f26 + python-httpretty: + rationale: Requirement for cloud-init. + ref: f26 + python-jinja2: + rationale: Requirement for cloud-init. + ref: f26 + python-jsonpatch: + rationale: Requirement for cloud-init. + ref: f26 + python-mock: + rationale: Requirement for cloud-init. + ref: f26 + python-nose: + rationale: Requirement for cloud-init. + ref: f26 + python-oauthlib: + rationale: Requirement for cloud-init. + ref: f26 + python-prettytable: + rationale: Requirement for cloud-init. + ref: f26 + pyserial: + rationale: Requirement for cloud-init. + ref: f26 + python-unittest2: + rationale: Requirement for cloud-init. + ref: f26 + cloud-utils: + rationale: Component for shared userspace. + ref: f26 + cockpit: + rationale: Component for shared userspace. + ref: f26 + glib-networking: + rationale: Requirement for cockpit. + ref: f26 + golang: + rationale: Requirement for cockpit. + ref: f26 + pcp: + rationale: Requirement for cockpit. + ref: f26 + json-glib: + rationale: Requirement for cockpit. + ref: f26 + xmlto: + rationale: Requirement for cockpit. + ref: f26 + conntrack-tools: + rationale: Component for shared userspace. + ref: f26 + libmnl: + rationale: Requirement for conntrack-tools. + ref: f26 + libnetfilter_conntrack: + rationale: Requirement for conntrack-tools. + ref: f26 + libnetfilter_cthelper: + rationale: Requirement for conntrack-tools. + ref: f26 + libnetfilter_cttimeout: + rationale: Requirement for conntrack-tools. + ref: f26 + libnetfilter_queue: + rationale: Requirement for conntrack-tools. + ref: f26 + libnfnetlink: + rationale: Requirement for conntrack-tools. + ref: f26 + container-selinux: + rationale: Component for shared userspace. + ref: f26 + selinux-policy: + rationale: Requirement for container-selinux. + ref: f26 + criu: + rationale: Component for shared userspace. + ref: f26 + asciidoc: + rationale: Requirement for criu. + ref: f26 + libnet: + rationale: Requirement for criu. + ref: f26 + protobuf-c: + rationale: Requirement for criu. + ref: f26 + protobuf: + rationale: Requirement for criu. + ref: f26 + dbus-glib: + rationale: Component for shared userspace. + ref: f26 + chrpath: + rationale: Requirement for dbus-glib. + ref: f26 + device-mapper-multipath: + rationale: Component for shared userspace. + ref: f26 + libaio: + rationale: Requirement for device-mapper-multipath. + ref: f26 + device-mapper-persistent-data: + rationale: Component for shared userspace. + ref: f26 + dhcp: + rationale: Component for shared userspace. + ref: f26 + bind99: + rationale: Requirement for dhcp. + ref: f26 + dmidecode: + rationale: Component for shared userspace. + ref: f26 + docker: + rationale: Component for shared userspace. + ref: f26 + btrfs-progs: + rationale: Requirement for docker. + ref: f26 + cmake: + rationale: Requirement for docker. + ref: f26 + godep: + rationale: Requirement for docker. + ref: f26 + docker-client: + rationale: Component for shared userspace. + ref: f26 + apache-commons-compress: + rationale: Requirement for docker-client. + ref: f26 + bouncycastle-pkix: + rationale: Requirement for docker-client. + ref: f26 + glassfish-annotation-api: + rationale: Requirement for docker-client. + ref: f26 + glassfish-hk2: + rationale: Requirement for docker-client. + ref: f26 + glassfish-jax-rs-api: + rationale: Requirement for docker-client. + ref: f26 + glassfish-jaxb-api: + rationale: Requirement for docker-client. + ref: f26 + jackson-annotations: + rationale: Requirement for docker-client. + ref: f26 + jackson-core: + rationale: Requirement for docker-client. + ref: f26 + jackson-databind: + rationale: Requirement for docker-client. + ref: f26 + jackson-dataformat-yaml: + rationale: Requirement for docker-client. + ref: f26 + jackson-datatypes-collections: + rationale: Requirement for docker-client. + ref: f26 + jackson-jaxrs-providers: + rationale: Requirement for docker-client. + ref: f26 + jackson-module-jaxb-annotations: + rationale: Requirement for docker-client. + ref: f26 + jersey: + rationale: Requirement for docker-client. + ref: f26 + jnr-unixsocket: + rationale: Requirement for docker-client. + ref: f26 + javapackages-tools: + rationale: Requirement for docker-client. + ref: f26 + maven-surefire: + rationale: Requirement for docker-client. + ref: f26 + maven-source-plugin: + rationale: Requirement for docker-client. + ref: f26 + sonatype-oss-parent: + rationale: Requirement for docker-client. + ref: f26 + docker-latest: + rationale: Component for shared userspace. + ref: f26 + efibootmgr: + rationale: Component for shared userspace. + ref: f26 + efivar: + rationale: Requirement for efibootmgr. + ref: f26 + etcd: + rationale: Component for shared userspace. + ref: f26 + golang-github-akrennmair-gopcap: + rationale: Requirement for etcd. + ref: f26 + golang-github-bgentry-speakeasy: + rationale: Requirement for etcd. + ref: f26 + golang-github-boltdb-bolt: + rationale: Requirement for etcd. + ref: f26 + golang-github-cheggaaa-pb: + rationale: Requirement for etcd. + ref: f26 + golang-github-cockroachdb-cmux: + rationale: Requirement for etcd. + ref: f26 + golang-github-coreos-go-semver: + rationale: Requirement for etcd. + ref: f26 + golang-github-coreos-go-systemd: + rationale: Requirement for etcd. + ref: f26 + golang-github-coreos-pkg: + rationale: Requirement for etcd. + ref: f26 + golang-github-dustin-go-humanize: + rationale: Requirement for etcd. + ref: f26 + golang-github-ghodss-yaml: + rationale: Requirement for etcd. + ref: f26 + golang-googlecode-gogoprotobuf: + rationale: Requirement for etcd. + ref: f26 + golang-github-golang-groupcache: + rationale: Requirement for etcd. + ref: f26 + golang-googlecode-goprotobuf: + rationale: Requirement for etcd. + ref: f26 + golang-github-google-btree: + rationale: Requirement for etcd. + ref: f26 + golang-github-grpc-ecosystem-grpc-gateway: + rationale: Requirement for etcd. + ref: f26 + golang-github-jonboulle-clockwork: + rationale: Requirement for etcd. + ref: f26 + golang-github-kr-pty: + rationale: Requirement for etcd. + ref: f26 + golang-github-olekukonko-tablewriter: + rationale: Requirement for etcd. + ref: f26 + golang-github-prometheus-client_golang: + rationale: Requirement for etcd. + ref: f26 + golang-github-prometheus-procfs: + rationale: Requirement for etcd. + ref: f26 + golang-github-spacejam-loghisto: + rationale: Requirement for etcd. + ref: f26 + golang-github-spf13-cobra: + rationale: Requirement for etcd. + ref: f26 + golang-github-spf13-pflag: + rationale: Requirement for etcd. + ref: f26 + golang-github-ugorji-go: + rationale: Requirement for etcd. + ref: f26 + golang-github-urfave-cli: + rationale: Requirement for etcd. + ref: f26 + golang-github-xiang90-probing: + rationale: Requirement for etcd. + ref: f26 + golang-googlecode-go-crypto: + rationale: Requirement for etcd. + ref: f26 + golang-googlecode-net: + rationale: Requirement for etcd. + ref: f26 + golang-github-grpc-grpc-go: + rationale: Requirement for etcd. + ref: f26 + ethtool: + rationale: Component for shared userspace. + ref: f26 + fcgi: + rationale: Component for shared userspace. + ref: f26 + fipscheck: + rationale: Component for shared userspace. + ref: f26 + flannel: + rationale: Component for shared userspace. + ref: f26 + golang-github-aws-aws-sdk-go: + rationale: Requirement for flannel. + ref: f26 + golang-github-coreos-go-iptables: + rationale: Requirement for flannel. + ref: f26 + golang-github-golang-glog: + rationale: Requirement for flannel. + ref: f26 + golang-github-gorilla-mux: + rationale: Requirement for flannel. + ref: f26 + golang-github-vishvananda-netlink: + rationale: Requirement for flannel. + ref: f26 + golang-googlecode-goauth2: + rationale: Requirement for flannel. + ref: f26 + golang-googlecode-google-api-client: + rationale: Requirement for flannel. + ref: f26 + gomtree: + rationale: Component for shared userspace. + ref: f26 + gperftools: + rationale: Component for shared userspace. + ref: f26 + libunwind: + rationale: Requirement for gperftools. + ref: f26 + perl-generators: + rationale: Requirement for gperftools. + ref: f26 + grubby: + rationale: Component for shared userspace. + ref: f26 + gsettings-desktop-schemas: + rationale: Component for shared userspace. + ref: f26 + gssproxy: + rationale: Component for shared userspace. + ref: f26 + ding-libs: + rationale: Requirement for gssproxy. + ref: f26 + hardlink: + rationale: Component for shared userspace. + ref: f26 + hostname: + rationale: Component for shared userspace. + ref: f26 + initscripts: + rationale: Component for shared userspace. + ref: f26 + iputils: + rationale: Component for shared userspace. + ref: f25 + docbook-utils: + rationale: Requirement for iputils. + ref: f26 + perl-SGMLSpm: + rationale: Requirement for iputils. + ref: f26 + irqbalance: + rationale: Component for shared userspace. + ref: f26 + jansson: + rationale: Component for shared userspace. + ref: f26 + python-sphinx: + rationale: Requirement for jansson. + ref: f26 + kexec-tools: + rationale: Component for shared userspace. + ref: f26 + snappy: + rationale: Requirement for kexec-tools. + ref: f26 + kubernetes: + rationale: Component for shared userspace. + ref: f26 + go-bindata: + rationale: Requirement for kubernetes. + ref: f26 + rsync: + rationale: Requirement for kubernetes. + ref: f26 + libcgroup: + rationale: Component for shared userspace. + ref: f26 + libevent: + rationale: Component for shared userspace. + ref: f26 + sssd: + rationale: Component for shared userspace. + ref: f26 + check: + rationale: Requirement for sssd. + ref: f26 + cifs-utils: + rationale: Requirement for sssd. + ref: f26 + diffstat: + rationale: Requirement for sssd. + ref: f26 + http-parser: + rationale: Requirement for sssd. + ref: f26 + cmocka: + rationale: Requirement for sssd. + ref: f26 + libldb: + rationale: Requirement for sssd. + ref: f26 + libnfsidmap: + rationale: Requirement for sssd. + ref: f26 + samba: + rationale: Requirement for sssd. + ref: f26 + libtalloc: + rationale: Requirement for sssd. + ref: f26 + libtdb: + rationale: Requirement for sssd. + ref: f26 + libtevent: + rationale: Requirement for sssd. + ref: f26 + nss_wrapper: + rationale: Requirement for sssd. + ref: f26 + uid_wrapper: + rationale: Requirement for sssd. + ref: f26 + libmodman: + rationale: Component for shared userspace. + ref: f26 + libndp: + rationale: Component for shared userspace. + ref: f26 + libproxy: + rationale: Component for shared userspace. + ref: f26 + kf5-kconfig: + rationale: Requirement for libproxy. + ref: f26 + webkitgtk4: + rationale: Requirement for libproxy. + ref: f26 + NetworkManager: + rationale: Requirement for libproxy. + ref: f26 + js: + rationale: Requirement for libproxy. + ref: f26 + libreport: + rationale: Component for shared userspace. + ref: f26 + desktop-file-utils: + rationale: Requirement for libreport. + ref: f26 + gtk3: + rationale: Requirement for libreport. + ref: f26 + json-c: + rationale: Requirement for libreport. + ref: f26 + libtar: + rationale: Requirement for libreport. + ref: f26 + newt: + rationale: Requirement for libreport. + ref: f26 + satyr: + rationale: Requirement for libreport. + ref: f26 + xmlrpc-c: + rationale: Requirement for libreport. + ref: f26 + libsoup: + rationale: Component for shared userspace. + ref: f26 + vala: + rationale: Requirement for libsoup. + ref: f26 + libtirpc: + rationale: Component for shared userspace. + ref: f26 + libuser: + rationale: Component for shared userspace. + ref: f26 + fakeroot: + rationale: Requirement for libuser. + ref: f26 + linuxdoc-tools: + rationale: Requirement for libuser. + ref: f26 + libyaml: + rationale: Component for shared userspace. + ref: f26 + logrotate: + rationale: Component for shared userspace. + ref: f26 + lttng-ust: + rationale: Component for shared userspace. + ref: f26 + userspace-rcu: + rationale: Requirement for lttng-ust. + ref: f26 + m2crypto: + rationale: Component for shared userspace. + ref: f26 + python2-typing: + rationale: Requirement for m2crypto. + ref: f26 + swig: + rationale: Requirement for m2crypto. + ref: f26 + mdadm: + rationale: Component for shared userspace. + ref: f26 + mokutil: + rationale: Component for shared userspace. + ref: f26 + gnu-efi: + rationale: Requirement for mokutil. + ref: f26 + mozjs17: + rationale: Component for shared userspace. + ref: f26 + autoconf213: + rationale: Requirement for mozjs17. + ref: f26 + perl-Getopt-Long: + rationale: Requirement for mozjs17. + ref: f26 + nano: + rationale: Component for shared userspace. + ref: f26 + net-tools: + rationale: Component for shared userspace. + ref: f26 + bluez: + rationale: Requirement for net-tools. + ref: f26 + nmap: + rationale: Component for shared userspace. + ref: f26 + dos2unix: + rationale: Requirement for nmap. + ref: f26 + pygtk2: + rationale: Requirement for nmap. + ref: f26 + nss-altfiles: + rationale: Component for shared userspace. + ref: f26 + oci-register-machine: + rationale: Component for shared userspace. + ref: f26 + golang-github-godbus-dbus: + rationale: Requirement for oci-register-machine. + ref: f26 + golang-gopkg-yaml: + rationale: Requirement for oci-register-machine. + ref: f26 + oci-systemd-hook: + rationale: Component for shared userspace. + ref: f26 + openssh: + rationale: Component for shared userspace. + ref: f26 + perl-podlators: + rationale: Requirement for openssh. + ref: f26 + tcp_wrappers: + rationale: Requirement for openssh. + ref: f26 + xorg-x11-xauth: + rationale: Requirement for openssh. + ref: f26 + passwd: + rationale: Component for shared userspace. + ref: f26 + pinentry: + rationale: Component for shared userspace. + ref: f26 + gcr: + rationale: Requirement for pinentry. + ref: f26 + libsecret: + rationale: Requirement for pinentry. + ref: f26 + pkgconfig: + rationale: Component for shared userspace. + ref: f26 + polkit-pkla-compat: + rationale: Component for shared userspace. + ref: f26 + ppp: + rationale: Component for shared userspace. + ref: f26 + compat-openssl10: + rationale: Requirement for ppp. + ref: f26 + pyliblzma: + rationale: Component for shared userspace. + ref: f26 + python-backports: + rationale: Component for shared userspace. + ref: f26 + python-backports-ssl_match_hostname: + rationale: Component for shared userspace. + ref: f26 + python-chardet: + rationale: Component for shared userspace. + ref: f26 + python-dmidecode: + rationale: Component for shared userspace. + ref: f26 + python-docker-py: + rationale: Component for shared userspace. + ref: f26 + pytest: + rationale: Requirement for python-docker-py. + ref: f26 + python-coverage: + rationale: Requirement for python-docker-py. + ref: f26 + python-flake8: + rationale: Requirement for python-docker-py. + ref: f26 + python-ipaddress: + rationale: Requirement for python-docker-py. + ref: f26 + python-pytest-cov: + rationale: Requirement for python-docker-py. + ref: f26 + python-websocket-client: + rationale: Requirement for python-docker-py. + ref: f26 + python-docker-pycreds: + rationale: Requirement for python-docker-py. + ref: f26 + python-ethtool: + rationale: Component for shared userspace. + ref: f26 + python-IPy: + rationale: Component for shared userspace. + ref: f26 + python-rhsm: + rationale: Component for shared userspace. + ref: f26 + python-slip: + rationale: Component for shared userspace. + ref: f26 + python-urlgrabber: + rationale: Component for shared userspace. + ref: f26 + python-pycurl: + rationale: Requirement for python-urlgrabber. + ref: f26 + pyxattr: + rationale: Component for shared userspace. + ref: f26 + quota: + rationale: Component for shared userspace. + ref: f26 + rpcbind: + rationale: Component for shared userspace. + ref: f26 + runc: + rationale: Component for shared userspace. + ref: f26 + golang-github-Sirupsen-logrus: + rationale: Requirement for runc. + ref: f26 + golang-github-docker-go-units: + rationale: Requirement for runc. + ref: f26 + golang-github-opencontainers-runtime-spec: + rationale: Requirement for runc. + ref: f26 + golang-github-seccomp-libseccomp-golang: + rationale: Requirement for runc. + ref: f26 + golang-github-syndtr-gocapability: + rationale: Requirement for runc. + ref: f26 + setools: + rationale: Component for shared userspace. + ref: f26 + qt5-qtbase: + rationale: Requirement for setools. + ref: f26 + sg3_utils: + rationale: Component for shared userspace. + ref: f26 + shared-mime-info: + rationale: Component for shared userspace. + ref: f26 + perl-XML-Parser: + rationale: Requirement for shared-mime-info. + ref: f26 + shim-signed: + rationale: Component for shared userspace. + ref: f26 + pesign: + rationale: Requirement for shim-signed. + ref: f26 + shim: + rationale: Requirement for shim-signed. + ref: f26 + skopeo: + rationale: Component for shared userspace. + ref: f26 + slang: + rationale: Component for shared userspace. + ref: f26 + oniguruma: + rationale: Requirement for slang. + ref: f26 + socat: + rationale: Component for shared userspace. + ref: f26 + subscription-manager: + rationale: Component for shared userspace. + ref: f26 + GConf2: + rationale: Requirement for subscription-manager. + ref: f26 + libnotify: + rationale: Requirement for subscription-manager. + ref: f26 + redhat-lsb: + rationale: Requirement for subscription-manager. + ref: f26 + rarian: + rationale: Requirement for subscription-manager. + ref: f26 + sudo: + rationale: Component for shared userspace. + ref: f26 + sendmail: + rationale: Requirement for sudo. + ref: f26 + tmux: + rationale: Component for shared userspace. + ref: f26 + trousers: + rationale: Component for shared userspace. + ref: f26 + tuned: + rationale: Component for shared userspace. + ref: f26 + usermode: + rationale: Component for shared userspace. + ref: f26 + libSM: + rationale: Requirement for usermode. + ref: f26 + startup-notification: + rationale: Requirement for usermode. + ref: f26 + virt-what: + rationale: Component for shared userspace. + ref: f26 + wpa_supplicant: + rationale: Component for shared userspace. + ref: f26 + xfsprogs: + rationale: Component for shared userspace. + ref: f26 + yum: + rationale: Component for shared userspace. + ref: f26 + python-pygpgme: + rationale: Requirement for yum. + ref: f26 + python-iniparse: + rationale: Requirement for yum. + ref: f26 + yum-metadata-parser: + rationale: Requirement for yum. + ref: f26